icu.hpp 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  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 icu.hpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Unicode regular expressions on top of the ICU Library.
  16. */
  17. #ifndef BOOST_REGEX_ICU_HPP
  18. #define BOOST_REGEX_ICU_HPP
  19. #include <unicode/utypes.h>
  20. #include <unicode/uchar.h>
  21. #include <unicode/coll.h>
  22. #include <boost/regex.hpp>
  23. #include <boost/regex/pending/unicode_iterator.hpp>
  24. #include <boost/mpl/int_fwd.hpp>
  25. #include <bitset>
  26. #ifdef BOOST_MSVC
  27. #pragma warning (push)
  28. #pragma warning (disable: 4251)
  29. #endif
  30. namespace boost{
  31. namespace BOOST_REGEX_DETAIL_NS{
  32. //
  33. // Implementation details:
  34. //
  35. class BOOST_REGEX_DECL icu_regex_traits_implementation
  36. {
  37. typedef UChar32 char_type;
  38. typedef std::size_t size_type;
  39. typedef std::vector<char_type> string_type;
  40. typedef U_NAMESPACE_QUALIFIER Locale locale_type;
  41. typedef boost::uint_least32_t char_class_type;
  42. public:
  43. icu_regex_traits_implementation(const U_NAMESPACE_QUALIFIER Locale& l)
  44. : m_locale(l)
  45. {
  46. UErrorCode success = U_ZERO_ERROR;
  47. m_collator.reset(U_NAMESPACE_QUALIFIER Collator::createInstance(l, success));
  48. if(U_SUCCESS(success) == 0)
  49. init_error();
  50. m_collator->setStrength(U_NAMESPACE_QUALIFIER Collator::IDENTICAL);
  51. success = U_ZERO_ERROR;
  52. m_primary_collator.reset(U_NAMESPACE_QUALIFIER Collator::createInstance(l, success));
  53. if(U_SUCCESS(success) == 0)
  54. init_error();
  55. m_primary_collator->setStrength(U_NAMESPACE_QUALIFIER Collator::PRIMARY);
  56. }
  57. U_NAMESPACE_QUALIFIER Locale getloc()const
  58. {
  59. return m_locale;
  60. }
  61. string_type do_transform(const char_type* p1, const char_type* p2, const U_NAMESPACE_QUALIFIER Collator* pcoll) const;
  62. string_type transform(const char_type* p1, const char_type* p2) const
  63. {
  64. return do_transform(p1, p2, m_collator.get());
  65. }
  66. string_type transform_primary(const char_type* p1, const char_type* p2) const
  67. {
  68. return do_transform(p1, p2, m_primary_collator.get());
  69. }
  70. private:
  71. void init_error()
  72. {
  73. std::runtime_error e("Could not initialize ICU resources");
  74. boost::throw_exception(e);
  75. }
  76. U_NAMESPACE_QUALIFIER Locale m_locale; // The ICU locale that we're using
  77. boost::scoped_ptr< U_NAMESPACE_QUALIFIER Collator> m_collator; // The full collation object
  78. boost::scoped_ptr< U_NAMESPACE_QUALIFIER Collator> m_primary_collator; // The primary collation object
  79. };
  80. inline boost::shared_ptr<icu_regex_traits_implementation> get_icu_regex_traits_implementation(const U_NAMESPACE_QUALIFIER Locale& loc)
  81. {
  82. return boost::shared_ptr<icu_regex_traits_implementation>(new icu_regex_traits_implementation(loc));
  83. }
  84. }
  85. class BOOST_REGEX_DECL icu_regex_traits
  86. {
  87. public:
  88. typedef UChar32 char_type;
  89. typedef std::size_t size_type;
  90. typedef std::vector<char_type> string_type;
  91. typedef U_NAMESPACE_QUALIFIER Locale locale_type;
  92. #ifdef BOOST_NO_INT64_T
  93. typedef std::bitset<64> char_class_type;
  94. #else
  95. typedef boost::uint64_t char_class_type;
  96. #endif
  97. struct boost_extensions_tag{};
  98. icu_regex_traits()
  99. : m_pimpl(BOOST_REGEX_DETAIL_NS::get_icu_regex_traits_implementation(U_NAMESPACE_QUALIFIER Locale()))
  100. {
  101. }
  102. static size_type length(const char_type* p);
  103. ::boost::regex_constants::syntax_type syntax_type(char_type c)const
  104. {
  105. return ((c < 0x7f) && (c > 0)) ? BOOST_REGEX_DETAIL_NS::get_default_syntax_type(static_cast<char>(c)) : regex_constants::syntax_char;
  106. }
  107. ::boost::regex_constants::escape_syntax_type escape_syntax_type(char_type c) const
  108. {
  109. return ((c < 0x7f) && (c > 0)) ? BOOST_REGEX_DETAIL_NS::get_default_escape_syntax_type(static_cast<char>(c)) : regex_constants::syntax_char;
  110. }
  111. char_type translate(char_type c) const
  112. {
  113. return c;
  114. }
  115. char_type translate_nocase(char_type c) const
  116. {
  117. return ::u_tolower(c);
  118. }
  119. char_type translate(char_type c, bool icase) const
  120. {
  121. return icase ? translate_nocase(c) : translate(c);
  122. }
  123. char_type tolower(char_type c) const
  124. {
  125. return ::u_tolower(c);
  126. }
  127. char_type toupper(char_type c) const
  128. {
  129. return ::u_toupper(c);
  130. }
  131. string_type transform(const char_type* p1, const char_type* p2) const
  132. {
  133. return m_pimpl->transform(p1, p2);
  134. }
  135. string_type transform_primary(const char_type* p1, const char_type* p2) const
  136. {
  137. return m_pimpl->transform_primary(p1, p2);
  138. }
  139. char_class_type lookup_classname(const char_type* p1, const char_type* p2) const;
  140. string_type lookup_collatename(const char_type* p1, const char_type* p2) const;
  141. bool isctype(char_type c, char_class_type f) const;
  142. int toi(const char_type*& p1, const char_type* p2, int radix)const
  143. {
  144. return BOOST_REGEX_DETAIL_NS::global_toi(p1, p2, radix, *this);
  145. }
  146. int value(char_type c, int radix)const
  147. {
  148. return u_digit(c, static_cast< ::int8_t>(radix));
  149. }
  150. locale_type imbue(locale_type l)
  151. {
  152. locale_type result(m_pimpl->getloc());
  153. m_pimpl = BOOST_REGEX_DETAIL_NS::get_icu_regex_traits_implementation(l);
  154. return result;
  155. }
  156. locale_type getloc()const
  157. {
  158. return locale_type();
  159. }
  160. std::string error_string(::boost::regex_constants::error_type n) const
  161. {
  162. return BOOST_REGEX_DETAIL_NS::get_default_error_string(n);
  163. }
  164. private:
  165. icu_regex_traits(const icu_regex_traits&);
  166. icu_regex_traits& operator=(const icu_regex_traits&);
  167. //
  168. // define the bitmasks offsets we need for additional character properties:
  169. //
  170. enum{
  171. offset_blank = U_CHAR_CATEGORY_COUNT,
  172. offset_space = U_CHAR_CATEGORY_COUNT+1,
  173. offset_xdigit = U_CHAR_CATEGORY_COUNT+2,
  174. offset_underscore = U_CHAR_CATEGORY_COUNT+3,
  175. offset_unicode = U_CHAR_CATEGORY_COUNT+4,
  176. offset_any = U_CHAR_CATEGORY_COUNT+5,
  177. offset_ascii = U_CHAR_CATEGORY_COUNT+6,
  178. offset_horizontal = U_CHAR_CATEGORY_COUNT+7,
  179. offset_vertical = U_CHAR_CATEGORY_COUNT+8
  180. };
  181. //
  182. // and now the masks:
  183. //
  184. static const char_class_type mask_blank;
  185. static const char_class_type mask_space;
  186. static const char_class_type mask_xdigit;
  187. static const char_class_type mask_underscore;
  188. static const char_class_type mask_unicode;
  189. static const char_class_type mask_any;
  190. static const char_class_type mask_ascii;
  191. static const char_class_type mask_horizontal;
  192. static const char_class_type mask_vertical;
  193. static char_class_type lookup_icu_mask(const ::UChar32* p1, const ::UChar32* p2);
  194. boost::shared_ptr< ::boost::BOOST_REGEX_DETAIL_NS::icu_regex_traits_implementation> m_pimpl;
  195. };
  196. } // namespace boost
  197. //
  198. // template instances:
  199. //
  200. #define BOOST_REGEX_CHAR_T UChar32
  201. #undef BOOST_REGEX_TRAITS_T
  202. #define BOOST_REGEX_TRAITS_T , icu_regex_traits
  203. #define BOOST_REGEX_ICU_INSTANCES
  204. #ifdef BOOST_REGEX_ICU_INSTANTIATE
  205. # define BOOST_REGEX_INSTANTIATE
  206. #endif
  207. #include <boost/regex/v4/instances.hpp>
  208. #undef BOOST_REGEX_CHAR_T
  209. #undef BOOST_REGEX_TRAITS_T
  210. #undef BOOST_REGEX_ICU_INSTANCES
  211. #ifdef BOOST_REGEX_INSTANTIATE
  212. # undef BOOST_REGEX_INSTANTIATE
  213. #endif
  214. namespace boost{
  215. // types:
  216. typedef basic_regex< ::UChar32, icu_regex_traits> u32regex;
  217. typedef match_results<const ::UChar32*> u32match;
  218. typedef match_results<const ::UChar*> u16match;
  219. //
  220. // Construction of 32-bit regex types from UTF-8 and UTF-16 primitives:
  221. //
  222. namespace BOOST_REGEX_DETAIL_NS{
  223. #if !defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(__IBMCPP__)
  224. template <class InputIterator>
  225. inline u32regex do_make_u32regex(InputIterator i,
  226. InputIterator j,
  227. boost::regex_constants::syntax_option_type opt,
  228. const boost::mpl::int_<1>*)
  229. {
  230. typedef boost::u8_to_u32_iterator<InputIterator, UChar32> conv_type;
  231. return u32regex(conv_type(i, i, j), conv_type(j, i, j), opt);
  232. }
  233. template <class InputIterator>
  234. inline u32regex do_make_u32regex(InputIterator i,
  235. InputIterator j,
  236. boost::regex_constants::syntax_option_type opt,
  237. const boost::mpl::int_<2>*)
  238. {
  239. typedef boost::u16_to_u32_iterator<InputIterator, UChar32> conv_type;
  240. return u32regex(conv_type(i, i, j), conv_type(j, i, j), opt);
  241. }
  242. template <class InputIterator>
  243. inline u32regex do_make_u32regex(InputIterator i,
  244. InputIterator j,
  245. boost::regex_constants::syntax_option_type opt,
  246. const boost::mpl::int_<4>*)
  247. {
  248. return u32regex(i, j, opt);
  249. }
  250. #else
  251. template <class InputIterator>
  252. inline u32regex do_make_u32regex(InputIterator i,
  253. InputIterator j,
  254. boost::regex_constants::syntax_option_type opt,
  255. const boost::mpl::int_<1>*)
  256. {
  257. typedef boost::u8_to_u32_iterator<InputIterator, UChar32> conv_type;
  258. typedef std::vector<UChar32> vector_type;
  259. vector_type v;
  260. conv_type a(i, i, j), b(j, i, j);
  261. while(a != b)
  262. {
  263. v.push_back(*a);
  264. ++a;
  265. }
  266. if(v.size())
  267. return u32regex(&*v.begin(), v.size(), opt);
  268. return u32regex(static_cast<UChar32 const*>(0), static_cast<u32regex::size_type>(0), opt);
  269. }
  270. template <class InputIterator>
  271. inline u32regex do_make_u32regex(InputIterator i,
  272. InputIterator j,
  273. boost::regex_constants::syntax_option_type opt,
  274. const boost::mpl::int_<2>*)
  275. {
  276. typedef boost::u16_to_u32_iterator<InputIterator, UChar32> conv_type;
  277. typedef std::vector<UChar32> vector_type;
  278. vector_type v;
  279. conv_type a(i, i, j), b(j, i, j);
  280. while(a != b)
  281. {
  282. v.push_back(*a);
  283. ++a;
  284. }
  285. if(v.size())
  286. return u32regex(&*v.begin(), v.size(), opt);
  287. return u32regex(static_cast<UChar32 const*>(0), static_cast<u32regex::size_type>(0), opt);
  288. }
  289. template <class InputIterator>
  290. inline u32regex do_make_u32regex(InputIterator i,
  291. InputIterator j,
  292. boost::regex_constants::syntax_option_type opt,
  293. const boost::mpl::int_<4>*)
  294. {
  295. typedef std::vector<UChar32> vector_type;
  296. vector_type v;
  297. while(i != j)
  298. {
  299. v.push_back((UChar32)(*i));
  300. ++i;
  301. }
  302. if(v.size())
  303. return u32regex(&*v.begin(), v.size(), opt);
  304. return u32regex(static_cast<UChar32 const*>(0), static_cast<u32regex::size_type>(0), opt);
  305. }
  306. #endif
  307. }
  308. //
  309. // Construction from an iterator pair:
  310. //
  311. template <class InputIterator>
  312. inline u32regex make_u32regex(InputIterator i,
  313. InputIterator j,
  314. boost::regex_constants::syntax_option_type opt)
  315. {
  316. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(i, j, opt, static_cast<boost::mpl::int_<sizeof(*i)> const*>(0));
  317. }
  318. //
  319. // construction from UTF-8 nul-terminated strings:
  320. //
  321. inline u32regex make_u32regex(const char* p, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl)
  322. {
  323. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(p, p + std::strlen(p), opt, static_cast<boost::mpl::int_<1> const*>(0));
  324. }
  325. inline u32regex make_u32regex(const unsigned char* p, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl)
  326. {
  327. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(p, p + std::strlen(reinterpret_cast<const char*>(p)), opt, static_cast<boost::mpl::int_<1> const*>(0));
  328. }
  329. //
  330. // construction from UTF-16 nul-terminated strings:
  331. //
  332. #ifndef BOOST_NO_WREGEX
  333. inline u32regex make_u32regex(const wchar_t* p, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl)
  334. {
  335. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(p, p + std::wcslen(p), opt, static_cast<boost::mpl::int_<sizeof(wchar_t)> const*>(0));
  336. }
  337. #endif
  338. #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2)
  339. inline u32regex make_u32regex(const UChar* p, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl)
  340. {
  341. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(p, p + u_strlen(p), opt, static_cast<boost::mpl::int_<2> const*>(0));
  342. }
  343. #endif
  344. //
  345. // construction from basic_string class-template:
  346. //
  347. template<class C, class T, class A>
  348. inline u32regex make_u32regex(const std::basic_string<C, T, A>& s, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl)
  349. {
  350. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(s.begin(), s.end(), opt, static_cast<boost::mpl::int_<sizeof(C)> const*>(0));
  351. }
  352. //
  353. // Construction from ICU string type:
  354. //
  355. inline u32regex make_u32regex(const U_NAMESPACE_QUALIFIER UnicodeString& s, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl)
  356. {
  357. return BOOST_REGEX_DETAIL_NS::do_make_u32regex(s.getBuffer(), s.getBuffer() + s.length(), opt, static_cast<boost::mpl::int_<2> const*>(0));
  358. }
  359. //
  360. // regex_match overloads that widen the character type as appropriate:
  361. //
  362. namespace BOOST_REGEX_DETAIL_NS{
  363. template<class MR1, class MR2>
  364. void copy_results(MR1& out, MR2 const& in)
  365. {
  366. // copy results from an adapted MR2 match_results:
  367. out.set_size(in.size(), in.prefix().first.base(), in.suffix().second.base());
  368. out.set_base(in.base().base());
  369. for(int i = 0; i < (int)in.size(); ++i)
  370. {
  371. if(in[i].matched || !i)
  372. {
  373. out.set_first(in[i].first.base(), i);
  374. out.set_second(in[i].second.base(), i, in[i].matched);
  375. }
  376. }
  377. }
  378. template <class BidiIterator, class Allocator>
  379. inline bool do_regex_match(BidiIterator first, BidiIterator last,
  380. match_results<BidiIterator, Allocator>& m,
  381. const u32regex& e,
  382. match_flag_type flags,
  383. boost::mpl::int_<4> const*)
  384. {
  385. return ::boost::regex_match(first, last, m, e, flags);
  386. }
  387. template <class BidiIterator, class Allocator>
  388. bool do_regex_match(BidiIterator first, BidiIterator last,
  389. match_results<BidiIterator, Allocator>& m,
  390. const u32regex& e,
  391. match_flag_type flags,
  392. boost::mpl::int_<2> const*)
  393. {
  394. typedef u16_to_u32_iterator<BidiIterator, UChar32> conv_type;
  395. typedef match_results<conv_type> match_type;
  396. //typedef typename match_type::allocator_type alloc_type;
  397. match_type what;
  398. bool result = ::boost::regex_match(conv_type(first, first, last), conv_type(last, first, last), what, e, flags);
  399. // copy results across to m:
  400. if(result) copy_results(m, what);
  401. return result;
  402. }
  403. template <class BidiIterator, class Allocator>
  404. bool do_regex_match(BidiIterator first, BidiIterator last,
  405. match_results<BidiIterator, Allocator>& m,
  406. const u32regex& e,
  407. match_flag_type flags,
  408. boost::mpl::int_<1> const*)
  409. {
  410. typedef u8_to_u32_iterator<BidiIterator, UChar32> conv_type;
  411. typedef match_results<conv_type> match_type;
  412. //typedef typename match_type::allocator_type alloc_type;
  413. match_type what;
  414. bool result = ::boost::regex_match(conv_type(first, first, last), conv_type(last, first, last), what, e, flags);
  415. // copy results across to m:
  416. if(result) copy_results(m, what);
  417. return result;
  418. }
  419. } // namespace BOOST_REGEX_DETAIL_NS
  420. template <class BidiIterator, class Allocator>
  421. inline bool u32regex_match(BidiIterator first, BidiIterator last,
  422. match_results<BidiIterator, Allocator>& m,
  423. const u32regex& e,
  424. match_flag_type flags = match_default)
  425. {
  426. return BOOST_REGEX_DETAIL_NS::do_regex_match(first, last, m, e, flags, static_cast<mpl::int_<sizeof(*first)> const*>(0));
  427. }
  428. inline bool u32regex_match(const UChar* p,
  429. match_results<const UChar*>& m,
  430. const u32regex& e,
  431. match_flag_type flags = match_default)
  432. {
  433. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+u_strlen(p), m, e, flags, static_cast<mpl::int_<2> const*>(0));
  434. }
  435. #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX)
  436. inline bool u32regex_match(const wchar_t* p,
  437. match_results<const wchar_t*>& m,
  438. const u32regex& e,
  439. match_flag_type flags = match_default)
  440. {
  441. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+std::wcslen(p), m, e, flags, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  442. }
  443. #endif
  444. inline bool u32regex_match(const char* p,
  445. match_results<const char*>& m,
  446. const u32regex& e,
  447. match_flag_type flags = match_default)
  448. {
  449. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+std::strlen(p), m, e, flags, static_cast<mpl::int_<1> const*>(0));
  450. }
  451. inline bool u32regex_match(const unsigned char* p,
  452. match_results<const unsigned char*>& m,
  453. const u32regex& e,
  454. match_flag_type flags = match_default)
  455. {
  456. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+std::strlen((const char*)p), m, e, flags, static_cast<mpl::int_<1> const*>(0));
  457. }
  458. inline bool u32regex_match(const std::string& s,
  459. match_results<std::string::const_iterator>& m,
  460. const u32regex& e,
  461. match_flag_type flags = match_default)
  462. {
  463. return BOOST_REGEX_DETAIL_NS::do_regex_match(s.begin(), s.end(), m, e, flags, static_cast<mpl::int_<1> const*>(0));
  464. }
  465. #ifndef BOOST_NO_STD_WSTRING
  466. inline bool u32regex_match(const std::wstring& s,
  467. match_results<std::wstring::const_iterator>& m,
  468. const u32regex& e,
  469. match_flag_type flags = match_default)
  470. {
  471. return BOOST_REGEX_DETAIL_NS::do_regex_match(s.begin(), s.end(), m, e, flags, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  472. }
  473. #endif
  474. inline bool u32regex_match(const U_NAMESPACE_QUALIFIER UnicodeString& s,
  475. match_results<const UChar*>& m,
  476. const u32regex& e,
  477. match_flag_type flags = match_default)
  478. {
  479. return BOOST_REGEX_DETAIL_NS::do_regex_match(s.getBuffer(), s.getBuffer() + s.length(), m, e, flags, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  480. }
  481. //
  482. // regex_match overloads that do not return what matched:
  483. //
  484. template <class BidiIterator>
  485. inline bool u32regex_match(BidiIterator first, BidiIterator last,
  486. const u32regex& e,
  487. match_flag_type flags = match_default)
  488. {
  489. match_results<BidiIterator> m;
  490. return BOOST_REGEX_DETAIL_NS::do_regex_match(first, last, m, e, flags, static_cast<mpl::int_<sizeof(*first)> const*>(0));
  491. }
  492. inline bool u32regex_match(const UChar* p,
  493. const u32regex& e,
  494. match_flag_type flags = match_default)
  495. {
  496. match_results<const UChar*> m;
  497. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+u_strlen(p), m, e, flags, static_cast<mpl::int_<2> const*>(0));
  498. }
  499. #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX)
  500. inline bool u32regex_match(const wchar_t* p,
  501. const u32regex& e,
  502. match_flag_type flags = match_default)
  503. {
  504. match_results<const wchar_t*> m;
  505. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+std::wcslen(p), m, e, flags, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  506. }
  507. #endif
  508. inline bool u32regex_match(const char* p,
  509. const u32regex& e,
  510. match_flag_type flags = match_default)
  511. {
  512. match_results<const char*> m;
  513. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+std::strlen(p), m, e, flags, static_cast<mpl::int_<1> const*>(0));
  514. }
  515. inline bool u32regex_match(const unsigned char* p,
  516. const u32regex& e,
  517. match_flag_type flags = match_default)
  518. {
  519. match_results<const unsigned char*> m;
  520. return BOOST_REGEX_DETAIL_NS::do_regex_match(p, p+std::strlen((const char*)p), m, e, flags, static_cast<mpl::int_<1> const*>(0));
  521. }
  522. inline bool u32regex_match(const std::string& s,
  523. const u32regex& e,
  524. match_flag_type flags = match_default)
  525. {
  526. match_results<std::string::const_iterator> m;
  527. return BOOST_REGEX_DETAIL_NS::do_regex_match(s.begin(), s.end(), m, e, flags, static_cast<mpl::int_<1> const*>(0));
  528. }
  529. #ifndef BOOST_NO_STD_WSTRING
  530. inline bool u32regex_match(const std::wstring& s,
  531. const u32regex& e,
  532. match_flag_type flags = match_default)
  533. {
  534. match_results<std::wstring::const_iterator> m;
  535. return BOOST_REGEX_DETAIL_NS::do_regex_match(s.begin(), s.end(), m, e, flags, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  536. }
  537. #endif
  538. inline bool u32regex_match(const U_NAMESPACE_QUALIFIER UnicodeString& s,
  539. const u32regex& e,
  540. match_flag_type flags = match_default)
  541. {
  542. match_results<const UChar*> m;
  543. return BOOST_REGEX_DETAIL_NS::do_regex_match(s.getBuffer(), s.getBuffer() + s.length(), m, e, flags, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  544. }
  545. //
  546. // regex_search overloads that widen the character type as appropriate:
  547. //
  548. namespace BOOST_REGEX_DETAIL_NS{
  549. template <class BidiIterator, class Allocator>
  550. inline bool do_regex_search(BidiIterator first, BidiIterator last,
  551. match_results<BidiIterator, Allocator>& m,
  552. const u32regex& e,
  553. match_flag_type flags,
  554. BidiIterator base,
  555. boost::mpl::int_<4> const*)
  556. {
  557. return ::boost::regex_search(first, last, m, e, flags, base);
  558. }
  559. template <class BidiIterator, class Allocator>
  560. bool do_regex_search(BidiIterator first, BidiIterator last,
  561. match_results<BidiIterator, Allocator>& m,
  562. const u32regex& e,
  563. match_flag_type flags,
  564. BidiIterator base,
  565. boost::mpl::int_<2> const*)
  566. {
  567. typedef u16_to_u32_iterator<BidiIterator, UChar32> conv_type;
  568. typedef match_results<conv_type> match_type;
  569. //typedef typename match_type::allocator_type alloc_type;
  570. match_type what;
  571. bool result = ::boost::regex_search(conv_type(first, first, last), conv_type(last, first, last), what, e, flags, conv_type(base));
  572. // copy results across to m:
  573. if(result) copy_results(m, what);
  574. return result;
  575. }
  576. template <class BidiIterator, class Allocator>
  577. bool do_regex_search(BidiIterator first, BidiIterator last,
  578. match_results<BidiIterator, Allocator>& m,
  579. const u32regex& e,
  580. match_flag_type flags,
  581. BidiIterator base,
  582. boost::mpl::int_<1> const*)
  583. {
  584. typedef u8_to_u32_iterator<BidiIterator, UChar32> conv_type;
  585. typedef match_results<conv_type> match_type;
  586. //typedef typename match_type::allocator_type alloc_type;
  587. match_type what;
  588. bool result = ::boost::regex_search(conv_type(first, first, last), conv_type(last, first, last), what, e, flags, conv_type(base));
  589. // copy results across to m:
  590. if(result) copy_results(m, what);
  591. return result;
  592. }
  593. }
  594. template <class BidiIterator, class Allocator>
  595. inline bool u32regex_search(BidiIterator first, BidiIterator last,
  596. match_results<BidiIterator, Allocator>& m,
  597. const u32regex& e,
  598. match_flag_type flags = match_default)
  599. {
  600. return BOOST_REGEX_DETAIL_NS::do_regex_search(first, last, m, e, flags, first, static_cast<mpl::int_<sizeof(*first)> const*>(0));
  601. }
  602. template <class BidiIterator, class Allocator>
  603. inline bool u32regex_search(BidiIterator first, BidiIterator last,
  604. match_results<BidiIterator, Allocator>& m,
  605. const u32regex& e,
  606. match_flag_type flags,
  607. BidiIterator base)
  608. {
  609. return BOOST_REGEX_DETAIL_NS::do_regex_search(first, last, m, e, flags, base, static_cast<mpl::int_<sizeof(*first)> const*>(0));
  610. }
  611. inline bool u32regex_search(const UChar* p,
  612. match_results<const UChar*>& m,
  613. const u32regex& e,
  614. match_flag_type flags = match_default)
  615. {
  616. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+u_strlen(p), m, e, flags, p, static_cast<mpl::int_<2> const*>(0));
  617. }
  618. #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX)
  619. inline bool u32regex_search(const wchar_t* p,
  620. match_results<const wchar_t*>& m,
  621. const u32regex& e,
  622. match_flag_type flags = match_default)
  623. {
  624. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+std::wcslen(p), m, e, flags, p, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  625. }
  626. #endif
  627. inline bool u32regex_search(const char* p,
  628. match_results<const char*>& m,
  629. const u32regex& e,
  630. match_flag_type flags = match_default)
  631. {
  632. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+std::strlen(p), m, e, flags, p, static_cast<mpl::int_<1> const*>(0));
  633. }
  634. inline bool u32regex_search(const unsigned char* p,
  635. match_results<const unsigned char*>& m,
  636. const u32regex& e,
  637. match_flag_type flags = match_default)
  638. {
  639. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+std::strlen((const char*)p), m, e, flags, p, static_cast<mpl::int_<1> const*>(0));
  640. }
  641. inline bool u32regex_search(const std::string& s,
  642. match_results<std::string::const_iterator>& m,
  643. const u32regex& e,
  644. match_flag_type flags = match_default)
  645. {
  646. return BOOST_REGEX_DETAIL_NS::do_regex_search(s.begin(), s.end(), m, e, flags, s.begin(), static_cast<mpl::int_<1> const*>(0));
  647. }
  648. #ifndef BOOST_NO_STD_WSTRING
  649. inline bool u32regex_search(const std::wstring& s,
  650. match_results<std::wstring::const_iterator>& m,
  651. const u32regex& e,
  652. match_flag_type flags = match_default)
  653. {
  654. return BOOST_REGEX_DETAIL_NS::do_regex_search(s.begin(), s.end(), m, e, flags, s.begin(), static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  655. }
  656. #endif
  657. inline bool u32regex_search(const U_NAMESPACE_QUALIFIER UnicodeString& s,
  658. match_results<const UChar*>& m,
  659. const u32regex& e,
  660. match_flag_type flags = match_default)
  661. {
  662. return BOOST_REGEX_DETAIL_NS::do_regex_search(s.getBuffer(), s.getBuffer() + s.length(), m, e, flags, s.getBuffer(), static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  663. }
  664. template <class BidiIterator>
  665. inline bool u32regex_search(BidiIterator first, BidiIterator last,
  666. const u32regex& e,
  667. match_flag_type flags = match_default)
  668. {
  669. match_results<BidiIterator> m;
  670. return BOOST_REGEX_DETAIL_NS::do_regex_search(first, last, m, e, flags, first, static_cast<mpl::int_<sizeof(*first)> const*>(0));
  671. }
  672. inline bool u32regex_search(const UChar* p,
  673. const u32regex& e,
  674. match_flag_type flags = match_default)
  675. {
  676. match_results<const UChar*> m;
  677. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+u_strlen(p), m, e, flags, p, static_cast<mpl::int_<2> const*>(0));
  678. }
  679. #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX)
  680. inline bool u32regex_search(const wchar_t* p,
  681. const u32regex& e,
  682. match_flag_type flags = match_default)
  683. {
  684. match_results<const wchar_t*> m;
  685. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+std::wcslen(p), m, e, flags, p, static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  686. }
  687. #endif
  688. inline bool u32regex_search(const char* p,
  689. const u32regex& e,
  690. match_flag_type flags = match_default)
  691. {
  692. match_results<const char*> m;
  693. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+std::strlen(p), m, e, flags, p, static_cast<mpl::int_<1> const*>(0));
  694. }
  695. inline bool u32regex_search(const unsigned char* p,
  696. const u32regex& e,
  697. match_flag_type flags = match_default)
  698. {
  699. match_results<const unsigned char*> m;
  700. return BOOST_REGEX_DETAIL_NS::do_regex_search(p, p+std::strlen((const char*)p), m, e, flags, p, static_cast<mpl::int_<1> const*>(0));
  701. }
  702. inline bool u32regex_search(const std::string& s,
  703. const u32regex& e,
  704. match_flag_type flags = match_default)
  705. {
  706. match_results<std::string::const_iterator> m;
  707. return BOOST_REGEX_DETAIL_NS::do_regex_search(s.begin(), s.end(), m, e, flags, s.begin(), static_cast<mpl::int_<1> const*>(0));
  708. }
  709. #ifndef BOOST_NO_STD_WSTRING
  710. inline bool u32regex_search(const std::wstring& s,
  711. const u32regex& e,
  712. match_flag_type flags = match_default)
  713. {
  714. match_results<std::wstring::const_iterator> m;
  715. return BOOST_REGEX_DETAIL_NS::do_regex_search(s.begin(), s.end(), m, e, flags, s.begin(), static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  716. }
  717. #endif
  718. inline bool u32regex_search(const U_NAMESPACE_QUALIFIER UnicodeString& s,
  719. const u32regex& e,
  720. match_flag_type flags = match_default)
  721. {
  722. match_results<const UChar*> m;
  723. return BOOST_REGEX_DETAIL_NS::do_regex_search(s.getBuffer(), s.getBuffer() + s.length(), m, e, flags, s.getBuffer(), static_cast<mpl::int_<sizeof(wchar_t)> const*>(0));
  724. }
  725. //
  726. // overloads for regex_replace with utf-8 and utf-16 data types:
  727. //
  728. namespace BOOST_REGEX_DETAIL_NS{
  729. template <class I>
  730. inline std::pair< boost::u8_to_u32_iterator<I>, boost::u8_to_u32_iterator<I> >
  731. make_utf32_seq(I i, I j, mpl::int_<1> const*)
  732. {
  733. return std::pair< boost::u8_to_u32_iterator<I>, boost::u8_to_u32_iterator<I> >(boost::u8_to_u32_iterator<I>(i, i, j), boost::u8_to_u32_iterator<I>(j, i, j));
  734. }
  735. template <class I>
  736. inline std::pair< boost::u16_to_u32_iterator<I>, boost::u16_to_u32_iterator<I> >
  737. make_utf32_seq(I i, I j, mpl::int_<2> const*)
  738. {
  739. return std::pair< boost::u16_to_u32_iterator<I>, boost::u16_to_u32_iterator<I> >(boost::u16_to_u32_iterator<I>(i, i, j), boost::u16_to_u32_iterator<I>(j, i, j));
  740. }
  741. template <class I>
  742. inline std::pair< I, I >
  743. make_utf32_seq(I i, I j, mpl::int_<4> const*)
  744. {
  745. return std::pair< I, I >(i, j);
  746. }
  747. template <class charT>
  748. inline std::pair< boost::u8_to_u32_iterator<const charT*>, boost::u8_to_u32_iterator<const charT*> >
  749. make_utf32_seq(const charT* p, mpl::int_<1> const*)
  750. {
  751. std::size_t len = std::strlen((const char*)p);
  752. return std::pair< boost::u8_to_u32_iterator<const charT*>, boost::u8_to_u32_iterator<const charT*> >(boost::u8_to_u32_iterator<const charT*>(p, p, p+len), boost::u8_to_u32_iterator<const charT*>(p+len, p, p+len));
  753. }
  754. template <class charT>
  755. inline std::pair< boost::u16_to_u32_iterator<const charT*>, boost::u16_to_u32_iterator<const charT*> >
  756. make_utf32_seq(const charT* p, mpl::int_<2> const*)
  757. {
  758. std::size_t len = u_strlen((const UChar*)p);
  759. return std::pair< boost::u16_to_u32_iterator<const charT*>, boost::u16_to_u32_iterator<const charT*> >(boost::u16_to_u32_iterator<const charT*>(p, p, p + len), boost::u16_to_u32_iterator<const charT*>(p+len, p, p + len));
  760. }
  761. template <class charT>
  762. inline std::pair< const charT*, const charT* >
  763. make_utf32_seq(const charT* p, mpl::int_<4> const*)
  764. {
  765. return std::pair< const charT*, const charT* >(p, p+icu_regex_traits::length((UChar32 const*)p));
  766. }
  767. template <class OutputIterator>
  768. inline OutputIterator make_utf32_out(OutputIterator o, mpl::int_<4> const*)
  769. {
  770. return o;
  771. }
  772. template <class OutputIterator>
  773. inline utf16_output_iterator<OutputIterator> make_utf32_out(OutputIterator o, mpl::int_<2> const*)
  774. {
  775. return o;
  776. }
  777. template <class OutputIterator>
  778. inline utf8_output_iterator<OutputIterator> make_utf32_out(OutputIterator o, mpl::int_<1> const*)
  779. {
  780. return o;
  781. }
  782. template <class OutputIterator, class I1, class I2>
  783. OutputIterator do_regex_replace(OutputIterator out,
  784. std::pair<I1, I1> const& in,
  785. const u32regex& e,
  786. const std::pair<I2, I2>& fmt,
  787. match_flag_type flags
  788. )
  789. {
  790. // unfortunately we have to copy the format string in order to pass in onward:
  791. std::vector<UChar32> f;
  792. #ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
  793. f.assign(fmt.first, fmt.second);
  794. #else
  795. f.clear();
  796. I2 pos = fmt.first;
  797. while(pos != fmt.second)
  798. f.push_back(*pos++);
  799. #endif
  800. regex_iterator<I1, UChar32, icu_regex_traits> i(in.first, in.second, e, flags);
  801. regex_iterator<I1, UChar32, icu_regex_traits> j;
  802. if(i == j)
  803. {
  804. if(!(flags & regex_constants::format_no_copy))
  805. out = BOOST_REGEX_DETAIL_NS::copy(in.first, in.second, out);
  806. }
  807. else
  808. {
  809. I1 last_m = in.first;
  810. while(i != j)
  811. {
  812. if(!(flags & regex_constants::format_no_copy))
  813. out = BOOST_REGEX_DETAIL_NS::copy(i->prefix().first, i->prefix().second, out);
  814. if(f.size())
  815. out = ::boost::BOOST_REGEX_DETAIL_NS::regex_format_imp(out, *i, &*f.begin(), &*f.begin() + f.size(), flags, e.get_traits());
  816. else
  817. out = ::boost::BOOST_REGEX_DETAIL_NS::regex_format_imp(out, *i, static_cast<UChar32 const*>(0), static_cast<UChar32 const*>(0), flags, e.get_traits());
  818. last_m = (*i)[0].second;
  819. if(flags & regex_constants::format_first_only)
  820. break;
  821. ++i;
  822. }
  823. if(!(flags & regex_constants::format_no_copy))
  824. out = BOOST_REGEX_DETAIL_NS::copy(last_m, in.second, out);
  825. }
  826. return out;
  827. }
  828. template <class BaseIterator>
  829. inline const BaseIterator& extract_output_base(const BaseIterator& b)
  830. {
  831. return b;
  832. }
  833. template <class BaseIterator>
  834. inline BaseIterator extract_output_base(const utf8_output_iterator<BaseIterator>& b)
  835. {
  836. return b.base();
  837. }
  838. template <class BaseIterator>
  839. inline BaseIterator extract_output_base(const utf16_output_iterator<BaseIterator>& b)
  840. {
  841. return b.base();
  842. }
  843. } // BOOST_REGEX_DETAIL_NS
  844. template <class OutputIterator, class BidirectionalIterator, class charT>
  845. inline OutputIterator u32regex_replace(OutputIterator out,
  846. BidirectionalIterator first,
  847. BidirectionalIterator last,
  848. const u32regex& e,
  849. const charT* fmt,
  850. match_flag_type flags = match_default)
  851. {
  852. return BOOST_REGEX_DETAIL_NS::extract_output_base
  853. (
  854. BOOST_REGEX_DETAIL_NS::do_regex_replace(
  855. BOOST_REGEX_DETAIL_NS::make_utf32_out(out, static_cast<mpl::int_<sizeof(*first)> const*>(0)),
  856. BOOST_REGEX_DETAIL_NS::make_utf32_seq(first, last, static_cast<mpl::int_<sizeof(*first)> const*>(0)),
  857. e,
  858. BOOST_REGEX_DETAIL_NS::make_utf32_seq(fmt, static_cast<mpl::int_<sizeof(*fmt)> const*>(0)),
  859. flags)
  860. );
  861. }
  862. template <class OutputIterator, class Iterator, class charT>
  863. inline OutputIterator u32regex_replace(OutputIterator out,
  864. Iterator first,
  865. Iterator last,
  866. const u32regex& e,
  867. const std::basic_string<charT>& fmt,
  868. match_flag_type flags = match_default)
  869. {
  870. return BOOST_REGEX_DETAIL_NS::extract_output_base
  871. (
  872. BOOST_REGEX_DETAIL_NS::do_regex_replace(
  873. BOOST_REGEX_DETAIL_NS::make_utf32_out(out, static_cast<mpl::int_<sizeof(*first)> const*>(0)),
  874. BOOST_REGEX_DETAIL_NS::make_utf32_seq(first, last, static_cast<mpl::int_<sizeof(*first)> const*>(0)),
  875. e,
  876. BOOST_REGEX_DETAIL_NS::make_utf32_seq(fmt.begin(), fmt.end(), static_cast<mpl::int_<sizeof(charT)> const*>(0)),
  877. flags)
  878. );
  879. }
  880. template <class OutputIterator, class Iterator>
  881. inline OutputIterator u32regex_replace(OutputIterator out,
  882. Iterator first,
  883. Iterator last,
  884. const u32regex& e,
  885. const U_NAMESPACE_QUALIFIER UnicodeString& fmt,
  886. match_flag_type flags = match_default)
  887. {
  888. return BOOST_REGEX_DETAIL_NS::extract_output_base
  889. (
  890. BOOST_REGEX_DETAIL_NS::do_regex_replace(
  891. BOOST_REGEX_DETAIL_NS::make_utf32_out(out, static_cast<mpl::int_<sizeof(*first)> const*>(0)),
  892. BOOST_REGEX_DETAIL_NS::make_utf32_seq(first, last, static_cast<mpl::int_<sizeof(*first)> const*>(0)),
  893. e,
  894. BOOST_REGEX_DETAIL_NS::make_utf32_seq(fmt.getBuffer(), fmt.getBuffer() + fmt.length(), static_cast<mpl::int_<2> const*>(0)),
  895. flags)
  896. );
  897. }
  898. template <class charT>
  899. std::basic_string<charT> u32regex_replace(const std::basic_string<charT>& s,
  900. const u32regex& e,
  901. const charT* fmt,
  902. match_flag_type flags = match_default)
  903. {
  904. std::basic_string<charT> result;
  905. BOOST_REGEX_DETAIL_NS::string_out_iterator<std::basic_string<charT> > i(result);
  906. u32regex_replace(i, s.begin(), s.end(), e, fmt, flags);
  907. return result;
  908. }
  909. template <class charT>
  910. std::basic_string<charT> u32regex_replace(const std::basic_string<charT>& s,
  911. const u32regex& e,
  912. const std::basic_string<charT>& fmt,
  913. match_flag_type flags = match_default)
  914. {
  915. std::basic_string<charT> result;
  916. BOOST_REGEX_DETAIL_NS::string_out_iterator<std::basic_string<charT> > i(result);
  917. u32regex_replace(i, s.begin(), s.end(), e, fmt.c_str(), flags);
  918. return result;
  919. }
  920. namespace BOOST_REGEX_DETAIL_NS{
  921. class unicode_string_out_iterator
  922. {
  923. U_NAMESPACE_QUALIFIER UnicodeString* out;
  924. public:
  925. unicode_string_out_iterator(U_NAMESPACE_QUALIFIER UnicodeString& s) : out(&s) {}
  926. unicode_string_out_iterator& operator++() { return *this; }
  927. unicode_string_out_iterator& operator++(int) { return *this; }
  928. unicode_string_out_iterator& operator*() { return *this; }
  929. unicode_string_out_iterator& operator=(UChar v)
  930. {
  931. *out += v;
  932. return *this;
  933. }
  934. typedef std::ptrdiff_t difference_type;
  935. typedef UChar value_type;
  936. typedef value_type* pointer;
  937. typedef value_type& reference;
  938. typedef std::output_iterator_tag iterator_category;
  939. };
  940. }
  941. inline U_NAMESPACE_QUALIFIER UnicodeString u32regex_replace(const U_NAMESPACE_QUALIFIER UnicodeString& s,
  942. const u32regex& e,
  943. const UChar* fmt,
  944. match_flag_type flags = match_default)
  945. {
  946. U_NAMESPACE_QUALIFIER UnicodeString result;
  947. BOOST_REGEX_DETAIL_NS::unicode_string_out_iterator i(result);
  948. u32regex_replace(i, s.getBuffer(), s.getBuffer()+s.length(), e, fmt, flags);
  949. return result;
  950. }
  951. inline U_NAMESPACE_QUALIFIER UnicodeString u32regex_replace(const U_NAMESPACE_QUALIFIER UnicodeString& s,
  952. const u32regex& e,
  953. const U_NAMESPACE_QUALIFIER UnicodeString& fmt,
  954. match_flag_type flags = match_default)
  955. {
  956. U_NAMESPACE_QUALIFIER UnicodeString result;
  957. BOOST_REGEX_DETAIL_NS::unicode_string_out_iterator i(result);
  958. BOOST_REGEX_DETAIL_NS::do_regex_replace(
  959. BOOST_REGEX_DETAIL_NS::make_utf32_out(i, static_cast<mpl::int_<2> const*>(0)),
  960. BOOST_REGEX_DETAIL_NS::make_utf32_seq(s.getBuffer(), s.getBuffer()+s.length(), static_cast<mpl::int_<2> const*>(0)),
  961. e,
  962. BOOST_REGEX_DETAIL_NS::make_utf32_seq(fmt.getBuffer(), fmt.getBuffer() + fmt.length(), static_cast<mpl::int_<2> const*>(0)),
  963. flags);
  964. return result;
  965. }
  966. } // namespace boost.
  967. #ifdef BOOST_MSVC
  968. #pragma warning (pop)
  969. #endif
  970. #include <boost/regex/v4/u32regex_iterator.hpp>
  971. #include <boost/regex/v4/u32regex_token_iterator.hpp>
  972. #endif