path.cpp revision 60095b8115fe29aacdb5d578fbaa944d67dafeec
/* $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;
* 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 *
*******************************************************************************/
{
/*
* Calc the length and check if there is space before copying.
*/
{
return VINF_SUCCESS;
}
return VERR_BUFFER_OVERFLOW;
}
/**
* Gets the directory for architecture-independent application data, for
* example NLS files, module sources, ...
*
* Windows: @<program files directory@>/@<application@>
* Old path: same as RTPathExecDir()
*
*/
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_PRIVATE)
#else
#endif
}
/**
* Gets the directory for architecture-dependent application data, for
* example modules which can be loaded at runtime.
*
* 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.
*/
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_PRIVATE_ARCH)
#else
#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.
*
* 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.
*/
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_SHARED_LIBS)
#else
#endif
}
/**
* Gets the directory for documentation.
*
* 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.
*/
{
#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_DOCS)
#else
#endif
}
/**
* Gets the temporary directory path.
*
* @returns iprt status code.
*
* @param pszPath Buffer where to store the path.
* @param cchPath Buffer size in bytes.
*/
{
/*
* Try get it from the environment first.
*/
static const char * const s_apszVars[] =
{
"IPRT_TMPDIR"
#if defined(RT_OS_WINDOWS)
, "TMP", "TEMP", "USERPROFILE"
, "TMP", "TEMP", "TMPDIR"
#else
, "TMPDIR"
#endif
};
{
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
if (cchPath < sizeof("/tmp") )
return VERR_BUFFER_OVERFLOW;
return VINF_SUCCESS;
}
{
if (RT_SUCCESS(rc))
return rc;
}