VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/path/rtPathRootSpecLen.cpp@ 26761

Last change on this file since 26761 was 26492, checked in by vboxsync, 15 years ago

Runtime: whitespace cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1/* $Id: rtPathRootSpecLen.cpp 26492 2010-02-14 07:48:10Z vboxsync $ */
2/** @file
3 * IPRT - rtPathRootSpecLen (internal).
4 */
5
6/*
7 * Copyright (C) 2010 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/path.h>
37
38#include <iprt/assert.h>
39#include <iprt/ctype.h>
40#include "internal/path.h"
41
42/**
43 * Figures out the length of the root (or drive) specifier in @a pszPath.
44 *
45 * For UNC names, we consider the root specifier to include both the server and
46 * share names.
47 *
48 * @returns The length including all slashes. 0 if relative path.
49 *
50 * @param pszPath The path to examine.
51 */
52DECLHIDDEN(size_t) rtPathRootSpecLen(const char *pszPath)
53{
54 /*
55 * If it's an absolute path, threat the root or volume specification as
56 * component 0. UNC is making this extra fun on OS/2 and Windows as usual.
57 */
58 size_t off = 0;
59 if (RTPATH_IS_SLASH(pszPath[0]))
60 {
61#if defined (RT_OS_OS2) || defined (RT_OS_WINDOWS)
62 if ( RTPATH_IS_SLASH(pszPath[1])
63 && !RTPATH_IS_SLASH(pszPath[2])
64 && pszPath[2])
65 {
66 /* UNC server name */
67 off = 2;
68 while (!RTPATH_IS_SLASH(pszPath[off]) && pszPath[off])
69 off++;
70 while (RTPATH_IS_SLASH(pszPath[off]))
71 off++;
72
73 /* UNC share */
74 while (!RTPATH_IS_SLASH(pszPath[off]) && pszPath[off])
75 off++;
76 }
77 else
78#endif
79 {
80 off = 1;
81 }
82 while (RTPATH_IS_SLASH(pszPath[off]))
83 off++;
84 }
85#if defined (RT_OS_OS2) || defined (RT_OS_WINDOWS)
86 else if (RT_C_IS_ALPHA(pszPath[0]) && pszPath[1] == ':')
87 {
88 off = 2;
89 while (RTPATH_IS_SLASH(pszPath[off]))
90 off++;
91 }
92#endif
93 Assert(!RTPATH_IS_SLASH(pszPath[off]));
94
95 return off;
96}
97
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