1 | /* $Id: RTStrSplit.cpp 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTStrSplit.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2020-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/mem.h>
|
---|
42 | #include <iprt/string.h>
|
---|
43 | #include "internal/iprt.h"
|
---|
44 |
|
---|
45 |
|
---|
46 | RTDECL(int) RTStrSplit(const char *pcszStrings, size_t cbStrings,
|
---|
47 | const char *pcszSeparator, char ***ppapszStrings, size_t *pcStrings)
|
---|
48 | {
|
---|
49 | AssertPtrReturn(pcszStrings, VERR_INVALID_POINTER);
|
---|
50 | AssertReturn(cbStrings, VERR_INVALID_PARAMETER);
|
---|
51 | AssertPtrReturn(pcszSeparator, VERR_INVALID_POINTER);
|
---|
52 | AssertPtrReturn(ppapszStrings, VERR_INVALID_POINTER);
|
---|
53 | AssertPtrReturn(pcStrings, VERR_INVALID_POINTER);
|
---|
54 |
|
---|
55 | size_t cStrings = 0;
|
---|
56 |
|
---|
57 | /* Determine the number of paths in buffer first. */
|
---|
58 | size_t cch = cbStrings - 1;
|
---|
59 | char const *pcszTmp = pcszStrings;
|
---|
60 | const char *pcszEnd = RTStrEnd(pcszTmp, RTSTR_MAX);
|
---|
61 | char const *pcszNext;
|
---|
62 | const size_t cchSep = strlen(pcszSeparator);
|
---|
63 | size_t cchNext;
|
---|
64 | while (cch > 0)
|
---|
65 | {
|
---|
66 | pcszNext = RTStrStr(pcszTmp, pcszSeparator);
|
---|
67 | if (!pcszNext)
|
---|
68 | break;
|
---|
69 | cchNext = pcszNext - pcszTmp;
|
---|
70 | if (cchNext + cchSep > cch)
|
---|
71 | break;
|
---|
72 | pcszNext += cchSep;
|
---|
73 | pcszTmp += cchNext + cchSep;
|
---|
74 | cch -= cchNext + cchSep;
|
---|
75 | if (cchNext)
|
---|
76 | ++cStrings;
|
---|
77 | }
|
---|
78 |
|
---|
79 | if (pcszTmp != pcszEnd) /* Do we need to take a trailing string without separator into account? */
|
---|
80 | cStrings++;
|
---|
81 |
|
---|
82 | if (!cStrings)
|
---|
83 | {
|
---|
84 | *ppapszStrings = NULL;
|
---|
85 | *pcStrings = 0;
|
---|
86 | return VINF_SUCCESS;
|
---|
87 | }
|
---|
88 |
|
---|
89 | char **papszStrings = (char **)RTMemAllocZ(cStrings * sizeof(char *));
|
---|
90 | if (!papszStrings)
|
---|
91 | return VERR_NO_MEMORY;
|
---|
92 |
|
---|
93 | int rc = VINF_SUCCESS;
|
---|
94 |
|
---|
95 | cch = cbStrings - 1;
|
---|
96 | pcszTmp = pcszStrings;
|
---|
97 |
|
---|
98 | for (size_t i = 0; i < cStrings;)
|
---|
99 | {
|
---|
100 | pcszNext = RTStrStr(pcszTmp, pcszSeparator);
|
---|
101 | if (!pcszNext)
|
---|
102 | pcszNext = pcszEnd;
|
---|
103 | cchNext = pcszNext - pcszTmp;
|
---|
104 | if (cchNext)
|
---|
105 | {
|
---|
106 | papszStrings[i] = RTStrDupN(pcszTmp, cchNext);
|
---|
107 | if (!papszStrings[i])
|
---|
108 | {
|
---|
109 | rc = VERR_NO_MEMORY;
|
---|
110 | break;
|
---|
111 | }
|
---|
112 | i++;
|
---|
113 | }
|
---|
114 | pcszTmp += cchNext + cchSep;
|
---|
115 | cch -= cchNext + cchSep;
|
---|
116 | }
|
---|
117 |
|
---|
118 | if (RT_SUCCESS(rc))
|
---|
119 | {
|
---|
120 | *ppapszStrings = papszStrings;
|
---|
121 | *pcStrings = cStrings;
|
---|
122 |
|
---|
123 | return VINF_SUCCESS;
|
---|
124 | }
|
---|
125 |
|
---|
126 | for (size_t i = 0; i < cStrings; ++i)
|
---|
127 | RTStrFree(papszStrings[i]);
|
---|
128 | RTMemFree(papszStrings);
|
---|
129 |
|
---|
130 | return rc;
|
---|
131 | }
|
---|
132 | RT_EXPORT_SYMBOL(RTStrSplit);
|
---|
133 |
|
---|