string.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::string
26 
27 Description
28  A class for handling character strings derived from std::string.
29 
30  Strings may contain any characters and therefore are delimited by quotes
31  for IO : "any list of characters".
32 
33  Used as a base class for word and fileName.
34 
35 See also
36  Foam::findEtcFile() for information about the site/user OpenFOAM
37  configuration directory
38 
39 SourceFiles
40  string.C
41  stringIO.C
42 
43 \*---------------------------------------------------------------------------*/
44 
45 #ifndef string_H
46 #define string_H
47 
48 #include "char.H"
49 #include "Hasher.H"
50 
51 #include <string>
52 #include <cstring>
53 #include <cstdlib>
54 
55 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
56 
57 namespace Foam
58 {
59 
60 // Forward declaration of classes
61 class Istream;
62 class Ostream;
63 
64 // Forward declaration of friend functions and operators
65 class string;
66 Istream& operator>>(Istream&, string&);
67 Ostream& operator<<(Ostream&, const string&);
68 Ostream& operator<<(Ostream&, const std::string&);
69 
70 template<class T>
71 class UList;
72 
73 /*---------------------------------------------------------------------------*\
74  Class string Declaration
75 \*---------------------------------------------------------------------------*/
76 
77 class string
78 :
79  public std::string
80 {
81 public:
82 
83  // Static Data Members
84 
85  static const char* const typeName;
86  static int debug;
87 
88  //- An empty string
89  static const string null;
90 
91 
92  //- Hashing function class, shared by all the derived classes
93  class hash
94  {
95  public:
96  hash()
97  {}
98 
99  inline unsigned operator()(const string&, unsigned seed = 0) const;
100  };
101 
102 
103  // Constructors
104 
105  //- Construct null
106  inline string();
107 
108  //- Construct from std::string
109  inline string(const std::string&);
110 
111  //- Copy constructor
112  inline string(const string&);
113 
114  //- Move constructor
115  inline string(string&&);
116 
117  //- Construct as copy of character array
118  inline string(const char*);
119 
120  //- Construct as copy of UList of character
121  string(const UList<char>&);
122 
123  //- Construct as copy of specified number of characters
124  inline string(const char*, const size_type);
125 
126  //- Construct from a single character
127  inline string(const char);
128 
129  //- Construct from copies of a single character
130  inline string(const size_type, const char);
131 
132  //- Construct from Istream
133  string(Istream&);
134 
135 
136  // Member Functions
137 
138  //- Count and return the number of a given character in the string
139  size_type count(const char) const;
140 
141  //- Is this string type valid?
142  template<class String>
143  static inline bool valid(const string&);
144 
145  //- Does this string have particular meta-characters?
146  // The meta characters can be optionally quoted.
147  template<class String>
148  static inline bool meta(const string&, const char quote='\\');
149 
150  //- Strip invalid characters from the given string
151  template<class String>
152  static inline bool stripInvalid(string&);
153 
154  //- Return a valid String from the given string
155  template<class String>
156  static inline String validate(const string&);
157 
158  //- Return a String with quoted meta-characters from the given string
159  template<class String>
160  static inline string quotemeta(const string&, const char quote='\\');
161 
162  //- True when strings match literally
163  inline bool match(const std::string&) const;
164 
165  //- Avoid masking the normal std::string replace
166  using std::string::replace;
167 
168  //- Replace first occurrence of sub-string oldStr with newStr
169  // starting at start
170  string& replace
171  (
172  const string& oldStr,
173  const string& newStr,
174  size_type start = 0
175  );
176 
177  //- Replace all occurrences of sub-string oldStr with newStr
178  // starting at start
179  string& replaceAll
180  (
181  const string& oldStr,
182  const string& newStr,
183  size_type start = 0
184  );
185 
186  //- Expand initial tildes and all occurrences of environment variables
187  // Expansion includes:
188  // -# environment variables
189  // - "$VAR", "${VAR}"
190  // -# current directory
191  // - leading "./" : the current directory
192  // -# tilde expansion
193  // - leading "~/" : home directory
194  // - leading "~user" : home directory for specified user
195  // - leading "~OpenFOAM" : site/user OpenFOAM configuration directory
196  //
197  // Any unknown entries are removed silently if allowEmpty is true
198  // \sa
199  // Foam::findEtcFile
200  string& expand(const bool allowEmpty = false);
201 
202  //- Remove repeated characters returning true if string changed
203  bool removeRepeated(const char);
204 
205  //- Return string with repeated characters removed
206  string removeRepeated(const char) const;
207 
208  //- Remove trailing character returning true if string changed
209  bool removeTrailing(const char);
210 
211  //- Return string with trailing character removed
212  string removeTrailing(const char) const;
213 
214  //- Remove trailing string returning true if string changed
215  bool removeTrailing(const string&);
216 
217  //- Return string with trailing string removed
218  string removeTrailing(const string&) const;
219 
220 
221  // Member Operators
222 
223  //- Return the sub-string from the i-th character for \a n characters
224  inline string operator()
225  (
226  const size_type i,
227  const size_type n
228  ) const;
229 
230  //- Return the sub-string from the first character for \a n characters
231  inline string operator()
232  (
233  const size_type n
234  ) const;
235 
236  inline void operator=(const string&);
237  inline void operator=(string&&);
238 
239 
240  // IOstream Operators
241 
242  friend Istream& operator>>(Istream&, string&);
243  friend Ostream& operator<<(Ostream&, const string&);
244 };
245 
246 
247 void writeEntry(Ostream& os, const char* value);
248 void writeEntry(Ostream& os, const string& value);
249 
250 
251 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
252 
253 } // End namespace Foam
254 
255 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
256 
257 #include "stringI.H"
258 
259 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
260 
261 #endif
262 
263 // ************************************************************************* //
bool removeRepeated(const char)
Remove repeated characters returning true if string changed.
Definition: string.C:110
static bool meta(const string &, const char quote='\\')
Does this string have particular meta-characters?
Definition: stringI.H:127
Hashing function class, shared by all the derived classes.
Definition: string.H:92
size_type count(const char) const
Count and return the number of a given character in the string.
Definition: string.C:47
string & replaceAll(const string &oldStr, const string &newStr, size_type start=0)
Replace all occurrences of sub-string oldStr with newStr.
Definition: string.C:82
unsigned operator()(const string &, unsigned seed=0) const
Definition: stringI.H:220
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
static String validate(const string &)
Return a valid String from the given string.
Definition: stringI.H:187
bool match(const std::string &) const
True when strings match literally.
Definition: stringI.H:194
friend Ostream & operator<<(Ostream &, const string &)
A character and a pointer to a character string.
static string quotemeta(const string &, const char quote='\\')
Return a String with quoted meta-characters from the given string.
static const char *const typeName
Definition: string.H:84
friend Istream & operator>>(Istream &, string &)
static int debug
Definition: string.H:85
Istream & operator>>(Istream &, directionInfo &)
graph_traits< Graph >::vertices_size_type size_type
Definition: SloanRenumber.C:73
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
Definition: HashTable.H:60
static const string null
An empty string.
Definition: string.H:88
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:54
string()
Construct null.
Definition: stringI.H:30
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
string & replace(const string &oldStr, const string &newStr, size_type start=0)
Replace first occurrence of sub-string oldStr with newStr.
Definition: string.C:64
string & expand(const bool allowEmpty=false)
Expand initial tildes and all occurrences of environment variables.
Definition: string.C:103
Misc. hashing functions, mostly from Bob Jenkins.
Ostream & operator<<(Ostream &, const ensightPart &)
void operator=(const string &)
Definition: stringI.H:229
label n
static bool valid(const string &)
Is this string type valid?
Definition: stringI.H:79
static bool stripInvalid(string &)
Strip invalid characters from the given string.
Definition: stringI.H:93
bool removeTrailing(const char)
Remove trailing character returning true if string changed.
Definition: string.C:154
A class for handling character strings derived from std::string.
Definition: string.H:76
Namespace for OpenFOAM.