regex_split.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. *
  3. * Copyright (c) 1998-2002
  4. * John Maddock
  5. *
  6. * Use, modification and distribution are subject to the
  7. * Boost Software License, Version 1.0. (See accompanying file
  8. * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. *
  10. */
  11. /*
  12. * LOCATION: see http://www.boost.org for most recent version.
  13. * FILE regex_split.hpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Implements regex_split and associated functions.
  16. * Note this is an internal header file included
  17. * by regex.hpp, do not include on its own.
  18. */
  19. #ifndef BOOST_REGEX_SPLIT_HPP
  20. #define BOOST_REGEX_SPLIT_HPP
  21. namespace boost{
  22. #ifdef BOOST_MSVC
  23. #pragma warning(push)
  24. #pragma warning(disable: 4103)
  25. #endif
  26. #ifdef BOOST_HAS_ABI_HEADERS
  27. # include BOOST_ABI_PREFIX
  28. #endif
  29. #ifdef BOOST_MSVC
  30. #pragma warning(pop)
  31. #endif
  32. #ifdef BOOST_MSVC
  33. # pragma warning(push)
  34. # pragma warning(disable: 4800)
  35. #endif
  36. namespace BOOST_REGEX_DETAIL_NS{
  37. template <class charT>
  38. const basic_regex<charT>& get_default_expression(charT)
  39. {
  40. static const charT expression_text[4] = { '\\', 's', '+', '\00', };
  41. static const basic_regex<charT> e(expression_text);
  42. return e;
  43. }
  44. template <class OutputIterator, class charT, class Traits1, class Alloc1>
  45. class split_pred
  46. {
  47. typedef std::basic_string<charT, Traits1, Alloc1> string_type;
  48. typedef typename string_type::const_iterator iterator_type;
  49. iterator_type* p_last;
  50. OutputIterator* p_out;
  51. std::size_t* p_max;
  52. std::size_t initial_max;
  53. public:
  54. split_pred(iterator_type* a, OutputIterator* b, std::size_t* c)
  55. : p_last(a), p_out(b), p_max(c), initial_max(*c) {}
  56. bool operator()(const match_results<iterator_type>& what);
  57. };
  58. template <class OutputIterator, class charT, class Traits1, class Alloc1>
  59. bool split_pred<OutputIterator, charT, Traits1, Alloc1>::operator()
  60. (const match_results<iterator_type>& what)
  61. {
  62. *p_last = what[0].second;
  63. if(what.size() > 1)
  64. {
  65. // output sub-expressions only:
  66. for(unsigned i = 1; i < what.size(); ++i)
  67. {
  68. *(*p_out) = what.str(i);
  69. ++(*p_out);
  70. if(0 == --*p_max) return false;
  71. }
  72. return *p_max != 0;
  73. }
  74. else
  75. {
  76. // output $` only if it's not-null or not at the start of the input:
  77. const sub_match<iterator_type>& sub = what[-1];
  78. if((sub.first != sub.second) || (*p_max != initial_max))
  79. {
  80. *(*p_out) = sub.str();
  81. ++(*p_out);
  82. return --*p_max;
  83. }
  84. }
  85. //
  86. // initial null, do nothing:
  87. return true;
  88. }
  89. } // namespace BOOST_REGEX_DETAIL_NS
  90. template <class OutputIterator, class charT, class Traits1, class Alloc1, class Traits2>
  91. std::size_t regex_split(OutputIterator out,
  92. std::basic_string<charT, Traits1, Alloc1>& s,
  93. const basic_regex<charT, Traits2>& e,
  94. match_flag_type flags,
  95. std::size_t max_split)
  96. {
  97. typedef typename std::basic_string<charT, Traits1, Alloc1>::const_iterator ci_t;
  98. //typedef typename match_results<ci_t>::allocator_type match_allocator;
  99. ci_t last = s.begin();
  100. std::size_t init_size = max_split;
  101. BOOST_REGEX_DETAIL_NS::split_pred<OutputIterator, charT, Traits1, Alloc1> pred(&last, &out, &max_split);
  102. ci_t i, j;
  103. i = s.begin();
  104. j = s.end();
  105. regex_grep(pred, i, j, e, flags);
  106. //
  107. // if there is still input left, do a final push as long as max_split
  108. // is not exhausted, and we're not splitting sub-expressions rather
  109. // than whitespace:
  110. if(max_split && (last != s.end()) && (e.mark_count() == 0))
  111. {
  112. *out = std::basic_string<charT, Traits1, Alloc1>((ci_t)last, (ci_t)s.end());
  113. ++out;
  114. last = s.end();
  115. --max_split;
  116. }
  117. //
  118. // delete from the string everything that has been processed so far:
  119. s.erase(0, last - s.begin());
  120. //
  121. // return the number of new records pushed:
  122. return init_size - max_split;
  123. }
  124. template <class OutputIterator, class charT, class Traits1, class Alloc1, class Traits2>
  125. inline std::size_t regex_split(OutputIterator out,
  126. std::basic_string<charT, Traits1, Alloc1>& s,
  127. const basic_regex<charT, Traits2>& e,
  128. match_flag_type flags = match_default)
  129. {
  130. return regex_split(out, s, e, flags, UINT_MAX);
  131. }
  132. template <class OutputIterator, class charT, class Traits1, class Alloc1>
  133. inline std::size_t regex_split(OutputIterator out,
  134. std::basic_string<charT, Traits1, Alloc1>& s)
  135. {
  136. return regex_split(out, s, BOOST_REGEX_DETAIL_NS::get_default_expression(charT(0)), match_default, UINT_MAX);
  137. }
  138. #ifdef BOOST_MSVC
  139. # pragma warning(pop)
  140. #endif
  141. #ifdef BOOST_MSVC
  142. #pragma warning(push)
  143. #pragma warning(disable: 4103)
  144. #endif
  145. #ifdef BOOST_HAS_ABI_HEADERS
  146. # include BOOST_ABI_SUFFIX
  147. #endif
  148. #ifdef BOOST_MSVC
  149. #pragma warning(pop)
  150. #endif
  151. } // namespace boost
  152. #endif