string_ref.hpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. /*
  2. Copyright (c) Marshall Clow 2012-2015.
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. For more information, see http://www.boost.org
  6. Based on the StringRef implementation in LLVM (http://llvm.org) and
  7. N3422 by Jeffrey Yasskin
  8. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3442.html
  9. */
  10. #ifndef BOOST_STRING_REF_HPP
  11. #define BOOST_STRING_REF_HPP
  12. #include <boost/config.hpp>
  13. #include <boost/detail/workaround.hpp>
  14. #include <boost/utility/string_ref_fwd.hpp>
  15. #include <boost/throw_exception.hpp>
  16. #include <cstddef>
  17. #include <stdexcept>
  18. #include <algorithm>
  19. #include <iterator>
  20. #include <string>
  21. #include <iosfwd>
  22. namespace boost {
  23. namespace detail {
  24. // A helper functor because sometimes we don't have lambdas
  25. template <typename charT, typename traits>
  26. class string_ref_traits_eq {
  27. public:
  28. string_ref_traits_eq ( charT ch ) : ch_(ch) {}
  29. bool operator () ( charT val ) const { return traits::eq ( ch_, val ); }
  30. charT ch_;
  31. };
  32. }
  33. template<typename charT, typename traits>
  34. class basic_string_ref {
  35. public:
  36. // types
  37. typedef charT value_type;
  38. typedef const charT* pointer;
  39. typedef const charT& reference;
  40. typedef const charT& const_reference;
  41. typedef pointer const_iterator; // impl-defined
  42. typedef const_iterator iterator;
  43. typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
  44. typedef const_reverse_iterator reverse_iterator;
  45. typedef std::size_t size_type;
  46. typedef std::ptrdiff_t difference_type;
  47. static BOOST_CONSTEXPR_OR_CONST size_type npos = size_type(-1);
  48. // construct/copy
  49. BOOST_CONSTEXPR basic_string_ref ()
  50. : ptr_(NULL), len_(0) {}
  51. BOOST_CONSTEXPR basic_string_ref (const basic_string_ref &rhs)
  52. : ptr_(rhs.ptr_), len_(rhs.len_) {}
  53. basic_string_ref& operator=(const basic_string_ref &rhs) {
  54. ptr_ = rhs.ptr_;
  55. len_ = rhs.len_;
  56. return *this;
  57. }
  58. basic_string_ref(const charT* str)
  59. : ptr_(str), len_(traits::length(str)) {}
  60. template<typename Allocator>
  61. basic_string_ref(const std::basic_string<charT, traits, Allocator>& str)
  62. : ptr_(str.data()), len_(str.length()) {}
  63. BOOST_CONSTEXPR basic_string_ref(const charT* str, size_type len)
  64. : ptr_(str), len_(len) {}
  65. #ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  66. template<typename Allocator>
  67. explicit operator std::basic_string<charT, traits, Allocator>() const {
  68. return std::basic_string<charT, traits, Allocator> ( begin(), end());
  69. }
  70. #endif
  71. std::basic_string<charT, traits> to_string () const {
  72. return std::basic_string<charT, traits> ( begin(), end());
  73. }
  74. // iterators
  75. BOOST_CONSTEXPR const_iterator begin() const { return ptr_; }
  76. BOOST_CONSTEXPR const_iterator cbegin() const { return ptr_; }
  77. BOOST_CONSTEXPR const_iterator end() const { return ptr_ + len_; }
  78. BOOST_CONSTEXPR const_iterator cend() const { return ptr_ + len_; }
  79. const_reverse_iterator rbegin() const { return const_reverse_iterator (end()); }
  80. const_reverse_iterator crbegin() const { return const_reverse_iterator (end()); }
  81. const_reverse_iterator rend() const { return const_reverse_iterator (begin()); }
  82. const_reverse_iterator crend() const { return const_reverse_iterator (begin()); }
  83. // capacity
  84. BOOST_CONSTEXPR size_type size() const { return len_; }
  85. BOOST_CONSTEXPR size_type length() const { return len_; }
  86. BOOST_CONSTEXPR size_type max_size() const { return len_; }
  87. BOOST_CONSTEXPR bool empty() const { return len_ == 0; }
  88. // element access
  89. BOOST_CONSTEXPR const charT& operator[](size_type pos) const { return ptr_[pos]; }
  90. const charT& at(size_t pos) const {
  91. if ( pos >= len_ )
  92. BOOST_THROW_EXCEPTION( std::out_of_range ( "boost::string_ref::at" ) );
  93. return ptr_[pos];
  94. }
  95. BOOST_CONSTEXPR const charT& front() const { return ptr_[0]; }
  96. BOOST_CONSTEXPR const charT& back() const { return ptr_[len_-1]; }
  97. BOOST_CONSTEXPR const charT* data() const { return ptr_; }
  98. // modifiers
  99. void clear() { len_ = 0; }
  100. void remove_prefix(size_type n) {
  101. if ( n > len_ )
  102. n = len_;
  103. ptr_ += n;
  104. len_ -= n;
  105. }
  106. void remove_suffix(size_type n) {
  107. if ( n > len_ )
  108. n = len_;
  109. len_ -= n;
  110. }
  111. // basic_string_ref string operations
  112. basic_string_ref substr(size_type pos, size_type n=npos) const {
  113. if ( pos > size())
  114. BOOST_THROW_EXCEPTION( std::out_of_range ( "string_ref::substr" ) );
  115. if ( n == npos || pos + n > size())
  116. n = size () - pos;
  117. return basic_string_ref ( data() + pos, n );
  118. }
  119. int compare(basic_string_ref x) const {
  120. const int cmp = traits::compare ( ptr_, x.ptr_, (std::min)(len_, x.len_));
  121. return cmp != 0 ? cmp : ( len_ == x.len_ ? 0 : len_ < x.len_ ? -1 : 1 );
  122. }
  123. bool starts_with(charT c) const { return !empty() && traits::eq ( c, front()); }
  124. bool starts_with(basic_string_ref x) const {
  125. return len_ >= x.len_ && traits::compare ( ptr_, x.ptr_, x.len_ ) == 0;
  126. }
  127. bool ends_with(charT c) const { return !empty() && traits::eq ( c, back()); }
  128. bool ends_with(basic_string_ref x) const {
  129. return len_ >= x.len_ && traits::compare ( ptr_ + len_ - x.len_, x.ptr_, x.len_ ) == 0;
  130. }
  131. size_type find(basic_string_ref s) const {
  132. const_iterator iter = std::search ( this->cbegin (), this->cend (),
  133. s.cbegin (), s.cend (), traits::eq );
  134. return iter == this->cend () ? npos : std::distance ( this->cbegin (), iter );
  135. }
  136. size_type find(charT c) const {
  137. const_iterator iter = std::find_if ( this->cbegin (), this->cend (),
  138. detail::string_ref_traits_eq<charT, traits> ( c ));
  139. return iter == this->cend () ? npos : std::distance ( this->cbegin (), iter );
  140. }
  141. size_type rfind(basic_string_ref s) const {
  142. const_reverse_iterator iter = std::search ( this->crbegin (), this->crend (),
  143. s.crbegin (), s.crend (), traits::eq );
  144. return iter == this->crend () ? npos : reverse_distance ( this->crbegin (), iter );
  145. }
  146. size_type rfind(charT c) const {
  147. const_reverse_iterator iter = std::find_if ( this->crbegin (), this->crend (),
  148. detail::string_ref_traits_eq<charT, traits> ( c ));
  149. return iter == this->crend () ? npos : reverse_distance ( this->crbegin (), iter );
  150. }
  151. size_type find_first_of(charT c) const { return find (c); }
  152. size_type find_last_of (charT c) const { return rfind (c); }
  153. size_type find_first_of(basic_string_ref s) const {
  154. const_iterator iter = std::find_first_of
  155. ( this->cbegin (), this->cend (), s.cbegin (), s.cend (), traits::eq );
  156. return iter == this->cend () ? npos : std::distance ( this->cbegin (), iter );
  157. }
  158. size_type find_last_of(basic_string_ref s) const {
  159. const_reverse_iterator iter = std::find_first_of
  160. ( this->crbegin (), this->crend (), s.cbegin (), s.cend (), traits::eq );
  161. return iter == this->crend () ? npos : reverse_distance ( this->crbegin (), iter);
  162. }
  163. size_type find_first_not_of(basic_string_ref s) const {
  164. const_iterator iter = find_not_of ( this->cbegin (), this->cend (), s );
  165. return iter == this->cend () ? npos : std::distance ( this->cbegin (), iter );
  166. }
  167. size_type find_first_not_of(charT c) const {
  168. for ( const_iterator iter = this->cbegin (); iter != this->cend (); ++iter )
  169. if ( !traits::eq ( c, *iter ))
  170. return std::distance ( this->cbegin (), iter );
  171. return npos;
  172. }
  173. size_type find_last_not_of(basic_string_ref s) const {
  174. const_reverse_iterator iter = find_not_of ( this->crbegin (), this->crend (), s );
  175. return iter == this->crend () ? npos : reverse_distance ( this->crbegin (), iter );
  176. }
  177. size_type find_last_not_of(charT c) const {
  178. for ( const_reverse_iterator iter = this->crbegin (); iter != this->crend (); ++iter )
  179. if ( !traits::eq ( c, *iter ))
  180. return reverse_distance ( this->crbegin (), iter );
  181. return npos;
  182. }
  183. private:
  184. template <typename r_iter>
  185. size_type reverse_distance ( r_iter first, r_iter last ) const {
  186. return len_ - 1 - std::distance ( first, last );
  187. }
  188. template <typename Iterator>
  189. Iterator find_not_of ( Iterator first, Iterator last, basic_string_ref s ) const {
  190. for ( ; first != last ; ++first )
  191. if ( 0 == traits::find ( s.ptr_, s.len_, *first ))
  192. return first;
  193. return last;
  194. }
  195. const charT *ptr_;
  196. std::size_t len_;
  197. };
  198. // Comparison operators
  199. // Equality
  200. template<typename charT, typename traits>
  201. inline bool operator==(basic_string_ref<charT, traits> x, basic_string_ref<charT, traits> y) {
  202. if ( x.size () != y.size ()) return false;
  203. return x.compare(y) == 0;
  204. }
  205. template<typename charT, typename traits, typename Allocator>
  206. inline bool operator==(basic_string_ref<charT, traits> x, const std::basic_string<charT, traits, Allocator> & y) {
  207. return x == basic_string_ref<charT, traits>(y);
  208. }
  209. template<typename charT, typename traits, typename Allocator>
  210. inline bool operator==(const std::basic_string<charT, traits, Allocator> & x, basic_string_ref<charT, traits> y) {
  211. return basic_string_ref<charT, traits>(x) == y;
  212. }
  213. template<typename charT, typename traits>
  214. inline bool operator==(basic_string_ref<charT, traits> x, const charT * y) {
  215. return x == basic_string_ref<charT, traits>(y);
  216. }
  217. template<typename charT, typename traits>
  218. inline bool operator==(const charT * x, basic_string_ref<charT, traits> y) {
  219. return basic_string_ref<charT, traits>(x) == y;
  220. }
  221. // Inequality
  222. template<typename charT, typename traits>
  223. inline bool operator!=(basic_string_ref<charT, traits> x, basic_string_ref<charT, traits> y) {
  224. if ( x.size () != y.size ()) return true;
  225. return x.compare(y) != 0;
  226. }
  227. template<typename charT, typename traits, typename Allocator>
  228. inline bool operator!=(basic_string_ref<charT, traits> x, const std::basic_string<charT, traits, Allocator> & y) {
  229. return x != basic_string_ref<charT, traits>(y);
  230. }
  231. template<typename charT, typename traits, typename Allocator>
  232. inline bool operator!=(const std::basic_string<charT, traits, Allocator> & x, basic_string_ref<charT, traits> y) {
  233. return basic_string_ref<charT, traits>(x) != y;
  234. }
  235. template<typename charT, typename traits>
  236. inline bool operator!=(basic_string_ref<charT, traits> x, const charT * y) {
  237. return x != basic_string_ref<charT, traits>(y);
  238. }
  239. template<typename charT, typename traits>
  240. inline bool operator!=(const charT * x, basic_string_ref<charT, traits> y) {
  241. return basic_string_ref<charT, traits>(x) != y;
  242. }
  243. // Less than
  244. template<typename charT, typename traits>
  245. inline bool operator<(basic_string_ref<charT, traits> x, basic_string_ref<charT, traits> y) {
  246. return x.compare(y) < 0;
  247. }
  248. template<typename charT, typename traits, typename Allocator>
  249. inline bool operator<(basic_string_ref<charT, traits> x, const std::basic_string<charT, traits, Allocator> & y) {
  250. return x < basic_string_ref<charT, traits>(y);
  251. }
  252. template<typename charT, typename traits, typename Allocator>
  253. inline bool operator<(const std::basic_string<charT, traits, Allocator> & x, basic_string_ref<charT, traits> y) {
  254. return basic_string_ref<charT, traits>(x) < y;
  255. }
  256. template<typename charT, typename traits>
  257. inline bool operator<(basic_string_ref<charT, traits> x, const charT * y) {
  258. return x < basic_string_ref<charT, traits>(y);
  259. }
  260. template<typename charT, typename traits>
  261. inline bool operator<(const charT * x, basic_string_ref<charT, traits> y) {
  262. return basic_string_ref<charT, traits>(x) < y;
  263. }
  264. // Greater than
  265. template<typename charT, typename traits>
  266. inline bool operator>(basic_string_ref<charT, traits> x, basic_string_ref<charT, traits> y) {
  267. return x.compare(y) > 0;
  268. }
  269. template<typename charT, typename traits, typename Allocator>
  270. inline bool operator>(basic_string_ref<charT, traits> x, const std::basic_string<charT, traits, Allocator> & y) {
  271. return x > basic_string_ref<charT, traits>(y);
  272. }
  273. template<typename charT, typename traits, typename Allocator>
  274. inline bool operator>(const std::basic_string<charT, traits, Allocator> & x, basic_string_ref<charT, traits> y) {
  275. return basic_string_ref<charT, traits>(x) > y;
  276. }
  277. template<typename charT, typename traits>
  278. inline bool operator>(basic_string_ref<charT, traits> x, const charT * y) {
  279. return x > basic_string_ref<charT, traits>(y);
  280. }
  281. template<typename charT, typename traits>
  282. inline bool operator>(const charT * x, basic_string_ref<charT, traits> y) {
  283. return basic_string_ref<charT, traits>(x) > y;
  284. }
  285. // Less than or equal to
  286. template<typename charT, typename traits>
  287. inline bool operator<=(basic_string_ref<charT, traits> x, basic_string_ref<charT, traits> y) {
  288. return x.compare(y) <= 0;
  289. }
  290. template<typename charT, typename traits, typename Allocator>
  291. inline bool operator<=(basic_string_ref<charT, traits> x, const std::basic_string<charT, traits, Allocator> & y) {
  292. return x <= basic_string_ref<charT, traits>(y);
  293. }
  294. template<typename charT, typename traits, typename Allocator>
  295. inline bool operator<=(const std::basic_string<charT, traits, Allocator> & x, basic_string_ref<charT, traits> y) {
  296. return basic_string_ref<charT, traits>(x) <= y;
  297. }
  298. template<typename charT, typename traits>
  299. inline bool operator<=(basic_string_ref<charT, traits> x, const charT * y) {
  300. return x <= basic_string_ref<charT, traits>(y);
  301. }
  302. template<typename charT, typename traits>
  303. inline bool operator<=(const charT * x, basic_string_ref<charT, traits> y) {
  304. return basic_string_ref<charT, traits>(x) <= y;
  305. }
  306. // Greater than or equal to
  307. template<typename charT, typename traits>
  308. inline bool operator>=(basic_string_ref<charT, traits> x, basic_string_ref<charT, traits> y) {
  309. return x.compare(y) >= 0;
  310. }
  311. template<typename charT, typename traits, typename Allocator>
  312. inline bool operator>=(basic_string_ref<charT, traits> x, const std::basic_string<charT, traits, Allocator> & y) {
  313. return x >= basic_string_ref<charT, traits>(y);
  314. }
  315. template<typename charT, typename traits, typename Allocator>
  316. inline bool operator>=(const std::basic_string<charT, traits, Allocator> & x, basic_string_ref<charT, traits> y) {
  317. return basic_string_ref<charT, traits>(x) >= y;
  318. }
  319. template<typename charT, typename traits>
  320. inline bool operator>=(basic_string_ref<charT, traits> x, const charT * y) {
  321. return x >= basic_string_ref<charT, traits>(y);
  322. }
  323. template<typename charT, typename traits>
  324. inline bool operator>=(const charT * x, basic_string_ref<charT, traits> y) {
  325. return basic_string_ref<charT, traits>(x) >= y;
  326. }
  327. namespace detail {
  328. template<class charT, class traits>
  329. inline void insert_fill_chars(std::basic_ostream<charT, traits>& os, std::size_t n) {
  330. enum { chunk_size = 8 };
  331. charT fill_chars[chunk_size];
  332. std::fill_n(fill_chars, static_cast< std::size_t >(chunk_size), os.fill());
  333. for (; n >= chunk_size && os.good(); n -= chunk_size)
  334. os.write(fill_chars, static_cast< std::size_t >(chunk_size));
  335. if (n > 0 && os.good())
  336. os.write(fill_chars, n);
  337. }
  338. template<class charT, class traits>
  339. void insert_aligned(std::basic_ostream<charT, traits>& os, const basic_string_ref<charT,traits>& str) {
  340. const std::size_t size = str.size();
  341. const std::size_t alignment_size = static_cast< std::size_t >(os.width()) - size;
  342. const bool align_left = (os.flags() & std::basic_ostream<charT, traits>::adjustfield) == std::basic_ostream<charT, traits>::left;
  343. if (!align_left) {
  344. detail::insert_fill_chars(os, alignment_size);
  345. if (os.good())
  346. os.write(str.data(), size);
  347. }
  348. else {
  349. os.write(str.data(), size);
  350. if (os.good())
  351. detail::insert_fill_chars(os, alignment_size);
  352. }
  353. }
  354. } // namespace detail
  355. // Inserter
  356. template<class charT, class traits>
  357. inline std::basic_ostream<charT, traits>&
  358. operator<<(std::basic_ostream<charT, traits>& os, const basic_string_ref<charT,traits>& str) {
  359. if (os.good()) {
  360. const std::size_t size = str.size();
  361. const std::size_t w = static_cast< std::size_t >(os.width());
  362. if (w <= size)
  363. os.write(str.data(), size);
  364. else
  365. detail::insert_aligned(os, str);
  366. os.width(0);
  367. }
  368. return os;
  369. }
  370. #if 0
  371. // numeric conversions
  372. //
  373. // These are short-term implementations.
  374. // In a production environment, I would rather avoid the copying.
  375. //
  376. inline int stoi (string_ref str, size_t* idx=0, int base=10) {
  377. return std::stoi ( std::string(str), idx, base );
  378. }
  379. inline long stol (string_ref str, size_t* idx=0, int base=10) {
  380. return std::stol ( std::string(str), idx, base );
  381. }
  382. inline unsigned long stoul (string_ref str, size_t* idx=0, int base=10) {
  383. return std::stoul ( std::string(str), idx, base );
  384. }
  385. inline long long stoll (string_ref str, size_t* idx=0, int base=10) {
  386. return std::stoll ( std::string(str), idx, base );
  387. }
  388. inline unsigned long long stoull (string_ref str, size_t* idx=0, int base=10) {
  389. return std::stoull ( std::string(str), idx, base );
  390. }
  391. inline float stof (string_ref str, size_t* idx=0) {
  392. return std::stof ( std::string(str), idx );
  393. }
  394. inline double stod (string_ref str, size_t* idx=0) {
  395. return std::stod ( std::string(str), idx );
  396. }
  397. inline long double stold (string_ref str, size_t* idx=0) {
  398. return std::stold ( std::string(str), idx );
  399. }
  400. inline int stoi (wstring_ref str, size_t* idx=0, int base=10) {
  401. return std::stoi ( std::wstring(str), idx, base );
  402. }
  403. inline long stol (wstring_ref str, size_t* idx=0, int base=10) {
  404. return std::stol ( std::wstring(str), idx, base );
  405. }
  406. inline unsigned long stoul (wstring_ref str, size_t* idx=0, int base=10) {
  407. return std::stoul ( std::wstring(str), idx, base );
  408. }
  409. inline long long stoll (wstring_ref str, size_t* idx=0, int base=10) {
  410. return std::stoll ( std::wstring(str), idx, base );
  411. }
  412. inline unsigned long long stoull (wstring_ref str, size_t* idx=0, int base=10) {
  413. return std::stoull ( std::wstring(str), idx, base );
  414. }
  415. inline float stof (wstring_ref str, size_t* idx=0) {
  416. return std::stof ( std::wstring(str), idx );
  417. }
  418. inline double stod (wstring_ref str, size_t* idx=0) {
  419. return std::stod ( std::wstring(str), idx );
  420. }
  421. inline long double stold (wstring_ref str, size_t* idx=0) {
  422. return std::stold ( std::wstring(str), idx );
  423. }
  424. #endif
  425. }
  426. #if 0
  427. namespace std {
  428. // Hashing
  429. template<> struct hash<boost::string_ref>;
  430. template<> struct hash<boost::u16string_ref>;
  431. template<> struct hash<boost::u32string_ref>;
  432. template<> struct hash<boost::wstring_ref>;
  433. }
  434. #endif
  435. #endif