folly: build with -Wunused-parameter
[folly.git] / folly / FBString.h
1 /*
2  * Copyright 2015 Facebook, Inc.
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  *   http://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 // @author: Andrei Alexandrescu (aalexandre)
18 // String type.
19
20 #ifndef FOLLY_BASE_FBSTRING_H_
21 #define FOLLY_BASE_FBSTRING_H_
22
23 #include <atomic>
24 #include <limits>
25 #include <type_traits>
26
27 // This file appears in two locations: inside fbcode and in the
28 // libstdc++ source code (when embedding fbstring as std::string).
29 // To aid in this schizophrenic use, _LIBSTDCXX_FBSTRING is defined in
30 // libstdc++'s c++config.h, to gate use inside fbcode v. libstdc++.
31 #ifdef _LIBSTDCXX_FBSTRING
32
33 #pragma GCC system_header
34
35 // When used as std::string replacement always disable assertions.
36 #ifndef NDEBUG
37 #define NDEBUG
38 #define FOLLY_DEFINED_NDEBUG_FOR_FBSTRING
39 #endif // NDEBUG
40
41 // Handle the cases where the fbcode version (folly/Malloc.h) is included
42 // either before or after this inclusion.
43 #ifdef FOLLY_MALLOC_H_
44 #undef FOLLY_MALLOC_H_
45 #include "basic_fbstring_malloc.h" // nolint
46 #else
47 #include "basic_fbstring_malloc.h" // nolint
48 #undef FOLLY_MALLOC_H_
49 #endif
50
51 #else // !_LIBSTDCXX_FBSTRING
52
53 #include <folly/Portability.h>
54
55 // libc++ doesn't provide this header, nor does msvc
56 #ifdef FOLLY_HAVE_BITS_CXXCONFIG_H
57 #include <bits/c++config.h>
58 #endif
59
60 #include <string>
61 #include <cstring>
62 #include <cassert>
63 #include <algorithm>
64
65 #include <folly/Traits.h>
66 #include <folly/Malloc.h>
67 #include <folly/Hash.h>
68 #include <folly/ScopeGuard.h>
69
70 #if FOLLY_HAVE_DEPRECATED_ASSOC
71 #ifdef _GLIBCXX_SYMVER
72 #include <ext/hash_set>
73 #include <ext/hash_map>
74 #endif
75 #endif
76
77 #endif
78
79 // We defined these here rather than including Likely.h to avoid
80 // redefinition errors when fbstring is imported into libstdc++.
81 #if defined(__GNUC__) && __GNUC__ >= 4
82 #define FBSTRING_LIKELY(x)   (__builtin_expect((x), 1))
83 #define FBSTRING_UNLIKELY(x) (__builtin_expect((x), 0))
84 #else
85 #define FBSTRING_LIKELY(x)   (x)
86 #define FBSTRING_UNLIKELY(x) (x)
87 #endif
88
89 // Ignore shadowing warnings within this file, so includers can use -Wshadow.
90 #pragma GCC diagnostic push
91 #pragma GCC diagnostic ignored "-Wshadow"
92
93 // FBString cannot use throw when replacing std::string, though it may still
94 // use std::__throw_*
95 // nolint
96 #define throw FOLLY_FBSTRING_MAY_NOT_USE_THROW
97
98 #ifdef _LIBSTDCXX_FBSTRING
99 namespace std _GLIBCXX_VISIBILITY(default) {
100 _GLIBCXX_BEGIN_NAMESPACE_VERSION
101 #else
102 namespace folly {
103 #endif
104
105 // Different versions of gcc/clang support different versions of
106 // the address sanitizer attribute.  Unfortunately, this attribute
107 // has issues when inlining is used, so disable that as well.
108 #if defined(__clang__)
109 # if __has_feature(address_sanitizer)
110 #  if __has_attribute(__no_sanitize__)
111 #   define FBSTRING_DISABLE_ADDRESS_SANITIZER \
112       __attribute__((__no_sanitize__("address"), __noinline__))
113 #  elif __has_attribute(__no_address_safety_analysis__)
114 #   define FBSTRING_DISABLE_ADDRESS_SANITIZER \
115       __attribute__((__no_address_safety_analysis__, __noinline__))
116 #  elif __has_attribute(__no_sanitize_address__)
117 #   define FBSTRING_DISABLE_ADDRESS_SANITIZER \
118       __attribute__((__no_sanitize_address__, __noinline__))
119 #  endif
120 # endif
121 #elif defined (__GNUC__) && \
122       __SANITIZE_ADDRESS__
123 # define FBSTRING_DISABLE_ADDRESS_SANITIZER \
124     __attribute__((__no_address_safety_analysis__, __noinline__))
125 #endif
126 #ifndef FBSTRING_DISABLE_ADDRESS_SANITIZER
127 # define FBSTRING_DISABLE_ADDRESS_SANITIZER
128 #endif
129
130 namespace fbstring_detail {
131
132 template <class InIt, class OutIt>
133 inline
134 OutIt copy_n(InIt b,
135              typename std::iterator_traits<InIt>::difference_type n,
136              OutIt d) {
137   for (; n != 0; --n, ++b, ++d) {
138     *d = *b;
139   }
140   return d;
141 }
142
143 template <class Pod, class T>
144 inline void pod_fill(Pod* b, Pod* e, T c) {
145   assert(b && e && b <= e);
146   /*static*/ if (sizeof(T) == 1) {
147     memset(b, c, e - b);
148   } else {
149     auto const ee = b + ((e - b) & ~7u);
150     for (; b != ee; b += 8) {
151       b[0] = c;
152       b[1] = c;
153       b[2] = c;
154       b[3] = c;
155       b[4] = c;
156       b[5] = c;
157       b[6] = c;
158       b[7] = c;
159     }
160     // Leftovers
161     for (; b != e; ++b) {
162       *b = c;
163     }
164   }
165 }
166
167 /*
168  * Lightly structured memcpy, simplifies copying PODs and introduces
169  * some asserts. Unfortunately using this function may cause
170  * measurable overhead (presumably because it adjusts from a begin/end
171  * convention to a pointer/size convention, so it does some extra
172  * arithmetic even though the caller might have done the inverse
173  * adaptation outside).
174  */
175 template <class Pod>
176 inline void pod_copy(const Pod* b, const Pod* e, Pod* d) {
177   assert(e >= b);
178   assert(d >= e || d + (e - b) <= b);
179   memcpy(d, b, (e - b) * sizeof(Pod));
180 }
181
182 /*
183  * Lightly structured memmove, simplifies copying PODs and introduces
184  * some asserts
185  */
186 template <class Pod>
187 inline void pod_move(const Pod* b, const Pod* e, Pod* d) {
188   assert(e >= b);
189   memmove(d, b, (e - b) * sizeof(*b));
190 }
191
192 } // namespace fbstring_detail
193
194 /**
195  * Defines a special acquisition method for constructing fbstring
196  * objects. AcquireMallocatedString means that the user passes a
197  * pointer to a malloc-allocated string that the fbstring object will
198  * take into custody.
199  */
200 enum class AcquireMallocatedString {};
201
202 /*
203  * fbstring_core_model is a mock-up type that defines all required
204  * signatures of a fbstring core. The fbstring class itself uses such
205  * a core object to implement all of the numerous member functions
206  * required by the standard.
207  *
208  * If you want to define a new core, copy the definition below and
209  * implement the primitives. Then plug the core into basic_fbstring as
210  * a template argument.
211
212 template <class Char>
213 class fbstring_core_model {
214 public:
215   fbstring_core_model();
216   fbstring_core_model(const fbstring_core_model &);
217   ~fbstring_core_model();
218   // Returns a pointer to string's buffer (currently only contiguous
219   // strings are supported). The pointer is guaranteed to be valid
220   // until the next call to a non-const member function.
221   const Char * data() const;
222   // Much like data(), except the string is prepared to support
223   // character-level changes. This call is a signal for
224   // e.g. reference-counted implementation to fork the data. The
225   // pointer is guaranteed to be valid until the next call to a
226   // non-const member function.
227   Char * mutable_data();
228   // Returns a pointer to string's buffer and guarantees that a
229   // readable '\0' lies right after the buffer. The pointer is
230   // guaranteed to be valid until the next call to a non-const member
231   // function.
232   const Char * c_str() const;
233   // Shrinks the string by delta characters. Asserts that delta <=
234   // size().
235   void shrink(size_t delta);
236   // Expands the string by delta characters (i.e. after this call
237   // size() will report the old size() plus delta) but without
238   // initializing the expanded region. Returns a pointer to the memory
239   // to be initialized (the beginning of the expanded portion). The
240   // caller is expected to fill the expanded area appropriately.
241   Char* expand_noinit(size_t delta);
242   // Expands the string by one character and sets the last character
243   // to c.
244   void push_back(Char c);
245   // Returns the string's size.
246   size_t size() const;
247   // Returns the string's capacity, i.e. maximum size that the string
248   // can grow to without reallocation. Note that for reference counted
249   // strings that's technically a lie - even assigning characters
250   // within the existing size would cause a reallocation.
251   size_t capacity() const;
252   // Returns true if the data underlying the string is actually shared
253   // across multiple strings (in a refcounted fashion).
254   bool isShared() const;
255   // Makes sure that at least minCapacity characters are available for
256   // the string without reallocation. For reference-counted strings,
257   // it should fork the data even if minCapacity < size().
258   void reserve(size_t minCapacity);
259 private:
260   // Do not implement
261   fbstring_core_model& operator=(const fbstring_core_model &);
262 };
263 */
264
265 /**
266  * This is the core of the string. The code should work on 32- and
267  * 64-bit and both big- and little-endianan architectures with any
268  * Char size.
269  *
270  * The storage is selected as follows (assuming we store one-byte
271  * characters on a 64-bit machine): (a) "small" strings between 0 and
272  * 23 chars are stored in-situ without allocation (the rightmost byte
273  * stores the size); (b) "medium" strings from 24 through 254 chars
274  * are stored in malloc-allocated memory that is copied eagerly; (c)
275  * "large" strings of 255 chars and above are stored in a similar
276  * structure as medium arrays, except that the string is
277  * reference-counted and copied lazily. the reference count is
278  * allocated right before the character array.
279  *
280  * The discriminator between these three strategies sits in two
281  * bits of the rightmost char of the storage. If neither is set, then the
282  * string is small (and its length sits in the lower-order bits on
283  * little-endian or the high-order bits on big-endian of that
284  * rightmost character). If the MSb is set, the string is medium width.
285  * If the second MSb is set, then the string is large. On little-endian,
286  * these 2 bits are the 2 MSbs of MediumLarge::capacity_, while on
287  * big-endian, these 2 bits are the 2 LSbs. This keeps both little-endian
288  * and big-endian fbstring_core equivalent with merely different ops used
289  * to extract capacity/category.
290  */
291 template <class Char> class fbstring_core {
292 public:
293   fbstring_core() noexcept { reset(); }
294
295   fbstring_core(const fbstring_core & rhs) {
296     assert(&rhs != this);
297     // Simplest case first: small strings are bitblitted
298     if (rhs.category() == Category::isSmall) {
299       static_assert(offsetof(MediumLarge, data_) == 0,
300           "fbstring layout failure");
301       static_assert(offsetof(MediumLarge, size_) == sizeof(ml_.data_),
302           "fbstring layout failure");
303       static_assert(offsetof(MediumLarge, capacity_) == 2 * sizeof(ml_.data_),
304           "fbstring layout failure");
305       // Just write the whole thing, don't look at details. In
306       // particular we need to copy capacity anyway because we want
307       // to set the size (don't forget that the last character,
308       // which stores a short string's length, is shared with the
309       // ml_.capacity field).
310       ml_ = rhs.ml_;
311       assert(category() == Category::isSmall && this->size() == rhs.size());
312     } else if (rhs.category() == Category::isLarge) {
313       // Large strings are just refcounted
314       ml_ = rhs.ml_;
315       RefCounted::incrementRefs(ml_.data_);
316       assert(category() == Category::isLarge && size() == rhs.size());
317     } else {
318       // Medium strings are copied eagerly. Don't forget to allocate
319       // one extra Char for the null terminator.
320       auto const allocSize =
321            goodMallocSize((1 + rhs.ml_.size_) * sizeof(Char));
322       ml_.data_ = static_cast<Char*>(checkedMalloc(allocSize));
323       fbstring_detail::pod_copy(rhs.ml_.data_,
324                                 // 1 for terminator
325                                 rhs.ml_.data_ + rhs.ml_.size_ + 1,
326                                 ml_.data_);
327       // No need for writeTerminator() here, we copied one extra
328       // element just above.
329       ml_.size_ = rhs.ml_.size_;
330       ml_.setCapacity(allocSize / sizeof(Char) - 1, Category::isMedium);
331       assert(category() == Category::isMedium);
332     }
333     assert(size() == rhs.size());
334     assert(memcmp(data(), rhs.data(), size() * sizeof(Char)) == 0);
335   }
336
337   fbstring_core(fbstring_core&& goner) noexcept {
338     // Take goner's guts
339     ml_ = goner.ml_;
340     if (goner.category() != Category::isSmall) {
341       // Clean goner's carcass
342       goner.reset();
343     }
344   }
345
346   // NOTE(agallagher): The word-aligned copy path copies bytes which are
347   // outside the range of the string, and makes address sanitizer unhappy,
348   // so just disable it on this function.
349   fbstring_core(const Char *const data, const size_t size)
350       FBSTRING_DISABLE_ADDRESS_SANITIZER {
351 #ifndef NDEBUG
352 #ifndef _LIBSTDCXX_FBSTRING
353     SCOPE_EXIT {
354       assert(this->size() == size);
355       assert(memcmp(this->data(), data, size * sizeof(Char)) == 0);
356     };
357 #endif
358 #endif
359
360     // Simplest case first: small strings are bitblitted
361     if (size <= maxSmallSize) {
362       // Layout is: Char* data_, size_t size_, size_t capacity_
363       static_assert(sizeof(*this) == sizeof(Char*) + 2 * sizeof(size_t),
364           "fbstring has unexpected size");
365       static_assert(sizeof(Char*) == sizeof(size_t),
366           "fbstring size assumption violation");
367       // sizeof(size_t) must be a power of 2
368       static_assert((sizeof(size_t) & (sizeof(size_t) - 1)) == 0,
369           "fbstring size assumption violation");
370
371       // If data is aligned, use fast word-wise copying. Otherwise,
372       // use conservative memcpy.
373       if (reinterpret_cast<size_t>(data) & (sizeof(size_t) - 1)) {
374         fbstring_detail::pod_copy(data, data + size, small_);
375       } else {
376         // Copy one word (64 bits) at a time
377         const size_t byteSize = size * sizeof(Char);
378         if (byteSize > 2 * sizeof(size_t)) {
379           // Copy three words
380           ml_.capacity_ = reinterpret_cast<const size_t*>(data)[2];
381           copyTwo:
382           ml_.size_ = reinterpret_cast<const size_t*>(data)[1];
383           copyOne:
384           ml_.data_ = *reinterpret_cast<Char**>(const_cast<Char*>(data));
385         } else if (byteSize > sizeof(size_t)) {
386           // Copy two words
387           goto copyTwo;
388         } else if (size > 0) {
389           // Copy one word
390           goto copyOne;
391         }
392       }
393       setSmallSize(size);
394       return;
395     } else if (size <= maxMediumSize) {
396       // Medium strings are allocated normally. Don't forget to
397       // allocate one extra Char for the terminating null.
398       auto const allocSize = goodMallocSize((1 + size) * sizeof(Char));
399       ml_.data_ = static_cast<Char*>(checkedMalloc(allocSize));
400       fbstring_detail::pod_copy(data, data + size, ml_.data_);
401       ml_.size_ = size;
402       ml_.setCapacity(allocSize / sizeof(Char) - 1, Category::isMedium);
403     } else {
404       // Large strings are allocated differently
405       size_t effectiveCapacity = size;
406       auto const newRC = RefCounted::create(data, & effectiveCapacity);
407       ml_.data_ = newRC->data_;
408       ml_.size_ = size;
409       ml_.setCapacity(effectiveCapacity, Category::isLarge);
410     }
411     writeTerminator();
412   }
413
414   ~fbstring_core() noexcept {
415     auto const c = category();
416     if (c == Category::isSmall) {
417       return;
418     }
419     if (c == Category::isMedium) {
420       free(ml_.data_);
421       return;
422     }
423     RefCounted::decrementRefs(ml_.data_);
424   }
425
426   // Snatches a previously mallocated string. The parameter "size"
427   // is the size of the string, and the parameter "allocatedSize"
428   // is the size of the mallocated block.  The string must be
429   // \0-terminated, so allocatedSize >= size + 1 and data[size] == '\0'.
430   //
431   // So if you want a 2-character string, pass malloc(3) as "data",
432   // pass 2 as "size", and pass 3 as "allocatedSize".
433   fbstring_core(Char * const data,
434                 const size_t size,
435                 const size_t allocatedSize,
436                 AcquireMallocatedString) {
437     if (size > 0) {
438       assert(allocatedSize >= size + 1);
439       assert(data[size] == '\0');
440       // Use the medium string storage
441       ml_.data_ = data;
442       ml_.size_ = size;
443       // Don't forget about null terminator
444       ml_.setCapacity(allocatedSize - 1, Category::isMedium);
445     } else {
446       // No need for the memory
447       free(data);
448       reset();
449     }
450   }
451
452   // swap below doesn't test whether &rhs == this (and instead
453   // potentially does extra work) on the premise that the rarity of
454   // that situation actually makes the check more expensive than is
455   // worth.
456   void swap(fbstring_core & rhs) {
457     auto const t = ml_;
458     ml_ = rhs.ml_;
459     rhs.ml_ = t;
460   }
461
462   // In C++11 data() and c_str() are 100% equivalent.
463   const Char * data() const {
464     return c_str();
465   }
466
467   Char * mutable_data() {
468     auto const c = category();
469     if (c == Category::isSmall) {
470       return small_;
471     }
472     assert(c == Category::isMedium || c == Category::isLarge);
473     if (c == Category::isLarge && RefCounted::refs(ml_.data_) > 1) {
474       // Ensure unique.
475       size_t effectiveCapacity = ml_.capacity();
476       auto const newRC = RefCounted::create(& effectiveCapacity);
477       // If this fails, someone placed the wrong capacity in an
478       // fbstring.
479       assert(effectiveCapacity >= ml_.capacity());
480       fbstring_detail::pod_copy(ml_.data_, ml_.data_ + ml_.size_ + 1,
481                                 newRC->data_);
482       RefCounted::decrementRefs(ml_.data_);
483       ml_.data_ = newRC->data_;
484       // No need to call writeTerminator(), we have + 1 above.
485     }
486     return ml_.data_;
487   }
488
489   const Char * c_str() const {
490     auto const c = category();
491     if (c == Category::isSmall) {
492       assert(small_[smallSize()] == '\0');
493       return small_;
494     }
495     assert(c == Category::isMedium || c == Category::isLarge);
496     assert(ml_.data_[ml_.size_] == '\0');
497     return ml_.data_;
498   }
499
500   void shrink(const size_t delta) {
501     if (category() == Category::isSmall) {
502       // Check for underflow
503       assert(delta <= smallSize());
504       setSmallSize(smallSize() - delta);
505     } else if (category() == Category::isMedium ||
506                RefCounted::refs(ml_.data_) == 1) {
507       // Medium strings and unique large strings need no special
508       // handling.
509       assert(ml_.size_ >= delta);
510       ml_.size_ -= delta;
511       writeTerminator();
512     } else {
513       assert(ml_.size_ >= delta);
514       // Shared large string, must make unique. This is because of the
515       // durn terminator must be written, which may trample the shared
516       // data.
517       if (delta) {
518         fbstring_core(ml_.data_, ml_.size_ - delta).swap(*this);
519       }
520       // No need to write the terminator.
521     }
522   }
523
524   void reserve(size_t minCapacity) {
525     if (category() == Category::isLarge) {
526       // Ensure unique
527       if (RefCounted::refs(ml_.data_) > 1) {
528         // We must make it unique regardless; in-place reallocation is
529         // useless if the string is shared. In order to not surprise
530         // people, reserve the new block at current capacity or
531         // more. That way, a string's capacity never shrinks after a
532         // call to reserve.
533         minCapacity = std::max(minCapacity, ml_.capacity());
534         auto const newRC = RefCounted::create(& minCapacity);
535         fbstring_detail::pod_copy(ml_.data_, ml_.data_ + ml_.size_ + 1,
536                                    newRC->data_);
537         // Done with the old data. No need to call writeTerminator(),
538         // we have + 1 above.
539         RefCounted::decrementRefs(ml_.data_);
540         ml_.data_ = newRC->data_;
541         ml_.setCapacity(minCapacity, Category::isLarge);
542         // size remains unchanged
543       } else {
544         // String is not shared, so let's try to realloc (if needed)
545         if (minCapacity > ml_.capacity()) {
546           // Asking for more memory
547           auto const newRC =
548                RefCounted::reallocate(ml_.data_, ml_.size_,
549                                       ml_.capacity(), minCapacity);
550           ml_.data_ = newRC->data_;
551           ml_.setCapacity(minCapacity, Category::isLarge);
552           writeTerminator();
553         }
554         assert(capacity() >= minCapacity);
555       }
556     } else if (category() == Category::isMedium) {
557       // String is not shared
558       if (minCapacity <= ml_.capacity()) {
559         return; // nothing to do, there's enough room
560       }
561       if (minCapacity <= maxMediumSize) {
562         // Keep the string at medium size. Don't forget to allocate
563         // one extra Char for the terminating null.
564         size_t capacityBytes = goodMallocSize((1 + minCapacity) * sizeof(Char));
565         ml_.data_ = static_cast<Char *>(
566           smartRealloc(
567             ml_.data_,
568             ml_.size_ * sizeof(Char),
569             (ml_.capacity() + 1) * sizeof(Char),
570             capacityBytes));
571         writeTerminator();
572         ml_.setCapacity(capacityBytes / sizeof(Char) - 1, Category::isMedium);
573       } else {
574         // Conversion from medium to large string
575         fbstring_core nascent;
576         // Will recurse to another branch of this function
577         nascent.reserve(minCapacity);
578         nascent.ml_.size_ = ml_.size_;
579         fbstring_detail::pod_copy(ml_.data_, ml_.data_ + ml_.size_,
580                                   nascent.ml_.data_);
581         nascent.swap(*this);
582         writeTerminator();
583         assert(capacity() >= minCapacity);
584       }
585     } else {
586       assert(category() == Category::isSmall);
587       if (minCapacity > maxMediumSize) {
588         // large
589         auto const newRC = RefCounted::create(& minCapacity);
590         auto const size = smallSize();
591         fbstring_detail::pod_copy(small_, small_ + size + 1, newRC->data_);
592         // No need for writeTerminator(), we wrote it above with + 1.
593         ml_.data_ = newRC->data_;
594         ml_.size_ = size;
595         ml_.setCapacity(minCapacity, Category::isLarge);
596         assert(capacity() >= minCapacity);
597       } else if (minCapacity > maxSmallSize) {
598         // medium
599         // Don't forget to allocate one extra Char for the terminating null
600         auto const allocSizeBytes =
601           goodMallocSize((1 + minCapacity) * sizeof(Char));
602         auto const data = static_cast<Char*>(checkedMalloc(allocSizeBytes));
603         auto const size = smallSize();
604         fbstring_detail::pod_copy(small_, small_ + size + 1, data);
605         // No need for writeTerminator(), we wrote it above with + 1.
606         ml_.data_ = data;
607         ml_.size_ = size;
608         ml_.setCapacity(allocSizeBytes / sizeof(Char) - 1, Category::isMedium);
609       } else {
610         // small
611         // Nothing to do, everything stays put
612       }
613     }
614     assert(capacity() >= minCapacity);
615   }
616
617   Char * expand_noinit(const size_t delta) {
618     // Strategy is simple: make room, then change size
619     assert(capacity() >= size());
620     size_t sz, newSz;
621     if (category() == Category::isSmall) {
622       sz = smallSize();
623       newSz = sz + delta;
624       if (newSz <= maxSmallSize) {
625         setSmallSize(newSz);
626         return small_ + sz;
627       }
628       reserve(newSz);
629     } else {
630       sz = ml_.size_;
631       newSz = ml_.size_ + delta;
632       if (newSz > capacity()) {
633         reserve(newSz);
634       }
635     }
636     assert(capacity() >= newSz);
637     // Category can't be small - we took care of that above
638     assert(category() == Category::isMedium || category() == Category::isLarge);
639     ml_.size_ = newSz;
640     writeTerminator();
641     assert(size() == newSz);
642     return ml_.data_ + sz;
643   }
644
645   void push_back(Char c) {
646     assert(capacity() >= size());
647     size_t sz;
648     if (category() == Category::isSmall) {
649       sz = smallSize();
650       if (sz < maxSmallSize) {
651         small_[sz] = c;
652         setSmallSize(sz + 1);
653         return;
654       }
655       reserve(maxSmallSize * 2);
656     } else {
657       sz = ml_.size_;
658       if (sz == capacity()) {  // always true for isShared()
659         reserve(1 + sz * 3 / 2);  // ensures not shared
660       }
661     }
662     assert(!isShared());
663     assert(capacity() >= sz + 1);
664     // Category can't be small - we took care of that above
665     assert(category() == Category::isMedium || category() == Category::isLarge);
666     ml_.size_ = sz + 1;
667     ml_.data_[sz] = c;
668     writeTerminator();
669   }
670
671   size_t size() const {
672     return category() == Category::isSmall ? smallSize() : ml_.size_;
673   }
674
675   size_t capacity() const {
676     switch (category()) {
677       case Category::isSmall:
678         return maxSmallSize;
679       case Category::isLarge:
680         // For large-sized strings, a multi-referenced chunk has no
681         // available capacity. This is because any attempt to append
682         // data would trigger a new allocation.
683         if (RefCounted::refs(ml_.data_) > 1) return ml_.size_;
684       default: {}
685     }
686     return ml_.capacity();
687   }
688
689   bool isShared() const {
690     return category() == Category::isLarge && RefCounted::refs(ml_.data_) > 1;
691   }
692
693   void writeTerminator() {
694     if (category() == Category::isSmall) {
695       const auto s = smallSize();
696       if (s != maxSmallSize) {
697         small_[s] = '\0';
698       }
699     } else {
700       ml_.data_[ml_.size_] = '\0';
701     }
702   }
703
704 private:
705   // Disabled
706   fbstring_core & operator=(const fbstring_core & rhs);
707
708   // Equivalent to setSmallSize(0), but with specialized
709   // writeTerminator which doesn't re-check the category after
710   // capacity_ is overwritten.
711   void reset() {
712     // Only initialize the tag, will set the MSBs (i.e. the small
713     // string size) to zero too.
714     ml_.capacity_ = kIsLittleEndian
715       ? maxSmallSize << (8 * (sizeof(size_t) - sizeof(Char)))
716       : maxSmallSize << 2;
717     small_[0] = '\0';
718     assert(category() == Category::isSmall && size() == 0);
719   }
720
721   struct RefCounted {
722     std::atomic<size_t> refCount_;
723     Char data_[1];
724
725     static RefCounted * fromData(Char * p) {
726       return static_cast<RefCounted*>(
727         static_cast<void*>(
728           static_cast<unsigned char*>(static_cast<void*>(p))
729           - sizeof(refCount_)));
730     }
731
732     static size_t refs(Char * p) {
733       return fromData(p)->refCount_.load(std::memory_order_acquire);
734     }
735
736     static void incrementRefs(Char * p) {
737       fromData(p)->refCount_.fetch_add(1, std::memory_order_acq_rel);
738     }
739
740     static void decrementRefs(Char * p) {
741       auto const dis = fromData(p);
742       size_t oldcnt = dis->refCount_.fetch_sub(1, std::memory_order_acq_rel);
743       assert(oldcnt > 0);
744       if (oldcnt == 1) {
745         free(dis);
746       }
747     }
748
749     static RefCounted * create(size_t * size) {
750       // Don't forget to allocate one extra Char for the terminating
751       // null. In this case, however, one Char is already part of the
752       // struct.
753       const size_t allocSize = goodMallocSize(
754         sizeof(RefCounted) + *size * sizeof(Char));
755       auto result = static_cast<RefCounted*>(checkedMalloc(allocSize));
756       result->refCount_.store(1, std::memory_order_release);
757       *size = (allocSize - sizeof(RefCounted)) / sizeof(Char);
758       return result;
759     }
760
761     static RefCounted * create(const Char * data, size_t * size) {
762       const size_t effectiveSize = *size;
763       auto result = create(size);
764       fbstring_detail::pod_copy(data, data + effectiveSize, result->data_);
765       return result;
766     }
767
768     static RefCounted * reallocate(Char *const data,
769                                    const size_t currentSize,
770                                    const size_t currentCapacity,
771                                    const size_t newCapacity) {
772       assert(newCapacity > 0 && newCapacity > currentSize);
773       auto const dis = fromData(data);
774       assert(dis->refCount_.load(std::memory_order_acquire) == 1);
775       // Don't forget to allocate one extra Char for the terminating
776       // null. In this case, however, one Char is already part of the
777       // struct.
778       auto result = static_cast<RefCounted*>(
779              smartRealloc(dis,
780                           sizeof(RefCounted) + currentSize * sizeof(Char),
781                           sizeof(RefCounted) + currentCapacity * sizeof(Char),
782                           sizeof(RefCounted) + newCapacity * sizeof(Char)));
783       assert(result->refCount_.load(std::memory_order_acquire) == 1);
784       return result;
785     }
786   };
787
788   typedef std::conditional<sizeof(size_t) == 4, uint32_t, uint64_t>::type
789           category_type;
790
791   enum class Category : category_type {
792     isSmall = 0,
793     isMedium = kIsLittleEndian
794       ? sizeof(size_t) == 4 ? 0x80000000 : 0x8000000000000000
795       : 0x2,
796     isLarge =  kIsLittleEndian
797       ? sizeof(size_t) == 4 ? 0x40000000 : 0x4000000000000000
798       : 0x1,
799   };
800
801   Category category() const {
802     // works for both big-endian and little-endian
803     return static_cast<Category>(ml_.capacity_ & categoryExtractMask);
804   }
805
806   struct MediumLarge {
807     Char * data_;
808     size_t size_;
809     size_t capacity_;
810
811     size_t capacity() const {
812       return kIsLittleEndian
813         ? capacity_ & capacityExtractMask
814         : capacity_ >> 2;
815     }
816
817     void setCapacity(size_t cap, Category cat) {
818         capacity_ = kIsLittleEndian
819           ? cap | static_cast<category_type>(cat)
820           : (cap << 2) | static_cast<category_type>(cat);
821     }
822   };
823
824   union {
825     Char small_[sizeof(MediumLarge) / sizeof(Char)];
826     MediumLarge ml_;
827   };
828
829   enum : size_t {
830     lastChar = sizeof(MediumLarge) - 1,
831     maxSmallSize = lastChar / sizeof(Char),
832     maxMediumSize = 254 / sizeof(Char),            // coincides with the small
833                                                    // bin size in dlmalloc
834     categoryExtractMask = kIsLittleEndian
835       ? sizeof(size_t) == 4 ? 0xC0000000 : 0xC000000000000000
836       : 0x3,
837     capacityExtractMask = kIsLittleEndian
838       ? ~categoryExtractMask
839       : 0x0 /*unused*/,
840   };
841   static_assert(!(sizeof(MediumLarge) % sizeof(Char)),
842                 "Corrupt memory layout for fbstring.");
843
844   size_t smallSize() const {
845     assert(category() == Category::isSmall);
846     auto shift = kIsLittleEndian ? 0 : 2;
847     auto smallShifted = static_cast<size_t>(small_[maxSmallSize]) >> shift;
848     assert(static_cast<size_t>(maxSmallSize) >= smallShifted);
849     return static_cast<size_t>(maxSmallSize) - smallShifted;
850   }
851
852   void setSmallSize(size_t s) {
853     // Warning: this should work with uninitialized strings too,
854     // so don't assume anything about the previous value of
855     // small_[maxSmallSize].
856     assert(s <= maxSmallSize);
857     small_[maxSmallSize] = kIsLittleEndian
858       ? maxSmallSize - s
859       : (maxSmallSize - s) << 2;
860     writeTerminator();
861   }
862 };
863
864 #ifndef _LIBSTDCXX_FBSTRING
865 /**
866  * Dummy fbstring core that uses an actual std::string. This doesn't
867  * make any sense - it's just for testing purposes.
868  */
869 template <class Char>
870 class dummy_fbstring_core {
871 public:
872   dummy_fbstring_core() {
873   }
874   dummy_fbstring_core(const dummy_fbstring_core& another)
875       : backend_(another.backend_) {
876   }
877   dummy_fbstring_core(const Char * s, size_t n)
878       : backend_(s, n) {
879   }
880   void swap(dummy_fbstring_core & rhs) {
881     backend_.swap(rhs.backend_);
882   }
883   const Char * data() const {
884     return backend_.data();
885   }
886   Char * mutable_data() {
887     //assert(!backend_.empty());
888     return &*backend_.begin();
889   }
890   void shrink(size_t delta) {
891     assert(delta <= size());
892     backend_.resize(size() - delta);
893   }
894   Char * expand_noinit(size_t delta) {
895     auto const sz = size();
896     backend_.resize(size() + delta);
897     return backend_.data() + sz;
898   }
899   void push_back(Char c) {
900     backend_.push_back(c);
901   }
902   size_t size() const {
903     return backend_.size();
904   }
905   size_t capacity() const {
906     return backend_.capacity();
907   }
908   bool isShared() const {
909     return false;
910   }
911   void reserve(size_t minCapacity) {
912     backend_.reserve(minCapacity);
913   }
914
915 private:
916   std::basic_string<Char> backend_;
917 };
918 #endif // !_LIBSTDCXX_FBSTRING
919
920 /**
921  * This is the basic_string replacement. For conformity,
922  * basic_fbstring takes the same template parameters, plus the last
923  * one which is the core.
924  */
925 #ifdef _LIBSTDCXX_FBSTRING
926 template <typename E, class T, class A, class Storage>
927 #else
928 template <typename E,
929           class T = std::char_traits<E>,
930           class A = std::allocator<E>,
931           class Storage = fbstring_core<E> >
932 #endif
933 class basic_fbstring {
934
935   static void enforce(
936       bool condition,
937       void (*throw_exc)(const char*),
938       const char* msg) {
939     if (!condition) throw_exc(msg);
940   }
941
942   bool isSane() const {
943     return
944       begin() <= end() &&
945       empty() == (size() == 0) &&
946       empty() == (begin() == end()) &&
947       size() <= max_size() &&
948       capacity() <= max_size() &&
949       size() <= capacity() &&
950       begin()[size()] == '\0';
951   }
952
953   struct Invariant;
954   friend struct Invariant;
955   struct Invariant {
956 #ifndef NDEBUG
957     explicit Invariant(const basic_fbstring& s) : s_(s) {
958       assert(s_.isSane());
959     }
960     ~Invariant() {
961       assert(s_.isSane());
962     }
963   private:
964     const basic_fbstring& s_;
965 #else
966     explicit Invariant(const basic_fbstring&) {}
967 #endif
968     Invariant& operator=(const Invariant&);
969   };
970
971 public:
972   // types
973   typedef T traits_type;
974   typedef typename traits_type::char_type value_type;
975   typedef A allocator_type;
976   typedef typename A::size_type size_type;
977   typedef typename A::difference_type difference_type;
978
979   typedef typename A::reference reference;
980   typedef typename A::const_reference const_reference;
981   typedef typename A::pointer pointer;
982   typedef typename A::const_pointer const_pointer;
983
984   typedef E* iterator;
985   typedef const E* const_iterator;
986   typedef std::reverse_iterator<iterator
987 #ifdef NO_ITERATOR_TRAITS
988                                 , value_type
989 #endif
990                                 > reverse_iterator;
991   typedef std::reverse_iterator<const_iterator
992 #ifdef NO_ITERATOR_TRAITS
993                                 , const value_type
994 #endif
995                                 > const_reverse_iterator;
996
997   static const size_type npos;                     // = size_type(-1)
998
999 private:
1000   static void procrustes(size_type& n, size_type nmax) {
1001     if (n > nmax) n = nmax;
1002   }
1003
1004 public:
1005   // C++11 21.4.2 construct/copy/destroy
1006
1007   // Note: while the following two constructors can be (and previously were)
1008   // collapsed into one constructor written this way:
1009   //
1010   //   explicit basic_fbstring(const A& a = A()) noexcept { }
1011   //
1012   // This can cause Clang (at least version 3.7) to fail with the error:
1013   //   "chosen constructor is explicit in copy-initialization ...
1014   //   in implicit initialization of field '(x)' with omitted initializer"
1015   //
1016   // if used in a struct which is default-initialized.  Hence the split into
1017   // these two separate constructors.
1018
1019   basic_fbstring() noexcept : basic_fbstring(A()) {
1020   }
1021
1022   explicit basic_fbstring(const A&) noexcept {
1023   }
1024
1025   basic_fbstring(const basic_fbstring& str)
1026       : store_(str.store_) {
1027   }
1028
1029   // Move constructor
1030   basic_fbstring(basic_fbstring&& goner) noexcept
1031       : store_(std::move(goner.store_)) {
1032   }
1033
1034 #ifndef _LIBSTDCXX_FBSTRING
1035   // This is defined for compatibility with std::string
1036   /* implicit */ basic_fbstring(const std::string& str)
1037       : store_(str.data(), str.size()) {
1038   }
1039 #endif
1040
1041   basic_fbstring(const basic_fbstring& str,
1042                  size_type pos,
1043                  size_type n = npos,
1044                  const A& /* a */ = A()) {
1045     assign(str, pos, n);
1046   }
1047
1048   /* implicit */ basic_fbstring(const value_type* s, const A& /*a*/ = A())
1049       : store_(s, s
1050           ? traits_type::length(s)
1051           : (std::__throw_logic_error(
1052                 "basic_fbstring: null pointer initializer not valid"),
1053              0)) {
1054   }
1055
1056   basic_fbstring(const value_type* s, size_type n, const A& /*a*/ = A())
1057       : store_(s, n) {
1058   }
1059
1060   basic_fbstring(size_type n, value_type c, const A& /*a*/ = A()) {
1061     auto const data = store_.expand_noinit(n);
1062     fbstring_detail::pod_fill(data, data + n, c);
1063     store_.writeTerminator();
1064   }
1065
1066   template <class InIt>
1067   basic_fbstring(InIt begin, InIt end,
1068                  typename std::enable_if<
1069                  !std::is_same<typename std::remove_const<InIt>::type,
1070                  value_type*>::value, const A>::type & /*a*/ = A()) {
1071     assign(begin, end);
1072   }
1073
1074   // Specialization for const char*, const char*
1075   basic_fbstring(const value_type* b, const value_type* e)
1076       : store_(b, e - b) {
1077   }
1078
1079   // Nonstandard constructor
1080   basic_fbstring(value_type *s, size_type n, size_type c,
1081                  AcquireMallocatedString a)
1082       : store_(s, n, c, a) {
1083   }
1084
1085   // Construction from initialization list
1086   basic_fbstring(std::initializer_list<value_type> il) {
1087     assign(il.begin(), il.end());
1088   }
1089
1090   ~basic_fbstring() noexcept {
1091   }
1092
1093   basic_fbstring& operator=(const basic_fbstring& lhs) {
1094     if (FBSTRING_UNLIKELY(&lhs == this)) {
1095       return *this;
1096     }
1097     auto const oldSize = size();
1098     auto const srcSize = lhs.size();
1099     if (capacity() >= srcSize && !store_.isShared()) {
1100       // great, just copy the contents
1101       if (oldSize < srcSize)
1102         store_.expand_noinit(srcSize - oldSize);
1103       else
1104         store_.shrink(oldSize - srcSize);
1105       assert(size() == srcSize);
1106       fbstring_detail::pod_copy(lhs.begin(), lhs.end(), begin());
1107       store_.writeTerminator();
1108     } else {
1109       // need to reallocate, so we may as well create a brand new string
1110       basic_fbstring(lhs).swap(*this);
1111     }
1112     return *this;
1113   }
1114
1115   // Move assignment
1116   basic_fbstring& operator=(basic_fbstring&& goner) noexcept {
1117     if (FBSTRING_UNLIKELY(&goner == this)) {
1118       // Compatibility with std::basic_string<>,
1119       // C++11 21.4.2 [string.cons] / 23 requires self-move-assignment support.
1120       return *this;
1121     }
1122     // No need of this anymore
1123     this->~basic_fbstring();
1124     // Move the goner into this
1125     new(&store_) fbstring_core<E>(std::move(goner.store_));
1126     return *this;
1127   }
1128
1129 #ifndef _LIBSTDCXX_FBSTRING
1130   // Compatibility with std::string
1131   basic_fbstring & operator=(const std::string & rhs) {
1132     return assign(rhs.data(), rhs.size());
1133   }
1134
1135   // Compatibility with std::string
1136   std::string toStdString() const {
1137     return std::string(data(), size());
1138   }
1139 #else
1140   // A lot of code in fbcode still uses this method, so keep it here for now.
1141   const basic_fbstring& toStdString() const {
1142     return *this;
1143   }
1144 #endif
1145
1146   basic_fbstring& operator=(const value_type* s) {
1147     return assign(s);
1148   }
1149
1150   basic_fbstring& operator=(value_type c) {
1151     if (empty()) {
1152       store_.expand_noinit(1);
1153     } else if (store_.isShared()) {
1154       basic_fbstring(1, c).swap(*this);
1155       return *this;
1156     } else {
1157       store_.shrink(size() - 1);
1158     }
1159     *store_.mutable_data() = c;
1160     store_.writeTerminator();
1161     return *this;
1162   }
1163
1164   basic_fbstring& operator=(std::initializer_list<value_type> il) {
1165     return assign(il.begin(), il.end());
1166   }
1167
1168   // C++11 21.4.3 iterators:
1169   iterator begin() { return store_.mutable_data(); }
1170
1171   const_iterator begin() const { return store_.data(); }
1172
1173   const_iterator cbegin() const { return begin(); }
1174
1175   iterator end() {
1176     return store_.mutable_data() + store_.size();
1177   }
1178
1179   const_iterator end() const {
1180     return store_.data() + store_.size();
1181   }
1182
1183   const_iterator cend() const { return end(); }
1184
1185   reverse_iterator rbegin() {
1186     return reverse_iterator(end());
1187   }
1188
1189   const_reverse_iterator rbegin() const {
1190     return const_reverse_iterator(end());
1191   }
1192
1193   const_reverse_iterator crbegin() const { return rbegin(); }
1194
1195   reverse_iterator rend() {
1196     return reverse_iterator(begin());
1197   }
1198
1199   const_reverse_iterator rend() const {
1200     return const_reverse_iterator(begin());
1201   }
1202
1203   const_reverse_iterator crend() const { return rend(); }
1204
1205   // Added by C++11
1206   // C++11 21.4.5, element access:
1207   const value_type& front() const { return *begin(); }
1208   const value_type& back() const {
1209     assert(!empty());
1210     // Should be begin()[size() - 1], but that branches twice
1211     return *(end() - 1);
1212   }
1213   value_type& front() { return *begin(); }
1214   value_type& back() {
1215     assert(!empty());
1216     // Should be begin()[size() - 1], but that branches twice
1217     return *(end() - 1);
1218   }
1219   void pop_back() {
1220     assert(!empty());
1221     store_.shrink(1);
1222   }
1223
1224   // C++11 21.4.4 capacity:
1225   size_type size() const { return store_.size(); }
1226
1227   size_type length() const { return size(); }
1228
1229   size_type max_size() const {
1230     return std::numeric_limits<size_type>::max();
1231   }
1232
1233   void resize(const size_type n, const value_type c = value_type()) {
1234     auto size = this->size();
1235     if (n <= size) {
1236       store_.shrink(size - n);
1237     } else {
1238       // Do this in two steps to minimize slack memory copied (see
1239       // smartRealloc).
1240       auto const capacity = this->capacity();
1241       assert(capacity >= size);
1242       if (size < capacity) {
1243         auto delta = std::min(n, capacity) - size;
1244         store_.expand_noinit(delta);
1245         fbstring_detail::pod_fill(begin() + size, end(), c);
1246         size += delta;
1247         if (size == n) {
1248           store_.writeTerminator();
1249           return;
1250         }
1251         assert(size < n);
1252       }
1253       auto const delta = n - size;
1254       store_.expand_noinit(delta);
1255       fbstring_detail::pod_fill(end() - delta, end(), c);
1256       store_.writeTerminator();
1257     }
1258     assert(this->size() == n);
1259   }
1260
1261   size_type capacity() const { return store_.capacity(); }
1262
1263   void reserve(size_type res_arg = 0) {
1264     enforce(res_arg <= max_size(), std::__throw_length_error, "");
1265     store_.reserve(res_arg);
1266   }
1267
1268   void shrink_to_fit() {
1269     // Shrink only if slack memory is sufficiently large
1270     if (capacity() < size() * 3 / 2) {
1271       return;
1272     }
1273     basic_fbstring(cbegin(), cend()).swap(*this);
1274   }
1275
1276   void clear() { resize(0); }
1277
1278   bool empty() const { return size() == 0; }
1279
1280   // C++11 21.4.5 element access:
1281   const_reference operator[](size_type pos) const {
1282     return *(begin() + pos);
1283   }
1284
1285   reference operator[](size_type pos) {
1286     return *(begin() + pos);
1287   }
1288
1289   const_reference at(size_type n) const {
1290     enforce(n <= size(), std::__throw_out_of_range, "");
1291     return (*this)[n];
1292   }
1293
1294   reference at(size_type n) {
1295     enforce(n < size(), std::__throw_out_of_range, "");
1296     return (*this)[n];
1297   }
1298
1299   // C++11 21.4.6 modifiers:
1300   basic_fbstring& operator+=(const basic_fbstring& str) {
1301     return append(str);
1302   }
1303
1304   basic_fbstring& operator+=(const value_type* s) {
1305     return append(s);
1306   }
1307
1308   basic_fbstring& operator+=(const value_type c) {
1309     push_back(c);
1310     return *this;
1311   }
1312
1313   basic_fbstring& operator+=(std::initializer_list<value_type> il) {
1314     append(il);
1315     return *this;
1316   }
1317
1318   basic_fbstring& append(const basic_fbstring& str) {
1319 #ifndef NDEBUG
1320     auto desiredSize = size() + str.size();
1321 #endif
1322     append(str.data(), str.size());
1323     assert(size() == desiredSize);
1324     return *this;
1325   }
1326
1327   basic_fbstring& append(const basic_fbstring& str, const size_type pos,
1328                          size_type n) {
1329     const size_type sz = str.size();
1330     enforce(pos <= sz, std::__throw_out_of_range, "");
1331     procrustes(n, sz - pos);
1332     return append(str.data() + pos, n);
1333   }
1334
1335   basic_fbstring& append(const value_type* s, size_type n) {
1336 #ifndef NDEBUG
1337     Invariant checker(*this);
1338     (void) checker;
1339 #endif
1340     if (FBSTRING_UNLIKELY(!n)) {
1341       // Unlikely but must be done
1342       return *this;
1343     }
1344     auto const oldSize = size();
1345     auto const oldData = data();
1346     // Check for aliasing (rare). We could use "<=" here but in theory
1347     // those do not work for pointers unless the pointers point to
1348     // elements in the same array. For that reason we use
1349     // std::less_equal, which is guaranteed to offer a total order
1350     // over pointers. See discussion at http://goo.gl/Cy2ya for more
1351     // info.
1352     std::less_equal<const value_type*> le;
1353     if (FBSTRING_UNLIKELY(le(oldData, s) && !le(oldData + oldSize, s))) {
1354       assert(le(s + n, oldData + oldSize));
1355       const size_type offset = s - oldData;
1356       store_.reserve(oldSize + n);
1357       // Restore the source
1358       s = data() + offset;
1359     }
1360     // Warning! Repeated appends with short strings may actually incur
1361     // practically quadratic performance. Avoid that by pushing back
1362     // the first character (which ensures exponential growth) and then
1363     // appending the rest normally. Worst case the append may incur a
1364     // second allocation but that will be rare.
1365     push_back(*s++);
1366     --n;
1367     memcpy(store_.expand_noinit(n), s, n * sizeof(value_type));
1368     assert(size() == oldSize + n + 1);
1369     return *this;
1370   }
1371
1372   basic_fbstring& append(const value_type* s) {
1373     return append(s, traits_type::length(s));
1374   }
1375
1376   basic_fbstring& append(size_type n, value_type c) {
1377     resize(size() + n, c);
1378     return *this;
1379   }
1380
1381   template<class InputIterator>
1382   basic_fbstring& append(InputIterator first, InputIterator last) {
1383     insert(end(), first, last);
1384     return *this;
1385   }
1386
1387   basic_fbstring& append(std::initializer_list<value_type> il) {
1388     return append(il.begin(), il.end());
1389   }
1390
1391   void push_back(const value_type c) {             // primitive
1392     store_.push_back(c);
1393   }
1394
1395   basic_fbstring& assign(const basic_fbstring& str) {
1396     if (&str == this) return *this;
1397     return assign(str.data(), str.size());
1398   }
1399
1400   basic_fbstring& assign(basic_fbstring&& str) {
1401     return *this = std::move(str);
1402   }
1403
1404   basic_fbstring& assign(const basic_fbstring& str, const size_type pos,
1405                          size_type n) {
1406     const size_type sz = str.size();
1407     enforce(pos <= sz, std::__throw_out_of_range, "");
1408     procrustes(n, sz - pos);
1409     return assign(str.data() + pos, n);
1410   }
1411
1412   basic_fbstring& assign(const value_type* s, const size_type n) {
1413     Invariant checker(*this);
1414     (void) checker;
1415     if (size() >= n) {
1416       std::copy(s, s + n, begin());
1417       resize(n);
1418       assert(size() == n);
1419     } else {
1420       const value_type *const s2 = s + size();
1421       std::copy(s, s2, begin());
1422       append(s2, n - size());
1423       assert(size() == n);
1424     }
1425     store_.writeTerminator();
1426     assert(size() == n);
1427     return *this;
1428   }
1429
1430   basic_fbstring& assign(const value_type* s) {
1431     return assign(s, traits_type::length(s));
1432   }
1433
1434   basic_fbstring& assign(std::initializer_list<value_type> il) {
1435     return assign(il.begin(), il.end());
1436   }
1437
1438   template <class ItOrLength, class ItOrChar>
1439   basic_fbstring& assign(ItOrLength first_or_n, ItOrChar last_or_c) {
1440     return replace(begin(), end(), first_or_n, last_or_c);
1441   }
1442
1443   basic_fbstring& insert(size_type pos1, const basic_fbstring& str) {
1444     return insert(pos1, str.data(), str.size());
1445   }
1446
1447   basic_fbstring& insert(size_type pos1, const basic_fbstring& str,
1448                          size_type pos2, size_type n) {
1449     enforce(pos2 <= str.length(), std::__throw_out_of_range, "");
1450     procrustes(n, str.length() - pos2);
1451     return insert(pos1, str.data() + pos2, n);
1452   }
1453
1454   basic_fbstring& insert(size_type pos, const value_type* s, size_type n) {
1455     enforce(pos <= length(), std::__throw_out_of_range, "");
1456     insert(begin() + pos, s, s + n);
1457     return *this;
1458   }
1459
1460   basic_fbstring& insert(size_type pos, const value_type* s) {
1461     return insert(pos, s, traits_type::length(s));
1462   }
1463
1464   basic_fbstring& insert(size_type pos, size_type n, value_type c) {
1465     enforce(pos <= length(), std::__throw_out_of_range, "");
1466     insert(begin() + pos, n, c);
1467     return *this;
1468   }
1469
1470   iterator insert(const_iterator p, const value_type c) {
1471     const size_type pos = p - begin();
1472     insert(p, 1, c);
1473     return begin() + pos;
1474   }
1475
1476 private:
1477   template <int i> class Selector {};
1478
1479   iterator insertImplDiscr(const_iterator p,
1480                            size_type n, value_type c, Selector<1>) {
1481     Invariant checker(*this);
1482     (void) checker;
1483     auto const pos = p - begin();
1484     assert(p >= begin() && p <= end());
1485     if (capacity() - size() < n) {
1486       const size_type sz = p - begin();
1487       reserve(size() + n);
1488       p = begin() + sz;
1489     }
1490     const iterator oldEnd = end();
1491     if (n < size_type(oldEnd - p)) {
1492       append(oldEnd - n, oldEnd);
1493       //std::copy(
1494       //    reverse_iterator(oldEnd - n),
1495       //    reverse_iterator(p),
1496       //    reverse_iterator(oldEnd));
1497       fbstring_detail::pod_move(&*p, &*oldEnd - n,
1498                                 begin() + pos + n);
1499       std::fill(begin() + pos, begin() + pos + n, c);
1500     } else {
1501       append(n - (end() - p), c);
1502       append(iterator(p), oldEnd);
1503       std::fill(iterator(p), oldEnd, c);
1504     }
1505     store_.writeTerminator();
1506     return begin() + pos;
1507   }
1508
1509   template<class InputIter>
1510   iterator insertImplDiscr(const_iterator i,
1511                            InputIter b, InputIter e, Selector<0>) {
1512     return insertImpl(i, b, e,
1513                typename std::iterator_traits<InputIter>::iterator_category());
1514   }
1515
1516   template <class FwdIterator>
1517   iterator insertImpl(const_iterator i,
1518                   FwdIterator s1, FwdIterator s2, std::forward_iterator_tag) {
1519     Invariant checker(*this);
1520     (void) checker;
1521     const size_type pos = i - begin();
1522     const typename std::iterator_traits<FwdIterator>::difference_type n2 =
1523       std::distance(s1, s2);
1524     assert(n2 >= 0);
1525     using namespace fbstring_detail;
1526     assert(pos <= size());
1527
1528     const typename std::iterator_traits<FwdIterator>::difference_type maxn2 =
1529       capacity() - size();
1530     if (maxn2 < n2) {
1531       // realloc the string
1532       reserve(size() + n2);
1533       i = begin() + pos;
1534     }
1535     if (pos + n2 <= size()) {
1536       const iterator tailBegin = end() - n2;
1537       store_.expand_noinit(n2);
1538       fbstring_detail::pod_copy(tailBegin, tailBegin + n2, end() - n2);
1539       std::copy(const_reverse_iterator(tailBegin), const_reverse_iterator(i),
1540                 reverse_iterator(tailBegin + n2));
1541       std::copy(s1, s2, begin() + pos);
1542     } else {
1543       FwdIterator t = s1;
1544       const size_type old_size = size();
1545       std::advance(t, old_size - pos);
1546       const size_t newElems = std::distance(t, s2);
1547       store_.expand_noinit(n2);
1548       std::copy(t, s2, begin() + old_size);
1549       fbstring_detail::pod_copy(data() + pos, data() + old_size,
1550                                  begin() + old_size + newElems);
1551       std::copy(s1, t, begin() + pos);
1552     }
1553     store_.writeTerminator();
1554     return begin() + pos;
1555   }
1556
1557   template <class InputIterator>
1558   iterator insertImpl(const_iterator i,
1559                       InputIterator b, InputIterator e,
1560                       std::input_iterator_tag) {
1561     const auto pos = i - begin();
1562     basic_fbstring temp(begin(), i);
1563     for (; b != e; ++b) {
1564       temp.push_back(*b);
1565     }
1566     temp.append(i, cend());
1567     swap(temp);
1568     return begin() + pos;
1569   }
1570
1571 public:
1572   template <class ItOrLength, class ItOrChar>
1573   iterator insert(const_iterator p, ItOrLength first_or_n, ItOrChar last_or_c) {
1574     Selector<std::numeric_limits<ItOrLength>::is_specialized> sel;
1575     return insertImplDiscr(p, first_or_n, last_or_c, sel);
1576   }
1577
1578   iterator insert(const_iterator p, std::initializer_list<value_type> il) {
1579     return insert(p, il.begin(), il.end());
1580   }
1581
1582   basic_fbstring& erase(size_type pos = 0, size_type n = npos) {
1583     Invariant checker(*this);
1584     (void) checker;
1585     enforce(pos <= length(), std::__throw_out_of_range, "");
1586     procrustes(n, length() - pos);
1587     std::copy(begin() + pos + n, end(), begin() + pos);
1588     resize(length() - n);
1589     return *this;
1590   }
1591
1592   iterator erase(iterator position) {
1593     const size_type pos(position - begin());
1594     enforce(pos <= size(), std::__throw_out_of_range, "");
1595     erase(pos, 1);
1596     return begin() + pos;
1597   }
1598
1599   iterator erase(iterator first, iterator last) {
1600     const size_type pos(first - begin());
1601     erase(pos, last - first);
1602     return begin() + pos;
1603   }
1604
1605   // Replaces at most n1 chars of *this, starting with pos1 with the
1606   // content of str
1607   basic_fbstring& replace(size_type pos1, size_type n1,
1608                           const basic_fbstring& str) {
1609     return replace(pos1, n1, str.data(), str.size());
1610   }
1611
1612   // Replaces at most n1 chars of *this, starting with pos1,
1613   // with at most n2 chars of str starting with pos2
1614   basic_fbstring& replace(size_type pos1, size_type n1,
1615                           const basic_fbstring& str,
1616                           size_type pos2, size_type n2) {
1617     enforce(pos2 <= str.length(), std::__throw_out_of_range, "");
1618     return replace(pos1, n1, str.data() + pos2,
1619                    std::min(n2, str.size() - pos2));
1620   }
1621
1622   // Replaces at most n1 chars of *this, starting with pos, with chars from s
1623   basic_fbstring& replace(size_type pos, size_type n1, const value_type* s) {
1624     return replace(pos, n1, s, traits_type::length(s));
1625   }
1626
1627   // Replaces at most n1 chars of *this, starting with pos, with n2
1628   // occurrences of c
1629   //
1630   // consolidated with
1631   //
1632   // Replaces at most n1 chars of *this, starting with pos, with at
1633   // most n2 chars of str.  str must have at least n2 chars.
1634   template <class StrOrLength, class NumOrChar>
1635   basic_fbstring& replace(size_type pos, size_type n1,
1636                           StrOrLength s_or_n2, NumOrChar n_or_c) {
1637     Invariant checker(*this);
1638     (void) checker;
1639     enforce(pos <= size(), std::__throw_out_of_range, "");
1640     procrustes(n1, length() - pos);
1641     const iterator b = begin() + pos;
1642     return replace(b, b + n1, s_or_n2, n_or_c);
1643   }
1644
1645   basic_fbstring& replace(iterator i1, iterator i2, const basic_fbstring& str) {
1646     return replace(i1, i2, str.data(), str.length());
1647   }
1648
1649   basic_fbstring& replace(iterator i1, iterator i2, const value_type* s) {
1650     return replace(i1, i2, s, traits_type::length(s));
1651   }
1652
1653 private:
1654   basic_fbstring& replaceImplDiscr(iterator i1, iterator i2,
1655                                    const value_type* s, size_type n,
1656                                    Selector<2>) {
1657     assert(i1 <= i2);
1658     assert(begin() <= i1 && i1 <= end());
1659     assert(begin() <= i2 && i2 <= end());
1660     return replace(i1, i2, s, s + n);
1661   }
1662
1663   basic_fbstring& replaceImplDiscr(iterator i1, iterator i2,
1664                                    size_type n2, value_type c, Selector<1>) {
1665     const size_type n1 = i2 - i1;
1666     if (n1 > n2) {
1667       std::fill(i1, i1 + n2, c);
1668       erase(i1 + n2, i2);
1669     } else {
1670       std::fill(i1, i2, c);
1671       insert(i2, n2 - n1, c);
1672     }
1673     assert(isSane());
1674     return *this;
1675   }
1676
1677   template <class InputIter>
1678   basic_fbstring& replaceImplDiscr(iterator i1, iterator i2,
1679                                    InputIter b, InputIter e,
1680                                    Selector<0>) {
1681     replaceImpl(i1, i2, b, e,
1682                 typename std::iterator_traits<InputIter>::iterator_category());
1683     return *this;
1684   }
1685
1686 private:
1687  template <class FwdIterator>
1688  bool replaceAliased(iterator /* i1 */,
1689                      iterator /* i2 */,
1690                      FwdIterator /* s1 */,
1691                      FwdIterator /* s2 */,
1692                      std::false_type) {
1693     return false;
1694   }
1695
1696   template <class FwdIterator>
1697   bool replaceAliased(iterator i1, iterator i2,
1698                       FwdIterator s1, FwdIterator s2, std::true_type) {
1699     static const std::less_equal<const value_type*> le =
1700       std::less_equal<const value_type*>();
1701     const bool aliased = le(&*begin(), &*s1) && le(&*s1, &*end());
1702     if (!aliased) {
1703       return false;
1704     }
1705     // Aliased replace, copy to new string
1706     basic_fbstring temp;
1707     temp.reserve(size() - (i2 - i1) + std::distance(s1, s2));
1708     temp.append(begin(), i1).append(s1, s2).append(i2, end());
1709     swap(temp);
1710     return true;
1711   }
1712
1713   template <class FwdIterator>
1714   void replaceImpl(iterator i1, iterator i2,
1715                    FwdIterator s1, FwdIterator s2, std::forward_iterator_tag) {
1716     Invariant checker(*this);
1717     (void) checker;
1718
1719     // Handle aliased replace
1720     if (replaceAliased(i1, i2, s1, s2,
1721           std::integral_constant<bool,
1722             std::is_same<FwdIterator, iterator>::value ||
1723             std::is_same<FwdIterator, const_iterator>::value>())) {
1724       return;
1725     }
1726
1727     auto const n1 = i2 - i1;
1728     assert(n1 >= 0);
1729     auto const n2 = std::distance(s1, s2);
1730     assert(n2 >= 0);
1731
1732     if (n1 > n2) {
1733       // shrinks
1734       std::copy(s1, s2, i1);
1735       erase(i1 + n2, i2);
1736     } else {
1737       // grows
1738       fbstring_detail::copy_n(s1, n1, i1);
1739       std::advance(s1, n1);
1740       insert(i2, s1, s2);
1741     }
1742     assert(isSane());
1743   }
1744
1745   template <class InputIterator>
1746   void replaceImpl(iterator i1, iterator i2,
1747                    InputIterator b, InputIterator e, std::input_iterator_tag) {
1748     basic_fbstring temp(begin(), i1);
1749     temp.append(b, e).append(i2, end());
1750     swap(temp);
1751   }
1752
1753 public:
1754   template <class T1, class T2>
1755   basic_fbstring& replace(iterator i1, iterator i2,
1756                           T1 first_or_n_or_s, T2 last_or_c_or_n) {
1757     const bool
1758       num1 = std::numeric_limits<T1>::is_specialized,
1759       num2 = std::numeric_limits<T2>::is_specialized;
1760     return replaceImplDiscr(
1761       i1, i2, first_or_n_or_s, last_or_c_or_n,
1762       Selector<num1 ? (num2 ? 1 : -1) : (num2 ? 2 : 0)>());
1763   }
1764
1765   size_type copy(value_type* s, size_type n, size_type pos = 0) const {
1766     enforce(pos <= size(), std::__throw_out_of_range, "");
1767     procrustes(n, size() - pos);
1768
1769     fbstring_detail::pod_copy(
1770       data() + pos,
1771       data() + pos + n,
1772       s);
1773     return n;
1774   }
1775
1776   void swap(basic_fbstring& rhs) {
1777     store_.swap(rhs.store_);
1778   }
1779
1780   const value_type* c_str() const {
1781     return store_.c_str();
1782   }
1783
1784   const value_type* data() const { return c_str(); }
1785
1786   allocator_type get_allocator() const {
1787     return allocator_type();
1788   }
1789
1790   size_type find(const basic_fbstring& str, size_type pos = 0) const {
1791     return find(str.data(), pos, str.length());
1792   }
1793
1794   size_type find(const value_type* needle, const size_type pos,
1795                  const size_type nsize) const {
1796     if (!nsize) return pos;
1797     auto const size = this->size();
1798     // nsize + pos can overflow (eg pos == npos), guard against that by checking
1799     // that nsize + pos does not wrap around.
1800     if (nsize + pos > size || nsize + pos < pos) return npos;
1801     // Don't use std::search, use a Boyer-Moore-like trick by comparing
1802     // the last characters first
1803     auto const haystack = data();
1804     auto const nsize_1 = nsize - 1;
1805     auto const lastNeedle = needle[nsize_1];
1806
1807     // Boyer-Moore skip value for the last char in the needle. Zero is
1808     // not a valid value; skip will be computed the first time it's
1809     // needed.
1810     size_type skip = 0;
1811
1812     const E * i = haystack + pos;
1813     auto iEnd = haystack + size - nsize_1;
1814
1815     while (i < iEnd) {
1816       // Boyer-Moore: match the last element in the needle
1817       while (i[nsize_1] != lastNeedle) {
1818         if (++i == iEnd) {
1819           // not found
1820           return npos;
1821         }
1822       }
1823       // Here we know that the last char matches
1824       // Continue in pedestrian mode
1825       for (size_t j = 0; ; ) {
1826         assert(j < nsize);
1827         if (i[j] != needle[j]) {
1828           // Not found, we can skip
1829           // Compute the skip value lazily
1830           if (skip == 0) {
1831             skip = 1;
1832             while (skip <= nsize_1 && needle[nsize_1 - skip] != lastNeedle) {
1833               ++skip;
1834             }
1835           }
1836           i += skip;
1837           break;
1838         }
1839         // Check if done searching
1840         if (++j == nsize) {
1841           // Yay
1842           return i - haystack;
1843         }
1844       }
1845     }
1846     return npos;
1847   }
1848
1849   size_type find(const value_type* s, size_type pos = 0) const {
1850     return find(s, pos, traits_type::length(s));
1851   }
1852
1853   size_type find (value_type c, size_type pos = 0) const {
1854     return find(&c, pos, 1);
1855   }
1856
1857   size_type rfind(const basic_fbstring& str, size_type pos = npos) const {
1858     return rfind(str.data(), pos, str.length());
1859   }
1860
1861   size_type rfind(const value_type* s, size_type pos, size_type n) const {
1862     if (n > length()) return npos;
1863     pos = std::min(pos, length() - n);
1864     if (n == 0) return pos;
1865
1866     const_iterator i(begin() + pos);
1867     for (; ; --i) {
1868       if (traits_type::eq(*i, *s)
1869           && traits_type::compare(&*i, s, n) == 0) {
1870         return i - begin();
1871       }
1872       if (i == begin()) break;
1873     }
1874     return npos;
1875   }
1876
1877   size_type rfind(const value_type* s, size_type pos = npos) const {
1878     return rfind(s, pos, traits_type::length(s));
1879   }
1880
1881   size_type rfind(value_type c, size_type pos = npos) const {
1882     return rfind(&c, pos, 1);
1883   }
1884
1885   size_type find_first_of(const basic_fbstring& str, size_type pos = 0) const {
1886     return find_first_of(str.data(), pos, str.length());
1887   }
1888
1889   size_type find_first_of(const value_type* s,
1890                           size_type pos, size_type n) const {
1891     if (pos > length() || n == 0) return npos;
1892     const_iterator i(begin() + pos),
1893       finish(end());
1894     for (; i != finish; ++i) {
1895       if (traits_type::find(s, n, *i) != 0) {
1896         return i - begin();
1897       }
1898     }
1899     return npos;
1900   }
1901
1902   size_type find_first_of(const value_type* s, size_type pos = 0) const {
1903     return find_first_of(s, pos, traits_type::length(s));
1904   }
1905
1906   size_type find_first_of(value_type c, size_type pos = 0) const {
1907     return find_first_of(&c, pos, 1);
1908   }
1909
1910   size_type find_last_of (const basic_fbstring& str,
1911                           size_type pos = npos) const {
1912     return find_last_of(str.data(), pos, str.length());
1913   }
1914
1915   size_type find_last_of (const value_type* s, size_type pos,
1916                           size_type n) const {
1917     if (!empty() && n > 0) {
1918       pos = std::min(pos, length() - 1);
1919       const_iterator i(begin() + pos);
1920       for (;; --i) {
1921         if (traits_type::find(s, n, *i) != 0) {
1922           return i - begin();
1923         }
1924         if (i == begin()) break;
1925       }
1926     }
1927     return npos;
1928   }
1929
1930   size_type find_last_of (const value_type* s,
1931                           size_type pos = npos) const {
1932     return find_last_of(s, pos, traits_type::length(s));
1933   }
1934
1935   size_type find_last_of (value_type c, size_type pos = npos) const {
1936     return find_last_of(&c, pos, 1);
1937   }
1938
1939   size_type find_first_not_of(const basic_fbstring& str,
1940                               size_type pos = 0) const {
1941     return find_first_not_of(str.data(), pos, str.size());
1942   }
1943
1944   size_type find_first_not_of(const value_type* s, size_type pos,
1945                               size_type n) const {
1946     if (pos < length()) {
1947       const_iterator
1948         i(begin() + pos),
1949         finish(end());
1950       for (; i != finish; ++i) {
1951         if (traits_type::find(s, n, *i) == 0) {
1952           return i - begin();
1953         }
1954       }
1955     }
1956     return npos;
1957   }
1958
1959   size_type find_first_not_of(const value_type* s,
1960                               size_type pos = 0) const {
1961     return find_first_not_of(s, pos, traits_type::length(s));
1962   }
1963
1964   size_type find_first_not_of(value_type c, size_type pos = 0) const {
1965     return find_first_not_of(&c, pos, 1);
1966   }
1967
1968   size_type find_last_not_of(const basic_fbstring& str,
1969                              size_type pos = npos) const {
1970     return find_last_not_of(str.data(), pos, str.length());
1971   }
1972
1973   size_type find_last_not_of(const value_type* s, size_type pos,
1974                              size_type n) const {
1975     if (!this->empty()) {
1976       pos = std::min(pos, size() - 1);
1977       const_iterator i(begin() + pos);
1978       for (;; --i) {
1979         if (traits_type::find(s, n, *i) == 0) {
1980           return i - begin();
1981         }
1982         if (i == begin()) break;
1983       }
1984     }
1985     return npos;
1986   }
1987
1988   size_type find_last_not_of(const value_type* s,
1989                              size_type pos = npos) const {
1990     return find_last_not_of(s, pos, traits_type::length(s));
1991   }
1992
1993   size_type find_last_not_of (value_type c, size_type pos = npos) const {
1994     return find_last_not_of(&c, pos, 1);
1995   }
1996
1997   basic_fbstring substr(size_type pos = 0, size_type n = npos) const& {
1998     enforce(pos <= size(), std::__throw_out_of_range, "");
1999     return basic_fbstring(data() + pos, std::min(n, size() - pos));
2000   }
2001
2002   basic_fbstring substr(size_type pos = 0, size_type n = npos) && {
2003     enforce(pos <= size(), std::__throw_out_of_range, "");
2004     erase(0, pos);
2005     if (n < size()) resize(n);
2006     return std::move(*this);
2007   }
2008
2009   int compare(const basic_fbstring& str) const {
2010     // FIX due to Goncalo N M de Carvalho July 18, 2005
2011     return compare(0, size(), str);
2012   }
2013
2014   int compare(size_type pos1, size_type n1,
2015               const basic_fbstring& str) const {
2016     return compare(pos1, n1, str.data(), str.size());
2017   }
2018
2019   int compare(size_type pos1, size_type n1,
2020               const value_type* s) const {
2021     return compare(pos1, n1, s, traits_type::length(s));
2022   }
2023
2024   int compare(size_type pos1, size_type n1,
2025               const value_type* s, size_type n2) const {
2026     enforce(pos1 <= size(), std::__throw_out_of_range, "");
2027     procrustes(n1, size() - pos1);
2028     // The line below fixed by Jean-Francois Bastien, 04-23-2007. Thanks!
2029     const int r = traits_type::compare(pos1 + data(), s, std::min(n1, n2));
2030     return r != 0 ? r : n1 > n2 ? 1 : n1 < n2 ? -1 : 0;
2031   }
2032
2033   int compare(size_type pos1, size_type n1,
2034               const basic_fbstring& str,
2035               size_type pos2, size_type n2) const {
2036     enforce(pos2 <= str.size(), std::__throw_out_of_range, "");
2037     return compare(pos1, n1, str.data() + pos2,
2038                    std::min(n2, str.size() - pos2));
2039   }
2040
2041   // Code from Jean-Francois Bastien (03/26/2007)
2042   int compare(const value_type* s) const {
2043     // Could forward to compare(0, size(), s, traits_type::length(s))
2044     // but that does two extra checks
2045     const size_type n1(size()), n2(traits_type::length(s));
2046     const int r = traits_type::compare(data(), s, std::min(n1, n2));
2047     return r != 0 ? r : n1 > n2 ? 1 : n1 < n2 ? -1 : 0;
2048   }
2049
2050 private:
2051   // Data
2052   Storage store_;
2053 };
2054
2055 // non-member functions
2056 // C++11 21.4.8.1/1
2057 template <typename E, class T, class A, class S>
2058 inline
2059 basic_fbstring<E, T, A, S> operator+(const basic_fbstring<E, T, A, S>& lhs,
2060                                      const basic_fbstring<E, T, A, S>& rhs) {
2061
2062   basic_fbstring<E, T, A, S> result;
2063   result.reserve(lhs.size() + rhs.size());
2064   result.append(lhs).append(rhs);
2065   return std::move(result);
2066 }
2067
2068 // C++11 21.4.8.1/2
2069 template <typename E, class T, class A, class S>
2070 inline
2071 basic_fbstring<E, T, A, S> operator+(basic_fbstring<E, T, A, S>&& lhs,
2072                                      const basic_fbstring<E, T, A, S>& rhs) {
2073   return std::move(lhs.append(rhs));
2074 }
2075
2076 // C++11 21.4.8.1/3
2077 template <typename E, class T, class A, class S>
2078 inline
2079 basic_fbstring<E, T, A, S> operator+(const basic_fbstring<E, T, A, S>& lhs,
2080                                      basic_fbstring<E, T, A, S>&& rhs) {
2081   if (rhs.capacity() >= lhs.size() + rhs.size()) {
2082     // Good, at least we don't need to reallocate
2083     return std::move(rhs.insert(0, lhs));
2084   }
2085   // Meh, no go. Forward to operator+(const&, const&).
2086   auto const& rhsC = rhs;
2087   return lhs + rhsC;
2088 }
2089
2090 // C++11 21.4.8.1/4
2091 template <typename E, class T, class A, class S>
2092 inline
2093 basic_fbstring<E, T, A, S> operator+(basic_fbstring<E, T, A, S>&& lhs,
2094                                      basic_fbstring<E, T, A, S>&& rhs) {
2095   return std::move(lhs.append(rhs));
2096 }
2097
2098 // C++11 21.4.8.1/5
2099 template <typename E, class T, class A, class S>
2100 inline
2101 basic_fbstring<E, T, A, S> operator+(
2102   const E* lhs,
2103   const basic_fbstring<E, T, A, S>& rhs) {
2104   //
2105   basic_fbstring<E, T, A, S> result;
2106   const auto len = basic_fbstring<E, T, A, S>::traits_type::length(lhs);
2107   result.reserve(len + rhs.size());
2108   result.append(lhs, len).append(rhs);
2109   return result;
2110 }
2111
2112 // C++11 21.4.8.1/6
2113 template <typename E, class T, class A, class S>
2114 inline
2115 basic_fbstring<E, T, A, S> operator+(
2116   const E* lhs,
2117   basic_fbstring<E, T, A, S>&& rhs) {
2118   //
2119   const auto len = basic_fbstring<E, T, A, S>::traits_type::length(lhs);
2120   if (rhs.capacity() >= len + rhs.size()) {
2121     // Good, at least we don't need to reallocate
2122     rhs.insert(rhs.begin(), lhs, lhs + len);
2123     return rhs;
2124   }
2125   // Meh, no go. Do it by hand since we have len already.
2126   basic_fbstring<E, T, A, S> result;
2127   result.reserve(len + rhs.size());
2128   result.append(lhs, len).append(rhs);
2129   return result;
2130 }
2131
2132 // C++11 21.4.8.1/7
2133 template <typename E, class T, class A, class S>
2134 inline
2135 basic_fbstring<E, T, A, S> operator+(
2136   E lhs,
2137   const basic_fbstring<E, T, A, S>& rhs) {
2138
2139   basic_fbstring<E, T, A, S> result;
2140   result.reserve(1 + rhs.size());
2141   result.push_back(lhs);
2142   result.append(rhs);
2143   return result;
2144 }
2145
2146 // C++11 21.4.8.1/8
2147 template <typename E, class T, class A, class S>
2148 inline
2149 basic_fbstring<E, T, A, S> operator+(
2150   E lhs,
2151   basic_fbstring<E, T, A, S>&& rhs) {
2152   //
2153   if (rhs.capacity() > rhs.size()) {
2154     // Good, at least we don't need to reallocate
2155     rhs.insert(rhs.begin(), lhs);
2156     return rhs;
2157   }
2158   // Meh, no go. Forward to operator+(E, const&).
2159   auto const& rhsC = rhs;
2160   return lhs + rhsC;
2161 }
2162
2163 // C++11 21.4.8.1/9
2164 template <typename E, class T, class A, class S>
2165 inline
2166 basic_fbstring<E, T, A, S> operator+(
2167   const basic_fbstring<E, T, A, S>& lhs,
2168   const E* rhs) {
2169
2170   typedef typename basic_fbstring<E, T, A, S>::size_type size_type;
2171   typedef typename basic_fbstring<E, T, A, S>::traits_type traits_type;
2172
2173   basic_fbstring<E, T, A, S> result;
2174   const size_type len = traits_type::length(rhs);
2175   result.reserve(lhs.size() + len);
2176   result.append(lhs).append(rhs, len);
2177   return result;
2178 }
2179
2180 // C++11 21.4.8.1/10
2181 template <typename E, class T, class A, class S>
2182 inline
2183 basic_fbstring<E, T, A, S> operator+(
2184   basic_fbstring<E, T, A, S>&& lhs,
2185   const E* rhs) {
2186   //
2187   return std::move(lhs += rhs);
2188 }
2189
2190 // C++11 21.4.8.1/11
2191 template <typename E, class T, class A, class S>
2192 inline
2193 basic_fbstring<E, T, A, S> operator+(
2194   const basic_fbstring<E, T, A, S>& lhs,
2195   E rhs) {
2196
2197   basic_fbstring<E, T, A, S> result;
2198   result.reserve(lhs.size() + 1);
2199   result.append(lhs);
2200   result.push_back(rhs);
2201   return result;
2202 }
2203
2204 // C++11 21.4.8.1/12
2205 template <typename E, class T, class A, class S>
2206 inline
2207 basic_fbstring<E, T, A, S> operator+(
2208   basic_fbstring<E, T, A, S>&& lhs,
2209   E rhs) {
2210   //
2211   return std::move(lhs += rhs);
2212 }
2213
2214 template <typename E, class T, class A, class S>
2215 inline
2216 bool operator==(const basic_fbstring<E, T, A, S>& lhs,
2217                 const basic_fbstring<E, T, A, S>& rhs) {
2218   return lhs.size() == rhs.size() && lhs.compare(rhs) == 0; }
2219
2220 template <typename E, class T, class A, class S>
2221 inline
2222 bool operator==(const typename basic_fbstring<E, T, A, S>::value_type* lhs,
2223                 const basic_fbstring<E, T, A, S>& rhs) {
2224   return rhs == lhs; }
2225
2226 template <typename E, class T, class A, class S>
2227 inline
2228 bool operator==(const basic_fbstring<E, T, A, S>& lhs,
2229                 const typename basic_fbstring<E, T, A, S>::value_type* rhs) {
2230   return lhs.compare(rhs) == 0; }
2231
2232 template <typename E, class T, class A, class S>
2233 inline
2234 bool operator!=(const basic_fbstring<E, T, A, S>& lhs,
2235                 const basic_fbstring<E, T, A, S>& rhs) {
2236   return !(lhs == rhs); }
2237
2238 template <typename E, class T, class A, class S>
2239 inline
2240 bool operator!=(const typename basic_fbstring<E, T, A, S>::value_type* lhs,
2241                 const basic_fbstring<E, T, A, S>& rhs) {
2242   return !(lhs == rhs); }
2243
2244 template <typename E, class T, class A, class S>
2245 inline
2246 bool operator!=(const basic_fbstring<E, T, A, S>& lhs,
2247                 const typename basic_fbstring<E, T, A, S>::value_type* rhs) {
2248   return !(lhs == rhs); }
2249
2250 template <typename E, class T, class A, class S>
2251 inline
2252 bool operator<(const basic_fbstring<E, T, A, S>& lhs,
2253                const basic_fbstring<E, T, A, S>& rhs) {
2254   return lhs.compare(rhs) < 0; }
2255
2256 template <typename E, class T, class A, class S>
2257 inline
2258 bool operator<(const basic_fbstring<E, T, A, S>& lhs,
2259                const typename basic_fbstring<E, T, A, S>::value_type* rhs) {
2260   return lhs.compare(rhs) < 0; }
2261
2262 template <typename E, class T, class A, class S>
2263 inline
2264 bool operator<(const typename basic_fbstring<E, T, A, S>::value_type* lhs,
2265                const basic_fbstring<E, T, A, S>& rhs) {
2266   return rhs.compare(lhs) > 0; }
2267
2268 template <typename E, class T, class A, class S>
2269 inline
2270 bool operator>(const basic_fbstring<E, T, A, S>& lhs,
2271                const basic_fbstring<E, T, A, S>& rhs) {
2272   return rhs < lhs; }
2273
2274 template <typename E, class T, class A, class S>
2275 inline
2276 bool operator>(const basic_fbstring<E, T, A, S>& lhs,
2277                const typename basic_fbstring<E, T, A, S>::value_type* rhs) {
2278   return rhs < lhs; }
2279
2280 template <typename E, class T, class A, class S>
2281 inline
2282 bool operator>(const typename basic_fbstring<E, T, A, S>::value_type* lhs,
2283                const basic_fbstring<E, T, A, S>& rhs) {
2284   return rhs < lhs; }
2285
2286 template <typename E, class T, class A, class S>
2287 inline
2288 bool operator<=(const basic_fbstring<E, T, A, S>& lhs,
2289                 const basic_fbstring<E, T, A, S>& rhs) {
2290   return !(rhs < lhs); }
2291
2292 template <typename E, class T, class A, class S>
2293 inline
2294 bool operator<=(const basic_fbstring<E, T, A, S>& lhs,
2295                 const typename basic_fbstring<E, T, A, S>::value_type* rhs) {
2296   return !(rhs < lhs); }
2297
2298 template <typename E, class T, class A, class S>
2299 inline
2300 bool operator<=(const typename basic_fbstring<E, T, A, S>::value_type* lhs,
2301                 const basic_fbstring<E, T, A, S>& rhs) {
2302   return !(rhs < lhs); }
2303
2304 template <typename E, class T, class A, class S>
2305 inline
2306 bool operator>=(const basic_fbstring<E, T, A, S>& lhs,
2307                 const basic_fbstring<E, T, A, S>& rhs) {
2308   return !(lhs < rhs); }
2309
2310 template <typename E, class T, class A, class S>
2311 inline
2312 bool operator>=(const basic_fbstring<E, T, A, S>& lhs,
2313                 const typename basic_fbstring<E, T, A, S>::value_type* rhs) {
2314   return !(lhs < rhs); }
2315
2316 template <typename E, class T, class A, class S>
2317 inline
2318 bool operator>=(const typename basic_fbstring<E, T, A, S>::value_type* lhs,
2319                 const basic_fbstring<E, T, A, S>& rhs) {
2320  return !(lhs < rhs);
2321 }
2322
2323 // C++11 21.4.8.8
2324 template <typename E, class T, class A, class S>
2325 void swap(basic_fbstring<E, T, A, S>& lhs, basic_fbstring<E, T, A, S>& rhs) {
2326   lhs.swap(rhs);
2327 }
2328
2329 // TODO: make this faster.
2330 template <typename E, class T, class A, class S>
2331 inline
2332 std::basic_istream<
2333   typename basic_fbstring<E, T, A, S>::value_type,
2334   typename basic_fbstring<E, T, A, S>::traits_type>&
2335   operator>>(
2336     std::basic_istream<typename basic_fbstring<E, T, A, S>::value_type,
2337     typename basic_fbstring<E, T, A, S>::traits_type>& is,
2338     basic_fbstring<E, T, A, S>& str) {
2339   typename std::basic_istream<E, T>::sentry sentry(is);
2340   typedef std::basic_istream<typename basic_fbstring<E, T, A, S>::value_type,
2341                              typename basic_fbstring<E, T, A, S>::traits_type>
2342                         __istream_type;
2343   typedef typename __istream_type::ios_base __ios_base;
2344   size_t extracted = 0;
2345   auto err = __ios_base::goodbit;
2346   if (sentry) {
2347     auto n = is.width();
2348     if (n <= 0) {
2349       n = str.max_size();
2350     }
2351     str.erase();
2352     for (auto got = is.rdbuf()->sgetc(); extracted != size_t(n); ++extracted) {
2353       if (got == T::eof()) {
2354         err |= __ios_base::eofbit;
2355         is.width(0);
2356         break;
2357       }
2358       if (isspace(got)) break;
2359       str.push_back(got);
2360       got = is.rdbuf()->snextc();
2361     }
2362   }
2363   if (!extracted) {
2364     err |= __ios_base::failbit;
2365   }
2366   if (err) {
2367     is.setstate(err);
2368   }
2369   return is;
2370 }
2371
2372 template <typename E, class T, class A, class S>
2373 inline
2374 std::basic_ostream<typename basic_fbstring<E, T, A, S>::value_type,
2375                    typename basic_fbstring<E, T, A, S>::traits_type>&
2376 operator<<(
2377   std::basic_ostream<typename basic_fbstring<E, T, A, S>::value_type,
2378   typename basic_fbstring<E, T, A, S>::traits_type>& os,
2379     const basic_fbstring<E, T, A, S>& str) {
2380 #if _LIBCPP_VERSION
2381   typename std::basic_ostream<
2382     typename basic_fbstring<E, T, A, S>::value_type,
2383     typename basic_fbstring<E, T, A, S>::traits_type>::sentry __s(os);
2384   if (__s) {
2385     typedef std::ostreambuf_iterator<
2386       typename basic_fbstring<E, T, A, S>::value_type,
2387       typename basic_fbstring<E, T, A, S>::traits_type> _Ip;
2388     size_t __len = str.size();
2389     bool __left =
2390       (os.flags() & std::ios_base::adjustfield) == std::ios_base::left;
2391     if (__pad_and_output(_Ip(os),
2392                          str.data(),
2393                          __left ? str.data() + __len : str.data(),
2394                          str.data() + __len,
2395                          os,
2396                          os.fill()).failed()) {
2397       os.setstate(std::ios_base::badbit | std::ios_base::failbit);
2398     }
2399   }
2400 #elif defined(_MSC_VER)
2401   // MSVC doesn't define __ostream_insert
2402   os.write(str.data(), str.size());
2403 #else
2404   std::__ostream_insert(os, str.data(), str.size());
2405 #endif
2406   return os;
2407 }
2408
2409 #ifndef _LIBSTDCXX_FBSTRING
2410
2411 template <typename E, class T, class A, class S>
2412 inline
2413 std::basic_istream<typename basic_fbstring<E, T, A, S>::value_type,
2414                    typename basic_fbstring<E, T, A, S>::traits_type>&
2415 getline(
2416   std::basic_istream<typename basic_fbstring<E, T, A, S>::value_type,
2417   typename basic_fbstring<E, T, A, S>::traits_type>& is,
2418     basic_fbstring<E, T, A, S>& str,
2419   typename basic_fbstring<E, T, A, S>::value_type delim) {
2420   // Use the nonstandard getdelim()
2421   char * buf = nullptr;
2422   size_t size = 0;
2423   for (;;) {
2424     // This looks quadratic but it really depends on realloc
2425     auto const newSize = size + 128;
2426     buf = static_cast<char*>(checkedRealloc(buf, newSize));
2427     is.getline(buf + size, newSize - size, delim);
2428     if (is.bad() || is.eof() || !is.fail()) {
2429       // done by either failure, end of file, or normal read
2430       size += std::strlen(buf + size);
2431       break;
2432     }
2433     // Here we have failed due to too short a buffer
2434     // Minus one to discount the terminating '\0'
2435     size = newSize - 1;
2436     assert(buf[size] == 0);
2437     // Clear the error so we can continue reading
2438     is.clear();
2439   }
2440   basic_fbstring<E, T, A, S> result(buf, size, size + 1,
2441                                     AcquireMallocatedString());
2442   result.swap(str);
2443   return is;
2444 }
2445
2446 template <typename E, class T, class A, class S>
2447 inline
2448 std::basic_istream<typename basic_fbstring<E, T, A, S>::value_type,
2449                    typename basic_fbstring<E, T, A, S>::traits_type>&
2450 getline(
2451   std::basic_istream<typename basic_fbstring<E, T, A, S>::value_type,
2452   typename basic_fbstring<E, T, A, S>::traits_type>& is,
2453   basic_fbstring<E, T, A, S>& str) {
2454   // Just forward to the version with a delimiter
2455   return getline(is, str, '\n');
2456 }
2457
2458 #endif
2459
2460 template <typename E1, class T, class A, class S>
2461 const typename basic_fbstring<E1, T, A, S>::size_type
2462 basic_fbstring<E1, T, A, S>::npos =
2463               static_cast<typename basic_fbstring<E1, T, A, S>::size_type>(-1);
2464
2465 #ifndef _LIBSTDCXX_FBSTRING
2466 // basic_string compatibility routines
2467
2468 template <typename E, class T, class A, class S>
2469 inline
2470 bool operator==(const basic_fbstring<E, T, A, S>& lhs,
2471                 const std::string& rhs) {
2472   return lhs.compare(0, lhs.size(), rhs.data(), rhs.size()) == 0;
2473 }
2474
2475 template <typename E, class T, class A, class S>
2476 inline
2477 bool operator==(const std::string& lhs,
2478                 const basic_fbstring<E, T, A, S>& rhs) {
2479   return rhs == lhs;
2480 }
2481
2482 template <typename E, class T, class A, class S>
2483 inline
2484 bool operator!=(const basic_fbstring<E, T, A, S>& lhs,
2485                 const std::string& rhs) {
2486   return !(lhs == rhs);
2487 }
2488
2489 template <typename E, class T, class A, class S>
2490 inline
2491 bool operator!=(const std::string& lhs,
2492                 const basic_fbstring<E, T, A, S>& rhs) {
2493   return !(lhs == rhs);
2494 }
2495
2496 #if !defined(_LIBSTDCXX_FBSTRING)
2497 typedef basic_fbstring<char> fbstring;
2498 #endif
2499
2500 // fbstring is relocatable
2501 template <class T, class R, class A, class S>
2502 FOLLY_ASSUME_RELOCATABLE(basic_fbstring<T, R, A, S>);
2503
2504 #else
2505 _GLIBCXX_END_NAMESPACE_VERSION
2506 #endif
2507
2508 } // namespace folly
2509
2510 #ifndef _LIBSTDCXX_FBSTRING
2511
2512 // Hash functions to make fbstring usable with e.g. hash_map
2513 //
2514 // Handle interaction with different C++ standard libraries, which
2515 // expect these types to be in different namespaces.
2516
2517 #define FOLLY_FBSTRING_HASH1(T) \
2518   template <> \
2519   struct hash< ::folly::basic_fbstring<T> > { \
2520     size_t operator()(const ::folly::fbstring& s) const { \
2521       return ::folly::hash::fnv32_buf(s.data(), s.size()); \
2522     } \
2523   };
2524
2525 // The C++11 standard says that these four are defined
2526 #define FOLLY_FBSTRING_HASH \
2527   FOLLY_FBSTRING_HASH1(char) \
2528   FOLLY_FBSTRING_HASH1(char16_t) \
2529   FOLLY_FBSTRING_HASH1(char32_t) \
2530   FOLLY_FBSTRING_HASH1(wchar_t)
2531
2532 namespace std {
2533
2534 FOLLY_FBSTRING_HASH
2535
2536 }  // namespace std
2537
2538 #if FOLLY_HAVE_DEPRECATED_ASSOC
2539 #if defined(_GLIBCXX_SYMVER) && !defined(__BIONIC__)
2540 namespace __gnu_cxx {
2541
2542 FOLLY_FBSTRING_HASH
2543
2544 }  // namespace __gnu_cxx
2545 #endif // _GLIBCXX_SYMVER && !__BIONIC__
2546 #endif // FOLLY_HAVE_DEPRECATED_ASSOC
2547
2548 #undef FOLLY_FBSTRING_HASH
2549 #undef FOLLY_FBSTRING_HASH1
2550
2551 #endif // _LIBSTDCXX_FBSTRING
2552
2553 #pragma GCC diagnostic pop
2554
2555 #undef FBSTRING_DISABLE_ADDRESS_SANITIZER
2556 #undef throw
2557 #undef FBSTRING_LIKELY
2558 #undef FBSTRING_UNLIKELY
2559
2560 #ifdef FOLLY_DEFINED_NDEBUG_FOR_FBSTRING
2561 #undef NDEBUG
2562 #undef FOLLY_DEFINED_NDEBUG_FOR_FBSTRING
2563 #endif // FOLLY_DEFINED_NDEBUG_FOR_FBSTRING
2564
2565 #endif // FOLLY_BASE_FBSTRING_H_