Imported Upstream version 1.7.1
[platform/upstream/ninja.git] / src / string_piece.h
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   StringPiece() : str_(NULL), len_(0) {}
29
30   /// The constructors intentionally allow for implicit conversions.
31   StringPiece(const string& str) : str_(str.data()), len_(str.size()) {}
32   StringPiece(const char* str) : str_(str), len_(strlen(str)) {}
33
34   StringPiece(const char* str, size_t len) : str_(str), len_(len) {}
35
36   bool operator==(const StringPiece& other) const {
37     return len_ == other.len_ && memcmp(str_, other.str_, len_) == 0;
38   }
39   bool operator!=(const StringPiece& other) const {
40     return !(*this == other);
41   }
42
43   /// Convert the slice into a full-fledged std::string, copying the
44   /// data into a new string.
45   string AsString() const {
46     return len_ ? string(str_, len_) : string();
47   }
48
49   const char* str_;
50   size_t len_;
51 };
52
53 #endif  // NINJA_STRINGPIECE_H_