Ninja
string_piece.h
Go to the documentation of this file.
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef NINJA_STRINGPIECE_H_
16 #define NINJA_STRINGPIECE_H_
17 
18 #include <string>
19 
20 using namespace std;
21 
22 #include <string.h>
23 
24 /// StringPiece represents a slice of a string whose memory is managed
25 /// externally. It is useful for reducing the number of std::strings
26 /// we need to allocate.
27 struct StringPiece {
28  typedef const char* const_iterator;
29 
30  StringPiece() : str_(NULL), len_(0) {}
31 
32  /// The constructors intentionally allow for implicit conversions.
33  StringPiece(const string& str) : str_(str.data()), len_(str.size()) {}
34  StringPiece(const char* str) : str_(str), len_(strlen(str)) {}
35 
36  StringPiece(const char* str, size_t len) : str_(str), len_(len) {}
37 
38  bool operator==(const StringPiece& other) const {
39  return len_ == other.len_ && memcmp(str_, other.str_, len_) == 0;
40  }
41  bool operator!=(const StringPiece& other) const {
42  return !(*this == other);
43  }
44 
45  /// Convert the slice into a full-fledged std::string, copying the
46  /// data into a new string.
47  string AsString() const {
48  return len_ ? string(str_, len_) : string();
49  }
50 
52  return str_;
53  }
54 
55  const_iterator end() const {
56  return str_ + len_;
57  }
58 
59  char operator[](size_t pos) const {
60  return str_[pos];
61  }
62 
63  size_t size() const {
64  return len_;
65  }
66 
67  const char* str_;
68  size_t len_;
69 };
70 
71 #endif // NINJA_STRINGPIECE_H_
const char * str_
Definition: string_piece.h:67
StringPiece represents a slice of a string whose memory is managed externally.
Definition: string_piece.h:27
size_t size() const
Definition: string_piece.h:63
StringPiece(const string &str)
The constructors intentionally allow for implicit conversions.
Definition: string_piece.h:33
const_iterator end() const
Definition: string_piece.h:55
StringPiece(const char *str)
Definition: string_piece.h:34
bool operator!=(const StringPiece &other) const
Definition: string_piece.h:41
StringPiece(const char *str, size_t len)
Definition: string_piece.h:36
const_iterator begin() const
Definition: string_piece.h:51
size_t len_
Definition: string_piece.h:68
char operator[](size_t pos) const
Definition: string_piece.h:59
const char * const_iterator
Definition: string_piece.h:28
bool operator==(const StringPiece &other) const
Definition: string_piece.h:38
string AsString() const
Convert the slice into a full-fledged std::string, copying the data into a new string.
Definition: string_piece.h:47