1 | /* $Id: rtpath-root-length-template.cpp.h 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - rtPathRootLengthEx - Code Template.
|
---|
4 | *
|
---|
5 | * Include this from a path-style template file.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2019-2023 Oracle and/or its affiliates.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox base platform packages, as
|
---|
12 | * available from https://www.virtualbox.org.
|
---|
13 | *
|
---|
14 | * This program is free software; you can redistribute it and/or
|
---|
15 | * modify it under the terms of the GNU General Public License
|
---|
16 | * as published by the Free Software Foundation, in version 3 of the
|
---|
17 | * License.
|
---|
18 | *
|
---|
19 | * This program is distributed in the hope that it will be useful, but
|
---|
20 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
22 | * General Public License for more details.
|
---|
23 | *
|
---|
24 | * You should have received a copy of the GNU General Public License
|
---|
25 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
26 | *
|
---|
27 | * The contents of this file may alternatively be used under the terms
|
---|
28 | * of the Common Development and Distribution License Version 1.0
|
---|
29 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
30 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
31 | * CDDL are applicable instead of those of the GPL.
|
---|
32 | *
|
---|
33 | * You may elect to license modified versions of this file under the
|
---|
34 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
35 | *
|
---|
36 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
37 | */
|
---|
38 |
|
---|
39 |
|
---|
40 | /*********************************************************************************************************************************
|
---|
41 | * Header Files *
|
---|
42 | *********************************************************************************************************************************/
|
---|
43 | #include <iprt/ctype.h>
|
---|
44 |
|
---|
45 |
|
---|
46 | /**
|
---|
47 | * Inlined helper for determining the length of the root component.
|
---|
48 | */
|
---|
49 | DECLINLINE(size_t) RTPATH_STYLE_FN(rtPathRootLengthEx)(const char *pszPath, uint32_t fFlags)
|
---|
50 | {
|
---|
51 | if (RTPATH_IS_SLASH(pszPath[0]))
|
---|
52 | {
|
---|
53 | if (fFlags & RTPATH_STR_F_NO_START)
|
---|
54 | return 0;
|
---|
55 | #if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
|
---|
56 | if (RTPATH_IS_SLASH(pszPath[1]))
|
---|
57 | {
|
---|
58 | /* UNC - there are exactly two prefix slashes followed by a namespace
|
---|
59 | or computer name, which can be empty on windows. */
|
---|
60 | size_t cchRoot = 2;
|
---|
61 | while (!RTPATH_IS_SLASH(pszPath[cchRoot]) && pszPath[cchRoot])
|
---|
62 | cchRoot++;
|
---|
63 | if (RTPATH_IS_SLASH(pszPath[cchRoot]))
|
---|
64 | cchRoot++;
|
---|
65 | return cchRoot;
|
---|
66 | }
|
---|
67 | #endif
|
---|
68 | return 1;
|
---|
69 | }
|
---|
70 | #if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
|
---|
71 | if (RT_C_IS_ALPHA(pszPath[0]) && pszPath[1] == ':')
|
---|
72 | {
|
---|
73 | if (!RTPATH_IS_SLASH(pszPath[2]))
|
---|
74 | return 2;
|
---|
75 | return 3;
|
---|
76 | }
|
---|
77 | #endif
|
---|
78 | return 0;
|
---|
79 | }
|
---|
80 |
|
---|