basic_regex.hpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. /*
  2. *
  3. * Copyright (c) 1998-2004 John Maddock
  4. * Copyright 2011 Garmin Ltd. or its subsidiaries
  5. *
  6. * Distributed under the Boost Software License, Version 1.0.
  7. * (See accompanying file LICENSE_1_0.txt or copy at
  8. * http://www.boost.org/LICENSE_1_0.txt)
  9. *
  10. */
  11. /*
  12. * LOCATION: see http://www.boost.org/ for most recent version.
  13. * FILE basic_regex.cpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Declares template class basic_regex.
  16. */
  17. #ifndef BOOST_REGEX_V4_BASIC_REGEX_HPP
  18. #define BOOST_REGEX_V4_BASIC_REGEX_HPP
  19. #include <boost/type_traits/is_same.hpp>
  20. #include <boost/functional/hash.hpp>
  21. #ifdef BOOST_MSVC
  22. #pragma warning(push)
  23. #pragma warning(disable: 4103)
  24. #endif
  25. #ifdef BOOST_HAS_ABI_HEADERS
  26. # include BOOST_ABI_PREFIX
  27. #endif
  28. #ifdef BOOST_MSVC
  29. #pragma warning(pop)
  30. #endif
  31. namespace boost{
  32. #ifdef BOOST_MSVC
  33. #pragma warning(push)
  34. #pragma warning(disable : 4251 4231 4800)
  35. #if BOOST_MSVC < 1600
  36. #pragma warning(disable : 4660)
  37. #endif
  38. #endif
  39. namespace BOOST_REGEX_DETAIL_NS{
  40. //
  41. // forward declaration, we will need this one later:
  42. //
  43. template <class charT, class traits>
  44. class basic_regex_parser;
  45. template <class I>
  46. void bubble_down_one(I first, I last)
  47. {
  48. if(first != last)
  49. {
  50. I next = last - 1;
  51. while((next != first) && (*next < *(next-1)))
  52. {
  53. (next-1)->swap(*next);
  54. --next;
  55. }
  56. }
  57. }
  58. template <class Iterator>
  59. inline int hash_value_from_capture_name(Iterator i, Iterator j)
  60. {
  61. std::size_t r = boost::hash_range(i, j);
  62. r %= ((std::numeric_limits<int>::max)() - 10001);
  63. r += 10000;
  64. return static_cast<int>(r);
  65. }
  66. class named_subexpressions
  67. {
  68. public:
  69. struct name
  70. {
  71. template <class charT>
  72. name(const charT* i, const charT* j, int idx)
  73. : index(idx)
  74. {
  75. hash = hash_value_from_capture_name(i, j);
  76. }
  77. name(int h, int idx)
  78. : index(idx), hash(h)
  79. {
  80. }
  81. int index;
  82. int hash;
  83. bool operator < (const name& other)const
  84. {
  85. return hash < other.hash;
  86. }
  87. bool operator == (const name& other)const
  88. {
  89. return hash == other.hash;
  90. }
  91. void swap(name& other)
  92. {
  93. std::swap(index, other.index);
  94. std::swap(hash, other.hash);
  95. }
  96. };
  97. typedef std::vector<name>::const_iterator const_iterator;
  98. typedef std::pair<const_iterator, const_iterator> range_type;
  99. named_subexpressions(){}
  100. template <class charT>
  101. void set_name(const charT* i, const charT* j, int index)
  102. {
  103. m_sub_names.push_back(name(i, j, index));
  104. bubble_down_one(m_sub_names.begin(), m_sub_names.end());
  105. }
  106. template <class charT>
  107. int get_id(const charT* i, const charT* j)const
  108. {
  109. name t(i, j, 0);
  110. typename std::vector<name>::const_iterator pos = std::lower_bound(m_sub_names.begin(), m_sub_names.end(), t);
  111. if((pos != m_sub_names.end()) && (*pos == t))
  112. {
  113. return pos->index;
  114. }
  115. return -1;
  116. }
  117. template <class charT>
  118. range_type equal_range(const charT* i, const charT* j)const
  119. {
  120. name t(i, j, 0);
  121. return std::equal_range(m_sub_names.begin(), m_sub_names.end(), t);
  122. }
  123. int get_id(int h)const
  124. {
  125. name t(h, 0);
  126. std::vector<name>::const_iterator pos = std::lower_bound(m_sub_names.begin(), m_sub_names.end(), t);
  127. if((pos != m_sub_names.end()) && (*pos == t))
  128. {
  129. return pos->index;
  130. }
  131. return -1;
  132. }
  133. range_type equal_range(int h)const
  134. {
  135. name t(h, 0);
  136. return std::equal_range(m_sub_names.begin(), m_sub_names.end(), t);
  137. }
  138. private:
  139. std::vector<name> m_sub_names;
  140. };
  141. //
  142. // class regex_data:
  143. // represents the data we wish to expose to the matching algorithms.
  144. //
  145. template <class charT, class traits>
  146. struct regex_data : public named_subexpressions
  147. {
  148. typedef regex_constants::syntax_option_type flag_type;
  149. typedef std::size_t size_type;
  150. regex_data(const ::boost::shared_ptr<
  151. ::boost::regex_traits_wrapper<traits> >& t)
  152. : m_ptraits(t), m_expression(0), m_expression_len(0), m_disable_match_any(false) {}
  153. regex_data()
  154. : m_ptraits(new ::boost::regex_traits_wrapper<traits>()), m_expression(0), m_expression_len(0), m_disable_match_any(false) {}
  155. ::boost::shared_ptr<
  156. ::boost::regex_traits_wrapper<traits>
  157. > m_ptraits; // traits class instance
  158. flag_type m_flags; // flags with which we were compiled
  159. int m_status; // error code (0 implies OK).
  160. const charT* m_expression; // the original expression
  161. std::ptrdiff_t m_expression_len; // the length of the original expression
  162. size_type m_mark_count; // the number of marked sub-expressions
  163. BOOST_REGEX_DETAIL_NS::re_syntax_base* m_first_state; // the first state of the machine
  164. unsigned m_restart_type; // search optimisation type
  165. unsigned char m_startmap[1 << CHAR_BIT]; // which characters can start a match
  166. unsigned int m_can_be_null; // whether we can match a null string
  167. BOOST_REGEX_DETAIL_NS::raw_storage m_data; // the buffer in which our states are constructed
  168. typename traits::char_class_type m_word_mask; // mask used to determine if a character is a word character
  169. std::vector<
  170. std::pair<
  171. std::size_t, std::size_t> > m_subs; // Position of sub-expressions within the *string*.
  172. bool m_has_recursions; // whether we have recursive expressions;
  173. bool m_disable_match_any; // when set we need to disable the match_any flag as it causes different/buggy behaviour.
  174. };
  175. //
  176. // class basic_regex_implementation
  177. // pimpl implementation class for basic_regex.
  178. //
  179. template <class charT, class traits>
  180. class basic_regex_implementation
  181. : public regex_data<charT, traits>
  182. {
  183. public:
  184. typedef regex_constants::syntax_option_type flag_type;
  185. typedef std::ptrdiff_t difference_type;
  186. typedef std::size_t size_type;
  187. typedef typename traits::locale_type locale_type;
  188. typedef const charT* const_iterator;
  189. basic_regex_implementation(){}
  190. basic_regex_implementation(const ::boost::shared_ptr<
  191. ::boost::regex_traits_wrapper<traits> >& t)
  192. : regex_data<charT, traits>(t) {}
  193. void assign(const charT* arg_first,
  194. const charT* arg_last,
  195. flag_type f)
  196. {
  197. regex_data<charT, traits>* pdat = this;
  198. basic_regex_parser<charT, traits> parser(pdat);
  199. parser.parse(arg_first, arg_last, f);
  200. }
  201. locale_type BOOST_REGEX_CALL imbue(locale_type l)
  202. {
  203. return this->m_ptraits->imbue(l);
  204. }
  205. locale_type BOOST_REGEX_CALL getloc()const
  206. {
  207. return this->m_ptraits->getloc();
  208. }
  209. std::basic_string<charT> BOOST_REGEX_CALL str()const
  210. {
  211. std::basic_string<charT> result;
  212. if(this->m_status == 0)
  213. result = std::basic_string<charT>(this->m_expression, this->m_expression_len);
  214. return result;
  215. }
  216. const_iterator BOOST_REGEX_CALL expression()const
  217. {
  218. return this->m_expression;
  219. }
  220. std::pair<const_iterator, const_iterator> BOOST_REGEX_CALL subexpression(std::size_t n)const
  221. {
  222. const std::pair<std::size_t, std::size_t>& pi = this->m_subs.at(n);
  223. std::pair<const_iterator, const_iterator> p(expression() + pi.first, expression() + pi.second);
  224. return p;
  225. }
  226. //
  227. // begin, end:
  228. const_iterator BOOST_REGEX_CALL begin()const
  229. {
  230. return (this->m_status ? 0 : this->m_expression);
  231. }
  232. const_iterator BOOST_REGEX_CALL end()const
  233. {
  234. return (this->m_status ? 0 : this->m_expression + this->m_expression_len);
  235. }
  236. flag_type BOOST_REGEX_CALL flags()const
  237. {
  238. return this->m_flags;
  239. }
  240. size_type BOOST_REGEX_CALL size()const
  241. {
  242. return this->m_expression_len;
  243. }
  244. int BOOST_REGEX_CALL status()const
  245. {
  246. return this->m_status;
  247. }
  248. size_type BOOST_REGEX_CALL mark_count()const
  249. {
  250. return this->m_mark_count - 1;
  251. }
  252. const BOOST_REGEX_DETAIL_NS::re_syntax_base* get_first_state()const
  253. {
  254. return this->m_first_state;
  255. }
  256. unsigned get_restart_type()const
  257. {
  258. return this->m_restart_type;
  259. }
  260. const unsigned char* get_map()const
  261. {
  262. return this->m_startmap;
  263. }
  264. const ::boost::regex_traits_wrapper<traits>& get_traits()const
  265. {
  266. return *(this->m_ptraits);
  267. }
  268. bool can_be_null()const
  269. {
  270. return this->m_can_be_null;
  271. }
  272. const regex_data<charT, traits>& get_data()const
  273. {
  274. basic_regex_implementation<charT, traits> const* p = this;
  275. return *static_cast<const regex_data<charT, traits>*>(p);
  276. }
  277. };
  278. } // namespace BOOST_REGEX_DETAIL_NS
  279. //
  280. // class basic_regex:
  281. // represents the compiled
  282. // regular expression:
  283. //
  284. #ifdef BOOST_REGEX_NO_FWD
  285. template <class charT, class traits = regex_traits<charT> >
  286. #else
  287. template <class charT, class traits >
  288. #endif
  289. class basic_regex : public regbase
  290. {
  291. public:
  292. // typedefs:
  293. typedef std::size_t traits_size_type;
  294. typedef typename traits::string_type traits_string_type;
  295. typedef charT char_type;
  296. typedef traits traits_type;
  297. typedef charT value_type;
  298. typedef charT& reference;
  299. typedef const charT& const_reference;
  300. typedef const charT* const_iterator;
  301. typedef const_iterator iterator;
  302. typedef std::ptrdiff_t difference_type;
  303. typedef std::size_t size_type;
  304. typedef regex_constants::syntax_option_type flag_type;
  305. // locale_type
  306. // placeholder for actual locale type used by the
  307. // traits class to localise *this.
  308. typedef typename traits::locale_type locale_type;
  309. public:
  310. explicit basic_regex(){}
  311. explicit basic_regex(const charT* p, flag_type f = regex_constants::normal)
  312. {
  313. assign(p, f);
  314. }
  315. basic_regex(const charT* p1, const charT* p2, flag_type f = regex_constants::normal)
  316. {
  317. assign(p1, p2, f);
  318. }
  319. basic_regex(const charT* p, size_type len, flag_type f)
  320. {
  321. assign(p, len, f);
  322. }
  323. basic_regex(const basic_regex& that)
  324. : m_pimpl(that.m_pimpl) {}
  325. ~basic_regex(){}
  326. basic_regex& BOOST_REGEX_CALL operator=(const basic_regex& that)
  327. {
  328. return assign(that);
  329. }
  330. basic_regex& BOOST_REGEX_CALL operator=(const charT* ptr)
  331. {
  332. return assign(ptr);
  333. }
  334. //
  335. // assign:
  336. basic_regex& assign(const basic_regex& that)
  337. {
  338. m_pimpl = that.m_pimpl;
  339. return *this;
  340. }
  341. basic_regex& assign(const charT* p, flag_type f = regex_constants::normal)
  342. {
  343. return assign(p, p + traits::length(p), f);
  344. }
  345. basic_regex& assign(const charT* p, size_type len, flag_type f)
  346. {
  347. return assign(p, p + len, f);
  348. }
  349. private:
  350. basic_regex& do_assign(const charT* p1,
  351. const charT* p2,
  352. flag_type f);
  353. public:
  354. basic_regex& assign(const charT* p1,
  355. const charT* p2,
  356. flag_type f = regex_constants::normal)
  357. {
  358. return do_assign(p1, p2, f);
  359. }
  360. #if !defined(BOOST_NO_MEMBER_TEMPLATES)
  361. template <class ST, class SA>
  362. unsigned int BOOST_REGEX_CALL set_expression(const std::basic_string<charT, ST, SA>& p, flag_type f = regex_constants::normal)
  363. {
  364. return set_expression(p.data(), p.data() + p.size(), f);
  365. }
  366. template <class ST, class SA>
  367. explicit basic_regex(const std::basic_string<charT, ST, SA>& p, flag_type f = regex_constants::normal)
  368. {
  369. assign(p, f);
  370. }
  371. template <class InputIterator>
  372. basic_regex(InputIterator arg_first, InputIterator arg_last, flag_type f = regex_constants::normal)
  373. {
  374. typedef typename traits::string_type seq_type;
  375. seq_type a(arg_first, arg_last);
  376. if(a.size())
  377. assign(static_cast<const charT*>(&*a.begin()), static_cast<const charT*>(&*a.begin() + a.size()), f);
  378. else
  379. assign(static_cast<const charT*>(0), static_cast<const charT*>(0), f);
  380. }
  381. template <class ST, class SA>
  382. basic_regex& BOOST_REGEX_CALL operator=(const std::basic_string<charT, ST, SA>& p)
  383. {
  384. return assign(p.data(), p.data() + p.size(), regex_constants::normal);
  385. }
  386. template <class string_traits, class A>
  387. basic_regex& BOOST_REGEX_CALL assign(
  388. const std::basic_string<charT, string_traits, A>& s,
  389. flag_type f = regex_constants::normal)
  390. {
  391. return assign(s.data(), s.data() + s.size(), f);
  392. }
  393. template <class InputIterator>
  394. basic_regex& BOOST_REGEX_CALL assign(InputIterator arg_first,
  395. InputIterator arg_last,
  396. flag_type f = regex_constants::normal)
  397. {
  398. typedef typename traits::string_type seq_type;
  399. seq_type a(arg_first, arg_last);
  400. if(a.size())
  401. {
  402. const charT* p1 = &*a.begin();
  403. const charT* p2 = &*a.begin() + a.size();
  404. return assign(p1, p2, f);
  405. }
  406. return assign(static_cast<const charT*>(0), static_cast<const charT*>(0), f);
  407. }
  408. #else
  409. unsigned int BOOST_REGEX_CALL set_expression(const std::basic_string<charT>& p, flag_type f = regex_constants::normal)
  410. {
  411. return set_expression(p.data(), p.data() + p.size(), f);
  412. }
  413. basic_regex(const std::basic_string<charT>& p, flag_type f = regex_constants::normal)
  414. {
  415. assign(p, f);
  416. }
  417. basic_regex& BOOST_REGEX_CALL operator=(const std::basic_string<charT>& p)
  418. {
  419. return assign(p.data(), p.data() + p.size(), regex_constants::normal);
  420. }
  421. basic_regex& BOOST_REGEX_CALL assign(
  422. const std::basic_string<charT>& s,
  423. flag_type f = regex_constants::normal)
  424. {
  425. return assign(s.data(), s.data() + s.size(), f);
  426. }
  427. #endif
  428. //
  429. // locale:
  430. locale_type BOOST_REGEX_CALL imbue(locale_type l);
  431. locale_type BOOST_REGEX_CALL getloc()const
  432. {
  433. return m_pimpl.get() ? m_pimpl->getloc() : locale_type();
  434. }
  435. //
  436. // getflags:
  437. // retained for backwards compatibility only, "flags"
  438. // is now the preferred name:
  439. flag_type BOOST_REGEX_CALL getflags()const
  440. {
  441. return flags();
  442. }
  443. flag_type BOOST_REGEX_CALL flags()const
  444. {
  445. return m_pimpl.get() ? m_pimpl->flags() : 0;
  446. }
  447. //
  448. // str:
  449. std::basic_string<charT> BOOST_REGEX_CALL str()const
  450. {
  451. return m_pimpl.get() ? m_pimpl->str() : std::basic_string<charT>();
  452. }
  453. //
  454. // begin, end, subexpression:
  455. std::pair<const_iterator, const_iterator> BOOST_REGEX_CALL subexpression(std::size_t n)const
  456. {
  457. if(!m_pimpl.get())
  458. boost::throw_exception(std::logic_error("Can't access subexpressions in an invalid regex."));
  459. return m_pimpl->subexpression(n);
  460. }
  461. const_iterator BOOST_REGEX_CALL begin()const
  462. {
  463. return (m_pimpl.get() ? m_pimpl->begin() : 0);
  464. }
  465. const_iterator BOOST_REGEX_CALL end()const
  466. {
  467. return (m_pimpl.get() ? m_pimpl->end() : 0);
  468. }
  469. //
  470. // swap:
  471. void BOOST_REGEX_CALL swap(basic_regex& that)throw()
  472. {
  473. m_pimpl.swap(that.m_pimpl);
  474. }
  475. //
  476. // size:
  477. size_type BOOST_REGEX_CALL size()const
  478. {
  479. return (m_pimpl.get() ? m_pimpl->size() : 0);
  480. }
  481. //
  482. // max_size:
  483. size_type BOOST_REGEX_CALL max_size()const
  484. {
  485. return UINT_MAX;
  486. }
  487. //
  488. // empty:
  489. bool BOOST_REGEX_CALL empty()const
  490. {
  491. return (m_pimpl.get() ? 0 != m_pimpl->status() : true);
  492. }
  493. size_type BOOST_REGEX_CALL mark_count()const
  494. {
  495. return (m_pimpl.get() ? m_pimpl->mark_count() : 0);
  496. }
  497. int status()const
  498. {
  499. return (m_pimpl.get() ? m_pimpl->status() : regex_constants::error_empty);
  500. }
  501. int BOOST_REGEX_CALL compare(const basic_regex& that) const
  502. {
  503. if(m_pimpl.get() == that.m_pimpl.get())
  504. return 0;
  505. if(!m_pimpl.get())
  506. return -1;
  507. if(!that.m_pimpl.get())
  508. return 1;
  509. if(status() != that.status())
  510. return status() - that.status();
  511. if(flags() != that.flags())
  512. return flags() - that.flags();
  513. return str().compare(that.str());
  514. }
  515. bool BOOST_REGEX_CALL operator==(const basic_regex& e)const
  516. {
  517. return compare(e) == 0;
  518. }
  519. bool BOOST_REGEX_CALL operator != (const basic_regex& e)const
  520. {
  521. return compare(e) != 0;
  522. }
  523. bool BOOST_REGEX_CALL operator<(const basic_regex& e)const
  524. {
  525. return compare(e) < 0;
  526. }
  527. bool BOOST_REGEX_CALL operator>(const basic_regex& e)const
  528. {
  529. return compare(e) > 0;
  530. }
  531. bool BOOST_REGEX_CALL operator<=(const basic_regex& e)const
  532. {
  533. return compare(e) <= 0;
  534. }
  535. bool BOOST_REGEX_CALL operator>=(const basic_regex& e)const
  536. {
  537. return compare(e) >= 0;
  538. }
  539. //
  540. // The following are deprecated as public interfaces
  541. // but are available for compatibility with earlier versions.
  542. const charT* BOOST_REGEX_CALL expression()const
  543. {
  544. return (m_pimpl.get() && !m_pimpl->status() ? m_pimpl->expression() : 0);
  545. }
  546. unsigned int BOOST_REGEX_CALL set_expression(const charT* p1, const charT* p2, flag_type f = regex_constants::normal)
  547. {
  548. assign(p1, p2, f | regex_constants::no_except);
  549. return status();
  550. }
  551. unsigned int BOOST_REGEX_CALL set_expression(const charT* p, flag_type f = regex_constants::normal)
  552. {
  553. assign(p, f | regex_constants::no_except);
  554. return status();
  555. }
  556. unsigned int BOOST_REGEX_CALL error_code()const
  557. {
  558. return status();
  559. }
  560. //
  561. // private access methods:
  562. //
  563. const BOOST_REGEX_DETAIL_NS::re_syntax_base* get_first_state()const
  564. {
  565. BOOST_ASSERT(0 != m_pimpl.get());
  566. return m_pimpl->get_first_state();
  567. }
  568. unsigned get_restart_type()const
  569. {
  570. BOOST_ASSERT(0 != m_pimpl.get());
  571. return m_pimpl->get_restart_type();
  572. }
  573. const unsigned char* get_map()const
  574. {
  575. BOOST_ASSERT(0 != m_pimpl.get());
  576. return m_pimpl->get_map();
  577. }
  578. const ::boost::regex_traits_wrapper<traits>& get_traits()const
  579. {
  580. BOOST_ASSERT(0 != m_pimpl.get());
  581. return m_pimpl->get_traits();
  582. }
  583. bool can_be_null()const
  584. {
  585. BOOST_ASSERT(0 != m_pimpl.get());
  586. return m_pimpl->can_be_null();
  587. }
  588. const BOOST_REGEX_DETAIL_NS::regex_data<charT, traits>& get_data()const
  589. {
  590. BOOST_ASSERT(0 != m_pimpl.get());
  591. return m_pimpl->get_data();
  592. }
  593. boost::shared_ptr<BOOST_REGEX_DETAIL_NS::named_subexpressions > get_named_subs()const
  594. {
  595. return m_pimpl;
  596. }
  597. private:
  598. shared_ptr<BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits> > m_pimpl;
  599. };
  600. //
  601. // out of line members;
  602. // these are the only members that mutate the basic_regex object,
  603. // and are designed to provide the strong exception guarentee
  604. // (in the event of a throw, the state of the object remains unchanged).
  605. //
  606. template <class charT, class traits>
  607. basic_regex<charT, traits>& basic_regex<charT, traits>::do_assign(const charT* p1,
  608. const charT* p2,
  609. flag_type f)
  610. {
  611. shared_ptr<BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits> > temp;
  612. if(!m_pimpl.get())
  613. {
  614. temp = shared_ptr<BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits> >(new BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits>());
  615. }
  616. else
  617. {
  618. temp = shared_ptr<BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits> >(new BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits>(m_pimpl->m_ptraits));
  619. }
  620. temp->assign(p1, p2, f);
  621. temp.swap(m_pimpl);
  622. return *this;
  623. }
  624. template <class charT, class traits>
  625. typename basic_regex<charT, traits>::locale_type BOOST_REGEX_CALL basic_regex<charT, traits>::imbue(locale_type l)
  626. {
  627. shared_ptr<BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits> > temp(new BOOST_REGEX_DETAIL_NS::basic_regex_implementation<charT, traits>());
  628. locale_type result = temp->imbue(l);
  629. temp.swap(m_pimpl);
  630. return result;
  631. }
  632. //
  633. // non-members:
  634. //
  635. template <class charT, class traits>
  636. void swap(basic_regex<charT, traits>& e1, basic_regex<charT, traits>& e2)
  637. {
  638. e1.swap(e2);
  639. }
  640. #ifndef BOOST_NO_STD_LOCALE
  641. template <class charT, class traits, class traits2>
  642. std::basic_ostream<charT, traits>&
  643. operator << (std::basic_ostream<charT, traits>& os,
  644. const basic_regex<charT, traits2>& e)
  645. {
  646. return (os << e.str());
  647. }
  648. #else
  649. template <class traits>
  650. std::ostream& operator << (std::ostream& os, const basic_regex<char, traits>& e)
  651. {
  652. return (os << e.str());
  653. }
  654. #endif
  655. //
  656. // class reg_expression:
  657. // this is provided for backwards compatibility only,
  658. // it is deprecated, no not use!
  659. //
  660. #ifdef BOOST_REGEX_NO_FWD
  661. template <class charT, class traits = regex_traits<charT> >
  662. #else
  663. template <class charT, class traits >
  664. #endif
  665. class reg_expression : public basic_regex<charT, traits>
  666. {
  667. public:
  668. typedef typename basic_regex<charT, traits>::flag_type flag_type;
  669. typedef typename basic_regex<charT, traits>::size_type size_type;
  670. explicit reg_expression(){}
  671. explicit reg_expression(const charT* p, flag_type f = regex_constants::normal)
  672. : basic_regex<charT, traits>(p, f){}
  673. reg_expression(const charT* p1, const charT* p2, flag_type f = regex_constants::normal)
  674. : basic_regex<charT, traits>(p1, p2, f){}
  675. reg_expression(const charT* p, size_type len, flag_type f)
  676. : basic_regex<charT, traits>(p, len, f){}
  677. reg_expression(const reg_expression& that)
  678. : basic_regex<charT, traits>(that) {}
  679. ~reg_expression(){}
  680. reg_expression& BOOST_REGEX_CALL operator=(const reg_expression& that)
  681. {
  682. return this->assign(that);
  683. }
  684. #if !defined(BOOST_NO_MEMBER_TEMPLATES)
  685. template <class ST, class SA>
  686. explicit reg_expression(const std::basic_string<charT, ST, SA>& p, flag_type f = regex_constants::normal)
  687. : basic_regex<charT, traits>(p, f)
  688. {
  689. }
  690. template <class InputIterator>
  691. reg_expression(InputIterator arg_first, InputIterator arg_last, flag_type f = regex_constants::normal)
  692. : basic_regex<charT, traits>(arg_first, arg_last, f)
  693. {
  694. }
  695. template <class ST, class SA>
  696. reg_expression& BOOST_REGEX_CALL operator=(const std::basic_string<charT, ST, SA>& p)
  697. {
  698. this->assign(p);
  699. return *this;
  700. }
  701. #else
  702. explicit reg_expression(const std::basic_string<charT>& p, flag_type f = regex_constants::normal)
  703. : basic_regex<charT, traits>(p, f)
  704. {
  705. }
  706. reg_expression& BOOST_REGEX_CALL operator=(const std::basic_string<charT>& p)
  707. {
  708. this->assign(p);
  709. return *this;
  710. }
  711. #endif
  712. };
  713. #ifdef BOOST_MSVC
  714. #pragma warning (pop)
  715. #endif
  716. } // namespace boost
  717. #ifdef BOOST_MSVC
  718. #pragma warning(push)
  719. #pragma warning(disable: 4103)
  720. #endif
  721. #ifdef BOOST_HAS_ABI_HEADERS
  722. # include BOOST_ABI_SUFFIX
  723. #endif
  724. #ifdef BOOST_MSVC
  725. #pragma warning(pop)
  726. #endif
  727. #endif