gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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 
34 bool
35 split_first(const std::string &s, std::string &lhs, std::string &rhs, char c)
36 {
38  if (offset == std::string::npos) {
39  lhs = s;
40  rhs = "";
41  return false;
42  }
43 
44  lhs = s.substr(0, offset);
45  rhs = s.substr(offset + 1);
46  return true;
47 }
48 
49 bool
50 split_last(const std::string &s, std::string &lhs, std::string &rhs, char c)
51 {
53  if (offset == std::string::npos) {
54  lhs = s;
55  rhs = "";
56  return false;
57  }
58 
59  lhs = s.substr(0, offset);
60  rhs = s.substr(offset + 1);
61  return true;
62 }
63 
64 void
65 tokenize(std::vector<std::string>& v, const std::string &s, char token,
66  bool ignore)
67 {
68  std::string::size_type first = 0;
69  std::string::size_type last = s.find_first_of(token);
70 
71  if (s.empty())
72  return;
73 
74  if (ignore && last == first) {
75  while (last == first)
76  last = s.find_first_of(token, ++first);
77 
78  if (last == std::string::npos) {
79  if (first != s.size())
80  v.push_back(s.substr(first));
81  return;
82  }
83  }
84 
85  while (last != std::string::npos) {
86  v.push_back(s.substr(first, last - first));
87 
88  if (ignore) {
89  first = s.find_first_not_of(token, last + 1);
90 
91  if (first == std::string::npos)
92  return;
93  } else
94  first = last + 1;
95 
96  last = s.find_first_of(token, first);
97  }
98 
99  v.push_back(s.substr(first));
100 }
split_first
bool split_first(const std::string &s, std::string &lhs, std::string &rhs, char c)
Definition: str.cc:35
tokenize
void tokenize(std::vector< std::string > &v, const std::string &s, char token, bool ignore)
Definition: str.cc:65
std::vector< std::string >
str.hh
SCMI::token
token
Definition: scmi_platform.hh:77
ignore
static void ignore(const char *expr)
Definition: debug.cc:71
ArmISA::c
Bitfield< 29 > c
Definition: miscregs_types.hh:50
Stats::size_type
unsigned int size_type
Definition: types.hh:54
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
ArmISA::v
Bitfield< 28 > v
Definition: miscregs_types.hh:51
split_last
bool split_last(const std::string &s, std::string &lhs, std::string &rhs, char c)
Definition: str.cc:50
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17