path.cpp revision 95bbd60a323feec1eaf008a93690364eea86c298
/* $Id$ */
/** @file
* IPRT - Path Manipulation.
*/
/*
* Copyright (C) 2006-2007 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "internal/iprt.h"
#include <iprt/assert.h>
#include <iprt/env.h>
#include <iprt/err.h>
#include <iprt/path.h>
#include <iprt/string.h>
#include "internal/path.h"
#include "internal/process.h"
RTDECL(int) RTPathExecDir(char *pszPath, size_t cchPath)
{
AssertReturn(g_szrtProcExePath[0], VERR_WRONG_ORDER);
/*
* Calc the length and check if there is space before copying.
*/
size_t cch = g_cchrtProcDir;
if (cch <= cchPath)
{
memcpy(pszPath, g_szrtProcExePath, cch);
pszPath[cch] = '\0';
return VINF_SUCCESS;
}
AssertMsgFailed(("Buffer too small (%zu <= %zu)\n", cchPath, cch));
return VERR_BUFFER_OVERFLOW;
}
/**
* Gets the directory for architecture-independent application data, for
* example NLS files, module sources, ...
*
* Linux: /usr/shared/@<application@>
* Windows: @<program files directory@>/@<application@>
* Old path: same as RTPathExecDir()
*
*/
RTDECL(int) RTPathAppPrivateNoArch(char *pszPath, size_t cchPath)
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_PRIVATE)
return RTStrCopyEx(pszPath, cchPath, RTPATH_APP_PRIVATE, RTSTR_MAX);
#else
return RTPathExecDir(pszPath, cchPath);
#endif
}
/**
* Gets the directory for architecture-dependent application data, for
* example modules which can be loaded at runtime.
*
* Linux: /usr/lib/@<application@>
* Windows: @<program files directory@>/@<application@>
* Old path: same as RTPathExecDir()
*
* @returns iprt status code.
* @param pszPath Buffer where to store the path.
* @param cchPath Buffer size in bytes.
*/
RTDECL(int) RTPathAppPrivateArch(char *pszPath, size_t cchPath)
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_PRIVATE_ARCH)
return RTStrCopyEx(pszPath, cchPath, RTPATH_APP_PRIVATE_ARCH, RTSTR_MAX);
#else
return RTPathExecDir(pszPath, cchPath);
#endif
}
/**
* Gets the directory of shared libraries. This is not the same as
* RTPathAppPrivateArch() as Linux depends all shared libraries in
* a common global directory where ld.so can found them.
*
* Linux: /usr/lib
* Windows: @<program files directory@>/@<application@>
* Old path: same as RTPathExecDir()
*
* @returns iprt status code.
* @param pszPath Buffer where to store the path.
* @param cchPath Buffer size in bytes.
*/
RTDECL(int) RTPathSharedLibs(char *pszPath, size_t cchPath)
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_SHARED_LIBS)
return RTStrCopyEx(pszPath, cchPath, RTPATH_SHARED_LIBS, RTSTR_MAX);
#else
return RTPathExecDir(pszPath, cchPath);
#endif
}
/**
* Gets the directory for documentation.
*
* Linux: /usr/share/doc/@<application@>
* Windows: @<program files directory@>/@<application@>
* Old path: same as RTPathExecDir()
*
* @returns iprt status code.
* @param pszPath Buffer where to store the path.
* @param cchPath Buffer size in bytes.
*/
RTDECL(int) RTPathAppDocs(char *pszPath, size_t cchPath)
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_DOCS)
return RTStrCopyEx(pszPath, cchPath, RTPATH_APP_DOCS, RTSTR_MAX);
#else
return RTPathExecDir(pszPath, cchPath);
#endif
}
/**
* Gets the temporary directory path.
*
* @returns iprt status code.
*
* @param pszPath Buffer where to store the path.
* @param cchPath Buffer size in bytes.
*/
RTDECL(int) RTPathTemp(char *pszPath, size_t cchPath)
{
/*
* Try get it from the environment first.
*/
static const char * const s_apszVars[] =
{
"IPRT_TMPDIR"
#if defined(RT_OS_WINDOWS)
, "TMP", "TEMP", "USERPROFILE"
#elif defined(RT_OS_OS2)
, "TMP", "TEMP", "TMPDIR"
#else
, "TMPDIR"
#endif
};
for (size_t iVar = 0; iVar < RT_ELEMENTS(s_apszVars); iVar++)
{
int rc = RTEnvGetEx(RTENV_DEFAULT, s_apszVars[iVar], pszPath, cchPath, NULL);
if (rc != VERR_ENV_VAR_NOT_FOUND)
return rc;
}
/*
* Here we should use some sane system default, instead we just use
* the typical unix temp dir for now.
*/
/** @todo Windows should default to the windows directory, see GetTempPath.
* Some unixes has path.h and _PATH_TMP. There is also a question about
* whether /var/tmp wouldn't be a better place... */
if (cchPath < sizeof("/tmp") )
return VERR_BUFFER_OVERFLOW;
memcpy(pszPath, "/tmp", sizeof("/tmp"));
return VINF_SUCCESS;
}