blob: b1deaeb3df511243eb32f7389f3d6cbed3756a70 [file] [log] [blame]
Howard Hinnant3257c982010-06-17 00:34:59 +00001// -*- C++ -*-
2//===--------------------------- regex ------------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_REGEX
12#define _LIBCPP_REGEX
13
14/*
15 regex synopsis
16
17#include <initializer_list>
18
19namespace std
20{
21
22namespace regex_constants
23{
24
25emum syntax_option_type
26{
27 icase = unspecified,
28 nosubs = unspecified,
29 optimize = unspecified,
30 collate = unspecified,
31 ECMAScript = unspecified,
32 basic = unspecified,
33 extended = unspecified,
34 awk = unspecified,
35 grep = unspecified,
36 egrep = unspecified
37};
38
39constexpr syntax_option_type operator~(syntax_option_type f);
40constexpr syntax_option_type operator&(syntax_option_type lhs, syntax_option_type rhs);
41constexpr syntax_option_type operator|(syntax_option_type lhs, syntax_option_type rhs);
42
43enum match_flag_type
44{
45 match_default = 0,
46 match_not_bol = unspecified,
47 match_not_eol = unspecified,
48 match_not_bow = unspecified,
49 match_not_eow = unspecified,
50 match_any = unspecified,
51 match_not_null = unspecified,
52 match_continuous = unspecified,
53 match_prev_avail = unspecified,
54 format_default = 0,
55 format_sed = unspecified,
56 format_no_copy = unspecified,
57 format_first_only = unspecified
58};
59
60constexpr match_flag_type operator~(match_flag_type f);
61constexpr match_flag_type operator&(match_flag_type lhs, match_flag_type rhs);
62constexpr match_flag_type operator|(match_flag_type lhs, match_flag_type rhs);
63
64enum error_type
65{
66 error_collate = unspecified,
67 error_ctype = unspecified,
68 error_escape = unspecified,
69 error_backref = unspecified,
70 error_brack = unspecified,
71 error_paren = unspecified,
72 error_brace = unspecified,
73 error_badbrace = unspecified,
74 error_range = unspecified,
75 error_space = unspecified,
76 error_badrepeat = unspecified,
77 error_complexity = unspecified,
78 error_stack = unspecified
79};
80
81} // regex_constants
82
83class regex_error
84 : public runtime_error
85{
86public:
87 explicit regex_error(regex_constants::error_type ecode);
88 regex_constants::error_type code() const;
89};
90
91template <class charT>
92struct regex_traits
93{
94public:
95 typedef charT char_type;
96 typedef basic_string<char_type> string_type;
97 typedef locale locale_type;
98 typedef /bitmask_type/ char_class_type;
99
100 regex_traits();
101
102 static size_t length(const char_type* p);
103 charT translate(charT c) const;
104 charT translate_nocase(charT c) const;
105 template <class ForwardIterator>
106 string_type
107 transform(ForwardIterator first, ForwardIterator last) const;
108 template <class ForwardIterator>
109 string_type
110 transform_primary( ForwardIterator first, ForwardIterator last) const;
111 template <class ForwardIterator>
112 string_type
113 lookup_collatename(ForwardIterator first, ForwardIterator last) const;
114 template <class ForwardIterator>
115 char_class_type
116 lookup_classname(ForwardIterator first, ForwardIterator last,
117 bool icase = false) const;
118 bool isctype(charT c, char_class_type f) const;
119 int value(charT ch, int radix) const;
120 locale_type imbue(locale_type l);
121 locale_type getloc()const;
122};
123
124template <class charT, class traits = regex_traits<charT>>
125class basic_regex
126{
127public:
128 // types:
129 typedef charT value_type;
130 typedef regex_constants::syntax_option_type flag_type;
131 typedef typename traits::locale_type locale_type;
132
133 // constants:
134 static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
135 static constexpr regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
136 static constexpr regex_constants::syntax_option_type optimize = regex_constants::optimize;
137 static constexpr regex_constants::syntax_option_type collate = regex_constants::collate;
138 static constexpr regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
139 static constexpr regex_constants::syntax_option_type basic = regex_constants::basic;
140 static constexpr regex_constants::syntax_option_type extended = regex_constants::extended;
141 static constexpr regex_constants::syntax_option_type awk = regex_constants::awk;
142 static constexpr regex_constants::syntax_option_type grep = regex_constants::grep;
143 static constexpr regex_constants::syntax_option_type egrep = regex_constants::egrep;
144
145 // construct/copy/destroy:
146 basic_regex();
147 explicit basic_regex(const charT* p, flag_type f = regex_constants::ECMAScript);
148 basic_regex(const charT* p, size_t len, flag_type f);
149 basic_regex(const basic_regex&);
150 basic_regex(basic_regex&&);
151 template <class ST, class SA>
152 explicit basic_regex(const basic_string<charT, ST, SA>& p,
153 flag_type f = regex_constants::ECMAScript);
154 template <class ForwardIterator>
155 basic_regex(ForwardIterator first, ForwardIterator last,
156 flag_type f = regex_constants::ECMAScript);
157 basic_regex(initializer_list<charT>, flag_type = regex_constants::ECMAScript);
158
159 ~basic_regex();
160
161 basic_regex& operator=(const basic_regex&);
162 basic_regex& operator=(basic_regex&&);
163 basic_regex& operator=(const charT* ptr);
164 basic_regex& operator=(initializer_list<charT> il);
165 template <class ST, class SA>
166 basic_regex& operator=(const basic_string<charT, ST, SA>& p);
167
168 // assign:
169 basic_regex& assign(const basic_regex& that);
170 basic_regex& assign(basic_regex&& that);
171 basic_regex& assign(const charT* ptr, flag_type f = regex_constants::ECMAScript);
172 basic_regex& assign(const charT* p, size_t len, flag_type f);
173 template <class string_traits, class A>
174 basic_regex& assign(const basic_string<charT, string_traits, A>& s,
175 flag_type f = regex_constants::ECMAScript);
176 template <class InputIterator>
177 basic_regex& assign(InputIterator first, InputIterator last,
178 flag_type f = regex_constants::ECMAScript);
179 basic_regex& assign(initializer_list<charT>, flag_type = regex_constants::ECMAScript);
180
181 // const operations:
182 unsigned mark_count() const;
183 flag_type flags() const;
184
185 // locale:
186 locale_type imbue(locale_type loc);
187 locale_type getloc() const;
188
189 // swap:
190 void swap(basic_regex&);
191};
192
193typedef basic_regex<char> regex;
194typedef basic_regex<wchar_t> wregex;
195
196template <class charT, class traits>
197 void swap(basic_regex<charT, traits>& e1, basic_regex<charT, traits>& e2);
198
199template <class BidirectionalIterator>
200class sub_match
201 : public pair<BidirectionalIterator, BidirectionalIterator>
202{
203public:
204 typedef typename iterator_traits<BidirectionalIterator>::value_type value_type;
205 typedef typename iterator_traits<BidirectionalIterator>::difference_type difference_type;
206 typedef BidirectionalIterator iterator;
207 typedef basic_string<value_type> string_type;
208
209 bool matched;
210
211 difference_type length() const;
212 operator string_type() const;
213 string_type str() const;
214
215 int compare(const sub_match& s) const;
216 int compare(const string_type& s) const;
217 int compare(const value_type* s) const;
218};
219
220typedef sub_match<const char*> csub_match;
221typedef sub_match<const wchar_t*> wcsub_match;
222typedef sub_match<string::const_iterator> ssub_match;
223typedef sub_match<wstring::const_iterator> wssub_match;
224
225template <class BiIter>
226 bool
227 operator==(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
228
229template <class BiIter>
230 bool
231 operator!=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
232
233template <class BiIter>
234 bool
235 operator<(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
236
237template <class BiIter>
238 bool
239 operator<=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
240
241template <class BiIter>
242 bool
243 operator>=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
244
245template <class BiIter>
246 bool
247 operator>(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
248
249template <class BiIter, class ST, class SA>
250 bool
251 operator==(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
252 const sub_match<BiIter>& rhs);
253
254template <class BiIter, class ST, class SA>
255 bool
256 operator!=(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
257 const sub_match<BiIter>& rhs);
258
259template <class BiIter, class ST, class SA>
260 bool
261 operator<(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
262 const sub_match<BiIter>& rhs);
263
264template <class BiIter, class ST, class SA>
265 bool
266 operator>(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
267 const sub_match<BiIter>& rhs);
268
269template <class BiIter, class ST, class SA>
270 bool operator>=(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
271 const sub_match<BiIter>& rhs);
272
273template <class BiIter, class ST, class SA>
274 bool
275 operator<=(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
276 const sub_match<BiIter>& rhs);
277
278template <class BiIter, class ST, class SA>
279 bool
280 operator==(const sub_match<BiIter>& lhs,
281 const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& rhs);
282
283template <class BiIter, class ST, class SA>
284 bool
285 operator!=(const sub_match<BiIter>& lhs,
286 const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& rhs);
287
288template <class BiIter, class ST, class SA>
289 bool
290 operator<(const sub_match<BiIter>& lhs,
291 const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& rhs);
292
293template <class BiIter, class ST, class SA>
294 bool operator>(const sub_match<BiIter>& lhs,
295 const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& rhs);
296
297template <class BiIter, class ST, class SA>
298 bool
299 operator>=(const sub_match<BiIter>& lhs,
300 const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& rhs);
301
302template <class BiIter, class ST, class SA>
303 bool
304 operator<=(const sub_match<BiIter>& lhs,
305 const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& rhs);
306
307template <class BiIter>
308 bool
309 operator==(typename iterator_traits<BiIter>::value_type const* lhs,
310 const sub_match<BiIter>& rhs);
311
312template <class BiIter>
313 bool
314 operator!=(typename iterator_traits<BiIter>::value_type const* lhs,
315 const sub_match<BiIter>& rhs);
316
317template <class BiIter>
318 bool
319 operator<(typename iterator_traits<BiIter>::value_type const* lhs,
320 const sub_match<BiIter>& rhs);
321
322template <class BiIter>
323 bool
324 operator>(typename iterator_traits<BiIter>::value_type const* lhs,
325 const sub_match<BiIter>& rhs);
326
327template <class BiIter>
328 bool
329 operator>=(typename iterator_traits<BiIter>::value_type const* lhs,
330 const sub_match<BiIter>& rhs);
331
332template <class BiIter>
333 bool
334 operator<=(typename iterator_traits<BiIter>::value_type const* lhs,
335 const sub_match<BiIter>& rhs);
336
337template <class BiIter>
338 bool
339 operator==(const sub_match<BiIter>& lhs,
340 typename iterator_traits<BiIter>::value_type const* rhs);
341
342template <class BiIter>
343 bool
344 operator!=(const sub_match<BiIter>& lhs,
345 typename iterator_traits<BiIter>::value_type const* rhs);
346
347template <class BiIter>
348 bool
349 operator<(const sub_match<BiIter>& lhs,
350 typename iterator_traits<BiIter>::value_type const* rhs);
351
352template <class BiIter>
353 bool
354 operator>(const sub_match<BiIter>& lhs,
355 typename iterator_traits<BiIter>::value_type const* rhs);
356
357template <class BiIter>
358 bool
359 operator>=(const sub_match<BiIter>& lhs,
360 typename iterator_traits<BiIter>::value_type const* rhs);
361
362template <class BiIter>
363 bool
364 operator<=(const sub_match<BiIter>& lhs,
365 typename iterator_traits<BiIter>::value_type const* rhs);
366
367template <class BiIter>
368 bool
369 operator==(typename iterator_traits<BiIter>::value_type const& lhs,
370 const sub_match<BiIter>& rhs);
371
372template <class BiIter>
373 bool
374 operator!=(typename iterator_traits<BiIter>::value_type const& lhs,
375 const sub_match<BiIter>& rhs);
376
377template <class BiIter>
378 bool
379 operator<(typename iterator_traits<BiIter>::value_type const& lhs,
380 const sub_match<BiIter>& rhs);
381
382template <class BiIter>
383 bool
384 operator>(typename iterator_traits<BiIter>::value_type const& lhs,
385 const sub_match<BiIter>& rhs);
386
387template <class BiIter>
388 bool
389 operator>=(typename iterator_traits<BiIter>::value_type const& lhs,
390 const sub_match<BiIter>& rhs);
391
392template <class BiIter>
393 bool
394 operator<=(typename iterator_traits<BiIter>::value_type const& lhs,
395 const sub_match<BiIter>& rhs);
396
397template <class BiIter>
398 bool
399 operator==(const sub_match<BiIter>& lhs,
400 typename iterator_traits<BiIter>::value_type const& rhs);
401
402template <class BiIter>
403 bool
404 operator!=(const sub_match<BiIter>& lhs,
405 typename iterator_traits<BiIter>::value_type const& rhs);
406
407template <class BiIter>
408 bool
409 operator<(const sub_match<BiIter>& lhs,
410 typename iterator_traits<BiIter>::value_type const& rhs);
411
412template <class BiIter>
413 bool
414 operator>(const sub_match<BiIter>& lhs,
415 typename iterator_traits<BiIter>::value_type const& rhs);
416
417template <class BiIter>
418 bool
419 operator>=(const sub_match<BiIter>& lhs,
420 typename iterator_traits<BiIter>::value_type const& rhs);
421
422template <class BiIter>
423 bool
424 operator<=(const sub_match<BiIter>& lhs,
425 typename iterator_traits<BiIter>::value_type const& rhs);
426
427template <class charT, class ST, class BiIter>
428 basic_ostream<charT, ST>&
429 operator<<(basic_ostream<charT, ST>& os, const sub_match<BiIter>& m);
430
431template <class BidirectionalIterator,
432 class Allocator = allocator<sub_match<BidirectionalIterator>>>
433class match_results
434{
435public:
436 typedef sub_match<BidirectionalIterator> value_type;
437 typedef const value_type& const_reference;
438 typedef const_reference reference;
439 typedef /implementation-defined/ const_iterator;
440 typedef const_iterator iterator;
441 typedef typename iterator_traits<BidirectionalIterator>::difference_type difference_type;
442 typedef typename allocator_traits<Allocator>::size_type size_type;
443 typedef Allocator allocator_type;
444 typedef typename iterator_traits<BidirectionalIterator>::value_type char_type;
445 typedef basic_string<char_type> string_type;
446
447 // construct/copy/destroy:
448 explicit match_results(const Allocator& a = Allocator());
449 match_results(const match_results& m);
450 match_results(match_results&& m);
451 match_results& operator=(const match_results& m);
452 match_results& operator=(match_results&& m);
453 ~match_results();
454
455 // size:
456 size_type size() const;
457 size_type max_size() const;
458 bool empty() const;
459
460 // element access:
461 difference_type length(size_type sub = 0) const;
462 difference_type position(size_type sub = 0) const;
463 string_type str(size_type sub = 0) const;
464 const_reference operator[](size_type n) const;
465
466 const_reference prefix() const;
467 const_reference suffix() const;
468
469 const_iterator begin() const;
470 const_iterator end() const;
471 const_iterator cbegin() const;
472 const_iterator cend() const;
473
474 // format:
475 template <class OutputIter>
476 OutputIter
477 format(OutputIter out, const char_type* fmt_first,
478 const char_type* fmt_last,
479 regex_constants::match_flag_type flags = regex_constants::format_default) const;
480 template <class OutputIter, class ST, class SA>
481 OutputIter
482 format(OutputIter out, const basic_string<char_type, ST, SA>& fmt,
483 regex_constants::match_flag_type flags = regex_constants::format_default) const;
484 template <class ST, class SA>
485 basic_string<char_type, ST, SA>
486 format(const basic_string<char_type, ST, SA>& fmt,
487 regex_constants::match_flag_type flags = regex_constants::format_default) const;
488 string_type
489 format(const char_type* fmt,
490 regex_constants::match_flag_type flags = regex_constants::format_default) const;
491
492 // allocator:
493 allocator_type get_allocator() const;
494
495 // swap:
496 void swap(match_results& that);
497};
498
499typedef match_results<const char*> cmatch;
500typedef match_results<const wchar_t*> wcmatch;
501typedef match_results<string::const_iterator> smatch;
502typedef match_results<wstring::const_iterator> wsmatch;
503
504template <class BidirectionalIterator, class Allocator>
505 bool
506 operator==(const match_results<BidirectionalIterator, Allocator>& m1,
507 const match_results<BidirectionalIterator, Allocator>& m2);
508
509template <class BidirectionalIterator, class Allocator>
510 bool
511 operator!=(const match_results<BidirectionalIterator, Allocator>& m1,
512 const match_results<BidirectionalIterator, Allocator>& m2);
513
514template <class BidirectionalIterator, class Allocator>
515 void
516 swap(match_results<BidirectionalIterator, Allocator>& m1,
517 match_results<BidirectionalIterator, Allocator>& m2);
518
519template <class BidirectionalIterator, class Allocator, class charT, class traits>
520 bool
521 regex_match(BidirectionalIterator first, BidirectionalIterator last,
522 match_results<BidirectionalIterator, Allocator>& m,
523 const basic_regex<charT, traits>& e,
524 regex_constants::match_flag_type flags = regex_constants::match_default);
525
526template <class BidirectionalIterator, class charT, class traits>
527 bool
528 regex_match(BidirectionalIterator first, BidirectionalIterator last,
529 const basic_regex<charT, traits>& e,
530 regex_constants::match_flag_type flags = regex_constants::match_default);
531
532template <class charT, class Allocator, class traits>
533 bool
534 regex_match(const charT* str, match_results<const charT*, Allocator>& m,
535 const basic_regex<charT, traits>& e,
536 regex_constants::match_flag_type flags = regex_constants::match_default);
537
538template <class ST, class SA, class Allocator, class charT, class traits>
539 bool
540 regex_match(const basic_string<charT, ST, SA>& s,
541 match_results<typename basic_string<charT, ST, SA>::const_iterator, Allocator>& m,
542 const basic_regex<charT, traits>& e,
543 regex_constants::match_flag_type flags = regex_constants::match_default);
544
545template <class charT, class traits>
546 bool
547 regex_match(const charT* str, const basic_regex<charT, traits>& e,
548 regex_constants::match_flag_type flags = regex_constants::match_default);
549
550template <class ST, class SA, class charT, class traits>
551 bool
552 regex_match(const basic_string<charT, ST, SA>& s,
553 const basic_regex<charT, traits>& e,
554 regex_constants::match_flag_type flags = regex_constants::match_default);
555
556template <class BidirectionalIterator, class Allocator, class charT, class traits>
557 bool
558 regex_search(BidirectionalIterator first, BidirectionalIterator last,
559 match_results<BidirectionalIterator, Allocator>& m,
560 const basic_regex<charT, traits>& e,
561 regex_constants::match_flag_type flags = regex_constants::match_default);
562
563template <class BidirectionalIterator, class charT, class traits>
564 bool
565 regex_search(BidirectionalIterator first, BidirectionalIterator last,
566 const basic_regex<charT, traits>& e,
567 regex_constants::match_flag_type flags = regex_constants::match_default);
568
569template <class charT, class Allocator, class traits>
570 bool
571 regex_search(const charT* str, match_results<const charT*, Allocator>& m,
572 const basic_regex<charT, traits>& e,
573 regex_constants::match_flag_type flags = regex_constants::match_default);
574
575template <class charT, class traits>
576 bool
577 regex_search(const charT* str, const basic_regex<charT, traits>& e,
578 regex_constants::match_flag_type flags = regex_constants::match_default);
579
580template <class ST, class SA, class charT, class traits>
581 bool
582 regex_search(const basic_string<charT, ST, SA>& s,
583 const basic_regex<charT, traits>& e,
584 regex_constants::match_flag_type flags = regex_constants::match_default);
585
586template <class ST, class SA, class Allocator, class charT, class traits>
587 bool
588 regex_search(const basic_string<charT, ST, SA>& s,
589 match_results<typename basic_string<charT, ST, SA>::const_iterator, Allocator>& m,
590 const basic_regex<charT, traits>& e,
591 regex_constants::match_flag_type flags = regex_constants::match_default);
592
593template <class OutputIterator, class BidirectionalIterator,
594 class traits, class charT, class ST, class SA>
595 OutputIterator
596 regex_replace(OutputIterator out,
597 BidirectionalIterator first, BidirectionalIterator last,
598 const basic_regex<charT, traits>& e,
599 const basic_string<charT, ST, SA>& fmt,
600 regex_constants::match_flag_type flags = regex_constants::match_default);
601
602template <class OutputIterator, class BidirectionalIterator,
603 class traits, class charT>
604 OutputIterator
605 regex_replace(OutputIterator out,
606 BidirectionalIterator first, BidirectionalIterator last,
607 const basic_regex<charT, traits>& e, const charT* fmt,
608 regex_constants::match_flag_type flags = regex_constants::match_default);
609
610template <class traits, class charT, class ST, class SA, class FST, class FSA>>
611 basic_string<charT, ST, SA>
612 regex_replace(const basic_string<charT, ST, SA>& s,
613 const basic_regex<charT, traits>& e,
614 const basic_string<charT, FST, FSA>& fmt,
615 regex_constants::match_flag_type flags = regex_constants::match_default);
616
617template <class traits, class charT, class ST, class SA>
618 basic_string<charT, ST, SA>
619 regex_replace(const basic_string<charT, ST, SA>& s,
620 const basic_regex<charT, traits>& e, const charT* fmt,
621 regex_constants::match_flag_type flags = regex_constants::match_default);
622
623template <class traits, class charT, class ST, class SA>
624 basic_string<charT>
625 regex_replace(const charT* s,
626 const basic_regex<charT, traits>& e,
627 const basic_string<charT, ST, SA>& fmt,
628 regex_constants::match_flag_type flags = regex_constants::match_default);
629
630template <class traits, class charT>
631 basic_string<charT>
632 regex_replace(const charT* s,
633 const basic_regex<charT, traits>& e,
634 const charT* fmt,
635 regex_constants::match_flag_type flags = regex_constants::match_default);
636
637template <class BidirectionalIterator,
638 class charT = typename iterator_traits< BidirectionalIterator>::value_type,
639 class traits = regex_traits<charT>>
640class regex_iterator
641{
642public:
643 typedef basic_regex<charT, traits> regex_type;
644 typedef match_results<BidirectionalIterator> value_type;
645 typedef ptrdiff_t difference_type;
646 typedef const value_type* pointer;
647 typedef const value_type& reference;
648 typedef forward_iterator_tag iterator_category;
649
650 regex_iterator();
651 regex_iterator(BidirectionalIterator a, BidirectionalIterator b,
652 const regex_type& re,
653 regex_constants::match_flag_type m = regex_constants::match_default);
654 regex_iterator(const regex_iterator&);
655 regex_iterator& operator=(const regex_iterator&);
656
657 bool operator==(const regex_iterator&) const;
658 bool operator!=(const regex_iterator&) const;
659
660 const value_type& operator*() const;
661 const value_type* operator->() const;
662
663 regex_iterator& operator++();
664 regex_iterator operator++(int);
665};
666
667typedef regex_iterator<const char*> cregex_iterator;
668typedef regex_iterator<const wchar_t*> wcregex_iterator;
669typedef regex_iterator<string::const_iterator> sregex_iterator;
670typedef regex_iterator<wstring::const_iterator> wsregex_iterator;
671
672template <class BidirectionalIterator,
673 class charT = typename iterator_traits< BidirectionalIterator>::value_type,
674 class traits = regex_traits<charT>>
675class regex_token_iterator
676{
677public:
678 typedef basic_regex<charT, traits> regex_type;
679 typedef sub_match<BidirectionalIterator> value_type;
680 typedef ptrdiff_t difference_type;
681 typedef const value_type* pointer;
682 typedef const value_type& reference;
683 typedef forward_iterator_tag iterator_category;
684
685 regex_token_iterator();
686 regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
687 const regex_type& re, int submatch = 0,
688 regex_constants::match_flag_type m = regex_constants::match_default);
689 regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
690 const regex_type& re, const vector<int>& submatches,
691 regex_constants::match_flag_type m = regex_constants::match_default);
692 regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
693 const regex_type& re, initializer_list<int> submatches,
694 regex_constants::match_flag_type m = regex_constants::match_default);
695 template <size_t N>
696 regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b,
697 const regex_type& re, const int (&submatches)[N],
698 regex_constants::match_flag_type m = regex_constants::match_default);
699 regex_token_iterator(const regex_token_iterator&);
700 regex_token_iterator& operator=(const regex_token_iterator&);
701
702 bool operator==(const regex_token_iterator&) const;
703 bool operator!=(const regex_token_iterator&) const;
704
705 const value_type& operator*() const;
706 const value_type* operator->() const;
707
708 regex_token_iterator& operator++();
709 regex_token_iterator operator++(int);
710};
711
712typedef regex_token_iterator<const char*> cregex_token_iterator;
713typedef regex_token_iterator<const wchar_t*> wcregex_token_iterator;
714typedef regex_token_iterator<string::const_iterator> sregex_token_iterator;
715typedef regex_token_iterator<wstring::const_iterator> wsregex_token_iterator;
716
717} // std
718*/
719
720#include <__config>
721#include <stdexcept>
722#include <__locale>
Howard Hinnant8c2c18d2010-06-24 21:28:00 +0000723#include <initializer_list>
Howard Hinnantcd85b9e2010-06-29 18:37:43 +0000724#include <utility>
725#include <iterator>
726#include <string>
Howard Hinnant7e9d84b2010-06-30 00:21:42 +0000727#include <memory>
728#include <vector>
Howard Hinnant3257c982010-06-17 00:34:59 +0000729
730#pragma GCC system_header
731
732_LIBCPP_BEGIN_NAMESPACE_STD
733
734namespace regex_constants
735{
736
737// syntax_option_type
738
739enum syntax_option_type
740{
741 icase = 1 << 0,
742 nosubs = 1 << 1,
743 optimize = 1 << 2,
744 collate = 1 << 3,
745 ECMAScript = 1 << 4,
746 basic = 1 << 5,
747 extended = 1 << 6,
748 awk = 1 << 7,
749 grep = 1 << 8,
750 egrep = 1 << 9
751};
752
753inline
754/*constexpr*/
755syntax_option_type
756operator~(syntax_option_type __x)
757{
758 return syntax_option_type(~int(__x));
759}
760
761inline
762/*constexpr*/
763syntax_option_type
764operator&(syntax_option_type __x, syntax_option_type __y)
765{
766 return syntax_option_type(int(__x) & int(__y));
767}
768
769inline
770/*constexpr*/
771syntax_option_type
772operator|(syntax_option_type __x, syntax_option_type __y)
773{
774 return syntax_option_type(int(__x) | int(__y));
775}
776
777inline
778/*constexpr*/
779syntax_option_type
780operator^(syntax_option_type __x, syntax_option_type __y)
781{
782 return syntax_option_type(int(__x) ^ int(__y));
783}
784
785inline
786/*constexpr*/
787syntax_option_type&
788operator&=(syntax_option_type& __x, syntax_option_type __y)
789{
790 __x = __x & __y;
791 return __x;
792}
793
794inline
795/*constexpr*/
796syntax_option_type&
797operator|=(syntax_option_type& __x, syntax_option_type __y)
798{
799 __x = __x | __y;
800 return __x;
801}
802
803inline
804/*constexpr*/
805syntax_option_type&
806operator^=(syntax_option_type& __x, syntax_option_type __y)
807{
808 __x = __x ^ __y;
809 return __x;
810}
811
812// match_flag_type
813
814enum match_flag_type
815{
816 match_default = 0,
817 match_not_bol = 1 << 0,
818 match_not_eol = 1 << 1,
819 match_not_bow = 1 << 2,
820 match_not_eow = 1 << 3,
821 match_any = 1 << 4,
822 match_not_null = 1 << 5,
823 match_continuous = 1 << 6,
824 match_prev_avail = 1 << 7,
825 format_default = 0,
826 format_sed = 1 << 8,
827 format_no_copy = 1 << 9,
828 format_first_only = 1 << 10
829};
830
831inline
832/*constexpr*/
833match_flag_type
834operator~(match_flag_type __x)
835{
836 return match_flag_type(~int(__x));
837}
838
839inline
840/*constexpr*/
841match_flag_type
842operator&(match_flag_type __x, match_flag_type __y)
843{
844 return match_flag_type(int(__x) & int(__y));
845}
846
847inline
848/*constexpr*/
849match_flag_type
850operator|(match_flag_type __x, match_flag_type __y)
851{
852 return match_flag_type(int(__x) | int(__y));
853}
854
855inline
856/*constexpr*/
857match_flag_type
858operator^(match_flag_type __x, match_flag_type __y)
859{
860 return match_flag_type(int(__x) ^ int(__y));
861}
862
863inline
864/*constexpr*/
865match_flag_type&
866operator&=(match_flag_type& __x, match_flag_type __y)
867{
868 __x = __x & __y;
869 return __x;
870}
871
872inline
873/*constexpr*/
874match_flag_type&
875operator|=(match_flag_type& __x, match_flag_type __y)
876{
877 __x = __x | __y;
878 return __x;
879}
880
881inline
882/*constexpr*/
883match_flag_type&
884operator^=(match_flag_type& __x, match_flag_type __y)
885{
886 __x = __x ^ __y;
887 return __x;
888}
889
890enum error_type
891{
892 error_collate = 1,
893 error_ctype,
894 error_escape,
895 error_backref,
896 error_brack,
897 error_paren,
898 error_brace,
899 error_badbrace,
900 error_range,
901 error_space,
902 error_badrepeat,
903 error_complexity,
Howard Hinnant8c2c18d2010-06-24 21:28:00 +0000904 error_stack,
905 error_temp
Howard Hinnant3257c982010-06-17 00:34:59 +0000906};
907
908} // regex_constants
909
910class _LIBCPP_EXCEPTION_ABI regex_error
911 : public runtime_error
912{
913 regex_constants::error_type __code_;
914public:
915 explicit regex_error(regex_constants::error_type __ecode);
916 virtual ~regex_error() throw();
917 regex_constants::error_type code() const {return __code_;}
918};
919
920template <class _CharT>
921struct regex_traits
922{
923public:
924 typedef _CharT char_type;
925 typedef basic_string<char_type> string_type;
926 typedef locale locale_type;
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000927 typedef ctype_base::mask char_class_type;
Howard Hinnant3257c982010-06-17 00:34:59 +0000928
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000929 static const char_class_type __regex_word = 0x80;
Howard Hinnant3257c982010-06-17 00:34:59 +0000930private:
931 locale __loc_;
932 const ctype<char_type>* __ct_;
933 const collate<char_type>* __col_;
934
935public:
936 regex_traits();
937
938 static size_t length(const char_type* __p)
939 {return char_traits<char_type>::length(__p);}
940 char_type translate(char_type __c) const {return __c;}
941 char_type translate_nocase(char_type __c) const;
942 template <class _ForwardIterator>
943 string_type
944 transform(_ForwardIterator __f, _ForwardIterator __l) const;
945 template <class _ForwardIterator>
946 string_type
947 transform_primary( _ForwardIterator __f, _ForwardIterator __l) const
948 {return __transform_primary(__f, __l, char_type());}
949 template <class _ForwardIterator>
950 string_type
951 lookup_collatename(_ForwardIterator __f, _ForwardIterator __l) const
952 {return __lookup_collatename(__f, __l, char_type());}
953 template <class _ForwardIterator>
954 char_class_type
955 lookup_classname(_ForwardIterator __f, _ForwardIterator __l,
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000956 bool __icase = false) const
957 {return __lookup_classname(__f, __l, __icase, char_type());}
958 bool isctype(char_type __c, char_class_type __m) const;
959 int value(char_type __ch, int __radix) const
960 {return __value(__ch, __radix);}
Howard Hinnant3257c982010-06-17 00:34:59 +0000961 locale_type imbue(locale_type __l);
962 locale_type getloc()const {return __loc_;}
963
964private:
965 void __init();
966
967 template <class _ForwardIterator>
968 string_type
969 __transform_primary(_ForwardIterator __f, _ForwardIterator __l, char) const;
970 template <class _ForwardIterator>
971 string_type
972 __transform_primary(_ForwardIterator __f, _ForwardIterator __l, wchar_t) const;
973
974 template <class _ForwardIterator>
975 string_type
976 __lookup_collatename(_ForwardIterator __f, _ForwardIterator __l, char) const;
977 template <class _ForwardIterator>
978 string_type
979 __lookup_collatename(_ForwardIterator __f, _ForwardIterator __l, wchar_t) const;
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000980
981 template <class _ForwardIterator>
982 char_class_type
983 __lookup_classname(_ForwardIterator __f, _ForwardIterator __l,
984 bool __icase, char) const;
985 template <class _ForwardIterator>
986 char_class_type
987 __lookup_classname(_ForwardIterator __f, _ForwardIterator __l,
988 bool __icase, wchar_t) const;
989
990 static int __value(unsigned char __ch, int __radix);
991 int __value(char __ch, int __radix) const
992 {return __value(static_cast<unsigned char>(__ch), __radix);}
993 int __value(wchar_t __ch, int __radix) const;
Howard Hinnant3257c982010-06-17 00:34:59 +0000994};
995
996template <class _CharT>
997regex_traits<_CharT>::regex_traits()
998{
999 __init();
1000}
1001
1002template <class _CharT>
1003typename regex_traits<_CharT>::char_type
1004regex_traits<_CharT>::translate_nocase(char_type __c) const
1005{
1006 return __ct_->tolower(__c);
1007}
1008
1009template <class _CharT>
1010template <class _ForwardIterator>
1011typename regex_traits<_CharT>::string_type
1012regex_traits<_CharT>::transform(_ForwardIterator __f, _ForwardIterator __l) const
1013{
1014 string_type __s(__f, __l);
1015 return __col_->transform(__s.data(), __s.data() + __s.size());
1016}
1017
1018template <class _CharT>
1019void
1020regex_traits<_CharT>::__init()
1021{
1022 __ct_ = &use_facet<ctype<char_type> >(__loc_);
1023 __col_ = &use_facet<collate<char_type> >(__loc_);
1024}
1025
1026template <class _CharT>
1027typename regex_traits<_CharT>::locale_type
1028regex_traits<_CharT>::imbue(locale_type __l)
1029{
1030 locale __r = __loc_;
1031 __loc_ = __l;
1032 __init();
1033 return __r;
1034}
1035
1036// transform_primary is very FreeBSD-specific
1037
1038template <class _CharT>
1039template <class _ForwardIterator>
1040typename regex_traits<_CharT>::string_type
1041regex_traits<_CharT>::__transform_primary(_ForwardIterator __f,
1042 _ForwardIterator __l, char) const
1043{
1044 const string_type __s(__f, __l);
1045 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size());
1046 switch (__d.size())
1047 {
1048 case 1:
1049 break;
1050 case 12:
1051 __d[11] = __d[3];
1052 break;
1053 default:
1054 __d.clear();
1055 break;
1056 }
1057 return __d;
1058}
1059
1060template <class _CharT>
1061template <class _ForwardIterator>
1062typename regex_traits<_CharT>::string_type
1063regex_traits<_CharT>::__transform_primary(_ForwardIterator __f,
1064 _ForwardIterator __l, wchar_t) const
1065{
1066 const string_type __s(__f, __l);
1067 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size());
1068 switch (__d.size())
1069 {
1070 case 1:
1071 break;
1072 case 3:
1073 __d[2] = __d[0];
1074 break;
1075 default:
1076 __d.clear();
1077 break;
1078 }
1079 return __d;
1080}
1081
1082// lookup_collatename is very FreeBSD-specific
1083
Howard Hinnantf409d2f2010-06-21 21:01:43 +00001084string __get_collation_name(const char* __s);
Howard Hinnant3257c982010-06-17 00:34:59 +00001085
1086template <class _CharT>
1087template <class _ForwardIterator>
1088typename regex_traits<_CharT>::string_type
1089regex_traits<_CharT>::__lookup_collatename(_ForwardIterator __f,
1090 _ForwardIterator __l, char) const
1091{
1092 string_type __s(__f, __l);
1093 string_type __r;
1094 if (!__s.empty())
1095 {
1096 __r = __get_collation_name(__s.c_str());
1097 if (__r.empty() && __s.size() <= 2)
1098 {
1099 __r = __col_->transform(__s.data(), __s.data() + __s.size());
1100 if (__r.size() == 1 || __r.size() == 12)
1101 __r = __s;
1102 else
1103 __r.clear();
1104 }
1105 }
1106 return __r;
1107}
1108
1109template <class _CharT>
1110template <class _ForwardIterator>
1111typename regex_traits<_CharT>::string_type
1112regex_traits<_CharT>::__lookup_collatename(_ForwardIterator __f,
1113 _ForwardIterator __l, wchar_t) const
1114{
1115 string_type __s(__f, __l);
1116 string __n;
1117 __n.reserve(__s.size());
1118 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end();
1119 __i != __e; ++__i)
1120 {
1121 if (static_cast<unsigned>(*__i) >= 127)
1122 return string_type();
1123 __n.push_back(char(*__i));
1124 }
1125 string_type __r;
1126 if (!__s.empty())
1127 {
1128 __n = __get_collation_name(__n.c_str());
1129 if (!__n.empty())
1130 __r.assign(__n.begin(), __n.end());
1131 else if (__s.size() <= 2)
1132 {
1133 __r = __col_->transform(__s.data(), __s.data() + __s.size());
1134 if (__r.size() == 1 || __r.size() == 3)
1135 __r = __s;
1136 else
1137 __r.clear();
1138 }
1139 }
1140 return __r;
1141}
1142
Howard Hinnantf409d2f2010-06-21 21:01:43 +00001143// lookup_classname
1144
1145ctype_base::mask __get_classname(const char* __s, bool __icase);
1146
1147template <class _CharT>
1148template <class _ForwardIterator>
1149typename regex_traits<_CharT>::char_class_type
1150regex_traits<_CharT>::__lookup_classname(_ForwardIterator __f,
1151 _ForwardIterator __l,
1152 bool __icase, char) const
1153{
1154 string_type __s(__f, __l);
1155 __ct_->tolower(&__s[0], &__s[0] + __s.size());
1156 return __get_classname(__s.c_str(), __icase);
1157}
1158
1159template <class _CharT>
1160template <class _ForwardIterator>
1161typename regex_traits<_CharT>::char_class_type
1162regex_traits<_CharT>::__lookup_classname(_ForwardIterator __f,
1163 _ForwardIterator __l,
1164 bool __icase, wchar_t) const
1165{
1166 string_type __s(__f, __l);
1167 __ct_->tolower(&__s[0], &__s[0] + __s.size());
1168 string __n;
1169 __n.reserve(__s.size());
1170 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end();
1171 __i != __e; ++__i)
1172 {
1173 if (static_cast<unsigned>(*__i) >= 127)
1174 return char_class_type();
1175 __n.push_back(char(*__i));
1176 }
1177 return __get_classname(__n.c_str(), __icase);
1178}
1179
1180template <class _CharT>
1181bool
1182regex_traits<_CharT>::isctype(char_type __c, char_class_type __m) const
1183{
1184 if (__ct_->is(__m, __c))
1185 return true;
1186 return (__c == '_' && (__m & __regex_word));
1187}
1188
1189template <class _CharT>
1190int
1191regex_traits<_CharT>::__value(unsigned char __ch, int __radix)
1192{
1193 if ((__ch & 0xF8u) == 0x30) // '0' <= __ch && __ch <= '7'
1194 return __ch - '0';
1195 if (__radix != 8)
1196 {
1197 if ((__ch & 0xFEu) == 0x38) // '8' <= __ch && __ch <= '9'
1198 return __ch - '0';
1199 if (__radix == 16)
1200 {
1201 __ch |= 0x20; // tolower
1202 if ('a' <= __ch && __ch <= 'f')
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001203 return __ch - ('a' - 10);
Howard Hinnantf409d2f2010-06-21 21:01:43 +00001204 }
1205 }
1206 return -1;
1207}
1208
1209template <class _CharT>
1210inline
1211int
1212regex_traits<_CharT>::__value(wchar_t __ch, int __radix) const
1213{
1214 return __value(static_cast<unsigned char>(__ct_->narrow(__ch, char_type())), __radix);
1215}
1216
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001217template <class _CharT> class __transition;
1218
1219template <class _CharT>
1220class __state
1221{
1222 typedef __transition<_CharT> __transition;
1223 __transition* __t1_;
1224 __transition* __t2_;
1225 int __state_;
1226 enum
1227 {
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001228 __not_tried = 0,
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001229 __1_succeded = 1,
1230 __1_failed = 2,
1231 __2_not_tried = 0,
1232 __2_succeded = 4,
1233 __2_failed = 8
1234 };
1235
1236 __state(const __state&);
1237 __state& operator=(const __state&);
1238public:
1239 __state()
1240 : __t1_(), __t2_(), __state_() {}
1241 ~__state();
1242
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001243 __state* __test(_CharT __c, bool& __consume, unsigned& __begin_sub,
1244 unsigned& __end_sub);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001245
1246 void __add_one(__transition* __t) {__t1_ = __t;}
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001247
1248 void __reset_state();
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001249};
1250
1251template <class _CharT>
1252__state<_CharT>::~__state()
1253{
1254 delete __t1_;
1255 delete __t2_;
1256}
1257
1258template <class _CharT>
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001259__state<_CharT>*
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001260__state<_CharT>::__test(_CharT __c, bool& __consume, unsigned& __begin_sub,
1261 unsigned& __end_sub)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001262{
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001263 __state* __r = nullptr;
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001264 if ((__state_ & 3) == 0)
1265 {
1266 if (__t1_)
1267 {
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001268 __r = __t1_->__test(__c, __consume, __begin_sub, __end_sub);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001269 if (__r)
1270 __state_ |= __1_succeded;
1271 else
1272 __state_ |= __1_failed;
1273 }
1274 else
1275 __state_ |= __1_failed;
1276 }
1277 else if ((__state_ & 0xC) == 0)
1278 {
1279 if (__t2_)
1280 {
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001281 __r = __t2_->__test(__c, __consume, __begin_sub, __end_sub);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001282 if (__r)
1283 __state_ |= __2_succeded;
1284 else
1285 __state_ |= __2_failed;
1286 }
1287 else
1288 __state_ |= __2_failed;
1289 }
1290 return __r;
1291}
1292
1293template <class _CharT>
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001294void
1295__state<_CharT>::__reset_state()
1296{
1297 __state_ = __not_tried;
1298 if (__t1_)
1299 __t1_->__reset_state();
1300 if (__t2_)
1301 __t2_->__reset_state();
1302}
1303
1304template <class _CharT>
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001305class __transition
1306{
1307 __transition(const __transition&);
1308 __transition& operator=(const __transition&);
1309
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001310protected:
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001311 typedef __state<_CharT> __state;
1312 typedef unique_ptr<__state, void(*)(__state*)> __sptr;
1313
1314 static void __delete_state(__state* __p) {delete __p;}
1315 static void __ignore_state(__state*) {}
1316
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001317 __sptr __sptr_;
1318public:
1319 __transition(bool __owns, __state* __st)
1320 : __sptr_(__st, __owns ? &__delete_state : &__ignore_state) {}
1321 virtual ~__transition() {}
1322
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001323 virtual __state* __test(_CharT, bool& __consume, unsigned& __begin_sub,
1324 unsigned& __end_sub);
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001325
1326 void __reset_state();
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001327};
1328
1329template <class _CharT>
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001330typename __transition<_CharT>::__state*
1331__transition<_CharT>::__test(_CharT, bool& __consume, unsigned&, unsigned&)
1332{
1333 __consume = false;
1334 return __sptr_.get();
1335}
1336
1337template <class _CharT>
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001338void
1339__transition<_CharT>::__reset_state()
1340{
1341 if (__sptr_.get_deleter() == &__delete_state)
1342 __sptr_->__reset_state();
1343}
1344
1345template <class _CharT>
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001346class __match_char
1347 : public __transition<_CharT>
1348{
1349 typedef __transition<_CharT> base;
1350 _CharT __c_;
1351public:
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001352 typedef typename base::__state __state;
1353
1354 __match_char(_CharT __c, bool __owns, __state* __st)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001355 : base(__owns, __st), __c_(__c) {}
1356
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001357 virtual __state* __test(_CharT __c, bool& __consume, unsigned&, unsigned&);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001358};
1359
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001360template <class _CharT>
1361typename __match_char<_CharT>::__state*
1362__match_char<_CharT>::__test(_CharT __c, bool& __consume, unsigned&, unsigned&)
1363{
1364 if (__c == __c_)
1365 {
1366 __consume = true;
1367 return base::__sptr_.get();
1368 }
1369 __consume = false;
1370 return nullptr;
1371}
1372
1373template <class _CharT>
1374class __begin_marked_subexpression
1375 : public __transition<_CharT>
1376{
1377 typedef __transition<_CharT> base;
1378 unsigned __sub_;
1379public:
1380 typedef typename base::__state __state;
1381
1382 __begin_marked_subexpression(unsigned __sub, bool __owns, __state* __st)
1383 : base(__owns, __st), __sub_(__sub) {}
1384
1385 virtual __state* __test(_CharT, bool& __consume, unsigned& __begin_sub,
1386 unsigned&);
1387};
1388
1389template <class _CharT>
1390typename __begin_marked_subexpression<_CharT>::__state*
1391__begin_marked_subexpression<_CharT>::__test(_CharT, bool& __consume,
1392 unsigned& __begin_sub, unsigned&)
1393{
1394 __consume = false;
1395 __begin_sub = __sub_;
1396 return base::__sptr_.get();
1397}
1398
1399template <class _CharT>
1400class __end_marked_subexpression
1401 : public __transition<_CharT>
1402{
1403 typedef __transition<_CharT> base;
1404 unsigned __sub_;
1405public:
1406 typedef typename base::__state __state;
1407
1408 __end_marked_subexpression(unsigned __sub, bool __owns, __state* __st)
1409 : base(__owns, __st), __sub_(__sub) {}
1410
1411 virtual __state* __test(_CharT, bool& __consume, unsigned&,
1412 unsigned& __end_sub);
1413};
1414
1415template <class _CharT>
1416typename __end_marked_subexpression<_CharT>::__state*
1417__end_marked_subexpression<_CharT>::__test(_CharT, bool& __consume,
1418 unsigned&, unsigned& __end_sub)
1419{
1420 __consume = false;
1421 __end_sub = __sub_;
1422 return base::__sptr_.get();
1423}
1424
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001425template <class, class> class match_results;
1426
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001427template <class _CharT, class _Traits = regex_traits<_CharT> >
1428class basic_regex
1429{
1430public:
1431 // types:
1432 typedef _CharT value_type;
1433 typedef regex_constants::syntax_option_type flag_type;
1434 typedef typename _Traits::locale_type locale_type;
1435
1436private:
1437 _Traits __traits_;
1438 flag_type __flags_;
1439 unsigned __marked_count_;
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001440 int __open_count_;
1441 shared_ptr<__state<_CharT> > __start_;
1442 __state<_CharT>* __end_;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001443
1444public:
1445 // constants:
1446 static const/*expr*/ regex_constants::syntax_option_type icase = regex_constants::icase;
1447 static const/*expr*/ regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
1448 static const/*expr*/ regex_constants::syntax_option_type optimize = regex_constants::optimize;
1449 static const/*expr*/ regex_constants::syntax_option_type collate = regex_constants::collate;
1450 static const/*expr*/ regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
1451 static const/*expr*/ regex_constants::syntax_option_type basic = regex_constants::basic;
1452 static const/*expr*/ regex_constants::syntax_option_type extended = regex_constants::extended;
1453 static const/*expr*/ regex_constants::syntax_option_type awk = regex_constants::awk;
1454 static const/*expr*/ regex_constants::syntax_option_type grep = regex_constants::grep;
1455 static const/*expr*/ regex_constants::syntax_option_type egrep = regex_constants::egrep;
1456
1457 // construct/copy/destroy:
1458 basic_regex();
1459 explicit basic_regex(const value_type* __p, flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001460 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001461 {__parse(__p, __p + __traits_.length(__p));}
1462 basic_regex(const value_type* __p, size_t __len, flag_type __f)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001463 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001464 {__parse(__p, __p + __len);}
1465 basic_regex(const basic_regex&);
1466#ifdef _LIBCPP_MOVE
1467 basic_regex(basic_regex&&);
1468#endif
1469 template <class _ST, class _SA>
1470 explicit basic_regex(const basic_string<value_type, _ST, _SA>& __p,
1471 flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001472 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001473 {__parse(__p.begin(), __p.end());}
1474 template <class _ForwardIterator>
1475 basic_regex(_ForwardIterator __first, _ForwardIterator __last,
1476 flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001477 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001478 {__parse(__first, __last);}
1479 basic_regex(initializer_list<value_type> __il,
1480 flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001481 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001482 {__parse(__il.begin(), __il.end());}
1483
1484 ~basic_regex();
1485
1486 basic_regex& operator=(const basic_regex&);
1487#ifdef _LIBCPP_MOVE
1488 basic_regex& operator=(basic_regex&&);
1489#endif
1490 basic_regex& operator=(const value_type* __p);
1491 basic_regex& operator=(initializer_list<value_type> __il);
1492 template <class _ST, class _SA>
1493 basic_regex& operator=(const basic_string<value_type, _ST, _SA>& __p);
1494
1495 // assign:
1496 basic_regex& assign(const basic_regex& __that);
1497#ifdef _LIBCPP_MOVE
1498 basic_regex& assign(basic_regex&& __that);
1499#endif
1500 basic_regex& assign(const value_type* __p, flag_type __f = regex_constants::ECMAScript);
1501 basic_regex& assign(const value_type* __p, size_t __len, flag_type __f);
1502 template <class _ST, class _SA>
1503 basic_regex& assign(const basic_string<value_type, _ST, _SA>& __s,
1504 flag_type __f = regex_constants::ECMAScript);
1505 template <class _InputIterator>
1506 basic_regex& assign(_InputIterator __first, _InputIterator __last,
1507 flag_type __f = regex_constants::ECMAScript);
1508 basic_regex& assign(initializer_list<value_type> __il,
1509 flag_type = regex_constants::ECMAScript);
1510
1511 // const operations:
1512 unsigned mark_count() const {return __marked_count_;}
1513 flag_type flags() const {return __flags_;}
1514
1515 // locale:
1516 locale_type imbue(locale_type __loc) {return __traits_.imbue(__loc);}
1517 locale_type getloc() const {return __traits_.getloc();}
1518
1519 // swap:
1520 void swap(basic_regex&);
1521
1522private:
1523 template <class _ForwardIterator>
1524 void __parse(_ForwardIterator __first, _ForwardIterator __last);
1525 template <class _ForwardIterator>
1526 _ForwardIterator
1527 __parse_basic_reg_exp(_ForwardIterator __first, _ForwardIterator __last);
1528 template <class _ForwardIterator>
1529 _ForwardIterator
1530 __parse_RE_expression(_ForwardIterator __first, _ForwardIterator __last);
1531 template <class _ForwardIterator>
1532 _ForwardIterator
1533 __parse_simple_RE(_ForwardIterator __first, _ForwardIterator __last);
1534 template <class _ForwardIterator>
1535 _ForwardIterator
1536 __parse_nondupl_RE(_ForwardIterator __first, _ForwardIterator __last);
1537 template <class _ForwardIterator>
1538 _ForwardIterator
1539 __parse_one_char_or_coll_elem_RE(_ForwardIterator __first, _ForwardIterator __last);
1540 template <class _ForwardIterator>
1541 _ForwardIterator
1542 __parse_Back_open_paren(_ForwardIterator __first, _ForwardIterator __last);
1543 template <class _ForwardIterator>
1544 _ForwardIterator
1545 __parse_Back_close_paren(_ForwardIterator __first, _ForwardIterator __last);
1546 template <class _ForwardIterator>
1547 _ForwardIterator
1548 __parse_Back_open_brace(_ForwardIterator __first, _ForwardIterator __last);
1549 template <class _ForwardIterator>
1550 _ForwardIterator
1551 __parse_Back_close_brace(_ForwardIterator __first, _ForwardIterator __last);
1552 template <class _ForwardIterator>
1553 _ForwardIterator
1554 __parse_BACKREF(_ForwardIterator __first, _ForwardIterator __last);
1555 template <class _ForwardIterator>
1556 _ForwardIterator
1557 __parse_ORD_CHAR(_ForwardIterator __first, _ForwardIterator __last);
1558 template <class _ForwardIterator>
1559 _ForwardIterator
1560 __parse_QUOTED_CHAR(_ForwardIterator __first, _ForwardIterator __last);
1561 template <class _ForwardIterator>
1562 _ForwardIterator
1563 __parse_RE_dupl_symbol(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnant0de86b62010-06-25 20:56:08 +00001564 template <class _ForwardIterator>
1565 _ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001566 __parse_ERE_dupl_symbol(_ForwardIterator __first, _ForwardIterator __last);
1567 template <class _ForwardIterator>
1568 _ForwardIterator
Howard Hinnant0de86b62010-06-25 20:56:08 +00001569 __parse_bracket_expression(_ForwardIterator __first, _ForwardIterator __last);
1570 template <class _ForwardIterator>
1571 _ForwardIterator
1572 __parse_follow_list(_ForwardIterator __first, _ForwardIterator __last);
1573 template <class _ForwardIterator>
1574 _ForwardIterator
1575 __parse_expression_term(_ForwardIterator __first, _ForwardIterator __last);
1576 template <class _ForwardIterator>
1577 _ForwardIterator
1578 __parse_equivalence_class(_ForwardIterator __first, _ForwardIterator __last);
1579 template <class _ForwardIterator>
1580 _ForwardIterator
1581 __parse_character_class(_ForwardIterator __first, _ForwardIterator __last);
1582 template <class _ForwardIterator>
1583 _ForwardIterator
1584 __parse_collating_symbol(_ForwardIterator __first, _ForwardIterator __last);
1585 template <class _ForwardIterator>
1586 _ForwardIterator
1587 __parse_DUP_COUNT(_ForwardIterator __first, _ForwardIterator __last, int& __c);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001588 template <class _ForwardIterator>
1589 _ForwardIterator
1590 __parse_extended_reg_exp(_ForwardIterator __first, _ForwardIterator __last);
1591 template <class _ForwardIterator>
1592 _ForwardIterator
1593 __parse_ERE_branch(_ForwardIterator __first, _ForwardIterator __last);
1594 template <class _ForwardIterator>
1595 _ForwardIterator
1596 __parse_ERE_expression(_ForwardIterator __first, _ForwardIterator __last);
1597 template <class _ForwardIterator>
1598 _ForwardIterator
1599 __parse_one_char_or_coll_elem_ERE(_ForwardIterator __first, _ForwardIterator __last);
1600 template <class _ForwardIterator>
1601 _ForwardIterator
1602 __parse_ORD_CHAR_ERE(_ForwardIterator __first, _ForwardIterator __last);
1603 template <class _ForwardIterator>
1604 _ForwardIterator
1605 __parse_QUOTED_CHAR_ERE(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001606
Howard Hinnant0de86b62010-06-25 20:56:08 +00001607 void __push_l_anchor() {}
1608 void __push_r_anchor() {}
1609 void __push_match_any() {}
1610 void __push_greedy_inf_repeat(int __min) {}
1611 void __push_exact_repeat(int __count) {}
1612 void __push_repeat(int __min, int __max) {}
1613 void __start_nonmatching_list() {}
1614 void __start_matching_list() {}
1615 void __end_nonmatching_list() {}
1616 void __end_matching_list() {}
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001617 void __push_char(value_type __c);
Howard Hinnant0de86b62010-06-25 20:56:08 +00001618 void __push_char(const typename _Traits::string_type& __c) {}
1619 void __push_range() {}
1620 void __push_class_type(typename _Traits::char_class_type) {}
1621 void __push_back_ref(int __i) {}
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001622 void __push_alternation() {}
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001623 void __push_begin_marked_subexpression();
1624 void __push_end_marked_subexpression(unsigned);
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00001625
1626 template <class _BidirectionalIterator, class _Allocator>
1627 bool
1628 __search(_BidirectionalIterator __first, _BidirectionalIterator __last,
1629 match_results<_BidirectionalIterator, _Allocator>& __m,
1630 regex_constants::match_flag_type __flags) const;
1631
1632 template <class _B, class _A, class _C, class _T>
1633 friend
1634 bool
1635 regex_search(_B, _B, match_results<_B, _A>&, const basic_regex<_C, _T>&,
1636 regex_constants::match_flag_type);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001637};
1638
1639template <class _CharT, class _Traits>
1640inline
1641basic_regex<_CharT, _Traits>::basic_regex()
1642 : __traits_(), __flags_(), __marked_count_(0)
1643{
1644}
1645
1646template <class _CharT, class _Traits>
1647basic_regex<_CharT, _Traits>::~basic_regex()
1648{
1649}
1650
1651template <class _CharT, class _Traits>
1652template <class _ForwardIterator>
1653void
1654basic_regex<_CharT, _Traits>::__parse(_ForwardIterator __first,
1655 _ForwardIterator __last)
1656{
1657 switch (__flags_ & 0x3F0)
1658 {
1659 case ECMAScript:
1660 break;
1661 case basic:
1662 __parse_basic_reg_exp(__first, __last);
1663 break;
1664 case extended:
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001665 __parse_extended_reg_exp(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001666 break;
1667 case awk:
1668 break;
1669 case grep:
1670 break;
1671 case egrep:
1672 break;
1673 default:
1674 throw regex_error(regex_constants::error_temp);
1675 }
1676}
1677
1678template <class _CharT, class _Traits>
1679template <class _ForwardIterator>
1680_ForwardIterator
1681basic_regex<_CharT, _Traits>::__parse_basic_reg_exp(_ForwardIterator __first,
1682 _ForwardIterator __last)
1683{
1684 if (__first != __last)
1685 {
1686 if (*__first == '^')
1687 {
1688 __push_l_anchor();
1689 ++__first;
1690 }
1691 if (__first != __last)
1692 {
1693 __first = __parse_RE_expression(__first, __last);
1694 if (__first != __last)
1695 {
1696 _ForwardIterator __temp = next(__first);
1697 if (__temp == __last && *__first == '$')
1698 {
1699 __push_r_anchor();
1700 ++__first;
1701 }
1702 }
1703 }
1704 if (__first != __last)
1705 throw regex_error(regex_constants::error_temp);
1706 }
1707 return __first;
1708}
1709
1710template <class _CharT, class _Traits>
1711template <class _ForwardIterator>
1712_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001713basic_regex<_CharT, _Traits>::__parse_extended_reg_exp(_ForwardIterator __first,
1714 _ForwardIterator __last)
1715{
1716 while (true)
1717 {
1718 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
1719 if (__temp == __first)
1720 throw regex_error(regex_constants::error_temp);
1721 __first = __temp;
1722 if (__first == __last)
1723 break;
1724 if (*__first != '|')
1725 throw regex_error(regex_constants::error_temp);
1726 __push_alternation();
1727 ++__first;
1728 }
1729 return __first;
1730}
1731
1732template <class _CharT, class _Traits>
1733template <class _ForwardIterator>
1734_ForwardIterator
1735basic_regex<_CharT, _Traits>::__parse_ERE_branch(_ForwardIterator __first,
1736 _ForwardIterator __last)
1737{
1738 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
1739 if (__temp == __first)
1740 throw regex_error(regex_constants::error_temp);
1741 do
1742 {
1743 __first = __temp;
1744 __temp = __parse_ERE_expression(__first, __last);
1745 } while (__temp != __first);
1746 return __first;
1747}
1748
1749template <class _CharT, class _Traits>
1750template <class _ForwardIterator>
1751_ForwardIterator
1752basic_regex<_CharT, _Traits>::__parse_ERE_expression(_ForwardIterator __first,
1753 _ForwardIterator __last)
1754{
1755 _ForwardIterator __temp = __parse_one_char_or_coll_elem_ERE(__first, __last);
1756 if (__temp == __first && __temp != __last)
1757 {
1758 switch (*__temp)
1759 {
1760 case '^':
1761 __push_l_anchor();
1762 ++__temp;
1763 break;
1764 case '$':
1765 __push_r_anchor();
1766 ++__temp;
1767 break;
1768 case '(':
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001769 __push_begin_marked_subexpression();
1770 unsigned __temp_count = __marked_count_;
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001771 ++__open_count_;
1772 __temp = __parse_extended_reg_exp(++__temp, __last);
1773 if (__temp == __last || *__temp != ')')
1774 throw regex_error(regex_constants::error_paren);
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001775 __push_end_marked_subexpression(__temp_count);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001776 --__open_count_;
1777 ++__temp;
1778 break;
1779 }
1780 }
1781 if (__temp != __first)
1782 __temp = __parse_ERE_dupl_symbol(__temp, __last);
1783 __first = __temp;
1784 return __first;
1785}
1786
1787template <class _CharT, class _Traits>
1788template <class _ForwardIterator>
1789_ForwardIterator
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001790basic_regex<_CharT, _Traits>::__parse_RE_expression(_ForwardIterator __first,
1791 _ForwardIterator __last)
1792{
1793 while (true)
1794 {
1795 _ForwardIterator __temp = __parse_simple_RE(__first, __last);
1796 if (__temp == __first)
1797 break;
1798 __first = __temp;
1799 }
1800 return __first;
1801}
1802
1803template <class _CharT, class _Traits>
1804template <class _ForwardIterator>
1805_ForwardIterator
1806basic_regex<_CharT, _Traits>::__parse_simple_RE(_ForwardIterator __first,
1807 _ForwardIterator __last)
1808{
1809 if (__first != __last)
1810 {
1811 _ForwardIterator __temp = __parse_nondupl_RE(__first, __last);
1812 if (__temp != __first)
1813 {
1814 __first = __temp;
1815 __first = __parse_RE_dupl_symbol(__first, __last);
1816 }
1817 }
1818 return __first;
1819}
1820
1821template <class _CharT, class _Traits>
1822template <class _ForwardIterator>
1823_ForwardIterator
1824basic_regex<_CharT, _Traits>::__parse_nondupl_RE(_ForwardIterator __first,
1825 _ForwardIterator __last)
1826{
1827 _ForwardIterator __temp = __first;
1828 __first = __parse_one_char_or_coll_elem_RE(__first, __last);
1829 if (__temp == __first)
1830 {
1831 __temp = __parse_Back_open_paren(__first, __last);
1832 if (__temp != __first)
1833 {
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001834 __push_begin_marked_subexpression();
1835 unsigned __temp_count = __marked_count_;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001836 __first = __parse_RE_expression(__temp, __last);
1837 __temp = __parse_Back_close_paren(__first, __last);
1838 if (__temp == __first)
1839 throw regex_error(regex_constants::error_paren);
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00001840 __push_end_marked_subexpression(__temp_count);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001841 __first = __temp;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001842 }
1843 else
1844 __first = __parse_BACKREF(__first, __last);
1845 }
1846 return __first;
1847}
1848
1849template <class _CharT, class _Traits>
1850template <class _ForwardIterator>
1851_ForwardIterator
1852basic_regex<_CharT, _Traits>::__parse_one_char_or_coll_elem_RE(
1853 _ForwardIterator __first,
1854 _ForwardIterator __last)
1855{
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001856 _ForwardIterator __temp = __parse_ORD_CHAR(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001857 if (__temp == __first)
1858 {
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001859 __temp = __parse_QUOTED_CHAR(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001860 if (__temp == __first)
1861 {
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001862 if (__temp != __last && *__temp == '.')
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001863 {
1864 __push_match_any();
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001865 ++__temp;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001866 }
1867 else
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001868 __temp = __parse_bracket_expression(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001869 }
1870 }
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001871 __first = __temp;
1872 return __first;
1873}
1874
1875template <class _CharT, class _Traits>
1876template <class _ForwardIterator>
1877_ForwardIterator
1878basic_regex<_CharT, _Traits>::__parse_one_char_or_coll_elem_ERE(
1879 _ForwardIterator __first,
1880 _ForwardIterator __last)
1881{
1882 _ForwardIterator __temp = __parse_ORD_CHAR_ERE(__first, __last);
1883 if (__temp == __first)
1884 {
1885 __temp = __parse_QUOTED_CHAR_ERE(__first, __last);
1886 if (__temp == __first)
1887 {
1888 if (__temp != __last && *__temp == '.')
1889 {
1890 __push_match_any();
1891 ++__temp;
1892 }
1893 else
1894 __temp = __parse_bracket_expression(__first, __last);
1895 }
1896 }
1897 __first = __temp;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001898 return __first;
1899}
1900
1901template <class _CharT, class _Traits>
1902template <class _ForwardIterator>
1903_ForwardIterator
1904basic_regex<_CharT, _Traits>::__parse_Back_open_paren(_ForwardIterator __first,
1905 _ForwardIterator __last)
1906{
1907 if (__first != __last)
1908 {
1909 _ForwardIterator __temp = next(__first);
1910 if (__temp != __last)
1911 {
1912 if (*__first == '\\' && *__temp == '(')
1913 __first = ++__temp;
1914 }
1915 }
1916 return __first;
1917}
1918
1919template <class _CharT, class _Traits>
1920template <class _ForwardIterator>
1921_ForwardIterator
1922basic_regex<_CharT, _Traits>::__parse_Back_close_paren(_ForwardIterator __first,
1923 _ForwardIterator __last)
1924{
1925 if (__first != __last)
1926 {
1927 _ForwardIterator __temp = next(__first);
1928 if (__temp != __last)
1929 {
1930 if (*__first == '\\' && *__temp == ')')
1931 __first = ++__temp;
1932 }
1933 }
1934 return __first;
1935}
1936
1937template <class _CharT, class _Traits>
1938template <class _ForwardIterator>
1939_ForwardIterator
1940basic_regex<_CharT, _Traits>::__parse_Back_open_brace(_ForwardIterator __first,
1941 _ForwardIterator __last)
1942{
1943 if (__first != __last)
1944 {
1945 _ForwardIterator __temp = next(__first);
1946 if (__temp != __last)
1947 {
1948 if (*__first == '\\' && *__temp == '{')
1949 __first = ++__temp;
1950 }
1951 }
1952 return __first;
1953}
1954
1955template <class _CharT, class _Traits>
1956template <class _ForwardIterator>
1957_ForwardIterator
1958basic_regex<_CharT, _Traits>::__parse_Back_close_brace(_ForwardIterator __first,
1959 _ForwardIterator __last)
1960{
1961 if (__first != __last)
1962 {
1963 _ForwardIterator __temp = next(__first);
1964 if (__temp != __last)
1965 {
1966 if (*__first == '\\' && *__temp == '}')
1967 __first = ++__temp;
1968 }
1969 }
1970 return __first;
1971}
1972
1973template <class _CharT, class _Traits>
1974template <class _ForwardIterator>
1975_ForwardIterator
1976basic_regex<_CharT, _Traits>::__parse_BACKREF(_ForwardIterator __first,
1977 _ForwardIterator __last)
1978{
1979 if (__first != __last)
1980 {
1981 _ForwardIterator __temp = next(__first);
1982 if (__temp != __last)
1983 {
1984 if (*__first == '\\' && '1' <= *__temp && *__temp <= '9')
1985 {
1986 __push_back_ref(*__temp - '0');
1987 __first = ++__temp;
1988 }
1989 }
1990 }
1991 return __first;
1992}
1993
1994template <class _CharT, class _Traits>
1995template <class _ForwardIterator>
1996_ForwardIterator
1997basic_regex<_CharT, _Traits>::__parse_ORD_CHAR(_ForwardIterator __first,
1998 _ForwardIterator __last)
1999{
2000 if (__first != __last)
2001 {
2002 _ForwardIterator __temp = next(__first);
2003 if (__temp == __last && *__first == '$')
2004 return __first;
2005 // Not called inside a bracket
2006 if (*__first == '.' || *__first == '\\' || *__first == '[')
2007 return __first;
Howard Hinnant0de86b62010-06-25 20:56:08 +00002008 __push_char(*__first);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002009 ++__first;
2010 }
2011 return __first;
2012}
2013
2014template <class _CharT, class _Traits>
2015template <class _ForwardIterator>
2016_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002017basic_regex<_CharT, _Traits>::__parse_ORD_CHAR_ERE(_ForwardIterator __first,
2018 _ForwardIterator __last)
2019{
2020 if (__first != __last)
2021 {
2022 switch (*__first)
2023 {
2024 case '^':
2025 case '.':
2026 case '[':
2027 case '$':
2028 case '(':
2029 case '|':
2030 case '*':
2031 case '+':
2032 case '?':
2033 case '{':
2034 case '\\':
2035 break;
2036 case ')':
2037 if (__open_count_ == 0)
2038 {
2039 __push_char(*__first);
2040 ++__first;
2041 }
2042 break;
2043 default:
2044 __push_char(*__first);
2045 ++__first;
2046 break;
2047 }
2048 }
2049 return __first;
2050}
2051
2052template <class _CharT, class _Traits>
2053template <class _ForwardIterator>
2054_ForwardIterator
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002055basic_regex<_CharT, _Traits>::__parse_QUOTED_CHAR(_ForwardIterator __first,
2056 _ForwardIterator __last)
2057{
2058 if (__first != __last)
2059 {
2060 _ForwardIterator __temp = next(__first);
2061 if (__temp != __last)
2062 {
2063 if (*__first == '\\')
2064 {
2065 switch (*__temp)
2066 {
2067 case '^':
2068 case '.':
2069 case '*':
2070 case '[':
2071 case '$':
2072 case '\\':
Howard Hinnant0de86b62010-06-25 20:56:08 +00002073 __push_char(*__temp);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002074 __first = ++__temp;
2075 break;
2076 }
2077 }
2078 }
2079 }
2080 return __first;
2081}
2082
2083template <class _CharT, class _Traits>
2084template <class _ForwardIterator>
2085_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002086basic_regex<_CharT, _Traits>::__parse_QUOTED_CHAR_ERE(_ForwardIterator __first,
2087 _ForwardIterator __last)
2088{
2089 if (__first != __last)
2090 {
2091 _ForwardIterator __temp = next(__first);
2092 if (__temp != __last)
2093 {
2094 if (*__first == '\\')
2095 {
2096 switch (*__temp)
2097 {
2098 case '^':
2099 case '.':
2100 case '*':
2101 case '[':
2102 case '$':
2103 case '\\':
2104 case '(':
2105 case ')':
2106 case '|':
2107 case '+':
2108 case '?':
2109 case '{':
2110 __push_char(*__temp);
2111 __first = ++__temp;
2112 break;
2113 }
2114 }
2115 }
2116 }
2117 return __first;
2118}
2119
2120template <class _CharT, class _Traits>
2121template <class _ForwardIterator>
2122_ForwardIterator
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002123basic_regex<_CharT, _Traits>::__parse_RE_dupl_symbol(_ForwardIterator __first,
2124 _ForwardIterator __last)
2125{
2126 if (__first != __last)
2127 {
Howard Hinnant0de86b62010-06-25 20:56:08 +00002128 if (*__first == '*')
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002129 {
2130 __push_greedy_inf_repeat(0);
2131 ++__first;
2132 }
2133 else
2134 {
2135 _ForwardIterator __temp = __parse_Back_open_brace(__first, __last);
2136 if (__temp != __first)
2137 {
2138 int __min = 0;
2139 __first = __temp;
2140 __temp = __parse_DUP_COUNT(__first, __last, __min);
2141 if (__temp == __first)
2142 throw regex_error(regex_constants::error_badbrace);
2143 __first = __temp;
2144 if (__first == __last)
2145 throw regex_error(regex_constants::error_brace);
2146 if (*__first != ',')
2147 {
2148 __temp = __parse_Back_close_brace(__first, __last);
2149 if (__temp == __first)
2150 throw regex_error(regex_constants::error_brace);
2151 __push_exact_repeat(__min);
2152 __first = __temp;
2153 }
2154 else
2155 {
2156 ++__first; // consume ','
2157 int __max = -1;
2158 __first = __parse_DUP_COUNT(__first, __last, __max);
2159 __temp = __parse_Back_close_brace(__first, __last);
2160 if (__temp == __first)
2161 throw regex_error(regex_constants::error_brace);
2162 if (__max == -1)
2163 __push_greedy_inf_repeat(__min);
2164 else
2165 {
2166 if (__max < __min)
2167 throw regex_error(regex_constants::error_badbrace);
2168 __push_repeat(__min, __max);
2169 }
2170 __first = __temp;
2171 }
2172 }
2173 }
2174 }
2175 return __first;
2176}
2177
Howard Hinnant0de86b62010-06-25 20:56:08 +00002178template <class _CharT, class _Traits>
2179template <class _ForwardIterator>
2180_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002181basic_regex<_CharT, _Traits>::__parse_ERE_dupl_symbol(_ForwardIterator __first,
2182 _ForwardIterator __last)
2183{
2184 if (__first != __last)
2185 {
2186 switch (*__first)
2187 {
2188 case '*':
2189 __push_greedy_inf_repeat(0);
2190 ++__first;
2191 break;
2192 case '+':
2193 __push_greedy_inf_repeat(1);
2194 ++__first;
2195 break;
2196 case '?':
2197 __push_repeat(0, 1);
2198 ++__first;
2199 break;
2200 case '{':
2201 {
2202 int __min;
2203 _ForwardIterator __temp = __parse_DUP_COUNT(__first, __last, __min);
2204 if (__temp == __first)
2205 throw regex_error(regex_constants::error_badbrace);
2206 __first = __temp;
2207 if (__first == __last)
2208 throw regex_error(regex_constants::error_brace);
2209 switch (*__first)
2210 {
2211 case '}':
2212 __push_exact_repeat(__min);
2213 ++__first;
2214 break;
2215 case ',':
2216 if (++__first == __last)
2217 throw regex_error(regex_constants::error_badbrace);
2218 if (*__first == '}')
2219 {
2220 __push_greedy_inf_repeat(__min);
2221 ++__first;
2222 }
2223 else
2224 {
2225 int __max;
2226 __temp = __parse_DUP_COUNT(__first, __last, __max);
2227 if (__temp == __first)
2228 throw regex_error(regex_constants::error_brace);
2229 __first = __temp;
2230 if (__first == __last || *__first != '}')
2231 throw regex_error(regex_constants::error_brace);
2232 ++__first;
2233 if (__max < __min)
2234 throw regex_error(regex_constants::error_badbrace);
2235 __push_repeat(__min, __max);
2236 }
2237 default:
2238 throw regex_error(regex_constants::error_badbrace);
2239 }
2240 }
2241 break;
2242 }
2243 }
2244 return __first;
2245}
2246
2247template <class _CharT, class _Traits>
2248template <class _ForwardIterator>
2249_ForwardIterator
Howard Hinnant0de86b62010-06-25 20:56:08 +00002250basic_regex<_CharT, _Traits>::__parse_bracket_expression(_ForwardIterator __first,
2251 _ForwardIterator __last)
2252{
2253 if (__first != __last && *__first == '[')
2254 {
2255 if (++__first == __last)
2256 throw regex_error(regex_constants::error_brack);
2257 bool __non_matching = false;
2258 if (*__first == '^')
2259 {
2260 ++__first;
2261 __non_matching = true;
2262 __start_nonmatching_list();
2263 }
2264 else
2265 __start_matching_list();
2266 if (__first == __last)
2267 throw regex_error(regex_constants::error_brack);
2268 if (*__first == ']')
2269 {
2270 __push_char(']');
2271 ++__first;
2272 }
2273 __first = __parse_follow_list(__first, __last);
2274 if (__first == __last)
2275 throw regex_error(regex_constants::error_brack);
2276 if (*__first == '-')
2277 {
2278 __push_char('-');
2279 ++__first;
2280 }
2281 if (__first == __last || *__first != ']')
2282 throw regex_error(regex_constants::error_brack);
2283 if (__non_matching)
2284 __end_nonmatching_list();
2285 else
2286 __end_matching_list();
2287 ++__first;
2288 }
2289 return __first;
2290}
2291
2292template <class _CharT, class _Traits>
2293template <class _ForwardIterator>
2294_ForwardIterator
2295basic_regex<_CharT, _Traits>::__parse_follow_list(_ForwardIterator __first,
2296 _ForwardIterator __last)
2297{
2298 if (__first != __last)
2299 {
2300 while (true)
2301 {
2302 _ForwardIterator __temp = __parse_expression_term(__first, __last);
2303 if (__temp == __first)
2304 break;
2305 __first = __temp;
2306 }
2307 }
2308 return __first;
2309}
2310
2311template <class _CharT, class _Traits>
2312template <class _ForwardIterator>
2313_ForwardIterator
2314basic_regex<_CharT, _Traits>::__parse_expression_term(_ForwardIterator __first,
2315 _ForwardIterator __last)
2316{
2317 if (__first != __last && *__first != ']')
2318 {
2319 bool __parsed_one = false;
2320 _ForwardIterator __temp = next(__first);
2321 if (__temp != __last && *__first == '[')
2322 {
2323 if (*__temp == '=')
2324 return __parse_equivalence_class(++__temp, __last);
2325 else if (*__temp == ':')
2326 return __parse_character_class(++__temp, __last);
2327 else if (*__temp == '.')
2328 {
2329 __first = __parse_collating_symbol(++__temp, __last);
2330 __parsed_one = true;
2331 }
2332 }
2333 if (!__parsed_one)
2334 {
2335 __push_char(*__first);
2336 ++__first;
2337 }
2338 if (__first != __last && *__first != ']')
2339 {
2340 __temp = next(__first);
2341 if (__temp != __last && *__first == '-' && *__temp != ']')
2342 {
2343 // parse a range
2344 __first = __temp;
2345 ++__temp;
2346 if (__temp != __last && *__first == '[' && *__temp == '.')
2347 __first = __parse_collating_symbol(++__temp, __last);
2348 else
2349 {
2350 __push_char(*__first);
2351 ++__first;
2352 }
2353 __push_range();
2354 }
2355 }
2356 }
2357 return __first;
2358}
2359
2360template <class _CharT, class _Traits>
2361template <class _ForwardIterator>
2362_ForwardIterator
2363basic_regex<_CharT, _Traits>::__parse_equivalence_class(_ForwardIterator __first,
2364 _ForwardIterator __last)
2365{
2366 // Found [=
2367 // This means =] must exist
2368 value_type _Equal_close[2] = {'=', ']'};
2369 _ForwardIterator __temp = _STD::search(__first, __last, _Equal_close,
2370 _Equal_close+2);
2371 if (__temp == __last)
2372 throw regex_error(regex_constants::error_brack);
2373 // [__first, __temp) contains all text in [= ... =]
2374 typedef typename _Traits::string_type string_type;
2375 string_type __collate_name =
2376 __traits_.lookup_collatename(__first, __temp);
2377 if (__collate_name.empty())
2378 throw regex_error(regex_constants::error_brack);
2379 string_type __equiv_name =
2380 __traits_.transform_primary(__collate_name.begin(),
2381 __collate_name.end());
2382 if (!__equiv_name.empty())
2383 __push_char(__equiv_name);
2384 else
2385 __push_char(__collate_name);
2386 __first = next(__temp, 2);
2387 return __first;
2388}
2389
2390template <class _CharT, class _Traits>
2391template <class _ForwardIterator>
2392_ForwardIterator
2393basic_regex<_CharT, _Traits>::__parse_character_class(_ForwardIterator __first,
2394 _ForwardIterator __last)
2395{
2396 // Found [:
2397 // This means :] must exist
2398 value_type _Colon_close[2] = {':', ']'};
2399 _ForwardIterator __temp = _STD::search(__first, __last, _Colon_close,
2400 _Colon_close+2);
2401 if (__temp == __last)
2402 throw regex_error(regex_constants::error_brack);
2403 // [__first, __temp) contains all text in [: ... :]
2404 typedef typename _Traits::char_class_type char_class_type;
2405 char_class_type __class_type =
2406 __traits_.lookup_classname(__first, __temp, __flags_ & icase);
2407 if (__class_type == 0)
2408 throw regex_error(regex_constants::error_brack);
2409 __push_class_type(__class_type);
2410 __first = next(__temp, 2);
2411 return __first;
2412}
2413
2414template <class _CharT, class _Traits>
2415template <class _ForwardIterator>
2416_ForwardIterator
2417basic_regex<_CharT, _Traits>::__parse_collating_symbol(_ForwardIterator __first,
2418 _ForwardIterator __last)
2419{
2420 // Found [.
2421 // This means .] must exist
2422 value_type _Dot_close[2] = {'.', ']'};
2423 _ForwardIterator __temp = _STD::search(__first, __last, _Dot_close,
2424 _Dot_close+2);
2425 if (__temp == __last)
2426 throw regex_error(regex_constants::error_brack);
2427 // [__first, __temp) contains all text in [. ... .]
2428 typedef typename _Traits::string_type string_type;
2429 string_type __collate_name =
2430 __traits_.lookup_collatename(__first, __temp);
2431 if (__collate_name.empty())
2432 throw regex_error(regex_constants::error_brack);
2433 __push_char(__collate_name);
2434 __first = next(__temp, 2);
2435 return __first;
2436}
2437
2438template <class _CharT, class _Traits>
2439template <class _ForwardIterator>
2440_ForwardIterator
2441basic_regex<_CharT, _Traits>::__parse_DUP_COUNT(_ForwardIterator __first,
2442 _ForwardIterator __last,
2443 int& __c)
2444{
2445 if (__first != __last && '0' <= *__first && *__first <= '9')
2446 {
2447 __c = *__first - '0';
2448 for (++__first; __first != __last && '0' <= *__first && *__first <= '9';
2449 ++__first)
2450 {
2451 __c *= 10;
2452 __c += *__first - '0';
2453 }
2454 }
2455 return __first;
2456}
2457
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002458template <class _CharT, class _Traits>
2459void
2460basic_regex<_CharT, _Traits>::__push_char(value_type __c)
2461{
2462 unique_ptr<__state<_CharT> > __new_end(new __state<_CharT>);
2463 unique_ptr<__transition<_CharT> > __new_transition(
2464 new __match_char<_CharT>(__c, true, __new_end.get()));
2465 __state<_CharT>* __e = __new_end.release();
2466 if (__end_ == nullptr)
2467 {
2468 __start_.reset(new __state<_CharT>);
2469 __end_ = __start_.get();
2470 }
2471 __end_->__add_one(__new_transition.release());
2472 __end_ = __e;
2473}
2474
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00002475template <class _CharT, class _Traits>
2476void
2477basic_regex<_CharT, _Traits>::__push_begin_marked_subexpression()
2478{
2479 unique_ptr<__state<_CharT> > __new_end(new __state<_CharT>);
2480 unique_ptr<__transition<_CharT> > __new_transition(
2481 new __begin_marked_subexpression<_CharT>(++__marked_count_, true, __new_end.get()));
2482 __state<_CharT>* __e = __new_end.release();
2483 if (__end_ == nullptr)
2484 {
2485 __start_.reset(new __state<_CharT>);
2486 __end_ = __start_.get();
2487 }
2488 __end_->__add_one(__new_transition.release());
2489 __end_ = __e;
2490}
2491
2492template <class _CharT, class _Traits>
2493void
2494basic_regex<_CharT, _Traits>::__push_end_marked_subexpression(unsigned __sub)
2495{
2496 unique_ptr<__state<_CharT> > __new_end(new __state<_CharT>);
2497 unique_ptr<__transition<_CharT> > __new_transition(
2498 new __end_marked_subexpression<_CharT>(__sub, true, __new_end.get()));
2499 __state<_CharT>* __e = __new_end.release();
2500 if (__end_ == nullptr)
2501 {
2502 __start_.reset(new __state<_CharT>);
2503 __end_ = __start_.get();
2504 }
2505 __end_->__add_one(__new_transition.release());
2506 __end_ = __e;
2507}
2508
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002509typedef basic_regex<char> regex;
2510typedef basic_regex<wchar_t> wregex;
2511
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002512// sub_match
2513
2514template <class _BidirectionalIterator>
2515class sub_match
2516 : public pair<_BidirectionalIterator, _BidirectionalIterator>
2517{
2518public:
2519 typedef _BidirectionalIterator iterator;
2520 typedef typename iterator_traits<iterator>::value_type value_type;
2521 typedef typename iterator_traits<iterator>::difference_type difference_type;
2522 typedef basic_string<value_type> string_type;
2523
2524 bool matched;
2525
2526 difference_type length() const
2527 {return matched ? _STD::distance(this->first, this->second) : 0;}
2528 string_type str() const
2529 {return matched ? string_type(this->first, this->second) : string_type();}
2530 operator string_type() const
2531 {return str();}
2532
2533 int compare(const sub_match& __s) const
2534 {return str().compare(__s.str());}
2535 int compare(const string_type& __s) const
2536 {return str().compare(__s);}
2537 int compare(const value_type* __s) const
2538 {return str().compare(__s);}
2539};
2540
2541typedef sub_match<const char*> csub_match;
2542typedef sub_match<const wchar_t*> wcsub_match;
2543typedef sub_match<string::const_iterator> ssub_match;
2544typedef sub_match<wstring::const_iterator> wssub_match;
2545
2546template <class _BiIter>
2547inline _LIBCPP_INLINE_VISIBILITY
2548bool
2549operator==(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2550{
2551 return __x.compare(__y) == 0;
2552}
2553
2554template <class _BiIter>
2555inline _LIBCPP_INLINE_VISIBILITY
2556bool
2557operator!=(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2558{
2559 return !(__x == __y);
2560}
2561
2562template <class _BiIter>
2563inline _LIBCPP_INLINE_VISIBILITY
2564bool
2565operator<(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2566{
2567 return __x.compare(__y) < 0;
2568}
2569
2570template <class _BiIter>
2571inline _LIBCPP_INLINE_VISIBILITY
2572bool
2573operator<=(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2574{
2575 return !(__y < __x);
2576}
2577
2578template <class _BiIter>
2579inline _LIBCPP_INLINE_VISIBILITY
2580bool
2581operator>=(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2582{
2583 return !(__x < __y);
2584}
2585
2586template <class _BiIter>
2587inline _LIBCPP_INLINE_VISIBILITY
2588bool
2589operator>(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2590{
2591 return __y < __x;
2592}
2593
2594template <class _BiIter, class _ST, class _SA>
2595inline _LIBCPP_INLINE_VISIBILITY
2596bool
2597operator==(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2598 const sub_match<_BiIter>& __y)
2599{
2600 return __y.compare(__x.c_str()) == 0;
2601}
2602
2603template <class _BiIter, class _ST, class _SA>
2604inline _LIBCPP_INLINE_VISIBILITY
2605bool
2606operator!=(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2607 const sub_match<_BiIter>& __y)
2608{
2609 return !(__x == __y);
2610}
2611
2612template <class _BiIter, class _ST, class _SA>
2613inline _LIBCPP_INLINE_VISIBILITY
2614bool
2615operator<(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2616 const sub_match<_BiIter>& __y)
2617{
2618 return __y.compare(__x.c_str()) > 0;
2619}
2620
2621template <class _BiIter, class _ST, class _SA>
2622inline _LIBCPP_INLINE_VISIBILITY
2623bool
2624operator>(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2625 const sub_match<_BiIter>& __y)
2626{
2627 return __y < __x;
2628}
2629
2630template <class _BiIter, class _ST, class _SA>
2631inline _LIBCPP_INLINE_VISIBILITY
2632bool operator>=(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2633 const sub_match<_BiIter>& __y)
2634{
2635 return !(__x < __y);
2636}
2637
2638template <class _BiIter, class _ST, class _SA>
2639inline _LIBCPP_INLINE_VISIBILITY
2640bool
2641operator<=(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2642 const sub_match<_BiIter>& __y)
2643{
2644 return !(__y < __x);
2645}
2646
2647template <class _BiIter, class _ST, class _SA>
2648inline _LIBCPP_INLINE_VISIBILITY
2649bool
2650operator==(const sub_match<_BiIter>& __x,
2651 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2652{
2653 return __x.compare(__y.c_str()) == 0;
2654}
2655
2656template <class _BiIter, class _ST, class _SA>
2657inline _LIBCPP_INLINE_VISIBILITY
2658bool
2659operator!=(const sub_match<_BiIter>& __x,
2660 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2661{
2662 return !(__x == __y);
2663}
2664
2665template <class _BiIter, class _ST, class _SA>
2666inline _LIBCPP_INLINE_VISIBILITY
2667bool
2668operator<(const sub_match<_BiIter>& __x,
2669 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2670{
2671 return __x.compare(__y.c_str()) < 0;
2672}
2673
2674template <class _BiIter, class _ST, class _SA>
2675inline _LIBCPP_INLINE_VISIBILITY
2676bool operator>(const sub_match<_BiIter>& __x,
2677 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2678{
2679 return __y < __x;
2680}
2681
2682template <class _BiIter, class _ST, class _SA>
2683inline _LIBCPP_INLINE_VISIBILITY
2684bool
2685operator>=(const sub_match<_BiIter>& __x,
2686 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2687{
2688 return !(__x < __y);
2689}
2690
2691template <class _BiIter, class _ST, class _SA>
2692inline _LIBCPP_INLINE_VISIBILITY
2693bool
2694operator<=(const sub_match<_BiIter>& __x,
2695 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2696{
2697 return !(__y < __x);
2698}
2699
2700template <class _BiIter>
2701inline _LIBCPP_INLINE_VISIBILITY
2702bool
2703operator==(typename iterator_traits<_BiIter>::value_type const* __x,
2704 const sub_match<_BiIter>& __y)
2705{
2706 return __y.compare(__x) == 0;
2707}
2708
2709template <class _BiIter>
2710inline _LIBCPP_INLINE_VISIBILITY
2711bool
2712operator!=(typename iterator_traits<_BiIter>::value_type const* __x,
2713 const sub_match<_BiIter>& __y)
2714{
2715 return !(__x == __y);
2716}
2717
2718template <class _BiIter>
2719inline _LIBCPP_INLINE_VISIBILITY
2720bool
2721operator<(typename iterator_traits<_BiIter>::value_type const* __x,
2722 const sub_match<_BiIter>& __y)
2723{
2724 return __y.compare(__x) > 0;
2725}
2726
2727template <class _BiIter>
2728inline _LIBCPP_INLINE_VISIBILITY
2729bool
2730operator>(typename iterator_traits<_BiIter>::value_type const* __x,
2731 const sub_match<_BiIter>& __y)
2732{
2733 return __y < __x;
2734}
2735
2736template <class _BiIter>
2737inline _LIBCPP_INLINE_VISIBILITY
2738bool
2739operator>=(typename iterator_traits<_BiIter>::value_type const* __x,
2740 const sub_match<_BiIter>& __y)
2741{
2742 return !(__x < __y);
2743}
2744
2745template <class _BiIter>
2746inline _LIBCPP_INLINE_VISIBILITY
2747bool
2748operator<=(typename iterator_traits<_BiIter>::value_type const* __x,
2749 const sub_match<_BiIter>& __y)
2750{
2751 return !(__y < __x);
2752}
2753
2754template <class _BiIter>
2755inline _LIBCPP_INLINE_VISIBILITY
2756bool
2757operator==(const sub_match<_BiIter>& __x,
2758 typename iterator_traits<_BiIter>::value_type const* __y)
2759{
2760 return __x.compare(__y) == 0;
2761}
2762
2763template <class _BiIter>
2764inline _LIBCPP_INLINE_VISIBILITY
2765bool
2766operator!=(const sub_match<_BiIter>& __x,
2767 typename iterator_traits<_BiIter>::value_type const* __y)
2768{
2769 return !(__x == __y);
2770}
2771
2772template <class _BiIter>
2773inline _LIBCPP_INLINE_VISIBILITY
2774bool
2775operator<(const sub_match<_BiIter>& __x,
2776 typename iterator_traits<_BiIter>::value_type const* __y)
2777{
2778 return __x.compare(__y) < 0;
2779}
2780
2781template <class _BiIter>
2782inline _LIBCPP_INLINE_VISIBILITY
2783bool
2784operator>(const sub_match<_BiIter>& __x,
2785 typename iterator_traits<_BiIter>::value_type const* __y)
2786{
2787 return __y < __x;
2788}
2789
2790template <class _BiIter>
2791inline _LIBCPP_INLINE_VISIBILITY
2792bool
2793operator>=(const sub_match<_BiIter>& __x,
2794 typename iterator_traits<_BiIter>::value_type const* __y)
2795{
2796 return !(__x < __y);
2797}
2798
2799template <class _BiIter>
2800inline _LIBCPP_INLINE_VISIBILITY
2801bool
2802operator<=(const sub_match<_BiIter>& __x,
2803 typename iterator_traits<_BiIter>::value_type const* __y)
2804{
2805 return !(__y < __x);
2806}
2807
2808template <class _BiIter>
2809inline _LIBCPP_INLINE_VISIBILITY
2810bool
2811operator==(typename iterator_traits<_BiIter>::value_type const& __x,
2812 const sub_match<_BiIter>& __y)
2813{
2814 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2815 return __y.compare(string_type(1, __x)) == 0;
2816}
2817
2818template <class _BiIter>
2819inline _LIBCPP_INLINE_VISIBILITY
2820bool
2821operator!=(typename iterator_traits<_BiIter>::value_type const& __x,
2822 const sub_match<_BiIter>& __y)
2823{
2824 return !(__x == __y);
2825}
2826
2827template <class _BiIter>
2828inline _LIBCPP_INLINE_VISIBILITY
2829bool
2830operator<(typename iterator_traits<_BiIter>::value_type const& __x,
2831 const sub_match<_BiIter>& __y)
2832{
2833 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2834 return __y.compare(string_type(1, __x)) > 0;
2835}
2836
2837template <class _BiIter>
2838inline _LIBCPP_INLINE_VISIBILITY
2839bool
2840operator>(typename iterator_traits<_BiIter>::value_type const& __x,
2841 const sub_match<_BiIter>& __y)
2842{
2843 return __y < __x;
2844}
2845
2846template <class _BiIter>
2847inline _LIBCPP_INLINE_VISIBILITY
2848bool
2849operator>=(typename iterator_traits<_BiIter>::value_type const& __x,
2850 const sub_match<_BiIter>& __y)
2851{
2852 return !(__x < __y);
2853}
2854
2855template <class _BiIter>
2856inline _LIBCPP_INLINE_VISIBILITY
2857bool
2858operator<=(typename iterator_traits<_BiIter>::value_type const& __x,
2859 const sub_match<_BiIter>& __y)
2860{
2861 return !(__y < __x);
2862}
2863
2864template <class _BiIter>
2865inline _LIBCPP_INLINE_VISIBILITY
2866bool
2867operator==(const sub_match<_BiIter>& __x,
2868 typename iterator_traits<_BiIter>::value_type const& __y)
2869{
2870 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2871 return __x.compare(string_type(1, __y)) == 0;
2872}
2873
2874template <class _BiIter>
2875inline _LIBCPP_INLINE_VISIBILITY
2876bool
2877operator!=(const sub_match<_BiIter>& __x,
2878 typename iterator_traits<_BiIter>::value_type const& __y)
2879{
2880 return !(__x == __y);
2881}
2882
2883template <class _BiIter>
2884inline _LIBCPP_INLINE_VISIBILITY
2885bool
2886operator<(const sub_match<_BiIter>& __x,
2887 typename iterator_traits<_BiIter>::value_type const& __y)
2888{
2889 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2890 return __x.compare(string_type(1, __y)) < 0;
2891}
2892
2893template <class _BiIter>
2894inline _LIBCPP_INLINE_VISIBILITY
2895bool
2896operator>(const sub_match<_BiIter>& __x,
2897 typename iterator_traits<_BiIter>::value_type const& __y)
2898{
2899 return __y < __x;
2900}
2901
2902template <class _BiIter>
2903inline _LIBCPP_INLINE_VISIBILITY
2904bool
2905operator>=(const sub_match<_BiIter>& __x,
2906 typename iterator_traits<_BiIter>::value_type const& __y)
2907{
2908 return !(__x < __y);
2909}
2910
2911template <class _BiIter>
2912inline _LIBCPP_INLINE_VISIBILITY
2913bool
2914operator<=(const sub_match<_BiIter>& __x,
2915 typename iterator_traits<_BiIter>::value_type const& __y)
2916{
2917 return !(__y < __x);
2918}
2919
2920template <class _CharT, class _ST, class _BiIter>
2921inline _LIBCPP_INLINE_VISIBILITY
2922basic_ostream<_CharT, _ST>&
2923operator<<(basic_ostream<_CharT, _ST>& __os, const sub_match<_BiIter>& __m)
2924{
2925 return __os << __m.str();
2926}
2927
Howard Hinnant7e9d84b2010-06-30 00:21:42 +00002928template <class _BidirectionalIterator,
2929 class _Allocator = allocator<sub_match<_BidirectionalIterator> > >
2930class match_results
2931{
2932public:
2933 typedef _Allocator allocator_type;
2934 typedef sub_match<_BidirectionalIterator> value_type;
2935private:
2936 typedef vector<value_type, allocator_type> __container_type;
2937
2938 __container_type __matches_;
2939 value_type __unmatched_;
2940 value_type __prefix_;
2941 value_type __suffix_;
2942public:
2943 typedef const value_type& const_reference;
2944 typedef const_reference reference;
2945 typedef typename __container_type::const_iterator const_iterator;
2946 typedef const_iterator iterator;
2947 typedef typename iterator_traits<_BidirectionalIterator>::difference_type difference_type;
2948 typedef typename allocator_traits<allocator_type>::size_type size_type;
2949 typedef typename iterator_traits<_BidirectionalIterator>::value_type char_type;
2950 typedef basic_string<char_type> string_type;
2951
2952 // construct/copy/destroy:
2953 explicit match_results(const allocator_type& __a = allocator_type());
2954// match_results(const match_results&) = default;
2955// match_results& operator=(const match_results&) = default;
2956#ifdef _LIBCPP_MOVE
2957// match_results(match_results&& __m) = default;
2958// match_results& operator=(match_results&& __m) = default;
2959#endif
2960// ~match_results() = default;
2961
2962 // size:
2963 size_type size() const {return __matches_.size();}
2964 size_type max_size() const {return __matches_.max_size();}
2965 bool empty() const {return size() == 0;}
2966
2967 // element access:
2968 difference_type length(size_type __sub = 0) const
2969 {return (*this)[__sub].length();}
2970 difference_type position(size_type __sub = 0) const
2971 {return _STD::distance(__prefix_.first, (*this)[__sub].first);}
2972 string_type str(size_type __sub = 0) const
2973 {return (*this)[__sub].str();}
2974 const_reference operator[](size_type __n) const
2975 {return __n < __matches_.size() ? __matches_[__n] : __unmatched_;}
2976
2977 const_reference prefix() const {return __prefix_;}
2978 const_reference suffix() const {return __suffix_;}
2979
2980 const_iterator begin() const {return empty() ? __matches_.end() : __matches_.begin() + 1;}
2981 const_iterator end() const {return __matches_.end();}
2982 const_iterator cbegin() const {return empty() ? __matches_.end() : __matches_.begin() + 1;}
2983 const_iterator cend() const {return __matches_.end();}
2984
2985 // format:
2986 template <class _OutputIter>
2987 _OutputIter
2988 format(_OutputIter __out, const char_type* __fmt_first,
2989 const char_type* __fmt_last,
2990 regex_constants::match_flag_type __flags = regex_constants::format_default) const;
2991 template <class _OutputIter, class _ST, class _SA>
2992 _OutputIter
2993 format(_OutputIter __out, const basic_string<char_type, _ST, _SA>& __fmt,
2994 regex_constants::match_flag_type __flags = regex_constants::format_default) const;
2995 template <class _ST, class _SA>
2996 basic_string<char_type, _ST, _SA>
2997 format(const basic_string<char_type, _ST, _SA>& __fmt,
2998 regex_constants::match_flag_type __flags = regex_constants::format_default) const;
2999 string_type
3000 format(const char_type* __fmt,
3001 regex_constants::match_flag_type __flags = regex_constants::format_default) const;
3002
3003 // allocator:
3004 allocator_type get_allocator() const {return __matches_.get_allocator();}
3005
3006 // swap:
3007 void swap(match_results& __m);
3008
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003009private:
3010 void __init(unsigned __s,
3011 _BidirectionalIterator __f, _BidirectionalIterator __l);
3012
3013 template <class, class> friend class basic_regex;
3014
Howard Hinnant7e9d84b2010-06-30 00:21:42 +00003015 template <class _B, class _A, class _C, class _T>
3016 friend
3017 bool
3018 regex_match(_B, _B, match_results<_B, _A>&, const basic_regex<_C, _T>&,
3019 regex_constants::match_flag_type);
3020};
3021
3022template <class _BidirectionalIterator, class _Allocator>
3023match_results<_BidirectionalIterator, _Allocator>::match_results(
3024 const allocator_type& __a)
3025 : __matches_(__a),
3026 __unmatched_(),
3027 __prefix_(),
3028 __suffix_()
3029{
3030}
3031
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003032template <class _BidirectionalIterator, class _Allocator>
3033void
3034match_results<_BidirectionalIterator, _Allocator>::__init(unsigned __s,
3035 _BidirectionalIterator __f, _BidirectionalIterator __l)
3036{
3037 __matches_.resize(__s);
3038 for (unsigned __i = 0; __i < __s; ++__i)
3039 {
3040 __matches_[__i].first = __l;
3041 __matches_[__i].second = __l;
3042 __matches_[__i].matched = false;
3043 }
3044 __unmatched_.first = __l;
3045 __unmatched_.second = __l;
3046 __unmatched_.matched = false;
3047 __prefix_.first = __f;
3048 __prefix_.second = __f;
3049 __prefix_.matched = false;
3050 __suffix_.first = __l;
3051 __suffix_.second = __l;
3052 __suffix_.matched = false;
3053}
3054
Howard Hinnant7e9d84b2010-06-30 00:21:42 +00003055typedef match_results<const char*> cmatch;
3056typedef match_results<const wchar_t*> wcmatch;
3057typedef match_results<string::const_iterator> smatch;
3058typedef match_results<wstring::const_iterator> wsmatch;
3059
3060template <class _BidirectionalIterator, class _Allocator>
3061 bool
3062 operator==(const match_results<_BidirectionalIterator, _Allocator>& __x,
3063 const match_results<_BidirectionalIterator, _Allocator>& __y);
3064
3065template <class _BidirectionalIterator, class _Allocator>
3066 bool
3067 operator!=(const match_results<_BidirectionalIterator, _Allocator>& __x,
3068 const match_results<_BidirectionalIterator, _Allocator>& __y);
3069
3070template <class _BidirectionalIterator, class _Allocator>
3071 void
3072 swap(match_results<_BidirectionalIterator, _Allocator>& __x,
3073 match_results<_BidirectionalIterator, _Allocator>& __y);
3074
3075// regex_search
3076
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003077template <class _CharT, class _Traits>
3078template <class _BidirectionalIterator, class _Allocator>
3079bool
3080basic_regex<_CharT, _Traits>::__search(
3081 _BidirectionalIterator __first, _BidirectionalIterator __last,
3082 match_results<_BidirectionalIterator, _Allocator>& __m,
3083 regex_constants::match_flag_type __flags) const
3084{
3085 bool __r = false;
3086 if (__start_)
3087 {
3088 __m.__init(1 + mark_count(), __first, __last);
3089 for (; __first != __last; ++__first)
3090 {
3091 __start_->__reset_state();
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00003092 unsigned __begin_sub = 0;
3093 unsigned __end_sub = 0;
3094 bool __consume;
3095 __state<_CharT>* __st = __start_->__test(*__first, __consume,
3096 __begin_sub, __end_sub);
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003097 if (__st)
3098 {
3099 _BidirectionalIterator& __f = __m.__matches_[0].first;
3100 _BidirectionalIterator& __l = __m.__matches_[0].second;
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003101 __f = __l = __first;
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00003102 if (__begin_sub != 0)
3103 __m.__matches_[__begin_sub].first = __l;
3104 if (__end_sub != 0)
3105 {
3106 __m.__matches_[__end_sub].second = __l;
3107 __m.__matches_[__end_sub].matched = true;
3108 }
3109 if (__consume)
3110 ++__l;
3111 while (__l != __last && __st != __end_)
3112 {
3113 __begin_sub = 0;
3114 __end_sub = 0;
3115 __st = __st->__test(*__l, __consume, __begin_sub, __end_sub);
3116 if (__st == nullptr)
3117 break;
3118 if (__begin_sub != 0)
3119 __m.__matches_[__begin_sub].first = __l;
3120 if (__end_sub != 0)
3121 {
3122 __m.__matches_[__end_sub].second = __l;
3123 __m.__matches_[__end_sub].matched = true;
3124 }
3125 if (__consume)
3126 ++__l;
3127 }
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003128 if (__st == __end_)
3129 {
3130 __r = __m.__matches_[0].matched = true;
3131 __m.__prefix_.second = __first;
3132 __m.__prefix_.matched = __m.__prefix_.first != __m.__prefix_.second;
3133 __m.__suffix_.first = __l;
3134 __m.__suffix_.matched = __m.__suffix_.first != __m.__suffix_.second;
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00003135 break;
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003136 }
Howard Hinnant0dca5fc2010-06-30 20:30:19 +00003137 __m.__matches_.assign(__m.__matches_.size(), __m.__unmatched_);
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003138 }
3139 if (__flags & regex_constants::match_continuous)
3140 break;
3141 }
3142 }
3143 if (!__r)
3144 __m.__matches_.clear();
3145 return __r;
3146}
3147
Howard Hinnant7e9d84b2010-06-30 00:21:42 +00003148template <class _BidirectionalIterator, class _Allocator, class _CharT, class _Traits>
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003149inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7e9d84b2010-06-30 00:21:42 +00003150bool
3151regex_search(_BidirectionalIterator __first, _BidirectionalIterator __last,
3152 match_results<_BidirectionalIterator, _Allocator>& __m,
3153 const basic_regex<_CharT, _Traits>& __e,
Howard Hinnant9b80f2b2010-06-30 17:22:19 +00003154 regex_constants::match_flag_type __flags = regex_constants::match_default)
3155{
3156 return __e.__search(__first, __last, __m, __flags);
3157}
Howard Hinnant7e9d84b2010-06-30 00:21:42 +00003158
3159template <class _BidirectionalIterator, class _CharT, class _Traits>
3160inline _LIBCPP_INLINE_VISIBILITY
3161bool
3162regex_search(_BidirectionalIterator __first, _BidirectionalIterator __last,
3163 const basic_regex<_CharT, _Traits>& __e,
3164 regex_constants::match_flag_type __flags = regex_constants::match_default)
3165{
3166 match_results<_BidirectionalIterator> __m;
3167 return _STD::regex_search(__first, __last, __m, __e, __flags);
3168}
3169
3170template <class _CharT, class _Allocator, class _Traits>
3171inline _LIBCPP_INLINE_VISIBILITY
3172bool
3173regex_search(const _CharT* __str, match_results<const _CharT*, _Allocator>& __m,
3174 const basic_regex<_CharT, _Traits>& __e,
3175 regex_constants::match_flag_type __flags = regex_constants::match_default)
3176{
3177 return _STD::regex_search(__str, __str + _Traits::length(__str), __m, __e, __flags);
3178}
3179
3180template <class _CharT, class _Traits>
3181inline _LIBCPP_INLINE_VISIBILITY
3182bool
3183regex_search(const _CharT* __str, const basic_regex<_CharT, _Traits>& __e,
3184 regex_constants::match_flag_type __flags = regex_constants::match_default)
3185{
3186 return _STD::regex_search(__str, __str + _Traits::length(__str), __e, __flags);
3187}
3188
3189template <class _ST, class _SA, class _CharT, class _Traits>
3190inline _LIBCPP_INLINE_VISIBILITY
3191bool
3192regex_search(const basic_string<_CharT, _ST, _SA>& __s,
3193 const basic_regex<_CharT, _Traits>& __e,
3194 regex_constants::match_flag_type __flags = regex_constants::match_default)
3195{
3196 return _STD::regex_search(__s.begin(), __s.end(), __e, __flags);
3197}
3198
3199template <class _ST, class _SA, class _Allocator, class _CharT, class _Traits>
3200inline _LIBCPP_INLINE_VISIBILITY
3201bool
3202regex_search(const basic_string<_CharT, _ST, _SA>& __s,
3203 match_results<typename basic_string<_CharT, _ST, _SA>::const_iterator, _Allocator>& __m,
3204 const basic_regex<_CharT, _Traits>& __e,
3205 regex_constants::match_flag_type __flags = regex_constants::match_default)
3206{
3207 return _STD::regex_search(__s.begin(), __s.end(), __m, __e, __flags);
3208}
3209
3210// regex_match
3211
3212template <class _BidirectionalIterator, class _Allocator, class _CharT, class _Traits>
3213bool
3214regex_match(_BidirectionalIterator __first, _BidirectionalIterator __last,
3215 match_results<_BidirectionalIterator, _Allocator>& __m,
3216 const basic_regex<_CharT, _Traits>& __e,
3217 regex_constants::match_flag_type __flags = regex_constants::match_default)
3218{
3219 bool __r = _STD::regex_search(__first, __last, __m, __e,
3220 __flags | regex_constants::match_continuous);
3221 if (__r)
3222 {
3223 __r = !__m.suffix().matched;
3224 if (!__r)
3225 __m.__matches_.clear();
3226 }
3227 return __r;
3228}
3229
3230template <class _BidirectionalIterator, class _CharT, class _Traits>
3231inline _LIBCPP_INLINE_VISIBILITY
3232bool
3233regex_match(_BidirectionalIterator __first, _BidirectionalIterator __last,
3234 const basic_regex<_CharT, _Traits>& __e,
3235 regex_constants::match_flag_type __flags = regex_constants::match_default)
3236{
3237 match_results<_BidirectionalIterator> __m;
3238 return _STD::regex_match(__first, __last, __m, __e, __flags);
3239}
3240
3241template <class _CharT, class _Allocator, class _Traits>
3242inline _LIBCPP_INLINE_VISIBILITY
3243bool
3244regex_match(const _CharT* __str, match_results<const _CharT*, _Allocator>& __m,
3245 const basic_regex<_CharT, _Traits>& __e,
3246 regex_constants::match_flag_type __flags = regex_constants::match_default)
3247{
3248 return _STD::regex_match(__str, __str + _Traits::length(__str), __m, __e, __flags);
3249}
3250
3251template <class _ST, class _SA, class _Allocator, class _CharT, class _Traits>
3252inline _LIBCPP_INLINE_VISIBILITY
3253bool
3254regex_match(const basic_string<_CharT, _ST, _SA>& __s,
3255 match_results<typename basic_string<_CharT, _ST, _SA>::const_iterator, _Allocator>& __m,
3256 const basic_regex<_CharT, _Traits>& __e,
3257 regex_constants::match_flag_type __flags = regex_constants::match_default)
3258{
3259 return _STD::regex_match(__s.begin(), __s.end(), __m, __e, __flags);
3260}
3261
3262template <class _CharT, class _Traits>
3263inline _LIBCPP_INLINE_VISIBILITY
3264bool
3265regex_match(const _CharT* __str, const basic_regex<_CharT, _Traits>& __e,
3266 regex_constants::match_flag_type __flags = regex_constants::match_default)
3267{
3268 return _STD::regex_match(__str, __str + _Traits::length(__str), __e, __flags);
3269}
3270
3271template <class _ST, class _SA, class _CharT, class _Traits>
3272inline _LIBCPP_INLINE_VISIBILITY
3273bool
3274regex_match(const basic_string<_CharT, _ST, _SA>& __s,
3275 const basic_regex<_CharT, _Traits>& __e,
3276 regex_constants::match_flag_type __flags = regex_constants::match_default)
3277{
3278 return _STD::regex_match(__s.begin(), __s.end(), __e, __flags);
3279}
3280
Howard Hinnant3257c982010-06-17 00:34:59 +00003281_LIBCPP_END_NAMESPACE_STD
3282
3283#endif // _LIBCPP_REGEX