1 | /* $Id: RTPathCopyComponents.cpp 26476 2010-02-13 02:06:41Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTPathCountComponents
|
---|
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/err.h>
|
---|
40 | #include <iprt/string.h>
|
---|
41 | #include "internal/path.h"
|
---|
42 |
|
---|
43 |
|
---|
44 | RTDECL(int) RTPathCopyComponents(char *pszDst, size_t cbDst, const char *pszSrc, size_t cComponents)
|
---|
45 | {
|
---|
46 | /*
|
---|
47 | * Quick input validation.
|
---|
48 | */
|
---|
49 | AssertPtr(pszDst);
|
---|
50 | AssertPtr(pszSrc);
|
---|
51 | if (cbDst == 0)
|
---|
52 | return VERR_BUFFER_OVERFLOW;
|
---|
53 |
|
---|
54 | /*
|
---|
55 | * Fend of the simple case where nothing is wanted.
|
---|
56 | */
|
---|
57 | if (cComponents == 0)
|
---|
58 | {
|
---|
59 | *pszDst = '\0';
|
---|
60 | return VINF_SUCCESS;
|
---|
61 | }
|
---|
62 |
|
---|
63 | /*
|
---|
64 | * Parse into the path until we've counted the desired number of objects
|
---|
65 | * or hit the end.
|
---|
66 | */
|
---|
67 | size_t off = rtPathRootSpecLen(pszSrc);
|
---|
68 | size_t c = off != 0;
|
---|
69 | while (c < cComponents && pszSrc[off])
|
---|
70 | {
|
---|
71 | c++;
|
---|
72 | while (!RTPATH_IS_SLASH(pszSrc[off]) && pszSrc[off])
|
---|
73 | off++;
|
---|
74 | while (RTPATH_IS_SLASH(pszSrc[off]))
|
---|
75 | off++;
|
---|
76 | }
|
---|
77 |
|
---|
78 | /*
|
---|
79 | * Copy up to but not including 'off'.
|
---|
80 | */
|
---|
81 | if (off >= cbDst)
|
---|
82 | return VERR_BUFFER_OVERFLOW;
|
---|
83 |
|
---|
84 | memcpy(pszDst, pszSrc, off);
|
---|
85 | pszDst[off] = '\0';
|
---|
86 | return VINF_SUCCESS;
|
---|
87 | }
|
---|
88 |
|
---|