add size_t and a version of rfind that allows specification of where
[oota-llvm.git] / include / llvm / ADT / StringRef.h
1 //===--- StringRef.h - Constant String Reference Wrapper --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_ADT_STRINGREF_H
11 #define LLVM_ADT_STRINGREF_H
12
13 #include <algorithm>
14 #include <cassert>
15 #include <cstring>
16 #include <string>
17
18 namespace llvm {
19
20   /// StringRef - Represent a constant reference to a string, i.e. a character
21   /// array and a length, which need not be null terminated.
22   ///
23   /// This class does not own the string data, it is expected to be used in
24   /// situations where the character data resides in some other buffer, whose
25   /// lifetime extends past that of the StringRef. For this reason, it is not in
26   /// general safe to store a StringRef.
27   class StringRef {
28   public:
29     typedef const char *iterator;
30     static const size_t npos = ~size_t(0);
31     typedef size_t size_type;
32     
33   private:
34     /// The start of the string, in an external buffer.
35     const char *Data;
36
37     /// The length of the string.
38     size_t Length;
39
40   public:
41     /// @name Constructors
42     /// @{
43
44     /// Construct an empty string ref.
45     /*implicit*/ StringRef() : Data(0), Length(0) {}
46
47     /// Construct a string ref from a cstring.
48     /*implicit*/ StringRef(const char *Str) 
49       : Data(Str), Length(::strlen(Str)) {}
50  
51     /// Construct a string ref from a pointer and length.
52     /*implicit*/ StringRef(const char *_Data, unsigned _Length)
53       : Data(_Data), Length(_Length) {}
54
55     /// Construct a string ref from an std::string.
56     /*implicit*/ StringRef(const std::string &Str) 
57       : Data(Str.c_str()), Length(Str.length()) {}
58
59     /// @}
60     /// @name Iterators
61     /// @{
62
63     iterator begin() const { return Data; }
64
65     iterator end() const { return Data + Length; }
66
67     /// @}
68     /// @name String Operations
69     /// @{
70
71     /// data - Get a pointer to the start of the string (which may not be null
72     /// terminated).
73     const char *data() const { return Data; }
74
75     /// empty - Check if the string is empty.
76     bool empty() const { return Length == 0; }
77
78     /// size - Get the string size.
79     size_t size() const { return Length; }
80
81     /// front - Get the first character in the string.
82     char front() const {
83       assert(!empty());
84       return Data[0];
85     }
86     
87     /// back - Get the last character in the string.
88     char back() const {
89       assert(!empty());
90       return Data[Length-1];
91     }
92
93     /// equals - Check for string equality, this is more efficient than
94     /// compare() when the relative ordering of inequal strings isn't needed.
95     bool equals(const StringRef &RHS) const {
96       return (Length == RHS.Length && 
97               memcmp(Data, RHS.Data, RHS.Length) == 0);
98     }
99
100     /// compare - Compare two strings; the result is -1, 0, or 1 if this string
101     /// is lexicographically less than, equal to, or greater than the \arg RHS.
102     int compare(const StringRef &RHS) const {
103       // Check the prefix for a mismatch.
104       if (int Res = memcmp(Data, RHS.Data, std::min(Length, RHS.Length)))
105         return Res < 0 ? -1 : 1;
106
107       // Otherwise the prefixes match, so we only need to check the lengths.
108       if (Length == RHS.Length)
109         return 0;
110       return Length < RHS.Length ? -1 : 1;
111     }
112
113     /// str - Get the contents as an std::string.
114     std::string str() const { return std::string(Data, Length); }
115
116     /// @}
117     /// @name Operator Overloads
118     /// @{
119
120     char operator[](size_t Index) const { 
121       assert(Index < Length && "Invalid index!");
122       return Data[Index]; 
123     }
124
125     /// @}
126     /// @name Type Conversions
127     /// @{
128
129     operator std::string() const {
130       return str();
131     }
132
133     /// @}
134     /// @name String Predicates
135     /// @{
136
137     /// startswith - Check if this string starts with the given \arg Prefix.
138     bool startswith(const StringRef &Prefix) const { 
139       return substr(0, Prefix.Length).equals(Prefix);
140     }
141
142     /// endswith - Check if this string ends with the given \arg Suffix.
143     bool endswith(const StringRef &Suffix) const {
144       return slice(size() - Suffix.Length, size()).equals(Suffix);
145     }
146
147     /// @}
148     /// @name String Searching
149     /// @{
150
151     /// find - Search for the first character \arg C in the string.
152     ///
153     /// \return - The index of the first occurence of \arg C, or npos if not
154     /// found.
155     size_t find(char C) const {
156       for (size_t i = 0, e = Length; i != e; ++i)
157         if (Data[i] == C)
158           return i;
159       return npos;
160     }
161
162     /// find - Search for the first string \arg Str in the string.
163     ///
164     /// \return - The index of the first occurence of \arg Str, or npos if not
165     /// found.
166     size_t find(const StringRef &Str) const {
167       size_t N = Str.size();
168       if (N > Length)
169         return npos;
170       for (size_t i = 0, e = Length - N + 1; i != e; ++i)
171         if (substr(i, N).equals(Str))
172           return i;
173       return npos;
174     }
175
176     /// rfind - Search for the last character \arg C in the string.
177     ///
178     /// \return - The index of the last occurence of \arg C, or npos if not
179     /// found.
180     size_t rfind(char C, size_t From) const {
181       for (size_t i = From, e = 0; i != e;) {
182         --i;
183         if (Data[i] == C)
184           return i;
185       }
186       return npos;
187     }
188     
189     size_t rfind(char C) const {
190       return rfind(C, Length);
191     }
192
193
194     /// rfind - Search for the last string \arg Str in the string.
195     ///
196     /// \return - The index of the last occurence of \arg Str, or npos if not
197     /// found.
198     size_t rfind(const StringRef &Str) const {
199       size_t N = Str.size();
200       if (N > Length)
201         return npos;
202       for (size_t i = Length - N + 1, e = 0; i != e;) {
203         --i;
204         if (substr(i, N).equals(Str))
205           return i;
206       }
207       return npos;
208     }
209
210     /// count - Return the number of occurrences of \arg C in the string.
211     size_t count(char C) const {
212       size_t Count = 0;
213       for (size_t i = 0, e = Length; i != e; ++i)
214         if (Data[i] == C)
215           ++Count;
216       return Count;
217     }
218
219     /// count - Return the number of non-overlapped occurrences of \arg Str in
220     /// the string.
221     size_t count(const StringRef &Str) const {
222       size_t Count = 0;
223       size_t N = Str.size();
224       if (N > Length)
225         return 0;
226       for (size_t i = 0, e = Length - N + 1; i != e; ++i)
227         if (substr(i, N).equals(Str))
228           ++Count;
229       return Count;
230     }
231
232     /// @}
233     /// @name Helpful Algorithms
234     /// @{
235     
236     /// getAsInteger - Parse the current string as an integer of the specified
237     /// radix.  If Radix is specified as zero, this does radix autosensing using
238     /// extended C rules: 0 is octal, 0x is hex, 0b is binary.
239     ///
240     /// If the string is invalid or if only a subset of the string is valid,
241     /// this returns true to signify the error.  The string is considered
242     /// erroneous if empty.
243     ///
244     bool getAsInteger(unsigned Radix, long long &Result) const;
245     bool getAsInteger(unsigned Radix, unsigned long long &Result) const;
246     bool getAsInteger(unsigned Radix, int &Result) const;
247     bool getAsInteger(unsigned Radix, unsigned &Result) const;
248
249     // TODO: Provide overloads for int/unsigned that check for overflow.
250     
251     /// @}
252     /// @name Substring Operations
253     /// @{
254
255     /// substr - Return a reference to the substring from [Start, Start + N).
256     ///
257     /// \param Start - The index of the starting character in the substring; if
258     /// the index is npos or greater than the length of the string then the
259     /// empty substring will be returned.
260     ///
261     /// \param N - The number of characters to included in the substring. If N
262     /// exceeds the number of characters remaining in the string, the string
263     /// suffix (starting with \arg Start) will be returned.
264     StringRef substr(size_t Start, size_t N = npos) const {
265       Start = std::min(Start, Length);
266       return StringRef(Data + Start, std::min(N, Length - Start));
267     }
268
269     /// slice - Return a reference to the substring from [Start, End).
270     ///
271     /// \param Start - The index of the starting character in the substring; if
272     /// the index is npos or greater than the length of the string then the
273     /// empty substring will be returned.
274     ///
275     /// \param End - The index following the last character to include in the
276     /// substring. If this is npos, or less than \arg Start, or exceeds the
277     /// number of characters remaining in the string, the string suffix
278     /// (starting with \arg Start) will be returned.
279     StringRef slice(size_t Start, size_t End) const {
280       Start = std::min(Start, Length);
281       End = std::min(std::max(Start, End), Length);
282       return StringRef(Data + Start, End - Start);
283     }
284
285     /// split - Split into two substrings around the first occurence of a
286     /// separator character.
287     ///
288     /// If \arg Separator is in the string, then the result is a pair (LHS, RHS)
289     /// such that (*this == LHS + Separator + RHS) is true and RHS is
290     /// maximal. If \arg Separator is not in the string, then the result is a
291     /// pair (LHS, RHS) where (*this == LHS) and (RHS == "").
292     ///
293     /// \param Separator - The character to split on.
294     /// \return - The split substrings.
295     std::pair<StringRef, StringRef> split(char Separator) const {
296       size_t Idx = find(Separator);
297       if (Idx == npos)
298         return std::make_pair(*this, StringRef());
299       return std::make_pair(slice(0, Idx), slice(Idx+1, npos));
300     }
301
302     /// rsplit - Split into two substrings around the last occurence of a
303     /// separator character.
304     ///
305     /// If \arg Separator is in the string, then the result is a pair (LHS, RHS)
306     /// such that (*this == LHS + Separator + RHS) is true and RHS is
307     /// minimal. If \arg Separator is not in the string, then the result is a
308     /// pair (LHS, RHS) where (*this == LHS) and (RHS == "").
309     ///
310     /// \param Separator - The character to split on.
311     /// \return - The split substrings.
312     std::pair<StringRef, StringRef> rsplit(char Separator) const {
313       size_t Idx = rfind(Separator);
314       if (Idx == npos)
315         return std::make_pair(*this, StringRef());
316       return std::make_pair(slice(0, Idx), slice(Idx+1, npos));
317     }
318
319     /// @}
320   };
321
322   /// @name StringRef Comparison Operators
323   /// @{
324
325   inline bool operator==(const StringRef &LHS, const StringRef &RHS) {
326     return LHS.equals(RHS);
327   }
328
329   inline bool operator!=(const StringRef &LHS, const StringRef &RHS) { 
330     return !(LHS == RHS);
331   }
332   
333   inline bool operator<(const StringRef &LHS, const StringRef &RHS) {
334     return LHS.compare(RHS) == -1; 
335   }
336
337   inline bool operator<=(const StringRef &LHS, const StringRef &RHS) {
338     return LHS.compare(RHS) != 1; 
339   }
340
341   inline bool operator>(const StringRef &LHS, const StringRef &RHS) {
342     return LHS.compare(RHS) == 1; 
343   }
344
345   inline bool operator>=(const StringRef &LHS, const StringRef &RHS) {
346     return LHS.compare(RHS) != -1; 
347   }
348
349   /// @}
350
351 }
352
353 #endif