GRPC C++  1.30.0
string_ref.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2015 gRPC authors.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 #ifndef GRPCPP_IMPL_CODEGEN_STRING_REF_H
20 #define GRPCPP_IMPL_CODEGEN_STRING_REF_H
21 
22 #include <string.h>
23 
24 #include <algorithm>
25 #include <iosfwd>
26 #include <iostream>
27 #include <iterator>
28 
30 
31 namespace grpc {
32 
41 class string_ref {
42  public:
44  typedef const char* const_iterator;
45  typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
46 
48  const static size_t npos;
49 
51  string_ref() : data_(nullptr), length_(0) {}
52  string_ref(const string_ref& other)
53  : data_(other.data_), length_(other.length_) {}
55  data_ = rhs.data_;
56  length_ = rhs.length_;
57  return *this;
58  }
59 
60  string_ref(const char* s) : data_(s), length_(strlen(s)) {}
61  string_ref(const char* s, size_t l) : data_(s), length_(l) {}
62  string_ref(const grpc::string& s) : data_(s.data()), length_(s.length()) {}
63 
65  const_iterator begin() const { return data_; }
66  const_iterator end() const { return data_ + length_; }
67  const_iterator cbegin() const { return data_; }
68  const_iterator cend() const { return data_ + length_; }
70  return const_reverse_iterator(end());
71  }
73  return const_reverse_iterator(begin());
74  }
76  return const_reverse_iterator(end());
77  }
79  return const_reverse_iterator(begin());
80  }
81 
83  size_t size() const { return length_; }
84  size_t length() const { return length_; }
85  size_t max_size() const { return length_; }
86  bool empty() const { return length_ == 0; }
87 
89  const char* data() const { return data_; }
90 
92  int compare(string_ref x) const {
93  size_t min_size = length_ < x.length_ ? length_ : x.length_;
94  int r = memcmp(data_, x.data_, min_size);
95  if (r < 0) return -1;
96  if (r > 0) return 1;
97  if (length_ < x.length_) return -1;
98  if (length_ > x.length_) return 1;
99  return 0;
100  }
101 
102  bool starts_with(string_ref x) const {
103  return length_ >= x.length_ && (memcmp(data_, x.data_, x.length_) == 0);
104  }
105 
106  bool ends_with(string_ref x) const {
107  return length_ >= x.length_ &&
108  (memcmp(data_ + (length_ - x.length_), x.data_, x.length_) == 0);
109  }
110 
111  size_t find(string_ref s) const {
112  auto it = std::search(cbegin(), cend(), s.cbegin(), s.cend());
113  return it == cend() ? npos : std::distance(cbegin(), it);
114  }
115 
116  size_t find(char c) const {
117  auto it = std::find(cbegin(), cend(), c);
118  return it == cend() ? npos : std::distance(cbegin(), it);
119  }
120 
121  string_ref substr(size_t pos, size_t n = npos) const {
122  if (pos > length_) pos = length_;
123  if (n > (length_ - pos)) n = length_ - pos;
124  return string_ref(data_ + pos, n);
125  }
126 
127  private:
128  const char* data_;
129  size_t length_;
130 };
131 
133 inline bool operator==(string_ref x, string_ref y) { return x.compare(y) == 0; }
134 inline bool operator!=(string_ref x, string_ref y) { return x.compare(y) != 0; }
135 inline bool operator<(string_ref x, string_ref y) { return x.compare(y) < 0; }
136 inline bool operator<=(string_ref x, string_ref y) { return x.compare(y) <= 0; }
137 inline bool operator>(string_ref x, string_ref y) { return x.compare(y) > 0; }
138 inline bool operator>=(string_ref x, string_ref y) { return x.compare(y) >= 0; }
139 
140 inline std::ostream& operator<<(std::ostream& out, const string_ref& string) {
141  return out << grpc::string(string.begin(), string.end());
142 }
143 
144 } // namespace grpc
145 
146 #endif // GRPCPP_IMPL_CODEGEN_STRING_REF_H
grpc::string_ref::ends_with
bool ends_with(string_ref x) const
Definition: string_ref.h:106
grpc::string_ref
This class is a non owning reference to a string.
Definition: string_ref.h:41
grpc::string_ref::string_ref
string_ref(const char *s, size_t l)
Definition: string_ref.h:61
grpc::operator==
bool operator==(string_ref x, string_ref y)
Comparison operators.
Definition: string_ref.h:133
grpc::string_ref::const_iterator
const typedef char * const_iterator
types
Definition: string_ref.h:44
grpc::string_ref::empty
bool empty() const
Definition: string_ref.h:86
grpc
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
grpc::string_ref::starts_with
bool starts_with(string_ref x) const
Definition: string_ref.h:102
config.h
grpc::string_ref::operator=
string_ref & operator=(const string_ref &rhs)
Definition: string_ref.h:54
grpc::string_ref::compare
int compare(string_ref x) const
string operations
Definition: string_ref.h:92
grpc::string_ref::find
size_t find(string_ref s) const
Definition: string_ref.h:111
grpc::string_ref::string_ref
string_ref(const grpc::string &s)
Definition: string_ref.h:62
grpc::string_ref::cend
const_iterator cend() const
Definition: string_ref.h:68
grpc::operator>=
bool operator>=(string_ref x, string_ref y)
Definition: string_ref.h:138
grpc::operator<
bool operator<(string_ref x, string_ref y)
Definition: string_ref.h:135
grpc::string_ref::string_ref
string_ref(const string_ref &other)
Definition: string_ref.h:52
grpc::operator<=
bool operator<=(string_ref x, string_ref y)
Definition: string_ref.h:136
grpc::string_ref::string_ref
string_ref(const char *s)
Definition: string_ref.h:60
grpc::string_ref::rbegin
const_reverse_iterator rbegin() const
Definition: string_ref.h:69
grpc::string_ref::substr
string_ref substr(size_t pos, size_t n=npos) const
Definition: string_ref.h:121
grpc::operator>
bool operator>(string_ref x, string_ref y)
Definition: string_ref.h:137
grpc::string_ref::end
const_iterator end() const
Definition: string_ref.h:66
grpc::string_ref::length
size_t length() const
Definition: string_ref.h:84
grpc::string_ref::begin
const_iterator begin() const
iterators
Definition: string_ref.h:65
grpc::string_ref::string_ref
string_ref()
construct/copy.
Definition: string_ref.h:51
grpc::operator!=
bool operator!=(string_ref x, string_ref y)
Definition: string_ref.h:134
grpc::string_ref::data
const char * data() const
element access
Definition: string_ref.h:89
grpc::string_ref::const_reverse_iterator
std::reverse_iterator< const_iterator > const_reverse_iterator
Definition: string_ref.h:45
grpc::string_ref::cbegin
const_iterator cbegin() const
Definition: string_ref.h:67
grpc::string
std::string string
Definition: config.h:35
grpc::string_ref::crbegin
const_reverse_iterator crbegin() const
Definition: string_ref.h:75
grpc::string_ref::rend
const_reverse_iterator rend() const
Definition: string_ref.h:72
grpc::string_ref::size
size_t size() const
capacity
Definition: string_ref.h:83
grpc::string_ref::find
size_t find(char c) const
Definition: string_ref.h:116
grpc::string_ref::crend
const_reverse_iterator crend() const
Definition: string_ref.h:78
grpc::operator<<
std::ostream & operator<<(std::ostream &out, const string_ref &string)
Definition: string_ref.h:140
grpc::string_ref::npos
const static size_t npos
constants
Definition: string_ref.h:48
grpc::string_ref::max_size
size_t max_size() const
Definition: string_ref.h:85