Add StringRef::front (with some small tweaks while I was in the area).
[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
32   private:
33     /// The start of the string, in an external buffer.
34     const char *Data;
35
36     /// The length of the string.
37     size_t Length;
38
39   public:
40     /// @name Constructors
41     /// @{
42
43     /// Construct an empty string ref.
44     /*implicit*/ StringRef() : Data(0), Length(0) {}
45
46     /// Construct a string ref from a cstring.
47     /*implicit*/ StringRef(const char *Str) 
48       : Data(Str), Length(::strlen(Str)) {}
49  
50     /// Construct a string ref from a pointer and length.
51     /*implicit*/ StringRef(const char *_Data, unsigned _Length)
52       : Data(_Data), Length(_Length) {}
53
54     /// Construct a string ref from an std::string.
55     /*implicit*/ StringRef(const std::string &Str) 
56       : Data(Str.c_str()), Length(Str.length()) {}
57
58     /// @}
59     /// @name Iterators
60     /// @{
61
62     iterator begin() const { return Data; }
63
64     iterator end() const { return Data + Length; }
65
66     /// @}
67     /// @name String Operations
68     /// @{
69
70     /// data - Get a pointer to the start of the string (which may not be null
71     /// terminated).
72     const char *data() const { return Data; }
73
74     /// empty - Check if the string is empty.
75     bool empty() const { return Length == 0; }
76
77     /// size - Get the string size.
78     size_t size() const { return Length; }
79
80     /// front - Get the first character in the string.
81     char front() const {
82       assert(!empty());
83       return Data[0];
84     }
85     
86     /// back - Get the last character in the string.
87     char back() const {
88       assert(!empty());
89       return Data[Length-1];
90     }
91
92     /// equals - Check for string equality, this is more efficient than
93     /// compare() when the relative ordering of inequal strings isn't needed.
94     bool equals(const StringRef &RHS) const {
95       return (Length == RHS.Length && 
96               memcmp(Data, RHS.Data, RHS.Length) == 0);
97     }
98
99     /// compare - Compare two strings; the result is -1, 0, or 1 if this string
100     /// is lexicographically less than, equal to, or greater than the \arg RHS.
101     int compare(const StringRef &RHS) const {
102       // Check the prefix for a mismatch.
103       if (int Res = memcmp(Data, RHS.Data, std::min(Length, RHS.Length)))
104         return Res < 0 ? -1 : 1;
105
106       // Otherwise the prefixes match, so we only need to check the lengths.
107       if (Length == RHS.Length)
108         return 0;
109       return Length < RHS.Length ? -1 : 1;
110     }
111
112     /// str - Get the contents as an std::string.
113     std::string str() const { return std::string(Data, Length); }
114
115     /// @}
116     /// @name Operator Overloads
117     /// @{
118
119     char operator[](size_t Index) const { 
120       assert(Index < Length && "Invalid index!");
121       return Data[Index]; 
122     }
123
124     /// @}
125     /// @name Type Conversions
126     /// @{
127
128     operator std::string() const {
129       return str();
130     }
131
132     /// @}
133     /// @name String Predicates
134     /// @{
135
136     /// startswith - Check if this string starts with the given \arg Prefix.
137     bool startswith(const StringRef &Prefix) const { 
138       return substr(0, Prefix.Length).equals(Prefix);
139     }
140
141     /// endswith - Check if this string ends with the given \arg Suffix.
142     bool endswith(const StringRef &Suffix) const {
143       return slice(size() - Suffix.Length, size()).equals(Suffix);
144     }
145
146     /// @}
147     /// @name String Searching
148     /// @{
149
150     /// find - Search for the character \arg C in the string.
151     ///
152     /// \return - The index of the first occurence of \arg C, or npos if not
153     /// found.
154     size_t find(char C) const {
155       for (size_t i = 0, e = Length; i != e; ++i)
156         if (Data[i] == C)
157           return i;
158       return npos;
159     }
160
161     /// find - Search for the string \arg Str in the string.
162     ///
163     /// \return - The index of the first occurence of \arg Str, or npos if not
164     /// found.
165     size_t find(const StringRef &Str) const {
166       size_t N = Str.size();
167       if (N > Length)
168         return npos;
169       for (size_t i = 0, e = Length - N + 1; i != e; ++i)
170         if (substr(i, N).equals(Str))
171           return i;
172       return npos;
173     }
174
175     /// @}
176     /// @name Substring Operations
177     /// @{
178
179     /// substr - Return a reference to the substring from [Start, Start + N).
180     ///
181     /// \param Start - The index of the starting character in the substring; if
182     /// the index is npos or greater than the length of the string then the
183     /// empty substring will be returned.
184     ///
185     /// \param N - The number of characters to included in the substring. If N
186     /// exceeds the number of characters remaining in the string, the string
187     /// suffix (starting with \arg Start) will be returned.
188     StringRef substr(size_t Start, size_t N = npos) const {
189       Start = std::min(Start, Length);
190       return StringRef(Data + Start, std::min(N, Length - Start));
191     }
192
193     /// slice - Return a reference to the substring from [Start, End).
194     ///
195     /// \param Start - The index of the starting character in the substring; if
196     /// the index is npos or greater than the length of the string then the
197     /// empty substring will be returned.
198     ///
199     /// \param End - The index following the last character to include in the
200     /// substring. If this is npos, or less than \arg Start, or exceeds the
201     /// number of characters remaining in the string, the string suffix
202     /// (starting with \arg Start) will be returned.
203     StringRef slice(size_t Start, size_t End) const {
204       Start = std::min(Start, Length);
205       End = std::min(std::max(Start, End), Length);
206       return StringRef(Data + Start, End - Start);
207     }
208
209     /// split - Split into two substrings around the first occurence of a
210     /// separator character.
211     ///
212     /// If \arg Separator is in the string, then the result is a pair (LHS, RHS)
213     /// such that (*this == LHS + Separator + RHS) is true and RHS is
214     /// maximal. If \arg Separator is not in the string, then the result is a
215     /// pair (LHS, RHS) where (*this == LHS) and (RHS == "").
216     ///
217     /// \param Separator - The character to split on.
218     /// \return - The split substrings.
219     std::pair<StringRef, StringRef> split(char Separator) const {
220       size_t Idx = find(Separator);
221       if (Idx == npos)
222         return std::make_pair(*this, StringRef());
223       return std::make_pair(slice(0, Idx), slice(Idx+1, npos));
224     }
225
226     /// @}
227   };
228
229   /// @name StringRef Comparison Operators
230   /// @{
231
232   inline bool operator==(const StringRef &LHS, const StringRef &RHS) {
233     return LHS.equals(RHS);
234   }
235
236   inline bool operator!=(const StringRef &LHS, const StringRef &RHS) { 
237     return !(LHS == RHS);
238   }
239   
240   inline bool operator<(const StringRef &LHS, const StringRef &RHS) {
241     return LHS.compare(RHS) == -1; 
242   }
243
244   inline bool operator<=(const StringRef &LHS, const StringRef &RHS) {
245     return LHS.compare(RHS) != 1; 
246   }
247
248   inline bool operator>(const StringRef &LHS, const StringRef &RHS) {
249     return LHS.compare(RHS) == 1; 
250   }
251
252   inline bool operator>=(const StringRef &LHS, const StringRef &RHS) {
253     return LHS.compare(RHS) != -1; 
254   }
255
256   /// @}
257
258 }
259
260 #endif