1 //===- llvm/ADT/SmallString.h - 'Normally small' strings --------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the SmallString class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_ADT_SMALLSTRING_H
14 #define LLVM_ADT_SMALLSTRING_H
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/StringRef.h"
22 /// SmallString - A SmallString is just a SmallVector with methods and accessors
23 /// that make it work better as a string (e.g. operator+ etc).
24 template<unsigned InternalLen
>
25 class SmallString
: public SmallVector
<char, InternalLen
> {
27 /// Default ctor - Initialize to empty.
28 SmallString() = default;
30 /// Initialize from a StringRef.
31 SmallString(StringRef S
) : SmallVector
<char, InternalLen
>(S
.begin(), S
.end()) {}
33 /// Initialize with a range.
34 template<typename ItTy
>
35 SmallString(ItTy S
, ItTy E
) : SmallVector
<char, InternalLen
>(S
, E
) {}
37 // Note that in order to add new overloads for append & assign, we have to
38 // duplicate the inherited versions so as not to inadvertently hide them.
41 /// @name String Assignment
44 /// Assign from a repeated element.
45 void assign(size_t NumElts
, char Elt
) {
46 this->SmallVectorImpl
<char>::assign(NumElts
, Elt
);
49 /// Assign from an iterator pair.
50 template<typename in_iter
>
51 void assign(in_iter S
, in_iter E
) {
53 SmallVectorImpl
<char>::append(S
, E
);
56 /// Assign from a StringRef.
57 void assign(StringRef RHS
) {
59 SmallVectorImpl
<char>::append(RHS
.begin(), RHS
.end());
62 /// Assign from a SmallVector.
63 void assign(const SmallVectorImpl
<char> &RHS
) {
65 SmallVectorImpl
<char>::append(RHS
.begin(), RHS
.end());
69 /// @name String Concatenation
72 /// Append from an iterator pair.
73 template<typename in_iter
>
74 void append(in_iter S
, in_iter E
) {
75 SmallVectorImpl
<char>::append(S
, E
);
78 void append(size_t NumInputs
, char Elt
) {
79 SmallVectorImpl
<char>::append(NumInputs
, Elt
);
82 /// Append from a StringRef.
83 void append(StringRef RHS
) {
84 SmallVectorImpl
<char>::append(RHS
.begin(), RHS
.end());
87 /// Append from a SmallVector.
88 void append(const SmallVectorImpl
<char> &RHS
) {
89 SmallVectorImpl
<char>::append(RHS
.begin(), RHS
.end());
93 /// @name String Comparison
96 /// Check for string equality. This is more efficient than compare() when
97 /// the relative ordering of inequal strings isn't needed.
98 bool equals(StringRef RHS
) const {
99 return str().equals(RHS
);
102 /// Check for string equality, ignoring case.
103 bool equals_lower(StringRef RHS
) const {
104 return str().equals_lower(RHS
);
107 /// Compare two strings; the result is -1, 0, or 1 if this string is
108 /// lexicographically less than, equal to, or greater than the \p RHS.
109 int compare(StringRef RHS
) const {
110 return str().compare(RHS
);
113 /// compare_lower - Compare two strings, ignoring case.
114 int compare_lower(StringRef RHS
) const {
115 return str().compare_lower(RHS
);
118 /// compare_numeric - Compare two strings, treating sequences of digits as
120 int compare_numeric(StringRef RHS
) const {
121 return str().compare_numeric(RHS
);
125 /// @name String Predicates
128 /// startswith - Check if this string starts with the given \p Prefix.
129 bool startswith(StringRef Prefix
) const {
130 return str().startswith(Prefix
);
133 /// endswith - Check if this string ends with the given \p Suffix.
134 bool endswith(StringRef Suffix
) const {
135 return str().endswith(Suffix
);
139 /// @name String Searching
142 /// find - Search for the first character \p C in the string.
144 /// \return - The index of the first occurrence of \p C, or npos if not
146 size_t find(char C
, size_t From
= 0) const {
147 return str().find(C
, From
);
150 /// Search for the first string \p Str in the string.
152 /// \returns The index of the first occurrence of \p Str, or npos if not
154 size_t find(StringRef Str
, size_t From
= 0) const {
155 return str().find(Str
, From
);
158 /// Search for the last character \p C in the string.
160 /// \returns The index of the last occurrence of \p C, or npos if not
162 size_t rfind(char C
, size_t From
= StringRef::npos
) const {
163 return str().rfind(C
, From
);
166 /// Search for the last string \p Str in the string.
168 /// \returns The index of the last occurrence of \p Str, or npos if not
170 size_t rfind(StringRef Str
) const {
171 return str().rfind(Str
);
174 /// Find the first character in the string that is \p C, or npos if not
175 /// found. Same as find.
176 size_t find_first_of(char C
, size_t From
= 0) const {
177 return str().find_first_of(C
, From
);
180 /// Find the first character in the string that is in \p Chars, or npos if
183 /// Complexity: O(size() + Chars.size())
184 size_t find_first_of(StringRef Chars
, size_t From
= 0) const {
185 return str().find_first_of(Chars
, From
);
188 /// Find the first character in the string that is not \p C or npos if not
190 size_t find_first_not_of(char C
, size_t From
= 0) const {
191 return str().find_first_not_of(C
, From
);
194 /// Find the first character in the string that is not in the string
195 /// \p Chars, or npos if not found.
197 /// Complexity: O(size() + Chars.size())
198 size_t find_first_not_of(StringRef Chars
, size_t From
= 0) const {
199 return str().find_first_not_of(Chars
, From
);
202 /// Find the last character in the string that is \p C, or npos if not
204 size_t find_last_of(char C
, size_t From
= StringRef::npos
) const {
205 return str().find_last_of(C
, From
);
208 /// Find the last character in the string that is in \p C, or npos if not
211 /// Complexity: O(size() + Chars.size())
213 StringRef Chars
, size_t From
= StringRef::npos
) const {
214 return str().find_last_of(Chars
, From
);
218 /// @name Helpful Algorithms
221 /// Return the number of occurrences of \p C in the string.
222 size_t count(char C
) const {
223 return str().count(C
);
226 /// Return the number of non-overlapped occurrences of \p Str in the
228 size_t count(StringRef Str
) const {
229 return str().count(Str
);
233 /// @name Substring Operations
236 /// Return a reference to the substring from [Start, Start + N).
238 /// \param Start The index of the starting character in the substring; if
239 /// the index is npos or greater than the length of the string then the
240 /// empty substring will be returned.
242 /// \param N The number of characters to included in the substring. If \p N
243 /// exceeds the number of characters remaining in the string, the string
244 /// suffix (starting with \p Start) will be returned.
245 StringRef
substr(size_t Start
, size_t N
= StringRef::npos
) const {
246 return str().substr(Start
, N
);
249 /// Return a reference to the substring from [Start, End).
251 /// \param Start The index of the starting character in the substring; if
252 /// the index is npos or greater than the length of the string then the
253 /// empty substring will be returned.
255 /// \param End The index following the last character to include in the
256 /// substring. If this is npos, or less than \p Start, or exceeds the
257 /// number of characters remaining in the string, the string suffix
258 /// (starting with \p Start) will be returned.
259 StringRef
slice(size_t Start
, size_t End
) const {
260 return str().slice(Start
, End
);
265 /// Explicit conversion to StringRef.
266 StringRef
str() const { return StringRef(this->begin(), this->size()); }
268 // TODO: Make this const, if it's safe...
269 const char* c_str() {
275 /// Implicit conversion to StringRef.
276 operator StringRef() const { return str(); }
279 const SmallString
&operator=(StringRef RHS
) {
284 SmallString
&operator+=(StringRef RHS
) {
285 this->append(RHS
.begin(), RHS
.end());
288 SmallString
&operator+=(char C
) {
294 } // end namespace llvm
296 #endif // LLVM_ADT_SMALLSTRING_H