gem5 v24.0.0.0
Loading...
Searching...
No Matches
str.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "base/str.hh"
30
31#include <string>
32#include <vector>
33
34namespace gem5
35{
36
37bool
38split_first(const std::string &s, std::string &lhs, std::string &rhs, char c)
39{
40 std::string::size_type offset = s.find(c);
41 if (offset == std::string::npos) {
42 lhs = s;
43 rhs = "";
44 return false;
45 }
46
47 lhs = s.substr(0, offset);
48 rhs = s.substr(offset + 1);
49 return true;
50}
51
52bool
53split_last(const std::string &s, std::string &lhs, std::string &rhs, char c)
54{
55 std::string::size_type offset = s.rfind(c);
56 if (offset == std::string::npos) {
57 lhs = s;
58 rhs = "";
59 return false;
60 }
61
62 lhs = s.substr(0, offset);
63 rhs = s.substr(offset + 1);
64 return true;
65}
66
67void
68tokenize(std::vector<std::string>& v, const std::string &s, char token,
69 bool ignore)
70{
71 std::string::size_type first = 0;
72 std::string::size_type last = s.find_first_of(token);
73
74 if (s.empty())
75 return;
76
77 if (ignore && last == first) {
78 while (last == first)
79 last = s.find_first_of(token, ++first);
80
81 if (last == std::string::npos) {
82 if (first != s.size())
83 v.push_back(s.substr(first));
84 return;
85 }
86 }
87
88 while (last != std::string::npos) {
89 v.push_back(s.substr(first, last - first));
90
91 if (ignore) {
92 first = s.find_first_not_of(token, last + 1);
93
94 if (first == std::string::npos)
95 return;
96 } else
97 first = last + 1;
98
99 last = s.find_first_of(token, first);
100 }
101
102 v.push_back(s.substr(first));
103}
104
105} // namespace gem5
STL vector class.
Definition stl.hh:37
Bitfield< 28 > v
Definition misc_types.hh:54
Bitfield< 4 > s
Bitfield< 23, 0 > offset
Definition types.hh:144
Bitfield< 29 > c
Definition misc_types.hh:53
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
static void ignore(const char *expr)
Definition debug.cc:79
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
Definition str.cc:68
bool split_last(const std::string &s, std::string &lhs, std::string &rhs, char c)
Definition str.cc:53
bool split_first(const std::string &s, std::string &lhs, std::string &rhs, char c)
Definition str.cc:38

Generated on Tue Jun 18 2024 16:24:01 for gem5 by doxygen 1.11.0