Coverage Report

Created: 2024-09-08 06:07

/proc/self/cwd/external/com_google_absl/absl/strings/string_view.h
Line
Count
Source (jump to first uncovered line)
1
//
2
// Copyright 2017 The Abseil Authors.
3
//
4
// Licensed under the Apache License, Version 2.0 (the "License");
5
// you may not use this file except in compliance with the License.
6
// You may obtain a copy of the License at
7
//
8
//      https://www.apache.org/licenses/LICENSE-2.0
9
//
10
// Unless required by applicable law or agreed to in writing, software
11
// distributed under the License is distributed on an "AS IS" BASIS,
12
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
// See the License for the specific language governing permissions and
14
// limitations under the License.
15
//
16
// -----------------------------------------------------------------------------
17
// File: string_view.h
18
// -----------------------------------------------------------------------------
19
//
20
// This file contains the definition of the `absl::string_view` class. A
21
// `string_view` points to a contiguous span of characters, often part or all of
22
// another `std::string`, double-quoted string literal, character array, or even
23
// another `string_view`.
24
//
25
// This `absl::string_view` abstraction is designed to be a drop-in
26
// replacement for the C++17 `std::string_view` abstraction.
27
#ifndef ABSL_STRINGS_STRING_VIEW_H_
28
#define ABSL_STRINGS_STRING_VIEW_H_
29
30
#include <algorithm>
31
#include <cassert>
32
#include <cstddef>
33
#include <cstring>
34
#include <iosfwd>
35
#include <iterator>
36
#include <limits>
37
#include <string>
38
39
#include "absl/base/attributes.h"
40
#include "absl/base/nullability.h"
41
#include "absl/base/config.h"
42
#include "absl/base/internal/throw_delegate.h"
43
#include "absl/base/macros.h"
44
#include "absl/base/optimization.h"
45
#include "absl/base/port.h"
46
47
#ifdef ABSL_USES_STD_STRING_VIEW
48
49
#include <string_view>  // IWYU pragma: export
50
51
namespace absl {
52
ABSL_NAMESPACE_BEGIN
53
using string_view = std::string_view;
54
ABSL_NAMESPACE_END
55
}  // namespace absl
56
57
#else  // ABSL_USES_STD_STRING_VIEW
58
59
#if ABSL_HAVE_BUILTIN(__builtin_memcmp) ||        \
60
    (defined(__GNUC__) && !defined(__clang__)) || \
61
    (defined(_MSC_VER) && _MSC_VER >= 1928)
62
#define ABSL_INTERNAL_STRING_VIEW_MEMCMP __builtin_memcmp
63
#else  // ABSL_HAVE_BUILTIN(__builtin_memcmp)
64
#define ABSL_INTERNAL_STRING_VIEW_MEMCMP memcmp
65
#endif  // ABSL_HAVE_BUILTIN(__builtin_memcmp)
66
67
namespace absl {
68
ABSL_NAMESPACE_BEGIN
69
70
// absl::string_view
71
//
72
// A `string_view` provides a lightweight view into the string data provided by
73
// a `std::string`, double-quoted string literal, character array, or even
74
// another `string_view`. A `string_view` does *not* own the string to which it
75
// points, and that data cannot be modified through the view.
76
//
77
// You can use `string_view` as a function or method parameter anywhere a
78
// parameter can receive a double-quoted string literal, `const char*`,
79
// `std::string`, or another `absl::string_view` argument with no need to copy
80
// the string data. Systematic use of `string_view` within function arguments
81
// reduces data copies and `strlen()` calls.
82
//
83
// Because of its small size, prefer passing `string_view` by value:
84
//
85
//   void MyFunction(absl::string_view arg);
86
//
87
// If circumstances require, you may also pass one by const reference:
88
//
89
//   void MyFunction(const absl::string_view& arg);  // not preferred
90
//
91
// Passing by value generates slightly smaller code for many architectures.
92
//
93
// In either case, the source data of the `string_view` must outlive the
94
// `string_view` itself.
95
//
96
// A `string_view` is also suitable for local variables if you know that the
97
// lifetime of the underlying object is longer than the lifetime of your
98
// `string_view` variable. However, beware of binding a `string_view` to a
99
// temporary value:
100
//
101
//   // BAD use of string_view: lifetime problem
102
//   absl::string_view sv = obj.ReturnAString();
103
//
104
//   // GOOD use of string_view: str outlives sv
105
//   std::string str = obj.ReturnAString();
106
//   absl::string_view sv = str;
107
//
108
// Due to lifetime issues, a `string_view` is sometimes a poor choice for a
109
// return value and usually a poor choice for a data member. If you do use a
110
// `string_view` this way, it is your responsibility to ensure that the object
111
// pointed to by the `string_view` outlives the `string_view`.
112
//
113
// A `string_view` may represent a whole string or just part of a string. For
114
// example, when splitting a string, `std::vector<absl::string_view>` is a
115
// natural data type for the output.
116
//
117
// For another example, a Cord is a non-contiguous, potentially very
118
// long string-like object.  The Cord class has an interface that iteratively
119
// provides string_view objects that point to the successive pieces of a Cord
120
// object.
121
//
122
// When constructed from a source which is NUL-terminated, the `string_view`
123
// itself will not include the NUL-terminator unless a specific size (including
124
// the NUL) is passed to the constructor. As a result, common idioms that work
125
// on NUL-terminated strings do not work on `string_view` objects. If you write
126
// code that scans a `string_view`, you must check its length rather than test
127
// for nul, for example. Note, however, that nuls may still be embedded within
128
// a `string_view` explicitly.
129
//
130
// You may create a null `string_view` in two ways:
131
//
132
//   absl::string_view sv;
133
//   absl::string_view sv(nullptr, 0);
134
//
135
// For the above, `sv.data() == nullptr`, `sv.length() == 0`, and
136
// `sv.empty() == true`. Also, if you create a `string_view` with a non-null
137
// pointer then `sv.data() != nullptr`. Thus, you can use `string_view()` to
138
// signal an undefined value that is different from other `string_view` values
139
// in a similar fashion to how `const char* p1 = nullptr;` is different from
140
// `const char* p2 = "";`. However, in practice, it is not recommended to rely
141
// on this behavior.
142
//
143
// Be careful not to confuse a null `string_view` with an empty one. A null
144
// `string_view` is an empty `string_view`, but some empty `string_view`s are
145
// not null. Prefer checking for emptiness over checking for null.
146
//
147
// There are many ways to create an empty string_view:
148
//
149
//   const char* nullcp = nullptr;
150
//   // string_view.size() will return 0 in all cases.
151
//   absl::string_view();
152
//   absl::string_view(nullcp, 0);
153
//   absl::string_view("");
154
//   absl::string_view("", 0);
155
//   absl::string_view("abcdef", 0);
156
//   absl::string_view("abcdef" + 6, 0);
157
//
158
// All empty `string_view` objects whether null or not, are equal:
159
//
160
//   absl::string_view() == absl::string_view("", 0)
161
//   absl::string_view(nullptr, 0) == absl::string_view("abcdef"+6, 0)
162
class ABSL_ATTRIBUTE_VIEW string_view {
163
 public:
164
  using traits_type = std::char_traits<char>;
165
  using value_type = char;
166
  using pointer = absl::Nullable<char*>;
167
  using const_pointer = absl::Nullable<const char*>;
168
  using reference = char&;
169
  using const_reference = const char&;
170
  using const_iterator = absl::Nullable<const char*>;
171
  using iterator = const_iterator;
172
  using const_reverse_iterator = std::reverse_iterator<const_iterator>;
173
  using reverse_iterator = const_reverse_iterator;
174
  using size_type = size_t;
175
  using difference_type = std::ptrdiff_t;
176
  using absl_internal_is_view = std::true_type;
177
178
  static constexpr size_type npos = static_cast<size_type>(-1);
179
180
  // Null `string_view` constructor
181
0
  constexpr string_view() noexcept : ptr_(nullptr), length_(0) {}
182
183
  // Implicit constructors
184
185
  template <typename Allocator>
186
  string_view(  // NOLINT(runtime/explicit)
187
      const std::basic_string<char, std::char_traits<char>, Allocator>& str
188
          ABSL_ATTRIBUTE_LIFETIME_BOUND) noexcept
189
      // This is implemented in terms of `string_view(p, n)` so `str.size()`
190
      // doesn't need to be reevaluated after `ptr_` is set.
191
      // The length check is also skipped since it is unnecessary and causes
192
      // code bloat.
193
6.63k
      : string_view(str.data(), str.size(), SkipCheckLengthTag{}) {}
194
195
  // Implicit constructor of a `string_view` from NUL-terminated `str`. When
196
  // accepting possibly null strings, use `absl::NullSafeStringView(str)`
197
  // instead (see below).
198
  // The length check is skipped since it is unnecessary and causes code bloat.
199
  constexpr string_view(  // NOLINT(runtime/explicit)
200
      absl::Nonnull<const char*> str)
201
0
      : ptr_(str), length_(str ? StrlenInternal(str) : 0) {}
202
203
  // Implicit constructor of a `string_view` from a `const char*` and length.
204
  constexpr string_view(absl::Nullable<const char*> data, size_type len)
205
0
      : ptr_(data), length_(CheckLengthInternal(len)) {}
206
207
  // NOTE: Harmlessly omitted to work around gdb bug.
208
  //   constexpr string_view(const string_view&) noexcept = default;
209
  //   string_view& operator=(const string_view&) noexcept = default;
210
211
  // Iterators
212
213
  // string_view::begin()
214
  //
215
  // Returns an iterator pointing to the first character at the beginning of the
216
  // `string_view`, or `end()` if the `string_view` is empty.
217
1.87k
  constexpr const_iterator begin() const noexcept { return ptr_; }
218
219
  // string_view::end()
220
  //
221
  // Returns an iterator pointing just beyond the last character at the end of
222
  // the `string_view`. This iterator acts as a placeholder; attempting to
223
  // access it results in undefined behavior.
224
1.87k
  constexpr const_iterator end() const noexcept { return ptr_ + length_; }
225
226
  // string_view::cbegin()
227
  //
228
  // Returns a const iterator pointing to the first character at the beginning
229
  // of the `string_view`, or `end()` if the `string_view` is empty.
230
0
  constexpr const_iterator cbegin() const noexcept { return begin(); }
231
232
  // string_view::cend()
233
  //
234
  // Returns a const iterator pointing just beyond the last character at the end
235
  // of the `string_view`. This pointer acts as a placeholder; attempting to
236
  // access its element results in undefined behavior.
237
0
  constexpr const_iterator cend() const noexcept { return end(); }
238
239
  // string_view::rbegin()
240
  //
241
  // Returns a reverse iterator pointing to the last character at the end of the
242
  // `string_view`, or `rend()` if the `string_view` is empty.
243
0
  const_reverse_iterator rbegin() const noexcept {
244
0
    return const_reverse_iterator(end());
245
0
  }
246
247
  // string_view::rend()
248
  //
249
  // Returns a reverse iterator pointing just before the first character at the
250
  // beginning of the `string_view`. This pointer acts as a placeholder;
251
  // attempting to access its element results in undefined behavior.
252
0
  const_reverse_iterator rend() const noexcept {
253
0
    return const_reverse_iterator(begin());
254
0
  }
255
256
  // string_view::crbegin()
257
  //
258
  // Returns a const reverse iterator pointing to the last character at the end
259
  // of the `string_view`, or `crend()` if the `string_view` is empty.
260
0
  const_reverse_iterator crbegin() const noexcept { return rbegin(); }
261
262
  // string_view::crend()
263
  //
264
  // Returns a const reverse iterator pointing just before the first character
265
  // at the beginning of the `string_view`. This pointer acts as a placeholder;
266
  // attempting to access its element results in undefined behavior.
267
0
  const_reverse_iterator crend() const noexcept { return rend(); }
268
269
  // Capacity Utilities
270
271
  // string_view::size()
272
  //
273
  // Returns the number of characters in the `string_view`.
274
42.6M
  constexpr size_type size() const noexcept { return length_; }
275
276
  // string_view::length()
277
  //
278
  // Returns the number of characters in the `string_view`. Alias for `size()`.
279
0
  constexpr size_type length() const noexcept { return size(); }
280
281
  // string_view::max_size()
282
  //
283
  // Returns the maximum number of characters the `string_view` can hold.
284
0
  constexpr size_type max_size() const noexcept { return kMaxSize; }
285
286
  // string_view::empty()
287
  //
288
  // Checks if the `string_view` is empty (refers to no characters).
289
0
  constexpr bool empty() const noexcept { return length_ == 0; }
290
291
  // string_view::operator[]
292
  //
293
  // Returns the ith element of the `string_view` using the array operator.
294
  // Note that this operator does not perform any bounds checking.
295
42.6M
  constexpr const_reference operator[](size_type i) const {
296
42.6M
    return ABSL_HARDENING_ASSERT(i < size()), ptr_[i];
297
42.6M
  }
298
299
  // string_view::at()
300
  //
301
  // Returns the ith element of the `string_view`. Bounds checking is performed,
302
  // and an exception of type `std::out_of_range` will be thrown on invalid
303
  // access.
304
0
  constexpr const_reference at(size_type i) const {
305
0
    return ABSL_PREDICT_TRUE(i < size())
306
0
               ? ptr_[i]
307
0
               : ((void)base_internal::ThrowStdOutOfRange(
308
0
                      "absl::string_view::at"),
309
0
                  ptr_[i]);
310
0
  }
311
312
  // string_view::front()
313
  //
314
  // Returns the first element of a `string_view`.
315
0
  constexpr const_reference front() const {
316
0
    return ABSL_HARDENING_ASSERT(!empty()), ptr_[0];
317
0
  }
318
319
  // string_view::back()
320
  //
321
  // Returns the last element of a `string_view`.
322
0
  constexpr const_reference back() const {
323
0
    return ABSL_HARDENING_ASSERT(!empty()), ptr_[size() - 1];
324
0
  }
325
326
  // string_view::data()
327
  //
328
  // Returns a pointer to the underlying character array (which is of course
329
  // stored elsewhere). Note that `string_view::data()` may contain embedded nul
330
  // characters, but the returned buffer may or may not be NUL-terminated;
331
  // therefore, do not pass `data()` to a routine that expects a NUL-terminated
332
  // string.
333
4.76k
  constexpr const_pointer data() const noexcept { return ptr_; }
334
335
  // Modifiers
336
337
  // string_view::remove_prefix()
338
  //
339
  // Removes the first `n` characters from the `string_view`. Note that the
340
  // underlying string is not changed, only the view.
341
0
  constexpr void remove_prefix(size_type n) {
342
0
    ABSL_HARDENING_ASSERT(n <= length_);
343
0
    ptr_ += n;
344
0
    length_ -= n;
345
0
  }
346
347
  // string_view::remove_suffix()
348
  //
349
  // Removes the last `n` characters from the `string_view`. Note that the
350
  // underlying string is not changed, only the view.
351
0
  constexpr void remove_suffix(size_type n) {
352
0
    ABSL_HARDENING_ASSERT(n <= length_);
353
0
    length_ -= n;
354
0
  }
355
356
  // string_view::swap()
357
  //
358
  // Swaps this `string_view` with another `string_view`.
359
0
  constexpr void swap(string_view& s) noexcept {
360
0
    auto t = *this;
361
0
    *this = s;
362
0
    s = t;
363
0
  }
364
365
  // Explicit conversion operators
366
367
  // Converts to `std::basic_string`.
368
  template <typename A>
369
0
  explicit operator std::basic_string<char, traits_type, A>() const {
370
0
    if (!data()) return {};
371
0
    return std::basic_string<char, traits_type, A>(data(), size());
372
0
  }
373
374
  // string_view::copy()
375
  //
376
  // Copies the contents of the `string_view` at offset `pos` and length `n`
377
  // into `buf`.
378
0
  size_type copy(char* buf, size_type n, size_type pos = 0) const {
379
0
    if (ABSL_PREDICT_FALSE(pos > length_)) {
380
0
      base_internal::ThrowStdOutOfRange("absl::string_view::copy");
381
0
    }
382
0
    size_type rlen = (std::min)(length_ - pos, n);
383
0
    if (rlen > 0) {
384
0
      const char* start = ptr_ + pos;
385
0
      traits_type::copy(buf, start, rlen);
386
0
    }
387
0
    return rlen;
388
0
  }
389
390
  // string_view::substr()
391
  //
392
  // Returns a "substring" of the `string_view` (at offset `pos` and length
393
  // `n`) as another string_view. This function throws `std::out_of_bounds` if
394
  // `pos > size`.
395
  // Use absl::ClippedSubstr if you need a truncating substr operation.
396
0
  constexpr string_view substr(size_type pos = 0, size_type n = npos) const {
397
0
    return ABSL_PREDICT_FALSE(pos > length_)
398
0
               ? (base_internal::ThrowStdOutOfRange(
399
0
                      "absl::string_view::substr"),
400
0
                  string_view())
401
0
               : string_view(ptr_ + pos, Min(n, length_ - pos));
402
0
  }
403
404
  // string_view::compare()
405
  //
406
  // Performs a lexicographical comparison between this `string_view` and
407
  // another `string_view` `x`, returning a negative value if `*this` is less
408
  // than `x`, 0 if `*this` is equal to `x`, and a positive value if `*this`
409
  // is greater than `x`.
410
0
  constexpr int compare(string_view x) const noexcept {
411
0
    return CompareImpl(length_, x.length_,
412
0
                       Min(length_, x.length_) == 0
413
0
                           ? 0
414
0
                           : ABSL_INTERNAL_STRING_VIEW_MEMCMP(
415
0
                                 ptr_, x.ptr_, Min(length_, x.length_)));
416
0
  }
417
418
  // Overload of `string_view::compare()` for comparing a substring of the
419
  // 'string_view` and another `absl::string_view`.
420
0
  constexpr int compare(size_type pos1, size_type count1, string_view v) const {
421
0
    return substr(pos1, count1).compare(v);
422
0
  }
423
424
  // Overload of `string_view::compare()` for comparing a substring of the
425
  // `string_view` and a substring of another `absl::string_view`.
426
  constexpr int compare(size_type pos1, size_type count1, string_view v,
427
0
                        size_type pos2, size_type count2) const {
428
0
    return substr(pos1, count1).compare(v.substr(pos2, count2));
429
0
  }
430
431
  // Overload of `string_view::compare()` for comparing a `string_view` and a
432
  // a different C-style string `s`.
433
0
  constexpr int compare(absl::Nonnull<const char*> s) const {
434
0
    return compare(string_view(s));
435
0
  }
436
437
  // Overload of `string_view::compare()` for comparing a substring of the
438
  // `string_view` and a different string C-style string `s`.
439
  constexpr int compare(size_type pos1, size_type count1,
440
0
                        absl::Nonnull<const char*> s) const {
441
0
    return substr(pos1, count1).compare(string_view(s));
442
0
  }
443
444
  // Overload of `string_view::compare()` for comparing a substring of the
445
  // `string_view` and a substring of a different C-style string `s`.
446
  constexpr int compare(size_type pos1, size_type count1,
447
0
                        absl::Nonnull<const char*> s, size_type count2) const {
448
0
    return substr(pos1, count1).compare(string_view(s, count2));
449
0
  }
450
451
  // Find Utilities
452
453
  // string_view::find()
454
  //
455
  // Finds the first occurrence of the substring `s` within the `string_view`,
456
  // returning the position of the first character's match, or `npos` if no
457
  // match was found.
458
  size_type find(string_view s, size_type pos = 0) const noexcept;
459
460
  // Overload of `string_view::find()` for finding the given character `c`
461
  // within the `string_view`.
462
  size_type find(char c, size_type pos = 0) const noexcept;
463
464
  // Overload of `string_view::find()` for finding a substring of a different
465
  // C-style string `s` within the `string_view`.
466
  size_type find(absl::Nonnull<const char*> s, size_type pos,
467
0
                 size_type count) const {
468
0
    return find(string_view(s, count), pos);
469
0
  }
470
471
  // Overload of `string_view::find()` for finding a different C-style string
472
  // `s` within the `string_view`.
473
0
  size_type find(absl::Nonnull<const char *> s, size_type pos = 0) const {
474
0
    return find(string_view(s), pos);
475
0
  }
476
477
  // string_view::rfind()
478
  //
479
  // Finds the last occurrence of a substring `s` within the `string_view`,
480
  // returning the position of the first character's match, or `npos` if no
481
  // match was found.
482
  size_type rfind(string_view s, size_type pos = npos) const noexcept;
483
484
  // Overload of `string_view::rfind()` for finding the last given character `c`
485
  // within the `string_view`.
486
  size_type rfind(char c, size_type pos = npos) const noexcept;
487
488
  // Overload of `string_view::rfind()` for finding a substring of a different
489
  // C-style string `s` within the `string_view`.
490
  size_type rfind(absl::Nonnull<const char*> s, size_type pos,
491
0
                  size_type count) const {
492
0
    return rfind(string_view(s, count), pos);
493
0
  }
494
495
  // Overload of `string_view::rfind()` for finding a different C-style string
496
  // `s` within the `string_view`.
497
0
  size_type rfind(absl::Nonnull<const char*> s, size_type pos = npos) const {
498
0
    return rfind(string_view(s), pos);
499
0
  }
500
501
  // string_view::find_first_of()
502
  //
503
  // Finds the first occurrence of any of the characters in `s` within the
504
  // `string_view`, returning the start position of the match, or `npos` if no
505
  // match was found.
506
  size_type find_first_of(string_view s, size_type pos = 0) const noexcept;
507
508
  // Overload of `string_view::find_first_of()` for finding a character `c`
509
  // within the `string_view`.
510
0
  size_type find_first_of(char c, size_type pos = 0) const noexcept {
511
0
    return find(c, pos);
512
0
  }
513
514
  // Overload of `string_view::find_first_of()` for finding a substring of a
515
  // different C-style string `s` within the `string_view`.
516
  size_type find_first_of(absl::Nonnull<const char*> s, size_type pos,
517
0
                          size_type count) const {
518
0
    return find_first_of(string_view(s, count), pos);
519
0
  }
520
521
  // Overload of `string_view::find_first_of()` for finding a different C-style
522
  // string `s` within the `string_view`.
523
  size_type find_first_of(absl::Nonnull<const char*> s,
524
0
                          size_type pos = 0) const {
525
0
    return find_first_of(string_view(s), pos);
526
0
  }
527
528
  // string_view::find_last_of()
529
  //
530
  // Finds the last occurrence of any of the characters in `s` within the
531
  // `string_view`, returning the start position of the match, or `npos` if no
532
  // match was found.
533
  size_type find_last_of(string_view s, size_type pos = npos) const noexcept;
534
535
  // Overload of `string_view::find_last_of()` for finding a character `c`
536
  // within the `string_view`.
537
0
  size_type find_last_of(char c, size_type pos = npos) const noexcept {
538
0
    return rfind(c, pos);
539
0
  }
540
541
  // Overload of `string_view::find_last_of()` for finding a substring of a
542
  // different C-style string `s` within the `string_view`.
543
  size_type find_last_of(absl::Nonnull<const char*> s, size_type pos,
544
0
                         size_type count) const {
545
0
    return find_last_of(string_view(s, count), pos);
546
0
  }
547
548
  // Overload of `string_view::find_last_of()` for finding a different C-style
549
  // string `s` within the `string_view`.
550
  size_type find_last_of(absl::Nonnull<const char*> s,
551
0
                         size_type pos = npos) const {
552
0
    return find_last_of(string_view(s), pos);
553
0
  }
554
555
  // string_view::find_first_not_of()
556
  //
557
  // Finds the first occurrence of any of the characters not in `s` within the
558
  // `string_view`, returning the start position of the first non-match, or
559
  // `npos` if no non-match was found.
560
  size_type find_first_not_of(string_view s, size_type pos = 0) const noexcept;
561
562
  // Overload of `string_view::find_first_not_of()` for finding a character
563
  // that is not `c` within the `string_view`.
564
  size_type find_first_not_of(char c, size_type pos = 0) const noexcept;
565
566
  // Overload of `string_view::find_first_not_of()` for finding a substring of a
567
  // different C-style string `s` within the `string_view`.
568
  size_type find_first_not_of(absl::Nonnull<const char*> s, size_type pos,
569
0
                              size_type count) const {
570
0
    return find_first_not_of(string_view(s, count), pos);
571
0
  }
572
573
  // Overload of `string_view::find_first_not_of()` for finding a different
574
  // C-style string `s` within the `string_view`.
575
  size_type find_first_not_of(absl::Nonnull<const char*> s,
576
0
                              size_type pos = 0) const {
577
0
    return find_first_not_of(string_view(s), pos);
578
0
  }
579
580
  // string_view::find_last_not_of()
581
  //
582
  // Finds the last occurrence of any of the characters not in `s` within the
583
  // `string_view`, returning the start position of the last non-match, or
584
  // `npos` if no non-match was found.
585
  size_type find_last_not_of(string_view s,
586
                             size_type pos = npos) const noexcept;
587
588
  // Overload of `string_view::find_last_not_of()` for finding a character
589
  // that is not `c` within the `string_view`.
590
  size_type find_last_not_of(char c, size_type pos = npos) const noexcept;
591
592
  // Overload of `string_view::find_last_not_of()` for finding a substring of a
593
  // different C-style string `s` within the `string_view`.
594
  size_type find_last_not_of(absl::Nonnull<const char*> s, size_type pos,
595
0
                             size_type count) const {
596
0
    return find_last_not_of(string_view(s, count), pos);
597
0
  }
598
599
  // Overload of `string_view::find_last_not_of()` for finding a different
600
  // C-style string `s` within the `string_view`.
601
  size_type find_last_not_of(absl::Nonnull<const char*> s,
602
0
                             size_type pos = npos) const {
603
0
    return find_last_not_of(string_view(s), pos);
604
0
  }
605
606
#if ABSL_INTERNAL_CPLUSPLUS_LANG >= 202002L
607
  // string_view::starts_with()
608
  //
609
  // Returns true if the `string_view` starts with the prefix `s`.
610
  //
611
  // This method only exists when targeting at least C++20.
612
  // If support for C++ prior to C++20 is required, use `absl::StartsWith()`
613
  // from `//absl/strings/match.h` for compatibility.
614
  constexpr bool starts_with(string_view s) const noexcept {
615
    return s.empty() ||
616
           (size() >= s.size() &&
617
            ABSL_INTERNAL_STRING_VIEW_MEMCMP(data(), s.data(), s.size()) == 0);
618
  }
619
620
  // Overload of `string_view::starts_with()` that returns true if `c` is the
621
  // first character of the `string_view`.
622
  constexpr bool starts_with(char c) const noexcept {
623
    return !empty() && front() == c;
624
  }
625
626
  // Overload of `string_view::starts_with()` that returns true if the
627
  // `string_view` starts with the C-style prefix `s`.
628
  constexpr bool starts_with(const char* s) const {
629
    return starts_with(string_view(s));
630
  }
631
632
  // string_view::ends_with()
633
  //
634
  // Returns true if the `string_view` ends with the suffix `s`.
635
  //
636
  // This method only exists when targeting at least C++20.
637
  // If support for C++ prior to C++20 is required, use `absl::EndsWith()`
638
  // from `//absl/strings/match.h` for compatibility.
639
  constexpr bool ends_with(string_view s) const noexcept {
640
    return s.empty() || (size() >= s.size() && ABSL_INTERNAL_STRING_VIEW_MEMCMP(
641
                                                   data() + (size() - s.size()),
642
                                                   s.data(), s.size()) == 0);
643
  }
644
645
  // Overload of `string_view::ends_with()` that returns true if `c` is the
646
  // last character of the `string_view`.
647
  constexpr bool ends_with(char c) const noexcept {
648
    return !empty() && back() == c;
649
  }
650
651
  // Overload of `string_view::ends_with()` that returns true if the
652
  // `string_view` ends with the C-style suffix `s`.
653
  constexpr bool ends_with(const char* s) const {
654
    return ends_with(string_view(s));
655
  }
656
#endif  // ABSL_INTERNAL_CPLUSPLUS_LANG >= 202002L
657
658
 private:
659
  // The constructor from std::string delegates to this constructor.
660
  // See the comment on that constructor for the rationale.
661
  struct SkipCheckLengthTag {};
662
  string_view(absl::Nullable<const char*> data, size_type len,
663
              SkipCheckLengthTag) noexcept
664
6.63k
      : ptr_(data), length_(len) {}
665
666
  static constexpr size_type kMaxSize =
667
      (std::numeric_limits<difference_type>::max)();
668
669
0
  static constexpr size_type CheckLengthInternal(size_type len) {
670
0
    return ABSL_HARDENING_ASSERT(len <= kMaxSize), len;
671
0
  }
672
673
0
  static constexpr size_type StrlenInternal(absl::Nonnull<const char*> str) {
674
#if defined(_MSC_VER) && !defined(__clang__)
675
    // MSVC 2017+ can evaluate this at compile-time.
676
    const char* begin = str;
677
    while (*str != '\0') ++str;
678
    return str - begin;
679
#elif ABSL_HAVE_BUILTIN(__builtin_strlen) || \
680
    (defined(__GNUC__) && !defined(__clang__))
681
    // GCC has __builtin_strlen according to
682
    // https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Other-Builtins.html, but
683
    // ABSL_HAVE_BUILTIN doesn't detect that, so we use the extra checks above.
684
    // __builtin_strlen is constexpr.
685
0
    return __builtin_strlen(str);
686
#else
687
    return str ? strlen(str) : 0;
688
#endif
689
0
  }
690
691
0
  static constexpr size_t Min(size_type length_a, size_type length_b) {
692
0
    return length_a < length_b ? length_a : length_b;
693
0
  }
694
695
  static constexpr int CompareImpl(size_type length_a, size_type length_b,
696
0
                                   int compare_result) {
697
0
    return compare_result == 0 ? static_cast<int>(length_a > length_b) -
698
0
                                     static_cast<int>(length_a < length_b)
699
0
                               : (compare_result < 0 ? -1 : 1);
700
0
  }
701
702
  absl::Nullable<const char*> ptr_;
703
  size_type length_;
704
};
705
706
// This large function is defined inline so that in a fairly common case where
707
// one of the arguments is a literal, the compiler can elide a lot of the
708
// following comparisons.
709
0
constexpr bool operator==(string_view x, string_view y) noexcept {
710
0
  return x.size() == y.size() &&
711
0
         (x.empty() ||
712
0
          ABSL_INTERNAL_STRING_VIEW_MEMCMP(x.data(), y.data(), x.size()) == 0);
713
0
}
714
715
0
constexpr bool operator!=(string_view x, string_view y) noexcept {
716
0
  return !(x == y);
717
0
}
718
719
0
constexpr bool operator<(string_view x, string_view y) noexcept {
720
0
  return x.compare(y) < 0;
721
0
}
722
723
0
constexpr bool operator>(string_view x, string_view y) noexcept {
724
0
  return y < x;
725
0
}
726
727
0
constexpr bool operator<=(string_view x, string_view y) noexcept {
728
0
  return !(y < x);
729
0
}
730
731
0
constexpr bool operator>=(string_view x, string_view y) noexcept {
732
0
  return !(x < y);
733
0
}
734
735
// IO Insertion Operator
736
std::ostream& operator<<(std::ostream& o, string_view piece);
737
738
ABSL_NAMESPACE_END
739
}  // namespace absl
740
741
#undef ABSL_INTERNAL_STRING_VIEW_MEMCMP
742
743
#endif  // ABSL_USES_STD_STRING_VIEW
744
745
namespace absl {
746
ABSL_NAMESPACE_BEGIN
747
748
// ClippedSubstr()
749
//
750
// Like `s.substr(pos, n)`, but clips `pos` to an upper bound of `s.size()`.
751
// Provided because std::string_view::substr throws if `pos > size()`
752
inline string_view ClippedSubstr(string_view s, size_t pos,
753
0
                                 size_t n = string_view::npos) {
754
0
  pos = (std::min)(pos, static_cast<size_t>(s.size()));
755
0
  return s.substr(pos, n);
756
0
}
757
758
// NullSafeStringView()
759
//
760
// Creates an `absl::string_view` from a pointer `p` even if it's null-valued.
761
// This function should be used where an `absl::string_view` can be created from
762
// a possibly-null pointer.
763
0
constexpr string_view NullSafeStringView(absl::Nullable<const char*> p) {
764
0
  return p ? string_view(p) : string_view();
765
0
}
766
767
ABSL_NAMESPACE_END
768
}  // namespace absl
769
770
#endif  // ABSL_STRINGS_STRING_VIEW_H_