VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/path.cpp@ 25942

Last change on this file since 25942 was 21677, checked in by vboxsync, 15 years ago

r3/path.cpp: build fix.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.0 KB
Line 
1/* $Id: path.cpp 21677 2009-07-17 12:22:35Z vboxsync $ */
2/** @file
3 * IPRT - Path Manipulation.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include "internal/iprt.h"
36#include <iprt/assert.h>
37#include <iprt/env.h>
38#include <iprt/err.h>
39#include <iprt/path.h>
40#include <iprt/string.h>
41#include "internal/path.h"
42#include "internal/process.h"
43
44
45RTDECL(int) RTPathExecDir(char *pszPath, size_t cchPath)
46{
47 AssertReturn(g_szrtProcExePath[0], VERR_WRONG_ORDER);
48
49 /*
50 * Calc the length and check if there is space before copying.
51 */
52 size_t cch = g_cchrtProcDir;
53 if (cch <= cchPath)
54 {
55 memcpy(pszPath, g_szrtProcExePath, cch);
56 pszPath[cch] = '\0';
57 return VINF_SUCCESS;
58 }
59
60 AssertMsgFailed(("Buffer too small (%zu <= %zu)\n", cchPath, cch));
61 return VERR_BUFFER_OVERFLOW;
62}
63
64
65/**
66 * Gets the directory for architecture-independent application data, for
67 * example NLS files, module sources, ...
68 *
69 * Linux: /usr/shared/@<application@>
70 * Windows: @<program files directory@>/@<application@>
71 * Old path: same as RTPathExecDir()
72 *
73 */
74RTDECL(int) RTPathAppPrivateNoArch(char *pszPath, size_t cchPath)
75{
76#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_PRIVATE)
77 char *pszUtf8Path;
78 int rc;
79 rc = rtPathFromNative(&pszUtf8Path, RTPATH_APP_PRIVATE);
80 if (RT_SUCCESS(rc))
81 {
82 size_t cchPathPrivateNoArch = strlen(pszUtf8Path);
83 if (cchPathPrivateNoArch < cchPath)
84 memcpy(pszPath, pszUtf8Path, cchPathPrivateNoArch + 1);
85 else
86 rc = VERR_BUFFER_OVERFLOW;
87 RTStrFree(pszUtf8Path);
88 }
89 return rc;
90#else
91 return RTPathExecDir(pszPath, cchPath);
92#endif
93}
94
95
96/**
97 * Gets the directory for architecture-dependent application data, for
98 * example modules which can be loaded at runtime.
99 *
100 * Linux: /usr/lib/@<application@>
101 * Windows: @<program files directory@>/@<application@>
102 * Old path: same as RTPathExecDir()
103 *
104 * @returns iprt status code.
105 * @param pszPath Buffer where to store the path.
106 * @param cchPath Buffer size in bytes.
107 */
108RTDECL(int) RTPathAppPrivateArch(char *pszPath, size_t cchPath)
109{
110#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_PRIVATE_ARCH)
111 char *pszUtf8Path;
112 int rc;
113 rc = rtPathFromNative(&pszUtf8Path, RTPATH_APP_PRIVATE_ARCH);
114 if (RT_SUCCESS(rc))
115 {
116 size_t cchPathPrivateArch = strlen(pszUtf8Path);
117 if (cchPathPrivateArch < cchPath)
118 memcpy(pszPath, pszUtf8Path, cchPathPrivateArch + 1);
119 else
120 rc = VERR_BUFFER_OVERFLOW;
121 RTStrFree(pszUtf8Path);
122 }
123 return rc;
124#else
125 return RTPathExecDir(pszPath, cchPath);
126#endif
127}
128
129
130/**
131 * Gets the directory of shared libraries. This is not the same as
132 * RTPathAppPrivateArch() as Linux depends all shared libraries in
133 * a common global directory where ld.so can found them.
134 *
135 * Linux: /usr/lib
136 * Windows: @<program files directory@>/@<application@>
137 * Old path: same as RTPathExecDir()
138 *
139 * @returns iprt status code.
140 * @param pszPath Buffer where to store the path.
141 * @param cchPath Buffer size in bytes.
142 */
143RTDECL(int) RTPathSharedLibs(char *pszPath, size_t cchPath)
144{
145#if !defined(RT_OS_WINDOWS) && defined(RTPATH_SHARED_LIBS)
146 char *pszUtf8Path;
147 int rc;
148 rc = rtPathFromNative(&pszUtf8Path, RTPATH_SHARED_LIBS);
149 if (RT_SUCCESS(rc))
150 {
151 size_t cchPathSharedLibs = strlen(pszUtf8Path);
152 if (cchPathSharedLibs < cchPath)
153 memcpy(pszPath, pszUtf8Path, cchPathSharedLibs + 1);
154 else
155 rc = VERR_BUFFER_OVERFLOW;
156 RTStrFree(pszUtf8Path);
157 }
158 return rc;
159#else
160 return RTPathExecDir(pszPath, cchPath);
161#endif
162}
163
164
165/**
166 * Gets the directory for documentation.
167 *
168 * Linux: /usr/share/doc/@<application@>
169 * Windows: @<program files directory@>/@<application@>
170 * Old path: same as RTPathExecDir()
171 *
172 * @returns iprt status code.
173 * @param pszPath Buffer where to store the path.
174 * @param cchPath Buffer size in bytes.
175 */
176RTDECL(int) RTPathAppDocs(char *pszPath, size_t cchPath)
177{
178#if !defined(RT_OS_WINDOWS) && defined(RTPATH_APP_DOCS)
179 char *pszUtf8Path;
180 int rc;
181 rc = rtPathFromNative(&pszUtf8Path, RTPATH_APP_DOCS);
182 if (RT_SUCCESS(rc))
183 {
184 size_t cchPathAppDocs = strlen(pszUtf8Path);
185 if (cchPathAppDocs < cchPath)
186 memcpy(pszPath, pszUtf8Path, cchPathAppDocs + 1);
187 else
188 rc = VERR_BUFFER_OVERFLOW;
189 RTStrFree(pszUtf8Path);
190 }
191 return rc;
192#else
193 return RTPathExecDir(pszPath, cchPath);
194#endif
195}
196
197
198/**
199 * Gets the temporary directory path.
200 *
201 * @returns iprt status code.
202 *
203 * @param pszPath Buffer where to store the path.
204 * @param cchPath Buffer size in bytes.
205 */
206RTDECL(int) RTPathTemp(char *pszPath, size_t cchPath)
207{
208 /*
209 * Try get it from the environment first.
210 */
211 static const char * const s_apszVars[] =
212 {
213 "IPRT_TMPDIR"
214#if defined(RT_OS_WINDOWS)
215 , "TMP", "TEMP", "USERPROFILE"
216#elif defined(RT_OS_OS2)
217 , "TMP", "TEMP", "TMPDIR"
218#else
219 , "TMPDIR"
220#endif
221 };
222 for (size_t iVar = 0; iVar < RT_ELEMENTS(s_apszVars); iVar++)
223 {
224 int rc = RTEnvGetEx(RTENV_DEFAULT, s_apszVars[iVar], pszPath, cchPath, NULL);
225 if (rc != VERR_ENV_VAR_NOT_FOUND)
226 return rc;
227 }
228
229 /*
230 * Here we should use some sane system default, instead we just use
231 * the typical unix temp dir for now.
232 */
233 /** @todo Windows should default to the windows directory, see GetTempPath.
234 * Some unixes has path.h and _PATH_TMP. There is also a question about
235 * whether /var/tmp wouldn't be a better place... */
236 if (cchPath < sizeof("/tmp") )
237 return VERR_BUFFER_OVERFLOW;
238 memcpy(pszPath, "/tmp", sizeof("/tmp"));
239 return VINF_SUCCESS;
240}
241
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette