concepts.hpp 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128
  1. /*
  2. *
  3. * Copyright (c) 2004
  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 concepts.hpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Declares regular expression concepts.
  16. */
  17. #ifndef BOOST_REGEX_CONCEPTS_HPP_INCLUDED
  18. #define BOOST_REGEX_CONCEPTS_HPP_INCLUDED
  19. #include <boost/concept_archetype.hpp>
  20. #include <boost/concept_check.hpp>
  21. #include <boost/type_traits/is_enum.hpp>
  22. #include <boost/type_traits/is_base_and_derived.hpp>
  23. #include <boost/static_assert.hpp>
  24. #ifndef BOOST_TEST_TR1_REGEX
  25. #include <boost/regex.hpp>
  26. #endif
  27. #include <bitset>
  28. #include <vector>
  29. #include <iostream>
  30. namespace boost{
  31. //
  32. // bitmask_archetype:
  33. // this can be either an integer type, an enum, or a std::bitset,
  34. // we use the latter as the architype as it offers the "strictest"
  35. // of the possible interfaces:
  36. //
  37. typedef std::bitset<512> bitmask_archetype;
  38. //
  39. // char_architype:
  40. // A strict model for the character type interface.
  41. //
  42. struct char_architype
  43. {
  44. // default constructable:
  45. char_architype();
  46. // copy constructable / assignable:
  47. char_architype(const char_architype&);
  48. char_architype& operator=(const char_architype&);
  49. // constructable from an integral value:
  50. char_architype(unsigned long val);
  51. // comparable:
  52. bool operator==(const char_architype&)const;
  53. bool operator!=(const char_architype&)const;
  54. bool operator<(const char_architype&)const;
  55. bool operator<=(const char_architype&)const;
  56. bool operator>=(const char_architype&)const;
  57. bool operator>(const char_architype&)const;
  58. // conversion to integral type:
  59. operator long()const;
  60. };
  61. inline long hash_value(char_architype val)
  62. { return val; }
  63. //
  64. // char_architype can not be used with basic_string:
  65. //
  66. } // namespace boost
  67. namespace std{
  68. template<> struct char_traits<boost::char_architype>
  69. {
  70. // The intent is that this template is not instantiated,
  71. // but this typedef gives us a chance of compilation in
  72. // case it is:
  73. typedef boost::char_architype char_type;
  74. };
  75. }
  76. //
  77. // Allocator architype:
  78. //
  79. template <class T>
  80. class allocator_architype
  81. {
  82. public:
  83. typedef T* pointer;
  84. typedef const T* const_pointer;
  85. typedef T& reference;
  86. typedef const T& const_reference;
  87. typedef T value_type;
  88. typedef unsigned size_type;
  89. typedef int difference_type;
  90. template <class U>
  91. struct rebind
  92. {
  93. typedef allocator_architype<U> other;
  94. };
  95. pointer address(reference r);
  96. const_pointer address(const_reference r);
  97. pointer allocate(size_type);
  98. pointer allocate(size_type, pointer);
  99. void deallocate(pointer, size_type);
  100. size_type max_size()const;
  101. allocator_architype();
  102. allocator_architype(const allocator_architype&);
  103. template <class Other>
  104. allocator_architype(const allocator_architype<Other>&);
  105. void construct(pointer, const_reference);
  106. void destroy(pointer);
  107. };
  108. template <class T>
  109. bool operator == (const allocator_architype<T>&, const allocator_architype<T>&);
  110. template <class T>
  111. bool operator != (const allocator_architype<T>&, const allocator_architype<T>&);
  112. namespace boost{
  113. //
  114. // regex_traits_architype:
  115. // A strict interpretation of the regular expression traits class requirements.
  116. //
  117. template <class charT>
  118. struct regex_traits_architype
  119. {
  120. public:
  121. regex_traits_architype();
  122. typedef charT char_type;
  123. // typedef std::size_t size_type;
  124. typedef std::vector<char_type> string_type;
  125. typedef copy_constructible_archetype<assignable_archetype<> > locale_type;
  126. typedef bitmask_archetype char_class_type;
  127. static std::size_t length(const char_type* ) { return 0; }
  128. charT translate(charT ) const { return charT(); }
  129. charT translate_nocase(charT ) const { return static_object<charT>::get(); }
  130. template <class ForwardIterator>
  131. string_type transform(ForwardIterator , ForwardIterator ) const
  132. { return static_object<string_type>::get(); }
  133. template <class ForwardIterator>
  134. string_type transform_primary(ForwardIterator , ForwardIterator ) const
  135. { return static_object<string_type>::get(); }
  136. template <class ForwardIterator>
  137. char_class_type lookup_classname(ForwardIterator , ForwardIterator ) const
  138. { return static_object<char_class_type>::get(); }
  139. template <class ForwardIterator>
  140. string_type lookup_collatename(ForwardIterator , ForwardIterator ) const
  141. { return static_object<string_type>::get(); }
  142. bool isctype(charT, char_class_type) const
  143. { return false; }
  144. int value(charT, int) const
  145. { return 0; }
  146. locale_type imbue(locale_type l)
  147. { return l; }
  148. locale_type getloc()const
  149. { return static_object<locale_type>::get(); }
  150. private:
  151. // this type is not copyable:
  152. regex_traits_architype(const regex_traits_architype&);
  153. regex_traits_architype& operator=(const regex_traits_architype&);
  154. };
  155. //
  156. // alter this to std::tr1, to test a std implementation:
  157. //
  158. #ifndef BOOST_TEST_TR1_REGEX
  159. namespace global_regex_namespace = ::boost;
  160. #else
  161. namespace global_regex_namespace = ::std::tr1;
  162. #endif
  163. template <class Bitmask>
  164. struct BitmaskConcept
  165. {
  166. void constraints()
  167. {
  168. function_requires<CopyConstructibleConcept<Bitmask> >();
  169. function_requires<AssignableConcept<Bitmask> >();
  170. m_mask1 = m_mask2 | m_mask3;
  171. m_mask1 = m_mask2 & m_mask3;
  172. m_mask1 = m_mask2 ^ m_mask3;
  173. m_mask1 = ~m_mask2;
  174. m_mask1 |= m_mask2;
  175. m_mask1 &= m_mask2;
  176. m_mask1 ^= m_mask2;
  177. }
  178. Bitmask m_mask1, m_mask2, m_mask3;
  179. };
  180. template <class traits>
  181. struct RegexTraitsConcept
  182. {
  183. RegexTraitsConcept();
  184. // required typedefs:
  185. typedef typename traits::char_type char_type;
  186. // typedef typename traits::size_type size_type;
  187. typedef typename traits::string_type string_type;
  188. typedef typename traits::locale_type locale_type;
  189. typedef typename traits::char_class_type char_class_type;
  190. void constraints()
  191. {
  192. //function_requires<UnsignedIntegerConcept<size_type> >();
  193. function_requires<RandomAccessContainerConcept<string_type> >();
  194. function_requires<DefaultConstructibleConcept<locale_type> >();
  195. function_requires<CopyConstructibleConcept<locale_type> >();
  196. function_requires<AssignableConcept<locale_type> >();
  197. function_requires<BitmaskConcept<char_class_type> >();
  198. std::size_t n = traits::length(m_pointer);
  199. ignore_unused_variable_warning(n);
  200. char_type c = m_ctraits.translate(m_char);
  201. ignore_unused_variable_warning(c);
  202. c = m_ctraits.translate_nocase(m_char);
  203. //string_type::foobar bar;
  204. string_type s1 = m_ctraits.transform(m_pointer, m_pointer);
  205. ignore_unused_variable_warning(s1);
  206. string_type s2 = m_ctraits.transform_primary(m_pointer, m_pointer);
  207. ignore_unused_variable_warning(s2);
  208. char_class_type cc = m_ctraits.lookup_classname(m_pointer, m_pointer);
  209. ignore_unused_variable_warning(cc);
  210. string_type s3 = m_ctraits.lookup_collatename(m_pointer, m_pointer);
  211. ignore_unused_variable_warning(s3);
  212. bool b = m_ctraits.isctype(m_char, cc);
  213. ignore_unused_variable_warning(b);
  214. int v = m_ctraits.value(m_char, 16);
  215. ignore_unused_variable_warning(v);
  216. locale_type l(m_ctraits.getloc());
  217. m_traits.imbue(l);
  218. ignore_unused_variable_warning(l);
  219. }
  220. traits m_traits;
  221. const traits m_ctraits;
  222. const char_type* m_pointer;
  223. char_type m_char;
  224. private:
  225. RegexTraitsConcept& operator=(RegexTraitsConcept&);
  226. };
  227. //
  228. // helper class to compute what traits class a regular expression type is using:
  229. //
  230. template <class Regex>
  231. struct regex_traits_computer;
  232. template <class charT, class traits>
  233. struct regex_traits_computer< global_regex_namespace::basic_regex<charT, traits> >
  234. {
  235. typedef traits type;
  236. };
  237. //
  238. // BaseRegexConcept does not test anything dependent on basic_string,
  239. // in case our charT does not have an associated char_traits:
  240. //
  241. template <class Regex>
  242. struct BaseRegexConcept
  243. {
  244. typedef typename Regex::value_type value_type;
  245. //typedef typename Regex::size_type size_type;
  246. typedef typename Regex::flag_type flag_type;
  247. typedef typename Regex::locale_type locale_type;
  248. typedef input_iterator_archetype<value_type> input_iterator_type;
  249. // derived test types:
  250. typedef const value_type* pointer_type;
  251. typedef bidirectional_iterator_archetype<value_type> BidiIterator;
  252. typedef global_regex_namespace::sub_match<BidiIterator> sub_match_type;
  253. typedef global_regex_namespace::match_results<BidiIterator, allocator_architype<sub_match_type> > match_results_type;
  254. typedef global_regex_namespace::match_results<BidiIterator> match_results_default_type;
  255. typedef output_iterator_archetype<value_type> OutIterator;
  256. typedef typename regex_traits_computer<Regex>::type traits_type;
  257. typedef global_regex_namespace::regex_iterator<BidiIterator, value_type, traits_type> regex_iterator_type;
  258. typedef global_regex_namespace::regex_token_iterator<BidiIterator, value_type, traits_type> regex_token_iterator_type;
  259. void global_constraints()
  260. {
  261. //
  262. // test non-template components:
  263. //
  264. function_requires<BitmaskConcept<global_regex_namespace::regex_constants::syntax_option_type> >();
  265. global_regex_namespace::regex_constants::syntax_option_type opts
  266. = global_regex_namespace::regex_constants::icase
  267. | global_regex_namespace::regex_constants::nosubs
  268. | global_regex_namespace::regex_constants::optimize
  269. | global_regex_namespace::regex_constants::collate
  270. | global_regex_namespace::regex_constants::ECMAScript
  271. | global_regex_namespace::regex_constants::basic
  272. | global_regex_namespace::regex_constants::extended
  273. | global_regex_namespace::regex_constants::awk
  274. | global_regex_namespace::regex_constants::grep
  275. | global_regex_namespace::regex_constants::egrep;
  276. ignore_unused_variable_warning(opts);
  277. function_requires<BitmaskConcept<global_regex_namespace::regex_constants::match_flag_type> >();
  278. global_regex_namespace::regex_constants::match_flag_type mopts
  279. = global_regex_namespace::regex_constants::match_default
  280. | global_regex_namespace::regex_constants::match_not_bol
  281. | global_regex_namespace::regex_constants::match_not_eol
  282. | global_regex_namespace::regex_constants::match_not_bow
  283. | global_regex_namespace::regex_constants::match_not_eow
  284. | global_regex_namespace::regex_constants::match_any
  285. | global_regex_namespace::regex_constants::match_not_null
  286. | global_regex_namespace::regex_constants::match_continuous
  287. | global_regex_namespace::regex_constants::match_prev_avail
  288. | global_regex_namespace::regex_constants::format_default
  289. | global_regex_namespace::regex_constants::format_sed
  290. | global_regex_namespace::regex_constants::format_no_copy
  291. | global_regex_namespace::regex_constants::format_first_only;
  292. ignore_unused_variable_warning(mopts);
  293. BOOST_STATIC_ASSERT((::boost::is_enum<global_regex_namespace::regex_constants::error_type>::value));
  294. global_regex_namespace::regex_constants::error_type e1 = global_regex_namespace::regex_constants::error_collate;
  295. ignore_unused_variable_warning(e1);
  296. e1 = global_regex_namespace::regex_constants::error_ctype;
  297. ignore_unused_variable_warning(e1);
  298. e1 = global_regex_namespace::regex_constants::error_escape;
  299. ignore_unused_variable_warning(e1);
  300. e1 = global_regex_namespace::regex_constants::error_backref;
  301. ignore_unused_variable_warning(e1);
  302. e1 = global_regex_namespace::regex_constants::error_brack;
  303. ignore_unused_variable_warning(e1);
  304. e1 = global_regex_namespace::regex_constants::error_paren;
  305. ignore_unused_variable_warning(e1);
  306. e1 = global_regex_namespace::regex_constants::error_brace;
  307. ignore_unused_variable_warning(e1);
  308. e1 = global_regex_namespace::regex_constants::error_badbrace;
  309. ignore_unused_variable_warning(e1);
  310. e1 = global_regex_namespace::regex_constants::error_range;
  311. ignore_unused_variable_warning(e1);
  312. e1 = global_regex_namespace::regex_constants::error_space;
  313. ignore_unused_variable_warning(e1);
  314. e1 = global_regex_namespace::regex_constants::error_badrepeat;
  315. ignore_unused_variable_warning(e1);
  316. e1 = global_regex_namespace::regex_constants::error_complexity;
  317. ignore_unused_variable_warning(e1);
  318. e1 = global_regex_namespace::regex_constants::error_stack;
  319. ignore_unused_variable_warning(e1);
  320. BOOST_STATIC_ASSERT((::boost::is_base_and_derived<std::runtime_error, global_regex_namespace::regex_error>::value ));
  321. const global_regex_namespace::regex_error except(e1);
  322. e1 = except.code();
  323. typedef typename Regex::value_type regex_value_type;
  324. function_requires< RegexTraitsConcept<global_regex_namespace::regex_traits<char> > >();
  325. function_requires< BaseRegexConcept<global_regex_namespace::basic_regex<char> > >();
  326. }
  327. void constraints()
  328. {
  329. global_constraints();
  330. BOOST_STATIC_ASSERT((::boost::is_same< flag_type, global_regex_namespace::regex_constants::syntax_option_type>::value));
  331. flag_type opts
  332. = Regex::icase
  333. | Regex::nosubs
  334. | Regex::optimize
  335. | Regex::collate
  336. | Regex::ECMAScript
  337. | Regex::basic
  338. | Regex::extended
  339. | Regex::awk
  340. | Regex::grep
  341. | Regex::egrep;
  342. ignore_unused_variable_warning(opts);
  343. function_requires<DefaultConstructibleConcept<Regex> >();
  344. function_requires<CopyConstructibleConcept<Regex> >();
  345. // Regex constructors:
  346. Regex e1(m_pointer);
  347. ignore_unused_variable_warning(e1);
  348. Regex e2(m_pointer, m_flags);
  349. ignore_unused_variable_warning(e2);
  350. Regex e3(m_pointer, m_size, m_flags);
  351. ignore_unused_variable_warning(e3);
  352. Regex e4(in1, in2);
  353. ignore_unused_variable_warning(e4);
  354. Regex e5(in1, in2, m_flags);
  355. ignore_unused_variable_warning(e5);
  356. // assign etc:
  357. Regex e;
  358. e = m_pointer;
  359. e = e1;
  360. e.assign(e1);
  361. e.assign(m_pointer);
  362. e.assign(m_pointer, m_flags);
  363. e.assign(m_pointer, m_size, m_flags);
  364. e.assign(in1, in2);
  365. e.assign(in1, in2, m_flags);
  366. // access:
  367. const Regex ce;
  368. typename Regex::size_type i = ce.mark_count();
  369. ignore_unused_variable_warning(i);
  370. m_flags = ce.flags();
  371. e.imbue(ce.getloc());
  372. e.swap(e1);
  373. global_regex_namespace::swap(e, e1);
  374. // sub_match:
  375. BOOST_STATIC_ASSERT((::boost::is_base_and_derived<std::pair<BidiIterator, BidiIterator>, sub_match_type>::value));
  376. typedef typename sub_match_type::value_type sub_value_type;
  377. typedef typename sub_match_type::difference_type sub_diff_type;
  378. typedef typename sub_match_type::iterator sub_iter_type;
  379. BOOST_STATIC_ASSERT((::boost::is_same<sub_value_type, value_type>::value));
  380. BOOST_STATIC_ASSERT((::boost::is_same<sub_iter_type, BidiIterator>::value));
  381. bool b = m_sub.matched;
  382. ignore_unused_variable_warning(b);
  383. BidiIterator bi = m_sub.first;
  384. ignore_unused_variable_warning(bi);
  385. bi = m_sub.second;
  386. ignore_unused_variable_warning(bi);
  387. sub_diff_type diff = m_sub.length();
  388. ignore_unused_variable_warning(diff);
  389. // match_results tests:
  390. typedef typename match_results_type::value_type mr_value_type;
  391. typedef typename match_results_type::const_reference mr_const_reference;
  392. typedef typename match_results_type::reference mr_reference;
  393. typedef typename match_results_type::const_iterator mr_const_iterator;
  394. typedef typename match_results_type::iterator mr_iterator;
  395. typedef typename match_results_type::difference_type mr_difference_type;
  396. typedef typename match_results_type::size_type mr_size_type;
  397. typedef typename match_results_type::allocator_type mr_allocator_type;
  398. typedef typename match_results_type::char_type mr_char_type;
  399. typedef typename match_results_type::string_type mr_string_type;
  400. match_results_type m1;
  401. mr_allocator_type at;
  402. match_results_type m2(at);
  403. match_results_type m3(m1);
  404. m1 = m2;
  405. int ival = 0;
  406. mr_size_type mrs = m_cresults.size();
  407. ignore_unused_variable_warning(mrs);
  408. mrs = m_cresults.max_size();
  409. ignore_unused_variable_warning(mrs);
  410. b = m_cresults.empty();
  411. ignore_unused_variable_warning(b);
  412. mr_difference_type mrd = m_cresults.length();
  413. ignore_unused_variable_warning(mrd);
  414. mrd = m_cresults.length(ival);
  415. ignore_unused_variable_warning(mrd);
  416. mrd = m_cresults.position();
  417. ignore_unused_variable_warning(mrd);
  418. mrd = m_cresults.position(mrs);
  419. ignore_unused_variable_warning(mrd);
  420. mr_const_reference mrcr = m_cresults[ival];
  421. ignore_unused_variable_warning(mrcr);
  422. mr_const_reference mrcr2 = m_cresults.prefix();
  423. ignore_unused_variable_warning(mrcr2);
  424. mr_const_reference mrcr3 = m_cresults.suffix();
  425. ignore_unused_variable_warning(mrcr3);
  426. mr_const_iterator mrci = m_cresults.begin();
  427. ignore_unused_variable_warning(mrci);
  428. mrci = m_cresults.end();
  429. ignore_unused_variable_warning(mrci);
  430. mr_allocator_type at2 = m_cresults.get_allocator();
  431. m_results.swap(m_results);
  432. global_regex_namespace::swap(m_results, m_results);
  433. // regex_match:
  434. b = global_regex_namespace::regex_match(m_in, m_in, m_results, e);
  435. ignore_unused_variable_warning(b);
  436. b = global_regex_namespace::regex_match(m_in, m_in, m_results, e, m_mft);
  437. ignore_unused_variable_warning(b);
  438. b = global_regex_namespace::regex_match(m_in, m_in, e);
  439. ignore_unused_variable_warning(b);
  440. b = global_regex_namespace::regex_match(m_in, m_in, e, m_mft);
  441. ignore_unused_variable_warning(b);
  442. b = global_regex_namespace::regex_match(m_pointer, m_pmatch, e);
  443. ignore_unused_variable_warning(b);
  444. b = global_regex_namespace::regex_match(m_pointer, m_pmatch, e, m_mft);
  445. ignore_unused_variable_warning(b);
  446. b = global_regex_namespace::regex_match(m_pointer, e);
  447. ignore_unused_variable_warning(b);
  448. b = global_regex_namespace::regex_match(m_pointer, e, m_mft);
  449. ignore_unused_variable_warning(b);
  450. // regex_search:
  451. b = global_regex_namespace::regex_search(m_in, m_in, m_results, e);
  452. ignore_unused_variable_warning(b);
  453. b = global_regex_namespace::regex_search(m_in, m_in, m_results, e, m_mft);
  454. ignore_unused_variable_warning(b);
  455. b = global_regex_namespace::regex_search(m_in, m_in, e);
  456. ignore_unused_variable_warning(b);
  457. b = global_regex_namespace::regex_search(m_in, m_in, e, m_mft);
  458. ignore_unused_variable_warning(b);
  459. b = global_regex_namespace::regex_search(m_pointer, m_pmatch, e);
  460. ignore_unused_variable_warning(b);
  461. b = global_regex_namespace::regex_search(m_pointer, m_pmatch, e, m_mft);
  462. ignore_unused_variable_warning(b);
  463. b = global_regex_namespace::regex_search(m_pointer, e);
  464. ignore_unused_variable_warning(b);
  465. b = global_regex_namespace::regex_search(m_pointer, e, m_mft);
  466. ignore_unused_variable_warning(b);
  467. // regex_iterator:
  468. typedef typename regex_iterator_type::regex_type rit_regex_type;
  469. typedef typename regex_iterator_type::value_type rit_value_type;
  470. typedef typename regex_iterator_type::difference_type rit_difference_type;
  471. typedef typename regex_iterator_type::pointer rit_pointer;
  472. typedef typename regex_iterator_type::reference rit_reference;
  473. typedef typename regex_iterator_type::iterator_category rit_iterator_category;
  474. BOOST_STATIC_ASSERT((::boost::is_same<rit_regex_type, Regex>::value));
  475. BOOST_STATIC_ASSERT((::boost::is_same<rit_value_type, match_results_default_type>::value));
  476. BOOST_STATIC_ASSERT((::boost::is_same<rit_difference_type, std::ptrdiff_t>::value));
  477. BOOST_STATIC_ASSERT((::boost::is_same<rit_pointer, const match_results_default_type*>::value));
  478. BOOST_STATIC_ASSERT((::boost::is_same<rit_reference, const match_results_default_type&>::value));
  479. BOOST_STATIC_ASSERT((::boost::is_convertible<rit_iterator_category*, std::forward_iterator_tag*>::value));
  480. // this takes care of most of the checks needed:
  481. function_requires<ForwardIteratorConcept<regex_iterator_type> >();
  482. regex_iterator_type iter1(m_in, m_in, e);
  483. ignore_unused_variable_warning(iter1);
  484. regex_iterator_type iter2(m_in, m_in, e, m_mft);
  485. ignore_unused_variable_warning(iter2);
  486. // regex_token_iterator:
  487. typedef typename regex_token_iterator_type::regex_type rtit_regex_type;
  488. typedef typename regex_token_iterator_type::value_type rtit_value_type;
  489. typedef typename regex_token_iterator_type::difference_type rtit_difference_type;
  490. typedef typename regex_token_iterator_type::pointer rtit_pointer;
  491. typedef typename regex_token_iterator_type::reference rtit_reference;
  492. typedef typename regex_token_iterator_type::iterator_category rtit_iterator_category;
  493. BOOST_STATIC_ASSERT((::boost::is_same<rtit_regex_type, Regex>::value));
  494. BOOST_STATIC_ASSERT((::boost::is_same<rtit_value_type, sub_match_type>::value));
  495. BOOST_STATIC_ASSERT((::boost::is_same<rtit_difference_type, std::ptrdiff_t>::value));
  496. BOOST_STATIC_ASSERT((::boost::is_same<rtit_pointer, const sub_match_type*>::value));
  497. BOOST_STATIC_ASSERT((::boost::is_same<rtit_reference, const sub_match_type&>::value));
  498. BOOST_STATIC_ASSERT((::boost::is_convertible<rtit_iterator_category*, std::forward_iterator_tag*>::value));
  499. // this takes care of most of the checks needed:
  500. function_requires<ForwardIteratorConcept<regex_token_iterator_type> >();
  501. regex_token_iterator_type ti1(m_in, m_in, e);
  502. ignore_unused_variable_warning(ti1);
  503. regex_token_iterator_type ti2(m_in, m_in, e, 0);
  504. ignore_unused_variable_warning(ti2);
  505. regex_token_iterator_type ti3(m_in, m_in, e, 0, m_mft);
  506. ignore_unused_variable_warning(ti3);
  507. std::vector<int> subs;
  508. regex_token_iterator_type ti4(m_in, m_in, e, subs);
  509. ignore_unused_variable_warning(ti4);
  510. regex_token_iterator_type ti5(m_in, m_in, e, subs, m_mft);
  511. ignore_unused_variable_warning(ti5);
  512. static const int i_array[3] = { 1, 2, 3, };
  513. regex_token_iterator_type ti6(m_in, m_in, e, i_array);
  514. ignore_unused_variable_warning(ti6);
  515. regex_token_iterator_type ti7(m_in, m_in, e, i_array, m_mft);
  516. ignore_unused_variable_warning(ti7);
  517. }
  518. pointer_type m_pointer;
  519. flag_type m_flags;
  520. std::size_t m_size;
  521. input_iterator_type in1, in2;
  522. const sub_match_type m_sub;
  523. const value_type m_char;
  524. match_results_type m_results;
  525. const match_results_type m_cresults;
  526. OutIterator m_out;
  527. BidiIterator m_in;
  528. global_regex_namespace::regex_constants::match_flag_type m_mft;
  529. global_regex_namespace::match_results<
  530. pointer_type,
  531. allocator_architype<global_regex_namespace::sub_match<pointer_type> > >
  532. m_pmatch;
  533. BaseRegexConcept();
  534. BaseRegexConcept(const BaseRegexConcept&);
  535. BaseRegexConcept& operator=(const BaseRegexConcept&);
  536. };
  537. //
  538. // RegexConcept:
  539. // Test every interface in the std:
  540. //
  541. template <class Regex>
  542. struct RegexConcept
  543. {
  544. typedef typename Regex::value_type value_type;
  545. //typedef typename Regex::size_type size_type;
  546. typedef typename Regex::flag_type flag_type;
  547. typedef typename Regex::locale_type locale_type;
  548. // derived test types:
  549. typedef const value_type* pointer_type;
  550. typedef std::basic_string<value_type> string_type;
  551. typedef boost::bidirectional_iterator_archetype<value_type> BidiIterator;
  552. typedef global_regex_namespace::sub_match<BidiIterator> sub_match_type;
  553. typedef global_regex_namespace::match_results<BidiIterator, allocator_architype<sub_match_type> > match_results_type;
  554. typedef output_iterator_archetype<value_type> OutIterator;
  555. void constraints()
  556. {
  557. function_requires<BaseRegexConcept<Regex> >();
  558. // string based construct:
  559. Regex e1(m_string);
  560. ignore_unused_variable_warning(e1);
  561. Regex e2(m_string, m_flags);
  562. ignore_unused_variable_warning(e2);
  563. // assign etc:
  564. Regex e;
  565. e = m_string;
  566. e.assign(m_string);
  567. e.assign(m_string, m_flags);
  568. // sub_match:
  569. string_type s(m_sub);
  570. ignore_unused_variable_warning(s);
  571. s = m_sub.str();
  572. ignore_unused_variable_warning(s);
  573. int i = m_sub.compare(m_string);
  574. ignore_unused_variable_warning(i);
  575. int i2 = m_sub.compare(m_sub);
  576. ignore_unused_variable_warning(i2);
  577. i2 = m_sub.compare(m_pointer);
  578. ignore_unused_variable_warning(i2);
  579. bool b = m_sub == m_sub;
  580. ignore_unused_variable_warning(b);
  581. b = m_sub != m_sub;
  582. ignore_unused_variable_warning(b);
  583. b = m_sub <= m_sub;
  584. ignore_unused_variable_warning(b);
  585. b = m_sub <= m_sub;
  586. ignore_unused_variable_warning(b);
  587. b = m_sub > m_sub;
  588. ignore_unused_variable_warning(b);
  589. b = m_sub >= m_sub;
  590. ignore_unused_variable_warning(b);
  591. b = m_sub == m_pointer;
  592. ignore_unused_variable_warning(b);
  593. b = m_sub != m_pointer;
  594. ignore_unused_variable_warning(b);
  595. b = m_sub <= m_pointer;
  596. ignore_unused_variable_warning(b);
  597. b = m_sub <= m_pointer;
  598. ignore_unused_variable_warning(b);
  599. b = m_sub > m_pointer;
  600. ignore_unused_variable_warning(b);
  601. b = m_sub >= m_pointer;
  602. ignore_unused_variable_warning(b);
  603. b = m_pointer == m_sub;
  604. ignore_unused_variable_warning(b);
  605. b = m_pointer != m_sub;
  606. ignore_unused_variable_warning(b);
  607. b = m_pointer <= m_sub;
  608. ignore_unused_variable_warning(b);
  609. b = m_pointer <= m_sub;
  610. ignore_unused_variable_warning(b);
  611. b = m_pointer > m_sub;
  612. ignore_unused_variable_warning(b);
  613. b = m_pointer >= m_sub;
  614. ignore_unused_variable_warning(b);
  615. b = m_sub == m_char;
  616. ignore_unused_variable_warning(b);
  617. b = m_sub != m_char;
  618. ignore_unused_variable_warning(b);
  619. b = m_sub <= m_char;
  620. ignore_unused_variable_warning(b);
  621. b = m_sub <= m_char;
  622. ignore_unused_variable_warning(b);
  623. b = m_sub > m_char;
  624. ignore_unused_variable_warning(b);
  625. b = m_sub >= m_char;
  626. ignore_unused_variable_warning(b);
  627. b = m_char == m_sub;
  628. ignore_unused_variable_warning(b);
  629. b = m_char != m_sub;
  630. ignore_unused_variable_warning(b);
  631. b = m_char <= m_sub;
  632. ignore_unused_variable_warning(b);
  633. b = m_char <= m_sub;
  634. ignore_unused_variable_warning(b);
  635. b = m_char > m_sub;
  636. ignore_unused_variable_warning(b);
  637. b = m_char >= m_sub;
  638. ignore_unused_variable_warning(b);
  639. b = m_sub == m_string;
  640. ignore_unused_variable_warning(b);
  641. b = m_sub != m_string;
  642. ignore_unused_variable_warning(b);
  643. b = m_sub <= m_string;
  644. ignore_unused_variable_warning(b);
  645. b = m_sub <= m_string;
  646. ignore_unused_variable_warning(b);
  647. b = m_sub > m_string;
  648. ignore_unused_variable_warning(b);
  649. b = m_sub >= m_string;
  650. ignore_unused_variable_warning(b);
  651. b = m_string == m_sub;
  652. ignore_unused_variable_warning(b);
  653. b = m_string != m_sub;
  654. ignore_unused_variable_warning(b);
  655. b = m_string <= m_sub;
  656. ignore_unused_variable_warning(b);
  657. b = m_string <= m_sub;
  658. ignore_unused_variable_warning(b);
  659. b = m_string > m_sub;
  660. ignore_unused_variable_warning(b);
  661. b = m_string >= m_sub;
  662. ignore_unused_variable_warning(b);
  663. // match results:
  664. m_string = m_results.str();
  665. ignore_unused_variable_warning(m_string);
  666. m_string = m_results.str(0);
  667. ignore_unused_variable_warning(m_string);
  668. m_out = m_cresults.format(m_out, m_string);
  669. m_out = m_cresults.format(m_out, m_string, m_mft);
  670. m_string = m_cresults.format(m_string);
  671. ignore_unused_variable_warning(m_string);
  672. m_string = m_cresults.format(m_string, m_mft);
  673. ignore_unused_variable_warning(m_string);
  674. // regex_match:
  675. b = global_regex_namespace::regex_match(m_string, m_smatch, e);
  676. ignore_unused_variable_warning(b);
  677. b = global_regex_namespace::regex_match(m_string, m_smatch, e, m_mft);
  678. ignore_unused_variable_warning(b);
  679. b = global_regex_namespace::regex_match(m_string, e);
  680. ignore_unused_variable_warning(b);
  681. b = global_regex_namespace::regex_match(m_string, e, m_mft);
  682. ignore_unused_variable_warning(b);
  683. // regex_search:
  684. b = global_regex_namespace::regex_search(m_string, m_smatch, e);
  685. ignore_unused_variable_warning(b);
  686. b = global_regex_namespace::regex_search(m_string, m_smatch, e, m_mft);
  687. ignore_unused_variable_warning(b);
  688. b = global_regex_namespace::regex_search(m_string, e);
  689. ignore_unused_variable_warning(b);
  690. b = global_regex_namespace::regex_search(m_string, e, m_mft);
  691. ignore_unused_variable_warning(b);
  692. // regex_replace:
  693. m_out = global_regex_namespace::regex_replace(m_out, m_in, m_in, e, m_string, m_mft);
  694. m_out = global_regex_namespace::regex_replace(m_out, m_in, m_in, e, m_string);
  695. m_string = global_regex_namespace::regex_replace(m_string, e, m_string, m_mft);
  696. ignore_unused_variable_warning(m_string);
  697. m_string = global_regex_namespace::regex_replace(m_string, e, m_string);
  698. ignore_unused_variable_warning(m_string);
  699. }
  700. flag_type m_flags;
  701. string_type m_string;
  702. const sub_match_type m_sub;
  703. match_results_type m_results;
  704. pointer_type m_pointer;
  705. value_type m_char;
  706. const match_results_type m_cresults;
  707. OutIterator m_out;
  708. BidiIterator m_in;
  709. global_regex_namespace::regex_constants::match_flag_type m_mft;
  710. global_regex_namespace::match_results<typename string_type::const_iterator, allocator_architype<global_regex_namespace::sub_match<typename string_type::const_iterator> > > m_smatch;
  711. RegexConcept();
  712. RegexConcept(const RegexConcept&);
  713. RegexConcept& operator=(const RegexConcept&);
  714. };
  715. #ifndef BOOST_REGEX_TEST_STD
  716. template <class M>
  717. struct functor1
  718. {
  719. typedef typename M::char_type char_type;
  720. const char_type* operator()(const M&)const
  721. {
  722. static const char_type c = static_cast<char_type>(0);
  723. return &c;
  724. }
  725. };
  726. template <class M>
  727. struct functor1b
  728. {
  729. typedef typename M::char_type char_type;
  730. std::vector<char_type> operator()(const M&)const
  731. {
  732. static const std::vector<char_type> c;
  733. return c;
  734. }
  735. };
  736. template <class M>
  737. struct functor2
  738. {
  739. template <class O>
  740. O operator()(const M& /*m*/, O i)const
  741. {
  742. return i;
  743. }
  744. };
  745. template <class M>
  746. struct functor3
  747. {
  748. template <class O>
  749. O operator()(const M& /*m*/, O i, regex_constants::match_flag_type)const
  750. {
  751. return i;
  752. }
  753. };
  754. //
  755. // BoostRegexConcept:
  756. // Test every interface in the Boost implementation:
  757. //
  758. template <class Regex>
  759. struct BoostRegexConcept
  760. {
  761. typedef typename Regex::value_type value_type;
  762. typedef typename Regex::size_type size_type;
  763. typedef typename Regex::flag_type flag_type;
  764. typedef typename Regex::locale_type locale_type;
  765. // derived test types:
  766. typedef const value_type* pointer_type;
  767. typedef std::basic_string<value_type> string_type;
  768. typedef typename Regex::const_iterator const_iterator;
  769. typedef bidirectional_iterator_archetype<value_type> BidiIterator;
  770. typedef output_iterator_archetype<value_type> OutputIterator;
  771. typedef global_regex_namespace::sub_match<BidiIterator> sub_match_type;
  772. typedef global_regex_namespace::match_results<BidiIterator, allocator_architype<sub_match_type> > match_results_type;
  773. typedef global_regex_namespace::match_results<BidiIterator> match_results_default_type;
  774. void constraints()
  775. {
  776. global_regex_namespace::regex_constants::match_flag_type mopts
  777. = global_regex_namespace::regex_constants::match_default
  778. | global_regex_namespace::regex_constants::match_not_bol
  779. | global_regex_namespace::regex_constants::match_not_eol
  780. | global_regex_namespace::regex_constants::match_not_bow
  781. | global_regex_namespace::regex_constants::match_not_eow
  782. | global_regex_namespace::regex_constants::match_any
  783. | global_regex_namespace::regex_constants::match_not_null
  784. | global_regex_namespace::regex_constants::match_continuous
  785. | global_regex_namespace::regex_constants::match_partial
  786. | global_regex_namespace::regex_constants::match_prev_avail
  787. | global_regex_namespace::regex_constants::format_default
  788. | global_regex_namespace::regex_constants::format_sed
  789. | global_regex_namespace::regex_constants::format_perl
  790. | global_regex_namespace::regex_constants::format_no_copy
  791. | global_regex_namespace::regex_constants::format_first_only;
  792. (void)mopts;
  793. function_requires<RegexConcept<Regex> >();
  794. const global_regex_namespace::regex_error except(global_regex_namespace::regex_constants::error_collate);
  795. std::ptrdiff_t pt = except.position();
  796. ignore_unused_variable_warning(pt);
  797. const Regex ce, ce2;
  798. #ifndef BOOST_NO_STD_LOCALE
  799. m_stream << ce;
  800. #endif
  801. unsigned i = ce.error_code();
  802. ignore_unused_variable_warning(i);
  803. pointer_type p = ce.expression();
  804. ignore_unused_variable_warning(p);
  805. int i2 = ce.compare(ce2);
  806. ignore_unused_variable_warning(i2);
  807. bool b = ce == ce2;
  808. ignore_unused_variable_warning(b);
  809. b = ce.empty();
  810. ignore_unused_variable_warning(b);
  811. b = ce != ce2;
  812. ignore_unused_variable_warning(b);
  813. b = ce < ce2;
  814. ignore_unused_variable_warning(b);
  815. b = ce > ce2;
  816. ignore_unused_variable_warning(b);
  817. b = ce <= ce2;
  818. ignore_unused_variable_warning(b);
  819. b = ce >= ce2;
  820. ignore_unused_variable_warning(b);
  821. i = ce.status();
  822. ignore_unused_variable_warning(i);
  823. size_type s = ce.max_size();
  824. ignore_unused_variable_warning(s);
  825. s = ce.size();
  826. ignore_unused_variable_warning(s);
  827. const_iterator pi = ce.begin();
  828. ignore_unused_variable_warning(pi);
  829. pi = ce.end();
  830. ignore_unused_variable_warning(pi);
  831. string_type s2 = ce.str();
  832. ignore_unused_variable_warning(s2);
  833. m_string = m_sub + m_sub;
  834. ignore_unused_variable_warning(m_string);
  835. m_string = m_sub + m_pointer;
  836. ignore_unused_variable_warning(m_string);
  837. m_string = m_pointer + m_sub;
  838. ignore_unused_variable_warning(m_string);
  839. m_string = m_sub + m_string;
  840. ignore_unused_variable_warning(m_string);
  841. m_string = m_string + m_sub;
  842. ignore_unused_variable_warning(m_string);
  843. m_string = m_sub + m_char;
  844. ignore_unused_variable_warning(m_string);
  845. m_string = m_char + m_sub;
  846. ignore_unused_variable_warning(m_string);
  847. // Named sub-expressions:
  848. m_sub = m_cresults[&m_char];
  849. ignore_unused_variable_warning(m_sub);
  850. m_sub = m_cresults[m_string];
  851. ignore_unused_variable_warning(m_sub);
  852. m_sub = m_cresults[""];
  853. ignore_unused_variable_warning(m_sub);
  854. m_sub = m_cresults[std::string("")];
  855. ignore_unused_variable_warning(m_sub);
  856. m_string = m_cresults.str(&m_char);
  857. ignore_unused_variable_warning(m_string);
  858. m_string = m_cresults.str(m_string);
  859. ignore_unused_variable_warning(m_string);
  860. m_string = m_cresults.str("");
  861. ignore_unused_variable_warning(m_string);
  862. m_string = m_cresults.str(std::string(""));
  863. ignore_unused_variable_warning(m_string);
  864. typename match_results_type::difference_type diff;
  865. diff = m_cresults.length(&m_char);
  866. ignore_unused_variable_warning(diff);
  867. diff = m_cresults.length(m_string);
  868. ignore_unused_variable_warning(diff);
  869. diff = m_cresults.length("");
  870. ignore_unused_variable_warning(diff);
  871. diff = m_cresults.length(std::string(""));
  872. ignore_unused_variable_warning(diff);
  873. diff = m_cresults.position(&m_char);
  874. ignore_unused_variable_warning(diff);
  875. diff = m_cresults.position(m_string);
  876. ignore_unused_variable_warning(diff);
  877. diff = m_cresults.position("");
  878. ignore_unused_variable_warning(diff);
  879. diff = m_cresults.position(std::string(""));
  880. ignore_unused_variable_warning(diff);
  881. #ifndef BOOST_NO_STD_LOCALE
  882. m_stream << m_sub;
  883. m_stream << m_cresults;
  884. #endif
  885. //
  886. // Extended formatting with a functor:
  887. //
  888. regex_constants::match_flag_type f = regex_constants::match_default;
  889. OutputIterator out = static_object<OutputIterator>::get();
  890. functor3<match_results_default_type> func3;
  891. functor2<match_results_default_type> func2;
  892. functor1<match_results_default_type> func1;
  893. functor3<match_results_type> func3b;
  894. functor2<match_results_type> func2b;
  895. functor1<match_results_type> func1b;
  896. out = regex_format(out, m_cresults, func3b, f);
  897. out = regex_format(out, m_cresults, func3b);
  898. out = regex_format(out, m_cresults, func2b, f);
  899. out = regex_format(out, m_cresults, func2b);
  900. out = regex_format(out, m_cresults, func1b, f);
  901. out = regex_format(out, m_cresults, func1b);
  902. out = regex_format(out, m_cresults, boost::ref(func3b), f);
  903. out = regex_format(out, m_cresults, boost::ref(func3b));
  904. out = regex_format(out, m_cresults, boost::ref(func2b), f);
  905. out = regex_format(out, m_cresults, boost::ref(func2b));
  906. out = regex_format(out, m_cresults, boost::ref(func1b), f);
  907. out = regex_format(out, m_cresults, boost::ref(func1b));
  908. out = regex_format(out, m_cresults, boost::cref(func3b), f);
  909. out = regex_format(out, m_cresults, boost::cref(func3b));
  910. out = regex_format(out, m_cresults, boost::cref(func2b), f);
  911. out = regex_format(out, m_cresults, boost::cref(func2b));
  912. out = regex_format(out, m_cresults, boost::cref(func1b), f);
  913. out = regex_format(out, m_cresults, boost::cref(func1b));
  914. m_string += regex_format(m_cresults, func3b, f);
  915. m_string += regex_format(m_cresults, func3b);
  916. m_string += regex_format(m_cresults, func2b, f);
  917. m_string += regex_format(m_cresults, func2b);
  918. m_string += regex_format(m_cresults, func1b, f);
  919. m_string += regex_format(m_cresults, func1b);
  920. m_string += regex_format(m_cresults, boost::ref(func3b), f);
  921. m_string += regex_format(m_cresults, boost::ref(func3b));
  922. m_string += regex_format(m_cresults, boost::ref(func2b), f);
  923. m_string += regex_format(m_cresults, boost::ref(func2b));
  924. m_string += regex_format(m_cresults, boost::ref(func1b), f);
  925. m_string += regex_format(m_cresults, boost::ref(func1b));
  926. m_string += regex_format(m_cresults, boost::cref(func3b), f);
  927. m_string += regex_format(m_cresults, boost::cref(func3b));
  928. m_string += regex_format(m_cresults, boost::cref(func2b), f);
  929. m_string += regex_format(m_cresults, boost::cref(func2b));
  930. m_string += regex_format(m_cresults, boost::cref(func1b), f);
  931. m_string += regex_format(m_cresults, boost::cref(func1b));
  932. out = m_cresults.format(out, func3b, f);
  933. out = m_cresults.format(out, func3b);
  934. out = m_cresults.format(out, func2b, f);
  935. out = m_cresults.format(out, func2b);
  936. out = m_cresults.format(out, func1b, f);
  937. out = m_cresults.format(out, func1b);
  938. out = m_cresults.format(out, boost::ref(func3b), f);
  939. out = m_cresults.format(out, boost::ref(func3b));
  940. out = m_cresults.format(out, boost::ref(func2b), f);
  941. out = m_cresults.format(out, boost::ref(func2b));
  942. out = m_cresults.format(out, boost::ref(func1b), f);
  943. out = m_cresults.format(out, boost::ref(func1b));
  944. out = m_cresults.format(out, boost::cref(func3b), f);
  945. out = m_cresults.format(out, boost::cref(func3b));
  946. out = m_cresults.format(out, boost::cref(func2b), f);
  947. out = m_cresults.format(out, boost::cref(func2b));
  948. out = m_cresults.format(out, boost::cref(func1b), f);
  949. out = m_cresults.format(out, boost::cref(func1b));
  950. m_string += m_cresults.format(func3b, f);
  951. m_string += m_cresults.format(func3b);
  952. m_string += m_cresults.format(func2b, f);
  953. m_string += m_cresults.format(func2b);
  954. m_string += m_cresults.format(func1b, f);
  955. m_string += m_cresults.format(func1b);
  956. m_string += m_cresults.format(boost::ref(func3b), f);
  957. m_string += m_cresults.format(boost::ref(func3b));
  958. m_string += m_cresults.format(boost::ref(func2b), f);
  959. m_string += m_cresults.format(boost::ref(func2b));
  960. m_string += m_cresults.format(boost::ref(func1b), f);
  961. m_string += m_cresults.format(boost::ref(func1b));
  962. m_string += m_cresults.format(boost::cref(func3b), f);
  963. m_string += m_cresults.format(boost::cref(func3b));
  964. m_string += m_cresults.format(boost::cref(func2b), f);
  965. m_string += m_cresults.format(boost::cref(func2b));
  966. m_string += m_cresults.format(boost::cref(func1b), f);
  967. m_string += m_cresults.format(boost::cref(func1b));
  968. out = regex_replace(out, m_in, m_in, ce, func3, f);
  969. out = regex_replace(out, m_in, m_in, ce, func3);
  970. out = regex_replace(out, m_in, m_in, ce, func2, f);
  971. out = regex_replace(out, m_in, m_in, ce, func2);
  972. out = regex_replace(out, m_in, m_in, ce, func1, f);
  973. out = regex_replace(out, m_in, m_in, ce, func1);
  974. out = regex_replace(out, m_in, m_in, ce, boost::ref(func3), f);
  975. out = regex_replace(out, m_in, m_in, ce, boost::ref(func3));
  976. out = regex_replace(out, m_in, m_in, ce, boost::ref(func2), f);
  977. out = regex_replace(out, m_in, m_in, ce, boost::ref(func2));
  978. out = regex_replace(out, m_in, m_in, ce, boost::ref(func1), f);
  979. out = regex_replace(out, m_in, m_in, ce, boost::ref(func1));
  980. out = regex_replace(out, m_in, m_in, ce, boost::cref(func3), f);
  981. out = regex_replace(out, m_in, m_in, ce, boost::cref(func3));
  982. out = regex_replace(out, m_in, m_in, ce, boost::cref(func2), f);
  983. out = regex_replace(out, m_in, m_in, ce, boost::cref(func2));
  984. out = regex_replace(out, m_in, m_in, ce, boost::cref(func1), f);
  985. out = regex_replace(out, m_in, m_in, ce, boost::cref(func1));
  986. functor3<match_results<typename string_type::const_iterator> > func3s;
  987. functor2<match_results<typename string_type::const_iterator> > func2s;
  988. functor1<match_results<typename string_type::const_iterator> > func1s;
  989. m_string += regex_replace(m_string, ce, func3s, f);
  990. m_string += regex_replace(m_string, ce, func3s);
  991. m_string += regex_replace(m_string, ce, func2s, f);
  992. m_string += regex_replace(m_string, ce, func2s);
  993. m_string += regex_replace(m_string, ce, func1s, f);
  994. m_string += regex_replace(m_string, ce, func1s);
  995. m_string += regex_replace(m_string, ce, boost::ref(func3s), f);
  996. m_string += regex_replace(m_string, ce, boost::ref(func3s));
  997. m_string += regex_replace(m_string, ce, boost::ref(func2s), f);
  998. m_string += regex_replace(m_string, ce, boost::ref(func2s));
  999. m_string += regex_replace(m_string, ce, boost::ref(func1s), f);
  1000. m_string += regex_replace(m_string, ce, boost::ref(func1s));
  1001. m_string += regex_replace(m_string, ce, boost::cref(func3s), f);
  1002. m_string += regex_replace(m_string, ce, boost::cref(func3s));
  1003. m_string += regex_replace(m_string, ce, boost::cref(func2s), f);
  1004. m_string += regex_replace(m_string, ce, boost::cref(func2s));
  1005. m_string += regex_replace(m_string, ce, boost::cref(func1s), f);
  1006. m_string += regex_replace(m_string, ce, boost::cref(func1s));
  1007. }
  1008. std::basic_ostream<value_type> m_stream;
  1009. sub_match_type m_sub;
  1010. pointer_type m_pointer;
  1011. string_type m_string;
  1012. const value_type m_char;
  1013. match_results_type m_results;
  1014. const match_results_type m_cresults;
  1015. BidiIterator m_in;
  1016. BoostRegexConcept();
  1017. BoostRegexConcept(const BoostRegexConcept&);
  1018. BoostRegexConcept& operator=(const BoostRegexConcept&);
  1019. };
  1020. #endif // BOOST_REGEX_TEST_STD
  1021. }
  1022. #endif