VirtualBox

source: vbox/trunk/include/iprt/path.h@ 81748

Last change on this file since 81748 was 81204, checked in by vboxsync, 5 years ago

iprt/path.h: typo

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 62.7 KB
Line 
1/** @file
2 * IPRT - Path Manipulation.
3 */
4
5/*
6 * Copyright (C) 2006-2019 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef IPRT_INCLUDED_path_h
27#define IPRT_INCLUDED_path_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <iprt/cdefs.h>
33#include <iprt/types.h>
34#ifdef IN_RING3
35# include <iprt/fs.h>
36#endif
37
38
39
40RT_C_DECLS_BEGIN
41
42/** @defgroup grp_rt_path RTPath - Path Manipulation
43 * @ingroup grp_rt
44 * @{
45 */
46
47/**
48 * Host max path (the reasonable value).
49 * @remarks defined both by iprt/param.h and iprt/path.h.
50 */
51#if !defined(IPRT_INCLUDED_param_h) || defined(DOXYGEN_RUNNING)
52# define RTPATH_MAX (4096 + 4) /* (PATH_MAX + 1) on linux w/ some alignment */
53#endif
54
55/**
56 * The absolute max host path length we are willing to support.
57 * @note Not really suitable for stack buffers.
58 */
59#define RTPATH_BIG_MAX (_64K)
60
61/** @def RTPATH_TAG
62 * The default allocation tag used by the RTPath allocation APIs.
63 *
64 * When not defined before the inclusion of iprt/string.h, this will default to
65 * the pointer to the current file name. The string API will make of use of
66 * this as pointer to a volatile but read-only string.
67 */
68#ifndef RTPATH_TAG
69# define RTPATH_TAG (__FILE__)
70#endif
71
72
73/** @name RTPATH_F_XXX - Generic flags for APIs working on the file system.
74 * @{ */
75/** Last component: Work on the link. */
76#define RTPATH_F_ON_LINK RT_BIT_32(0)
77/** Last component: Follow if link. */
78#define RTPATH_F_FOLLOW_LINK RT_BIT_32(1)
79/** Don't allow symbolic links as part of the path.
80 * @remarks this flag is currently not implemented and will be ignored. */
81#define RTPATH_F_NO_SYMLINKS RT_BIT_32(2)
82/** Current RTPATH_F_XXX flag mask. */
83#define RTPATH_F_MASK UINT32_C(0x00000007)
84/** @} */
85
86/** Validates a flags parameter containing RTPATH_F_*.
87 * @remarks The parameters will be referenced multiple times. */
88#define RTPATH_F_IS_VALID(a_fFlags, a_fIgnore) \
89 ( ((a_fFlags) & ~(uint32_t)((a_fIgnore) | RTPATH_F_NO_SYMLINKS)) == RTPATH_F_ON_LINK \
90 || ((a_fFlags) & ~(uint32_t)((a_fIgnore) | RTPATH_F_NO_SYMLINKS)) == RTPATH_F_FOLLOW_LINK )
91
92
93/** @name RTPATH_STR_F_XXX - Generic flags for APIs working with path strings.
94 * @{
95 */
96/** Host OS path style (default 0 value). */
97#define RTPATH_STR_F_STYLE_HOST UINT32_C(0x00000000)
98/** DOS, OS/2 and Windows path style. */
99#define RTPATH_STR_F_STYLE_DOS UINT32_C(0x00000001)
100/** Unix path style. */
101#define RTPATH_STR_F_STYLE_UNIX UINT32_C(0x00000002)
102/** Reserved path style. */
103#define RTPATH_STR_F_STYLE_RESERVED UINT32_C(0x00000003)
104/** The path style mask. */
105#define RTPATH_STR_F_STYLE_MASK UINT32_C(0x00000003)
106/** Partial path - no start.
107 * This causes the API to skip the root specification parsing. */
108#define RTPATH_STR_F_NO_START UINT32_C(0x00000010)
109/** Partial path - no end.
110 * This causes the API to skip the filename and dir-slash parsing. */
111#define RTPATH_STR_F_NO_END UINT32_C(0x00000020)
112/** Partial path - no start and no end. */
113#define RTPATH_STR_F_MIDDLE (RTPATH_STR_F_NO_START | RTPATH_STR_F_NO_END)
114
115/** Reserved for future use. */
116#define RTPATH_STR_F_RESERVED_MASK UINT32_C(0x0000ffcc)
117/** @} */
118
119/** Validates a flags parameter containing RTPATH_FSTR_.
120 * @remarks The parameters will be references multiple times. */
121#define RTPATH_STR_F_IS_VALID(a_fFlags, a_fIgnore) \
122 ( ((a_fFlags) & ~((uint32_t)(a_fIgnore) | RTPATH_STR_F_STYLE_MASK | RTPATH_STR_F_MIDDLE)) == 0 \
123 && ((a_fFlags) & RTPATH_STR_F_STYLE_MASK) != RTPATH_STR_F_STYLE_RESERVED \
124 && ((a_fFlags) & RTPATH_STR_F_RESERVED_MASK) == 0 )
125
126
127/** @def RTPATH_STYLE
128 * The host path style. This is set to RTPATH_STR_F_STYLE_DOS,
129 * RTPATH_STR_F_STYLE_UNIX, or other future styles. */
130#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
131# define RTPATH_STYLE RTPATH_STR_F_STYLE_DOS
132#else
133# define RTPATH_STYLE RTPATH_STR_F_STYLE_UNIX
134#endif
135
136
137/** @def RTPATH_SLASH
138 * The preferred slash character.
139 *
140 * @remark IPRT will always accept unix slashes. So, normally you would
141 * never have to use this define.
142 */
143#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
144# define RTPATH_SLASH '\\'
145#elif RTPATH_STYLE == RTPATH_STR_F_STYLE_UNIX
146# define RTPATH_SLASH '/'
147#else
148# error "Unsupported RTPATH_STYLE value."
149#endif
150
151/** @deprecated Use '/'! */
152#define RTPATH_DELIMITER RTPATH_SLASH
153
154
155/** @def RTPATH_SLASH_STR
156 * The preferred slash character as a string, handy for concatenations
157 * with other strings.
158 *
159 * @remark IPRT will always accept unix slashes. So, normally you would
160 * never have to use this define.
161 */
162#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
163# define RTPATH_SLASH_STR "\\"
164#elif RTPATH_STYLE == RTPATH_STR_F_STYLE_UNIX
165# define RTPATH_SLASH_STR "/"
166#else
167# error "Unsupported RTPATH_STYLE value."
168#endif
169
170
171/** @def RTPATH_IS_SLASH
172 * Checks if a character is a slash.
173 *
174 * @returns true if it's a slash and false if not.
175 * @returns @param a_ch Char to check.
176 */
177#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
178# define RTPATH_IS_SLASH(a_ch) ( (a_ch) == '\\' || (a_ch) == '/' )
179#elif RTPATH_STYLE == RTPATH_STR_F_STYLE_UNIX
180# define RTPATH_IS_SLASH(a_ch) ( (a_ch) == '/' )
181#else
182# error "Unsupported RTPATH_STYLE value."
183#endif
184
185
186/** @def RTPATH_IS_VOLSEP
187 * Checks if a character marks the end of the volume specification.
188 *
189 * @remark This is sufficient for the drive letter concept on PC.
190 * However it might be insufficient on other platforms
191 * and even on PC a UNC volume spec won't be detected this way.
192 * Use the RTPath@<too be created@>() instead.
193 *
194 * @returns true if it is and false if it isn't.
195 * @returns @param a_ch Char to check.
196 */
197#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
198# define RTPATH_IS_VOLSEP(a_ch) ( (a_ch) == ':' )
199#elif RTPATH_STYLE == RTPATH_STR_F_STYLE_UNIX
200# define RTPATH_IS_VOLSEP(a_ch) (false)
201#else
202# error "Unsupported RTPATH_STYLE value."
203#endif
204
205
206/** @def RTPATH_IS_SEP
207 * Checks if a character is path component separator
208 *
209 * @returns true if it is and false if it isn't.
210 * @returns @param a_ch Char to check.
211 * @
212 */
213#define RTPATH_IS_SEP(a_ch) ( RTPATH_IS_SLASH(a_ch) || RTPATH_IS_VOLSEP(a_ch) )
214
215#if defined(RT_OS_WINDOWS) || defined(DOXYGEN_RUNNING)
216/** @def RTPATH_NT_PASSTHRU_PREFIX
217 * Prefix used to access the NT namespace directly.
218 * This forms an invalid UNC name. */
219# define RTPATH_NT_PASSTHRU_PREFIX "\\\\:iprtnt:\\"
220#endif
221
222/**
223 * Checks if the path exists.
224 *
225 * Symbolic links will all be attempted resolved and broken links means false.
226 *
227 * @returns true if it exists and false if it doesn't.
228 * @param pszPath The path to check.
229 */
230RTDECL(bool) RTPathExists(const char *pszPath);
231
232/**
233 * Checks if the path exists.
234 *
235 * @returns true if it exists and false if it doesn't.
236 * @param pszPath The path to check.
237 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
238 */
239RTDECL(bool) RTPathExistsEx(const char *pszPath, uint32_t fFlags);
240
241/**
242 * Sets the current working directory of the process.
243 *
244 * @returns IPRT status code.
245 * @param pszPath The path to the new working directory.
246 */
247RTDECL(int) RTPathSetCurrent(const char *pszPath);
248
249/**
250 * Gets the current working directory of the process.
251 *
252 * @returns IPRT status code.
253 * @param pszPath Where to store the path.
254 * @param cchPath The size of the buffer pszPath points to.
255 */
256RTDECL(int) RTPathGetCurrent(char *pszPath, size_t cchPath);
257
258/**
259 * Gets the current working directory on the specified drive.
260 *
261 * On systems without drive letters, the root slash will be returned.
262 *
263 * @returns IPRT status code.
264 * @param chDrive The drive we're querying the driver letter on.
265 * @param pszPath Where to store the working directroy path.
266 * @param cbPath The size of the buffer pszPath points to.
267 */
268RTDECL(int) RTPathGetCurrentOnDrive(char chDrive, char *pszPath, size_t cbPath);
269
270/**
271 * Gets the current working drive of the process.
272 *
273 * Normally drive letter and colon will be returned, never trailing a root
274 * slash. If the current directory is on a UNC share, the root of the share
275 * will be returned. On systems without drive letters, an empty string is
276 * returned for consistency.
277 *
278 * @returns IPRT status code.
279 * @param pszPath Where to store the working drive or UNC root.
280 * @param cbPath The size of the buffer pszPath points to.
281 */
282RTDECL(int) RTPathGetCurrentDrive(char *pszPath, size_t cbPath);
283
284/**
285 * Get the real path (no symlinks, no . or .. components), must exist.
286 *
287 * @returns iprt status code.
288 * @param pszPath The path to resolve.
289 * @param pszRealPath Where to store the real path.
290 * @param cchRealPath Size of the buffer.
291 */
292RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, size_t cchRealPath);
293
294/**
295 * Same as RTPathReal only the result is RTStrDup()'ed.
296 *
297 * @returns Pointer to real path. Use RTStrFree() to free this string.
298 * @returns NULL if RTPathReal() or RTStrDup() fails.
299 * @param pszPath The path to resolve.
300 */
301RTDECL(char *) RTPathRealDup(const char *pszPath);
302
303/**
304 * Get the absolute path (starts from root, no . or .. components), doesn't have
305 * to exist.
306 *
307 * Note that this method is designed to never perform actual file system access,
308 * therefore symlinks are not resolved.
309 *
310 * @returns iprt status code.
311 * @param pszPath The path to resolve.
312 * @param pszAbsPath Where to store the absolute path.
313 * @param cbAbsPath Size of the buffer.
314 *
315 * @note Current implementation is buggy and will remove trailing slashes
316 * that would normally specify a directory. Don't depend on this.
317 */
318RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cbAbsPath);
319
320/**
321 * Same as RTPathAbs only the result is RTStrDup()'ed.
322 *
323 * @returns Pointer to the absolute path. Use RTStrFree() to free this string.
324 * @returns NULL if RTPathAbs() or RTStrDup() fails.
325 * @param pszPath The path to resolve.
326 *
327 * @note Current implementation is buggy and will remove trailing slashes
328 * that would normally specify a directory. Don't depend on this.
329 */
330RTDECL(char *) RTPathAbsDup(const char *pszPath);
331
332/**
333 * Get the absolute path (no symlinks, no . or .. components), assuming the
334 * given base path as the current directory.
335 *
336 * The resulting path doesn't have to exist.
337 *
338 * @returns iprt status code.
339 * @param pszBase The base path to act like a current directory.
340 * When NULL, the actual cwd is used (i.e. the call
341 * is equivalent to RTPathAbs(pszPath, ...).
342 * @param pszPath The path to resolve.
343 * @param fFlags One of the RTPATH_STR_F_STYLE_XXX flags combined
344 * with any of the RTPATHABS_F_XXX ones. Most
345 * users will pass RTPATH_STR_F_STYLE_HOST (0).
346 * @param pszAbsPath Where to store the absolute path.
347 * @param pcbAbsPath Hold the size of the buffer when called. The return
348 * value is the string length on success, and the
349 * required (or slightly more in some case) buffer
350 * size, including terminator, on VERR_BUFFER_OVERFLOW
351 * failures.
352 */
353RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, uint32_t fFlags, char *pszAbsPath, size_t *pcbAbsPath);
354
355/** @name RTPATHABS_F_XXX - Flags for RTPathAbsEx.
356 * @note The RTPATH_F_STR_XXX style flags also applies.
357 * @{ */
358/** Treat specified base directory as a root that cannot be ascended beyond. */
359#define RTPATHABS_F_STOP_AT_BASE RT_BIT_32(16)
360/** Treat CWD as a root that cannot be ascended beyond. */
361#define RTPATHABS_F_STOP_AT_CWD RT_BIT_32(17)
362/** Ensure trailing slash in the result. */
363#define RTPATHABS_F_ENSURE_TRAILING_SLASH RT_BIT_32(18)
364/** @} */
365
366/**
367 * Same as RTPathAbsEx only the result is RTStrDup()'ed.
368 *
369 * @returns Pointer to the absolute path. Use RTStrFree() to free this string.
370 * @retval NULL if RTPathAbsEx() or RTStrDup() fails.
371 *
372 * @param pszBase The base path to act like a current directory.
373 * When NULL, the actual cwd is used (i.e. the call
374 * is equivalent to RTPathAbs(pszPath, ...).
375 * @param pszPath The path to resolve.
376 * @param fFlags One of the RTPATH_STR_F_STYLE_XXX flags combined
377 * with any of the RTPATHABS_F_XXX ones. Most
378 * users will pass RTPATH_STR_F_STYLE_HOST (0).
379 */
380RTDECL(char *) RTPathAbsExDup(const char *pszBase, const char *pszPath, uint32_t fFlags);
381
382/**
383 * Strips the filename from a path. Truncates the given string in-place by overwriting the
384 * last path separator character with a null byte in a platform-neutral way.
385 *
386 * @param pszPath Path from which filename should be extracted, will be truncated.
387 * If the string contains no path separator, it will be changed to a "." string.
388 */
389RTDECL(void) RTPathStripFilename(char *pszPath);
390
391/**
392 * Strips the last suffix from a path.
393 *
394 * @param pszPath Path which suffix should be stripped.
395 */
396RTDECL(void) RTPathStripSuffix(char *pszPath);
397
398/**
399 * Strips the trailing slashes of a path name.
400 *
401 * Won't strip root slashes.
402 *
403 * @returns The new length of pszPath.
404 * @param pszPath Path to strip.
405 */
406RTDECL(size_t) RTPathStripTrailingSlash(char *pszPath);
407
408/**
409 * Skips the root specification, if present.
410 *
411 * @return Pointer to the first char after the root specification. This can be
412 * pointing to the terminator, if the path is only a root
413 * specification.
414 * @param pszPath The path to skip ahead in.
415 */
416RTDECL(char *) RTPathSkipRootSpec(const char *pszPath);
417
418/**
419 * Ensures that the path has a trailing path separator such that file names can
420 * be appended without further work.
421 *
422 * This can be helpful when preparing for efficiently combining a directory path
423 * with the filenames returned by RTDirRead. The return value gives you the
424 * position at which you copy the RTDIRENTRY::szName to construct a valid path
425 * to it.
426 *
427 * @returns The length of the path, 0 on buffer overflow.
428 * @param pszPath The path.
429 * @param cbPath The length of the path buffer @a pszPath points to.
430 */
431RTDECL(size_t) RTPathEnsureTrailingSeparator(char *pszPath, size_t cbPath);
432
433/**
434 * Same as RTPathEnsureTrailingSeparator but with selectable path style.
435 *
436 * @returns The length of the path, 0 on buffer overflow.
437 * @param pszPath The path.
438 * @param cbPath The length of the path buffer @a pszPath points to.
439 * @param fFlags The path style, RTPATH_STR_F_STYLE_XXX.
440 * @sa RTPathEnsureTrailingSeparator
441 */
442RTDECL(size_t) RTPathEnsureTrailingSeparatorEx(char *pszPath, size_t cbPath, uint32_t fFlags);
443
444/**
445 * Changes all the slashes in the specified path to DOS style.
446 *
447 * Unless @a fForce is set, nothing will be done when on a UNIX flavored system
448 * since paths wont work with DOS style slashes there.
449 *
450 * @returns @a pszPath.
451 * @param pszPath The path to modify.
452 * @param fForce Whether to force the conversion on non-DOS OSes.
453 */
454RTDECL(char *) RTPathChangeToDosSlashes(char *pszPath, bool fForce);
455
456/**
457 * Changes all the slashes in the specified path to unix style.
458 *
459 * Unless @a fForce is set, nothing will be done when on a UNIX flavored system
460 * since paths wont work with DOS style slashes there.
461 *
462 * @returns @a pszPath.
463 * @param pszPath The path to modify.
464 * @param fForce Whether to force the conversion on non-DOS OSes.
465 */
466RTDECL(char *) RTPathChangeToUnixSlashes(char *pszPath, bool fForce);
467
468/**
469 * Purges a string so it can be used as a file according to fFlags.
470 *
471 * Illegal filename characters are replaced by '_'.
472 *
473 * @returns pszString
474 * @param pszString The string to purge.
475 * @param fFlags One of the RTPATH_STR_F_STYLE_XXX flags. Most users
476 * will pass RTPATH_STR_F_STYLE_HOST (0).
477 */
478RTDECL(char *) RTPathPurgeFilename(char *pszString, uint32_t fFlags);
479
480/**
481 * Simple parsing of the a path.
482 *
483 * It figures the length of the directory component, the offset of
484 * the file name and the location of the suffix dot.
485 *
486 * @returns The path length.
487 *
488 * @param pszPath Path to find filename in.
489 * @param pcchDir Where to put the length of the directory component. If
490 * no directory, this will be 0. Optional.
491 * @param poffName Where to store the filename offset.
492 * If empty string or if it's ending with a slash this
493 * will be set to -1. Optional.
494 * @param poffSuff Where to store the suffix offset (the last dot).
495 * If empty string or if it's ending with a slash this
496 * will be set to -1. Optional.
497 */
498RTDECL(size_t) RTPathParseSimple(const char *pszPath, size_t *pcchDir, ssize_t *poffName, ssize_t *poffSuff);
499
500/**
501 * Finds the filename in a path.
502 *
503 * @returns Pointer to filename within pszPath.
504 * @returns NULL if no filename (i.e. empty string or ends with a slash).
505 * @param pszPath Path to find filename in.
506 */
507RTDECL(char *) RTPathFilename(const char *pszPath);
508RTDECL(PRTUTF16) RTPathFilenameUtf16(PCRTUTF16 pwszPath);
509
510/**
511 * Finds the filename in a path, extended version.
512 *
513 * @returns Pointer to filename within pszPath.
514 * @returns NULL if no filename (i.e. empty string or ends with a slash).
515 * @param pszPath Path to find filename in.
516 * @param fFlags RTPATH_STR_F_STYLE_XXX. Other RTPATH_STR_F_XXX flags
517 * will be ignored.
518 */
519RTDECL(char *) RTPathFilenameEx(const char *pszPath, uint32_t fFlags);
520RTDECL(PRTUTF16) RTPathFilenameExUtf16(PCRTUTF16 pwszPath, uint32_t fFlags);
521
522/**
523 * Finds the suffix part of in a path (last dot and onwards).
524 *
525 * @returns Pointer to suffix within pszPath.
526 * @returns NULL if no suffix
527 * @param pszPath Path to find suffix in.
528 *
529 * @remarks IPRT terminology: A suffix includes the dot, the extension starts
530 * after the dot. For instance suffix '.txt' and extension 'txt'.
531 */
532RTDECL(char *) RTPathSuffix(const char *pszPath);
533
534/**
535 * Checks if a path has an extension / suffix.
536 *
537 * @returns true if extension / suffix present.
538 * @returns false if no extension / suffix.
539 * @param pszPath Path to check.
540 */
541RTDECL(bool) RTPathHasSuffix(const char *pszPath);
542/** Same thing, different name. */
543#define RTPathHasExt RTPathHasSuffix
544
545/**
546 * Checks if a path includes more than a filename.
547 *
548 * @returns true if path present.
549 * @returns false if no path.
550 * @param pszPath Path to check.
551 */
552RTDECL(bool) RTPathHasPath(const char *pszPath);
553/** Misspelled, don't use. */
554#define RTPathHavePath RTPathHasPath
555
556/**
557 * Checks if the path starts with a root specifier or not.
558 *
559 * @returns @c true if it starts with root, @c false if not.
560 *
561 * @param pszPath Path to check.
562 */
563RTDECL(bool) RTPathStartsWithRoot(const char *pszPath);
564
565/**
566 * Determins the length of the parent part of the given path.
567 *
568 * @returns The length of the parent section of the path, including the final
569 * path separator. Returns 0 if only filename or empty path.
570 * @param pszPath The path to evaluate.
571 *
572 * @note Will stop at the server for UNC paths, so given "//server/share/"
573 * the parent length will be 9.
574 */
575RTDECL(size_t) RTPathParentLength(const char *pszPath);
576
577/**
578 * Determins the length of the parent part of the given path, extended variant.
579 *
580 * @returns The length of the parent section of the path, including the final
581 * path separator. Returns 0 if only filename or empty path.
582 * @param pszPath The path to evaluate.
583 * @param fFlags RTPATH_STR_F_STYLE_XXX and RTPATH_STR_F_NO_START.
584 * Asserts and ignores RTPATH_STR_F_NO_END.
585 *
586 * @note Will stop at the server for UNC paths, so given "//server/share/"
587 * the parent length will be 9.
588 */
589RTDECL(size_t) RTPathParentLengthEx(const char *pszPath, uint32_t fFlags);
590
591/**
592 * Counts the components in the specified path.
593 *
594 * An empty string has zero components. A lone root slash is considered have
595 * one. The paths "/init" and "/bin/" are considered having two components. An
596 * UNC share specifier like "\\myserver\share" will be considered as one single
597 * component.
598 *
599 * @returns The number of path components.
600 * @param pszPath The path to parse.
601 */
602RTDECL(size_t) RTPathCountComponents(const char *pszPath);
603
604/**
605 * Copies the specified number of path components from @a pszSrc and into @a
606 * pszDst.
607 *
608 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW. In the latter case the buffer
609 * is not touched.
610 *
611 * @param pszDst The destination buffer.
612 * @param cbDst The size of the destination buffer.
613 * @param pszSrc The source path.
614 * @param cComponents The number of components to copy from @a pszSrc.
615 */
616RTDECL(int) RTPathCopyComponents(char *pszDst, size_t cbDst, const char *pszSrc, size_t cComponents);
617
618/** @name Path properties returned by RTPathParse and RTPathSplit.
619 * @{ */
620
621/** Indicates that there is a filename.
622 * If not set, either a lone root spec was given (RTPATH_PROP_UNC,
623 * RTPATH_PROP_ROOT_SLASH, or RTPATH_PROP_VOLUME) or the final component had a
624 * trailing slash (RTPATH_PROP_DIR_SLASH). */
625#define RTPATH_PROP_FILENAME UINT16_C(0x0001)
626/** Indicates that a directory was specified using a trailing slash.
627 * @note This is not set for lone root specifications (RTPATH_PROP_UNC,
628 * RTPATH_PROP_ROOT_SLASH, or RTPATH_PROP_VOLUME).
629 * @note The slash is not counted into the last component. However, it is
630 * counted into cchPath. */
631#define RTPATH_PROP_DIR_SLASH UINT16_C(0x0002)
632
633/** The filename has a suffix (extension). */
634#define RTPATH_PROP_SUFFIX UINT16_C(0x0004)
635/** Indicates that this is an UNC path (Windows and OS/2 only).
636 *
637 * UNC = Universal Naming Convention. It is on the form '//Computer/',
638 * '//Namespace/', '//ComputerName/Resource' and '//Namespace/Resource'.
639 * RTPathParse, RTPathSplit and friends does not consider the 'Resource' as
640 * part of the UNC root specifier. Thus the root specs for the above examples
641 * would be '//ComputerName/' or '//Namespace/'.
642 *
643 * Please note that '//something' is not a UNC path, there must be a slash
644 * following the computer or namespace.
645 */
646#define RTPATH_PROP_UNC UINT16_C(0x0010)
647/** A root slash was specified (unix style root).
648 * (While the path must relative if not set, this being set doesn't make it
649 * absolute.)
650 *
651 * This will be set in the following examples: '/', '/bin', 'C:/', 'C:/Windows',
652 * '//./', '//./PhysicalDisk0', '//example.org/', and '//example.org/share'.
653 *
654 * It will not be set for the following examples: '.', 'bin/ls', 'C:', and
655 * 'C:Windows'.
656 */
657#define RTPATH_PROP_ROOT_SLASH UINT16_C(0x0020)
658/** A volume is specified (Windows, DOS and OS/2).
659 * For examples: 'C:', 'C:/', and 'A:/AutoExec.bat'. */
660#define RTPATH_PROP_VOLUME UINT16_C(0x0040)
661/** The path is absolute, i.e. has a root specifier (root-slash,
662 * volume or UNC) and contains no winding '..' bits, though it may contain
663 * unnecessary slashes (RTPATH_PROP_EXTRA_SLASHES) and '.' components
664 * (RTPATH_PROP_DOT_REFS).
665 *
666 * On systems without volumes and UNC (unix style) it will be set for '/',
667 * '/bin/ls', and '/bin//./ls', but not for 'bin/ls', /bin/../usr/bin/env',
668 * '/./bin/ls' or '/.'.
669 *
670 * On systems with volumes, it will be set for 'C:/', C:/Windows', and
671 * 'C:/./Windows//', but not for 'C:', 'C:Windows', or 'C:/Windows/../boot.ini'.
672 *
673 * On systems with UNC paths, it will be set for '//localhost/',
674 * '//localhost/C$', '//localhost/C$/Windows/System32', '//localhost/.', and
675 * '//localhost/C$//./AutoExec.bat', but not for
676 * '//localhost/C$/Windows/../AutoExec.bat'.
677 *
678 * @note For the RTPathAbs definition, this flag needs to be set while both
679 * RTPATH_PROP_EXTRA_SLASHES and RTPATH_PROP_DOT_REFS must be cleared.
680 */
681#define RTPATH_PROP_ABSOLUTE UINT16_C(0x0100)
682/** Relative path. Inverse of RTPATH_PROP_ABSOLUTE. */
683#define RTPATH_PROP_RELATIVE UINT16_C(0x0200)
684/** The path contains unnecessary slashes. Meaning, that if */
685#define RTPATH_PROP_EXTRA_SLASHES UINT16_C(0x0400)
686/** The path contains references to the special '.' (dot) directory link. */
687#define RTPATH_PROP_DOT_REFS UINT16_C(0x0800)
688/** The path contains references to the special '..' (dot) directory link.
689 * RTPATH_PROP_RELATIVE will always be set together with this. */
690#define RTPATH_PROP_DOTDOT_REFS UINT16_C(0x1000)
691/** Special UNC root.
692 * The share name is not sacred when this is set. */
693#define RTPATH_PROP_SPECIAL_UNC UINT16_C(0x2000)
694
695
696/** Macro to determin whether to insert a slash after the first component when
697 * joining it with something else.
698 * (All other components in a split or parsed path requies slashes added.) */
699#define RTPATH_PROP_FIRST_NEEDS_NO_SLASH(a_fProps) \
700 RT_BOOL( (a_fProps) & (RTPATH_PROP_ROOT_SLASH | RTPATH_PROP_VOLUME | RTPATH_PROP_UNC) )
701
702/** Macro to determin whether there is a root specification of any kind
703 * (unix, volumes, unc). */
704#define RTPATH_PROP_HAS_ROOT_SPEC(a_fProps) \
705 RT_BOOL( (a_fProps) & (RTPATH_PROP_ROOT_SLASH | RTPATH_PROP_VOLUME | RTPATH_PROP_UNC) )
706
707/** @} */
708
709
710/**
711 * Parsed path.
712 *
713 * The first component is the root, volume or UNC specifier, if present. Use
714 * RTPATH_PROP_HAS_ROOT_SPEC() on RTPATHPARSED::fProps to determine its
715 * presence.
716 *
717 * Other than the root component, no component will include directory separators
718 * (slashes).
719 */
720typedef struct RTPATHPARSED
721{
722 /** Number of path components.
723 * This will always be set on VERR_BUFFER_OVERFLOW returns from RTPathParsed
724 * so the caller can calculate the required buffer size. */
725 uint16_t cComps;
726 /** Path property flags, RTPATH_PROP_XXX */
727 uint16_t fProps;
728 /** On success this is the length of the described path, i.e. sum of all
729 * component lengths and necessary separators.
730 * Do NOT use this to index in the source path in case it contains
731 * unnecessary slashes that RTPathParsed has ignored here. */
732 uint16_t cchPath;
733 /** Reserved for future use. */
734 uint16_t u16Reserved;
735 /** The offset of the filename suffix, offset of the NUL char if none. */
736 uint16_t offSuffix;
737 /** The length of the suffix. */
738 uint16_t cchSuffix;
739 /** Array of component descriptors (variable size).
740 * @note Don't try figure the end of the input path by adding up off and cch
741 * of the last component. If RTPATH_PROP_DIR_SLASH is set, there may
742 * be one or more trailing slashes that are unaccounted for! */
743 struct
744 {
745 /** The offset of the component. */
746 uint16_t off;
747 /** The length of the component. */
748 uint16_t cch;
749 } aComps[RT_FLEXIBLE_ARRAY];
750} RTPATHPARSED;
751/** Pointer to to a parsed path result. */
752typedef RTPATHPARSED *PRTPATHPARSED;
753/** Pointer to to a const parsed path result. */
754typedef RTPATHPARSED *PCRTPATHPARSED;
755
756/** Stupid hack for MSC and flexible arrays. */
757#define RTPATHPARSED_MIN_SIZE (sizeof(uint16_t) * (6 + 4))
758
759
760/**
761 * Parses the path.
762 *
763 * @returns IPRT status code.
764 * @retval VERR_INVALID_POINTER if pParsed or pszPath is an invalid pointer.
765 * @retval VERR_INVALID_PARAMETER if cbOutput is less than the RTPATHPARSED
766 * strucuture. No output. (asserted)
767 * @retval VERR_BUFFER_OVERFLOW there are more components in the path than
768 * there is space in aComps. The required amount of space can be
769 * determined from the pParsed->cComps:
770 * @code
771 * RT_OFFSETOF(RTPATHPARSED, aComps[pParsed->cComps])
772 * @endcode
773 * @retval VERR_PATH_ZERO_LENGTH if the path is empty.
774 *
775 * @param pszPath The path to parse.
776 * @param pParsed Where to store the details of the parsed path.
777 * @param cbParsed The size of the buffer. Must be at least the
778 * size of RTPATHPARSED.
779 * @param fFlags Combination of RTPATH_STR_F_XXX flags.
780 * Most users will pass 0.
781 * @sa RTPathSplit, RTPathSplitA.
782 */
783RTDECL(int) RTPathParse(const char *pszPath, PRTPATHPARSED pParsed, size_t cbParsed, uint32_t fFlags);
784
785/**
786 * Reassembles a path parsed by RTPathParse.
787 *
788 * This will be more useful as more APIs manipulating the RTPATHPARSED output
789 * are added.
790 *
791 * @returns IPRT status code.
792 * @retval VERR_BUFFER_OVERFLOW if the destination buffer is too small.
793 * The necessary length is @a pParsed->cchPath + 1 (updated).
794 *
795 * @param pszSrcPath The source path.
796 * @param pParsed The parser output for @a pszSrcPath. Caller may
797 * eliminate elements by setting their length to
798 * zero. The cchPath member is updated.
799 * @param fFlags Combination of RTPATH_STR_F_STYLE_XXX.
800 * Most users will pass 0.
801 * @param pszDstPath Pointer to the buffer where the path is to be
802 * reassembled.
803 * @param cbDstPath The size of the output buffer.
804 */
805RTDECL(int) RTPathParsedReassemble(const char *pszSrcPath, PRTPATHPARSED pParsed, uint32_t fFlags,
806 char *pszDstPath, size_t cbDstPath);
807
808
809/**
810 * Output buffer for RTPathSplit and RTPathSplitA.
811 */
812typedef struct RTPATHSPLIT
813{
814 /** Number of path components.
815 * This will always be set on VERR_BUFFER_OVERFLOW returns from RTPathParsed
816 * so the caller can calculate the required buffer size. */
817 uint16_t cComps;
818 /** Path property flags, RTPATH_PROP_XXX */
819 uint16_t fProps;
820 /** On success this is the length of the described path, i.e. sum of all
821 * component lengths and necessary separators.
822 * Do NOT use this to index in the source path in case it contains
823 * unnecessary slashes that RTPathSplit has ignored here. */
824 uint16_t cchPath;
825 /** Reserved (internal use). */
826 uint16_t u16Reserved;
827 /** The amount of memory used (on success) or required (on
828 * VERR_BUFFER_OVERFLOW) of this structure and it's strings. */
829 uint32_t cbNeeded;
830 /** Pointer to the filename suffix (the dot), if any. Points to the NUL
831 * character of the last component if none or if RTPATH_PROP_DIR_SLASH is
832 * present. */
833 const char *pszSuffix;
834 /** Array of component strings (variable size). */
835 char *apszComps[RT_FLEXIBLE_ARRAY];
836} RTPATHSPLIT;
837/** Pointer to a split path buffer. */
838typedef RTPATHSPLIT *PRTPATHSPLIT;
839/** Pointer to a const split path buffer. */
840typedef RTPATHSPLIT const *PCRTPATHSPLIT;
841
842/**
843 * Splits the path into individual component strings, carved from user supplied
844 * the given buffer block.
845 *
846 * @returns IPRT status code.
847 * @retval VERR_INVALID_POINTER if pParsed or pszPath is an invalid pointer.
848 * @retval VERR_INVALID_PARAMETER if cbOutput is less than the RTPATHSPLIT
849 * strucuture. No output. (asserted)
850 * @retval VERR_BUFFER_OVERFLOW there are more components in the path than
851 * there is space in aComps. The required amount of space can be
852 * determined from the pParsed->cComps:
853 * @code
854 * RT_OFFSETOF(RTPATHPARSED, aComps[pParsed->cComps])
855 * @endcode
856 * @retval VERR_PATH_ZERO_LENGTH if the path is empty.
857 * @retval VERR_FILENAME_TOO_LONG if the filename is too long (close to 64 KB).
858 *
859 * @param pszPath The path to parse.
860 * @param pSplit Where to store the details of the parsed path.
861 * @param cbSplit The size of the buffer pointed to by @a pSplit
862 * (variable sized array at the end). Must be at
863 * least the size of RTPATHSPLIT.
864 * @param fFlags Combination of RTPATH_STR_F_XXX flags.
865 * Most users will pass 0.
866 *
867 * @sa RTPathSplitA, RTPathParse.
868 */
869RTDECL(int) RTPathSplit(const char *pszPath, PRTPATHSPLIT pSplit, size_t cbSplit, uint32_t fFlags);
870
871/**
872 * Splits the path into individual component strings, allocating the buffer on
873 * the default thread heap.
874 *
875 * @returns IPRT status code.
876 * @retval VERR_INVALID_POINTER if pParsed or pszPath is an invalid pointer.
877 * @retval VERR_PATH_ZERO_LENGTH if the path is empty.
878 *
879 * @param pszPath The path to parse.
880 * @param ppSplit Where to return the pointer to the output on
881 * success. This must be freed by calling
882 * RTPathSplitFree().
883 * @param fFlags Combination of RTPATH_STR_F_XXX flags.
884 * Most users will pass 0.
885 * @sa RTPathSplitFree, RTPathSplit, RTPathParse.
886 */
887#define RTPathSplitA(pszPath, ppSplit, fFlags) RTPathSplitATag(pszPath, ppSplit, fFlags, RTPATH_TAG)
888
889/**
890 * Splits the path into individual component strings, allocating the buffer on
891 * the default thread heap.
892 *
893 * @returns IPRT status code.
894 * @retval VERR_INVALID_POINTER if pParsed or pszPath is an invalid pointer.
895 * @retval VERR_PATH_ZERO_LENGTH if the path is empty.
896 *
897 * @param pszPath The path to parse.
898 * @param ppSplit Where to return the pointer to the output on
899 * success. This must be freed by calling
900 * RTPathSplitFree().
901 * @param fFlags Combination of RTPATH_STR_F_XXX flags.
902 * Most users will pass 0.
903 * @param pszTag Allocation tag used for statistics and such.
904 * @sa RTPathSplitFree, RTPathSplit, RTPathParse.
905 */
906RTDECL(int) RTPathSplitATag(const char *pszPath, PRTPATHSPLIT *ppSplit, uint32_t fFlags, const char *pszTag);
907
908/**
909 * Frees buffer returned by RTPathSplitA.
910 *
911 * @param pSplit What RTPathSplitA returned.
912 * @sa RTPathSplitA
913 */
914RTDECL(void) RTPathSplitFree(PRTPATHSPLIT pSplit);
915
916/**
917 * Reassembles a path parsed by RTPathSplit.
918 *
919 * This will be more useful as more APIs manipulating the RTPATHSPLIT output are
920 * added.
921 *
922 * @returns IPRT status code.
923 * @retval VERR_BUFFER_OVERFLOW if @a cbDstPath is less than or equal to
924 * RTPATHSPLIT::cchPath.
925 *
926 * @param pSplit A split path (see RTPathSplit, RTPathSplitA).
927 * @param fFlags Combination of RTPATH_STR_F_STYLE_XXX.
928 * Most users will pass 0.
929 * @param pszDstPath Pointer to the buffer where the path is to be
930 * reassembled.
931 * @param cbDstPath The size of the output buffer.
932 */
933RTDECL(int) RTPathSplitReassemble(PRTPATHSPLIT pSplit, uint32_t fFlags, char *pszDstPath, size_t cbDstPath);
934
935/**
936 * Checks if the two paths leads to the file system object.
937 *
938 * If the objects exist, we'll query attributes for them. If that's not
939 * conclusive (some OSes) or one of them doesn't exist, we'll use a combination
940 * of RTPathAbs and RTPathCompare to determine the result.
941 *
942 * @returns true, false, or VERR_FILENAME_TOO_LONG.
943 * @param pszPath1 The first path.
944 * @param pszPath2 The seoncd path.
945 */
946RTDECL(int) RTPathIsSame(const char *pszPath1, const char *pszPath2);
947
948
949/**
950 * Compares two paths.
951 *
952 * The comparison takes platform-dependent details into account,
953 * such as:
954 * <ul>
955 * <li>On DOS-like platforms, both separator chars (|\| and |/|) are considered
956 * to be equal.
957 * <li>On platforms with case-insensitive file systems, mismatching characters
958 * are uppercased and compared again.
959 * </ul>
960 *
961 * @returns @< 0 if the first path less than the second path.
962 * @returns 0 if the first path identical to the second path.
963 * @returns @> 0 if the first path greater than the second path.
964 *
965 * @param pszPath1 Path to compare (must be an absolute path).
966 * @param pszPath2 Path to compare (must be an absolute path).
967 *
968 * @remarks File system details are currently ignored. This means that you won't
969 * get case-insensitive compares on unix systems when a path goes into a
970 * case-insensitive filesystem like FAT, HPFS, HFS, NTFS, JFS, or
971 * similar. For NT, OS/2 and similar you'll won't get case-sensitive
972 * compares on a case-sensitive file system.
973 */
974RTDECL(int) RTPathCompare(const char *pszPath1, const char *pszPath2);
975
976/**
977 * Checks if a path starts with the given parent path.
978 *
979 * This means that either the path and the parent path matches completely, or
980 * that the path is to some file or directory residing in the tree given by the
981 * parent directory.
982 *
983 * The path comparison takes platform-dependent details into account,
984 * see RTPathCompare() for details.
985 *
986 * @returns |true| when \a pszPath starts with \a pszParentPath (or when they
987 * are identical), or |false| otherwise.
988 *
989 * @param pszPath Path to check, must be an absolute path.
990 * @param pszParentPath Parent path, must be an absolute path.
991 * No trailing directory slash!
992 *
993 * @remarks This API doesn't currently handle root directory compares in a
994 * manner consistent with the other APIs. RTPathStartsWith(pszSomePath,
995 * "/") will not work if pszSomePath isn't "/".
996 */
997RTDECL(bool) RTPathStartsWith(const char *pszPath, const char *pszParentPath);
998
999/**
1000 * Appends one partial path to another.
1001 *
1002 * The main purpose of this function is to deal correctly with the slashes when
1003 * concatenating the two partial paths.
1004 *
1005 * @retval VINF_SUCCESS on success.
1006 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within
1007 * cbPathDst bytes. No changes has been made.
1008 * @retval VERR_INVALID_PARAMETER if the string pointed to by pszPath is longer
1009 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
1010 *
1011 * @param pszPath The path to append pszAppend to. This serves as both
1012 * input and output. This can be empty, in which case
1013 * pszAppend is just copied over.
1014 * @param cbPathDst The size of the buffer pszPath points to, terminator
1015 * included. This should NOT be strlen(pszPath).
1016 * @param pszAppend The partial path to append to pszPath. This can be
1017 * NULL, in which case nothing is done.
1018 *
1019 * @remarks See the RTPathAppendEx remarks.
1020 */
1021RTDECL(int) RTPathAppend(char *pszPath, size_t cbPathDst, const char *pszAppend);
1022
1023/**
1024 * Appends one partial path to another.
1025 *
1026 * The main purpose of this function is to deal correctly with the slashes when
1027 * concatenating the two partial paths.
1028 *
1029 * @retval VINF_SUCCESS on success.
1030 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within
1031 * cbPathDst bytes. No changes has been made.
1032 * @retval VERR_INVALID_PARAMETER if the string pointed to by pszPath is longer
1033 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
1034 *
1035 * @param pszPath The path to append pszAppend to. This serves as both
1036 * input and output. This can be empty, in which case
1037 * pszAppend is just copied over.
1038 * @param cbPathDst The size of the buffer pszPath points to, terminator
1039 * included. This should NOT be strlen(pszPath).
1040 * @param pszAppend The partial path to append to pszPath. This can be
1041 * NULL, in which case nothing is done.
1042 * @param cchAppendMax The maximum number or characters to take from @a
1043 * pszAppend. RTSTR_MAX is fine.
1044 *
1045 * @remarks On OS/2, Window and similar systems, concatenating a drive letter
1046 * specifier with a slash prefixed path will result in an absolute
1047 * path. Meaning, RTPathAppend(strcpy(szBuf, "C:"), sizeof(szBuf),
1048 * "/bar") will result in "C:/bar". (This follows directly from the
1049 * behavior when pszPath is empty.)
1050 *
1051 * On the other hand, when joining a drive letter specifier with a
1052 * partial path that does not start with a slash, the result is not an
1053 * absolute path. Meaning, RTPathAppend(strcpy(szBuf, "C:"),
1054 * sizeof(szBuf), "bar") will result in "C:bar".
1055 */
1056RTDECL(int) RTPathAppendEx(char *pszPath, size_t cbPathDst, const char *pszAppend, size_t cchAppendMax);
1057
1058/**
1059 * Like RTPathAppend, but with the base path as a separate argument instead of
1060 * in the path buffer.
1061 *
1062 * @retval VINF_SUCCESS on success.
1063 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within
1064 * cbPathDst bytes.
1065 * @retval VERR_INVALID_PARAMETER if the string pointed to by pszPath is longer
1066 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
1067 *
1068 * @param pszPathDst Where to store the resulting path.
1069 * @param cbPathDst The size of the buffer pszPathDst points to,
1070 * terminator included.
1071 * @param pszPathSrc The base path to copy into @a pszPathDst before
1072 * appending @a pszAppend.
1073 * @param pszAppend The partial path to append to pszPathSrc. This can
1074 * be NULL, in which case nothing is done.
1075 *
1076 */
1077RTDECL(int) RTPathJoin(char *pszPathDst, size_t cbPathDst, const char *pszPathSrc,
1078 const char *pszAppend);
1079
1080/**
1081 * Same as RTPathJoin, except that the output buffer is allocated.
1082 *
1083 * @returns Buffer containing the joined up path, call RTStrFree to free. NULL
1084 * on allocation failure.
1085 * @param pszPathSrc The base path to copy into @a pszPathDst before
1086 * appending @a pszAppend.
1087 * @param pszAppend The partial path to append to pszPathSrc. This can
1088 * be NULL, in which case nothing is done.
1089 *
1090 */
1091RTDECL(char *) RTPathJoinA(const char *pszPathSrc, const char *pszAppend);
1092
1093/**
1094 * Extended version of RTPathJoin, both inputs can be specified as substrings.
1095 *
1096 * @retval VINF_SUCCESS on success.
1097 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within
1098 * cbPathDst bytes.
1099 * @retval VERR_INVALID_PARAMETER if the string pointed to by pszPath is longer
1100 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
1101 *
1102 * @param pszPathDst Where to store the resulting path.
1103 * @param cbPathDst The size of the buffer pszPathDst points to,
1104 * terminator included.
1105 * @param pszPathSrc The base path to copy into @a pszPathDst before
1106 * appending @a pszAppend.
1107 * @param cchPathSrcMax The maximum number of bytes to copy from @a
1108 * pszPathSrc. RTSTR_MAX is find.
1109 * @param pszAppend The partial path to append to pszPathSrc. This can
1110 * be NULL, in which case nothing is done.
1111 * @param cchAppendMax The maximum number of bytes to copy from @a
1112 * pszAppend. RTSTR_MAX is find.
1113 *
1114 */
1115RTDECL(int) RTPathJoinEx(char *pszPathDst, size_t cbPathDst,
1116 const char *pszPathSrc, size_t cchPathSrcMax,
1117 const char *pszAppend, size_t cchAppendMax);
1118
1119/**
1120 * Callback for RTPathTraverseList that's called for each element.
1121 *
1122 * @returns IPRT style status code. Return VERR_TRY_AGAIN to continue, any other
1123 * value will abort the traversing and be returned to the caller.
1124 *
1125 * @param pchPath Pointer to the start of the current path. This is
1126 * not null terminated.
1127 * @param cchPath The length of the path.
1128 * @param pvUser1 The first user parameter.
1129 * @param pvUser2 The second user parameter.
1130 */
1131typedef DECLCALLBACK(int) FNRTPATHTRAVERSER(char const *pchPath, size_t cchPath, void *pvUser1, void *pvUser2);
1132/** Pointer to a FNRTPATHTRAVERSER. */
1133typedef FNRTPATHTRAVERSER *PFNRTPATHTRAVERSER;
1134
1135/**
1136 * Traverses a string that can contain multiple paths separated by a special
1137 * character.
1138 *
1139 * @returns IPRT style status code from the callback or VERR_END_OF_STRING if
1140 * the callback returned VERR_TRY_AGAIN for all paths in the string.
1141 *
1142 * @param pszPathList The string to traverse.
1143 * @param chSep The separator character. Using the null terminator
1144 * is fine, but the result will simply be that there
1145 * will only be one callback for the entire string
1146 * (save any leading white space).
1147 * @param pfnCallback The callback.
1148 * @param pvUser1 First user argument for the callback.
1149 * @param pvUser2 Second user argument for the callback.
1150 */
1151RTDECL(int) RTPathTraverseList(const char *pszPathList, char chSep, PFNRTPATHTRAVERSER pfnCallback, void *pvUser1, void *pvUser2);
1152
1153
1154/**
1155 * Calculate a relative path between the two given paths.
1156 *
1157 * @returns IPRT status code.
1158 * @retval VINF_SUCCESS on success.
1159 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within
1160 * cbPathDst bytes.
1161 * @retval VERR_NOT_SUPPORTED if both paths start with different volume specifiers.
1162 * @param pszPathDst Where to store the resulting path.
1163 * @param cbPathDst The size of the buffer pszPathDst points to,
1164 * terminator included.
1165 * @param pszPathFrom The path to start from creating the relative path.
1166 * @param fFromFile Whether @a pszPathFrom is a file and we should work
1167 * relative to it's parent directory (@c true), or if
1168 * we should assume @a pszPathFrom is a directory and
1169 * work relative to it.
1170 * @param pszPathTo The path to reach with the created relative path.
1171 */
1172RTDECL(int) RTPathCalcRelative(char *pszPathDst, size_t cbPathDst, const char *pszPathFrom, bool fFromFile, const char *pszPathTo);
1173
1174#ifdef IN_RING3
1175
1176/**
1177 * Gets the path to the directory containing the executable.
1178 *
1179 * @returns iprt status code.
1180 * @param pszPath Buffer where to store the path.
1181 * @param cchPath Buffer size in bytes.
1182 */
1183RTDECL(int) RTPathExecDir(char *pszPath, size_t cchPath);
1184
1185/**
1186 * Gets the user home directory.
1187 *
1188 * @returns iprt status code.
1189 * @param pszPath Buffer where to store the path.
1190 * @param cchPath Buffer size in bytes.
1191 */
1192RTDECL(int) RTPathUserHome(char *pszPath, size_t cchPath);
1193
1194/**
1195 * Gets the user documents directory.
1196 *
1197 * The returned path isn't guaranteed to exist.
1198 *
1199 * @returns iprt status code.
1200 * @param pszPath Buffer where to store the path.
1201 * @param cchPath Buffer size in bytes.
1202 */
1203RTDECL(int) RTPathUserDocuments(char *pszPath, size_t cchPath);
1204
1205/**
1206 * Gets the directory of shared libraries.
1207 *
1208 * This is not the same as RTPathAppPrivateArch() as Linux depends all shared
1209 * libraries in a common global directory where ld.so can find them.
1210 *
1211 * Linux: /usr/lib
1212 * Solaris: /opt/@<application@>/@<arch>@ or something
1213 * Windows: @<program files directory@>/@<application@>
1214 * Old path: same as RTPathExecDir()
1215 *
1216 * @returns iprt status code.
1217 * @param pszPath Buffer where to store the path.
1218 * @param cchPath Buffer size in bytes.
1219 */
1220RTDECL(int) RTPathSharedLibs(char *pszPath, size_t cchPath);
1221
1222/**
1223 * Gets the directory for architecture-independent application data, for
1224 * example NLS files, module sources, ...
1225 *
1226 * Linux: /usr/shared/@<application@>
1227 * Solaris: /opt/@<application@>
1228 * Windows: @<program files directory@>/@<application@>
1229 * Old path: same as RTPathExecDir()
1230 *
1231 * @returns iprt status code.
1232 * @param pszPath Buffer where to store the path.
1233 * @param cchPath Buffer size in bytes.
1234 */
1235RTDECL(int) RTPathAppPrivateNoArch(char *pszPath, size_t cchPath);
1236
1237/**
1238 * Gets the directory for architecture-dependent application data, for
1239 * example modules which can be loaded at runtime.
1240 *
1241 * Linux: /usr/lib/@<application@>
1242 * Solaris: /opt/@<application@>/@<arch>@ or something
1243 * Windows: @<program files directory@>/@<application@>
1244 * Old path: same as RTPathExecDir()
1245 *
1246 * @returns iprt status code.
1247 * @param pszPath Buffer where to store the path.
1248 * @param cchPath Buffer size in bytes.
1249 */
1250RTDECL(int) RTPathAppPrivateArch(char *pszPath, size_t cchPath);
1251
1252/**
1253 * Gets the toplevel directory for architecture-dependent application data.
1254 *
1255 * This differs from RTPathAppPrivateArch on Solaris only where it will work
1256 * around the /opt/@<application@>/amd64 and /opt/@<application@>/i386 multi
1257 * architecture installation style.
1258 *
1259 * Linux: /usr/lib/@<application@>
1260 * Solaris: /opt/@<application@>
1261 * Windows: @<program files directory@>/@<application@>
1262 * Old path: same as RTPathExecDir()
1263 *
1264 * @returns iprt status code.
1265 * @param pszPath Buffer where to store the path.
1266 * @param cchPath Buffer size in bytes.
1267 */
1268RTDECL(int) RTPathAppPrivateArchTop(char *pszPath, size_t cchPath);
1269
1270/**
1271 * Gets the directory for documentation.
1272 *
1273 * Linux: /usr/share/doc/@<application@>
1274 * Solaris: /opt/@<application@>
1275 * Windows: @<program files directory@>/@<application@>
1276 * Old path: same as RTPathExecDir()
1277 *
1278 * @returns iprt status code.
1279 * @param pszPath Buffer where to store the path.
1280 * @param cchPath Buffer size in bytes.
1281 */
1282RTDECL(int) RTPathAppDocs(char *pszPath, size_t cchPath);
1283
1284/**
1285 * Gets the temporary directory path.
1286 *
1287 * @returns iprt status code.
1288 * @param pszPath Buffer where to store the path.
1289 * @param cchPath Buffer size in bytes.
1290 */
1291RTDECL(int) RTPathTemp(char *pszPath, size_t cchPath);
1292
1293
1294/**
1295 * RTPathGlobl result entry.
1296 */
1297typedef struct RTPATHGLOBENTRY
1298{
1299 /** List entry. */
1300 struct RTPATHGLOBENTRY *pNext;
1301 /** RTDIRENTRYTYPE value. */
1302 uint8_t uType;
1303 /** Unused explicit padding. */
1304 uint8_t bUnused;
1305 /** The length of the path. */
1306 uint16_t cchPath;
1307 /** The path to the file (variable length). */
1308 char szPath[1];
1309} RTPATHGLOBENTRY;
1310/** Pointer to a GLOB result entry. */
1311typedef RTPATHGLOBENTRY *PRTPATHGLOBENTRY;
1312/** Pointer to a const GLOB result entry. */
1313typedef RTPATHGLOBENTRY const *PCRTPATHGLOBENTRY;
1314/** Pointer to a GLOB result entry pointer. */
1315typedef PCRTPATHGLOBENTRY *PPCRTPATHGLOBENTRY;
1316
1317/**
1318 * Performs wildcard expansion on a path pattern.
1319 *
1320 * @returns IPRT status code.
1321 *
1322 * @param pszPattern The pattern to expand.
1323 * @param fFlags RTPATHGLOB_F_XXX.
1324 * @param ppHead Where to return the head of the result list. This
1325 * is always set to NULL on failure.
1326 * @param pcResults Where to return the number of the result. Optional.
1327 */
1328RTDECL(int) RTPathGlob(const char *pszPattern, uint32_t fFlags, PPCRTPATHGLOBENTRY ppHead, uint32_t *pcResults);
1329
1330/** @name RTPATHGLOB_F_XXX - RTPathGlob flags
1331 * @{ */
1332/** Case insensitive. */
1333#define RTPATHGLOB_F_IGNORE_CASE RT_BIT_32(0)
1334/** Do not expand \${EnvOrSpecialVariable} in the pattern. */
1335#define RTPATHGLOB_F_NO_VARIABLES RT_BIT_32(1)
1336/** Do not interpret a leading tilde as a home directory reference. */
1337#define RTPATHGLOB_F_NO_TILDE RT_BIT_32(2)
1338/** Only return the first match. */
1339#define RTPATHGLOB_F_FIRST_ONLY RT_BIT_32(3)
1340/** Only match directories (implied if pattern ends with slash). */
1341#define RTPATHGLOB_F_ONLY_DIRS RT_BIT_32(4)
1342/** Do not match directories. (Can't be used with RTPATHGLOB_F_ONLY_DIRS or
1343 * patterns containing a trailing slash.) */
1344#define RTPATHGLOB_F_NO_DIRS RT_BIT_32(5)
1345/** Disables the '**' wildcard pattern for matching zero or more subdirs. */
1346#define RTPATHGLOB_F_NO_STARSTAR RT_BIT_32(6)
1347/** Mask of valid flags. */
1348#define RTPATHGLOB_F_MASK UINT32_C(0x0000007f)
1349/** @} */
1350
1351/**
1352 * Frees the results produced by RTPathGlob.
1353 *
1354 * @param pHead What RTPathGlob returned. NULL ignored.
1355 */
1356RTDECL(void) RTPathGlobFree(PCRTPATHGLOBENTRY pHead);
1357
1358
1359/**
1360 * Query information about a file system object.
1361 *
1362 * This API will resolve NOT symbolic links in the last component (just like
1363 * unix lstat()).
1364 *
1365 * @returns IPRT status code.
1366 * @retval VINF_SUCCESS if the object exists, information returned.
1367 * @retval VERR_PATH_NOT_FOUND if any but the last component in the specified
1368 * path was not found or was not a directory.
1369 * @retval VERR_FILE_NOT_FOUND if the object does not exist (but path to the
1370 * parent directory exists).
1371 *
1372 * @param pszPath Path to the file system object.
1373 * @param pObjInfo Object information structure to be filled on successful
1374 * return.
1375 * @param enmAdditionalAttribs
1376 * Which set of additional attributes to request.
1377 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
1378 */
1379RTR3DECL(int) RTPathQueryInfo(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
1380
1381/**
1382 * Query information about a file system object.
1383 *
1384 * @returns IPRT status code.
1385 * @retval VINF_SUCCESS if the object exists, information returned.
1386 * @retval VERR_PATH_NOT_FOUND if any but the last component in the specified
1387 * path was not found or was not a directory.
1388 * @retval VERR_FILE_NOT_FOUND if the object does not exist (but path to the
1389 * parent directory exists).
1390 *
1391 * @param pszPath Path to the file system object.
1392 * @param pObjInfo Object information structure to be filled on successful return.
1393 * @param enmAdditionalAttribs
1394 * Which set of additional attributes to request.
1395 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
1396 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
1397 */
1398RTR3DECL(int) RTPathQueryInfoEx(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
1399
1400/**
1401 * Changes the mode flags of a file system object.
1402 *
1403 * The API requires at least one of the mode flag sets (Unix/Dos) to
1404 * be set. The type is ignored.
1405 *
1406 * This API will resolve symbolic links in the last component since
1407 * mode isn't important for symbolic links.
1408 *
1409 * @returns iprt status code.
1410 * @param pszPath Path to the file system object.
1411 * @param fMode The new file mode, see @ref grp_rt_fs for details.
1412 */
1413RTR3DECL(int) RTPathSetMode(const char *pszPath, RTFMODE fMode);
1414
1415/**
1416 * Gets the mode flags of a file system object.
1417 *
1418 * @returns iprt status code.
1419 * @param pszPath Path to the file system object.
1420 * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
1421 *
1422 * @remark This is wrapper around RTPathQueryInfoEx(RTPATH_F_FOLLOW_LINK) and
1423 * exists to complement RTPathSetMode().
1424 */
1425RTR3DECL(int) RTPathGetMode(const char *pszPath, PRTFMODE pfMode);
1426
1427/**
1428 * Changes one or more of the timestamps associated of file system object.
1429 *
1430 * This API will not resolve symbolic links in the last component (just
1431 * like unix lutimes()).
1432 *
1433 * @returns iprt status code.
1434 * @param pszPath Path to the file system object.
1435 * @param pAccessTime Pointer to the new access time.
1436 * @param pModificationTime Pointer to the new modification time.
1437 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
1438 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
1439 *
1440 * @remark The file system might not implement all these time attributes,
1441 * the API will ignore the ones which aren't supported.
1442 *
1443 * @remark The file system might not implement the time resolution
1444 * employed by this interface, the time will be chopped to fit.
1445 *
1446 * @remark The file system may update the change time even if it's
1447 * not specified.
1448 *
1449 * @remark POSIX can only set Access & Modification and will always set both.
1450 */
1451RTR3DECL(int) RTPathSetTimes(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
1452 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
1453
1454/**
1455 * Changes one or more of the timestamps associated of file system object.
1456 *
1457 * @returns iprt status code.
1458 * @param pszPath Path to the file system object.
1459 * @param pAccessTime Pointer to the new access time.
1460 * @param pModificationTime Pointer to the new modification time.
1461 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
1462 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
1463 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
1464 *
1465 * @remark The file system might not implement all these time attributes,
1466 * the API will ignore the ones which aren't supported.
1467 *
1468 * @remark The file system might not implement the time resolution
1469 * employed by this interface, the time will be chopped to fit.
1470 *
1471 * @remark The file system may update the change time even if it's
1472 * not specified.
1473 *
1474 * @remark POSIX can only set Access & Modification and will always set both.
1475 */
1476RTR3DECL(int) RTPathSetTimesEx(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
1477 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime, uint32_t fFlags);
1478
1479/**
1480 * Gets one or more of the timestamps associated of file system object.
1481 *
1482 * @returns iprt status code.
1483 * @param pszPath Path to the file system object.
1484 * @param pAccessTime Where to store the access time. NULL is ok.
1485 * @param pModificationTime Where to store the modification time. NULL is ok.
1486 * @param pChangeTime Where to store the change time. NULL is ok.
1487 * @param pBirthTime Where to store the creation time. NULL is ok.
1488 *
1489 * @remark This is wrapper around RTPathQueryInfo() and exists to complement
1490 * RTPathSetTimes(). If the last component is a symbolic link, it will
1491 * not be resolved.
1492 */
1493RTR3DECL(int) RTPathGetTimes(const char *pszPath, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
1494 PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
1495
1496/**
1497 * Changes the owner and/or group of a file system object.
1498 *
1499 * This API will not resolve symbolic links in the last component (just
1500 * like unix lchown()).
1501 *
1502 * @returns iprt status code.
1503 * @param pszPath Path to the file system object.
1504 * @param uid The new file owner user id. Pass NIL_RTUID to leave
1505 * this unchanged.
1506 * @param gid The new group id. Pass NIL_RTGUID to leave this
1507 * unchanged.
1508 */
1509RTR3DECL(int) RTPathSetOwner(const char *pszPath, uint32_t uid, uint32_t gid);
1510
1511/**
1512 * Changes the owner and/or group of a file system object.
1513 *
1514 * @returns iprt status code.
1515 * @param pszPath Path to the file system object.
1516 * @param uid The new file owner user id. Pass NIL_RTUID to leave
1517 * this unchanged.
1518 * @param gid The new group id. Pass NIL_RTGID to leave this
1519 * unchanged.
1520 * @param fFlags RTPATH_F_ON_LINK or RTPATH_F_FOLLOW_LINK.
1521 */
1522RTR3DECL(int) RTPathSetOwnerEx(const char *pszPath, uint32_t uid, uint32_t gid, uint32_t fFlags);
1523
1524/**
1525 * Gets the owner and/or group of a file system object.
1526 *
1527 * @returns iprt status code.
1528 * @param pszPath Path to the file system object.
1529 * @param pUid Where to store the owner user id. NULL is ok.
1530 * @param pGid Where to store the group id. NULL is ok.
1531 *
1532 * @remark This is wrapper around RTPathQueryInfo() and exists to complement
1533 * RTPathGetOwner(). If the last component is a symbolic link, it will
1534 * not be resolved.
1535 */
1536RTR3DECL(int) RTPathGetOwner(const char *pszPath, uint32_t *pUid, uint32_t *pGid);
1537
1538
1539/** @name RTPathRename, RTDirRename & RTFileRename flags.
1540 * @{ */
1541/** Do not replace anything. */
1542#define RTPATHRENAME_FLAGS_NO_REPLACE UINT32_C(0)
1543/** This will replace attempt any target which isn't a directory. */
1544#define RTPATHRENAME_FLAGS_REPLACE RT_BIT(0)
1545/** Don't allow symbolic links as part of the path.
1546 * @remarks this flag is currently not implemented and will be ignored. */
1547#define RTPATHRENAME_FLAGS_NO_SYMLINKS RT_BIT(1)
1548/** @} */
1549
1550/**
1551 * Renames a path within a filesystem.
1552 *
1553 * This will rename symbolic links. If RTPATHRENAME_FLAGS_REPLACE is used and
1554 * pszDst is a symbolic link, it will be replaced and not its target.
1555 *
1556 * @returns IPRT status code.
1557 * @param pszSrc The source path.
1558 * @param pszDst The destination path.
1559 * @param fRename Rename flags, RTPATHRENAME_FLAGS_*.
1560 */
1561RTR3DECL(int) RTPathRename(const char *pszSrc, const char *pszDst, unsigned fRename);
1562
1563/** @name RTPathUnlink flags.
1564 * @{ */
1565/** Don't allow symbolic links as part of the path.
1566 * @remarks this flag is currently not implemented and will be ignored. */
1567#define RTPATHUNLINK_FLAGS_NO_SYMLINKS RT_BIT(0)
1568/** @} */
1569
1570/**
1571 * Removes the last component of the path.
1572 *
1573 * @returns IPRT status code.
1574 * @param pszPath The path.
1575 * @param fUnlink Unlink flags, RTPATHUNLINK_FLAGS_*.
1576 */
1577RTR3DECL(int) RTPathUnlink(const char *pszPath, uint32_t fUnlink);
1578
1579/**
1580 * A /bin/rm tool.
1581 *
1582 * @returns Program exit code.
1583 *
1584 * @param cArgs The number of arguments.
1585 * @param papszArgs The argument vector. (Note that this may be
1586 * reordered, so the memory must be writable.)
1587 */
1588RTDECL(RTEXITCODE) RTPathRmCmd(unsigned cArgs, char **papszArgs);
1589
1590# ifdef RT_OS_WINDOWS
1591
1592/**
1593 * Converts the given UTF-8 path into a native windows path.
1594 *
1595 * @returns IPRT status code.
1596 * @param ppwszPath Where to return the path. This will always be
1597 * set to NULL on failure. Use RTPathWinFree to
1598 * free it when done.
1599 * @param pszPath The UTF-8 path to convert.
1600 * @param fFlags MBZ, reserved for future hacks.
1601 * @sa RTPathWinFree, RTNtPathFromWinUtf8, RTNtPathRelativeFromUtf8.
1602 */
1603RTDECL(int) RTPathWinFromUtf8(PRTUTF16 *ppwszPath, const char *pszPath, uint32_t fFlags);
1604
1605/**
1606 * Frees a native windows path returned by RTPathWinFromUtf8
1607 *
1608 * @param pwszPath The path to free. NULL is ignored.
1609 */
1610RTDECL(void) RTPathWinFree(PRTUTF16 pwszPath);
1611
1612# endif /* RT_OS_WINDOWS */
1613
1614#endif /* IN_RING3 */
1615
1616/** @} */
1617
1618RT_C_DECLS_END
1619
1620#endif /* !IPRT_INCLUDED_path_h */
1621
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