blob: 417dec0085f1cbe1e410a09476aca8611016e569 [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 Hinnant3257c982010-06-17 00:34:59 +0000727
728#pragma GCC system_header
729
730_LIBCPP_BEGIN_NAMESPACE_STD
731
732namespace regex_constants
733{
734
735// syntax_option_type
736
737enum syntax_option_type
738{
739 icase = 1 << 0,
740 nosubs = 1 << 1,
741 optimize = 1 << 2,
742 collate = 1 << 3,
743 ECMAScript = 1 << 4,
744 basic = 1 << 5,
745 extended = 1 << 6,
746 awk = 1 << 7,
747 grep = 1 << 8,
748 egrep = 1 << 9
749};
750
751inline
752/*constexpr*/
753syntax_option_type
754operator~(syntax_option_type __x)
755{
756 return syntax_option_type(~int(__x));
757}
758
759inline
760/*constexpr*/
761syntax_option_type
762operator&(syntax_option_type __x, syntax_option_type __y)
763{
764 return syntax_option_type(int(__x) & int(__y));
765}
766
767inline
768/*constexpr*/
769syntax_option_type
770operator|(syntax_option_type __x, syntax_option_type __y)
771{
772 return syntax_option_type(int(__x) | int(__y));
773}
774
775inline
776/*constexpr*/
777syntax_option_type
778operator^(syntax_option_type __x, syntax_option_type __y)
779{
780 return syntax_option_type(int(__x) ^ int(__y));
781}
782
783inline
784/*constexpr*/
785syntax_option_type&
786operator&=(syntax_option_type& __x, syntax_option_type __y)
787{
788 __x = __x & __y;
789 return __x;
790}
791
792inline
793/*constexpr*/
794syntax_option_type&
795operator|=(syntax_option_type& __x, syntax_option_type __y)
796{
797 __x = __x | __y;
798 return __x;
799}
800
801inline
802/*constexpr*/
803syntax_option_type&
804operator^=(syntax_option_type& __x, syntax_option_type __y)
805{
806 __x = __x ^ __y;
807 return __x;
808}
809
810// match_flag_type
811
812enum match_flag_type
813{
814 match_default = 0,
815 match_not_bol = 1 << 0,
816 match_not_eol = 1 << 1,
817 match_not_bow = 1 << 2,
818 match_not_eow = 1 << 3,
819 match_any = 1 << 4,
820 match_not_null = 1 << 5,
821 match_continuous = 1 << 6,
822 match_prev_avail = 1 << 7,
823 format_default = 0,
824 format_sed = 1 << 8,
825 format_no_copy = 1 << 9,
826 format_first_only = 1 << 10
827};
828
829inline
830/*constexpr*/
831match_flag_type
832operator~(match_flag_type __x)
833{
834 return match_flag_type(~int(__x));
835}
836
837inline
838/*constexpr*/
839match_flag_type
840operator&(match_flag_type __x, match_flag_type __y)
841{
842 return match_flag_type(int(__x) & int(__y));
843}
844
845inline
846/*constexpr*/
847match_flag_type
848operator|(match_flag_type __x, match_flag_type __y)
849{
850 return match_flag_type(int(__x) | int(__y));
851}
852
853inline
854/*constexpr*/
855match_flag_type
856operator^(match_flag_type __x, match_flag_type __y)
857{
858 return match_flag_type(int(__x) ^ int(__y));
859}
860
861inline
862/*constexpr*/
863match_flag_type&
864operator&=(match_flag_type& __x, match_flag_type __y)
865{
866 __x = __x & __y;
867 return __x;
868}
869
870inline
871/*constexpr*/
872match_flag_type&
873operator|=(match_flag_type& __x, match_flag_type __y)
874{
875 __x = __x | __y;
876 return __x;
877}
878
879inline
880/*constexpr*/
881match_flag_type&
882operator^=(match_flag_type& __x, match_flag_type __y)
883{
884 __x = __x ^ __y;
885 return __x;
886}
887
888enum error_type
889{
890 error_collate = 1,
891 error_ctype,
892 error_escape,
893 error_backref,
894 error_brack,
895 error_paren,
896 error_brace,
897 error_badbrace,
898 error_range,
899 error_space,
900 error_badrepeat,
901 error_complexity,
Howard Hinnant8c2c18d2010-06-24 21:28:00 +0000902 error_stack,
903 error_temp
Howard Hinnant3257c982010-06-17 00:34:59 +0000904};
905
906} // regex_constants
907
908class _LIBCPP_EXCEPTION_ABI regex_error
909 : public runtime_error
910{
911 regex_constants::error_type __code_;
912public:
913 explicit regex_error(regex_constants::error_type __ecode);
914 virtual ~regex_error() throw();
915 regex_constants::error_type code() const {return __code_;}
916};
917
918template <class _CharT>
919struct regex_traits
920{
921public:
922 typedef _CharT char_type;
923 typedef basic_string<char_type> string_type;
924 typedef locale locale_type;
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000925 typedef ctype_base::mask char_class_type;
Howard Hinnant3257c982010-06-17 00:34:59 +0000926
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000927 static const char_class_type __regex_word = 0x80;
Howard Hinnant3257c982010-06-17 00:34:59 +0000928private:
929 locale __loc_;
930 const ctype<char_type>* __ct_;
931 const collate<char_type>* __col_;
932
933public:
934 regex_traits();
935
936 static size_t length(const char_type* __p)
937 {return char_traits<char_type>::length(__p);}
938 char_type translate(char_type __c) const {return __c;}
939 char_type translate_nocase(char_type __c) const;
940 template <class _ForwardIterator>
941 string_type
942 transform(_ForwardIterator __f, _ForwardIterator __l) const;
943 template <class _ForwardIterator>
944 string_type
945 transform_primary( _ForwardIterator __f, _ForwardIterator __l) const
946 {return __transform_primary(__f, __l, char_type());}
947 template <class _ForwardIterator>
948 string_type
949 lookup_collatename(_ForwardIterator __f, _ForwardIterator __l) const
950 {return __lookup_collatename(__f, __l, char_type());}
951 template <class _ForwardIterator>
952 char_class_type
953 lookup_classname(_ForwardIterator __f, _ForwardIterator __l,
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000954 bool __icase = false) const
955 {return __lookup_classname(__f, __l, __icase, char_type());}
956 bool isctype(char_type __c, char_class_type __m) const;
957 int value(char_type __ch, int __radix) const
958 {return __value(__ch, __radix);}
Howard Hinnant3257c982010-06-17 00:34:59 +0000959 locale_type imbue(locale_type __l);
960 locale_type getloc()const {return __loc_;}
961
962private:
963 void __init();
964
965 template <class _ForwardIterator>
966 string_type
967 __transform_primary(_ForwardIterator __f, _ForwardIterator __l, char) const;
968 template <class _ForwardIterator>
969 string_type
970 __transform_primary(_ForwardIterator __f, _ForwardIterator __l, wchar_t) const;
971
972 template <class _ForwardIterator>
973 string_type
974 __lookup_collatename(_ForwardIterator __f, _ForwardIterator __l, char) const;
975 template <class _ForwardIterator>
976 string_type
977 __lookup_collatename(_ForwardIterator __f, _ForwardIterator __l, wchar_t) const;
Howard Hinnantf409d2f2010-06-21 21:01:43 +0000978
979 template <class _ForwardIterator>
980 char_class_type
981 __lookup_classname(_ForwardIterator __f, _ForwardIterator __l,
982 bool __icase, char) const;
983 template <class _ForwardIterator>
984 char_class_type
985 __lookup_classname(_ForwardIterator __f, _ForwardIterator __l,
986 bool __icase, wchar_t) const;
987
988 static int __value(unsigned char __ch, int __radix);
989 int __value(char __ch, int __radix) const
990 {return __value(static_cast<unsigned char>(__ch), __radix);}
991 int __value(wchar_t __ch, int __radix) const;
Howard Hinnant3257c982010-06-17 00:34:59 +0000992};
993
994template <class _CharT>
995regex_traits<_CharT>::regex_traits()
996{
997 __init();
998}
999
1000template <class _CharT>
1001typename regex_traits<_CharT>::char_type
1002regex_traits<_CharT>::translate_nocase(char_type __c) const
1003{
1004 return __ct_->tolower(__c);
1005}
1006
1007template <class _CharT>
1008template <class _ForwardIterator>
1009typename regex_traits<_CharT>::string_type
1010regex_traits<_CharT>::transform(_ForwardIterator __f, _ForwardIterator __l) const
1011{
1012 string_type __s(__f, __l);
1013 return __col_->transform(__s.data(), __s.data() + __s.size());
1014}
1015
1016template <class _CharT>
1017void
1018regex_traits<_CharT>::__init()
1019{
1020 __ct_ = &use_facet<ctype<char_type> >(__loc_);
1021 __col_ = &use_facet<collate<char_type> >(__loc_);
1022}
1023
1024template <class _CharT>
1025typename regex_traits<_CharT>::locale_type
1026regex_traits<_CharT>::imbue(locale_type __l)
1027{
1028 locale __r = __loc_;
1029 __loc_ = __l;
1030 __init();
1031 return __r;
1032}
1033
1034// transform_primary is very FreeBSD-specific
1035
1036template <class _CharT>
1037template <class _ForwardIterator>
1038typename regex_traits<_CharT>::string_type
1039regex_traits<_CharT>::__transform_primary(_ForwardIterator __f,
1040 _ForwardIterator __l, char) const
1041{
1042 const string_type __s(__f, __l);
1043 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size());
1044 switch (__d.size())
1045 {
1046 case 1:
1047 break;
1048 case 12:
1049 __d[11] = __d[3];
1050 break;
1051 default:
1052 __d.clear();
1053 break;
1054 }
1055 return __d;
1056}
1057
1058template <class _CharT>
1059template <class _ForwardIterator>
1060typename regex_traits<_CharT>::string_type
1061regex_traits<_CharT>::__transform_primary(_ForwardIterator __f,
1062 _ForwardIterator __l, wchar_t) const
1063{
1064 const string_type __s(__f, __l);
1065 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size());
1066 switch (__d.size())
1067 {
1068 case 1:
1069 break;
1070 case 3:
1071 __d[2] = __d[0];
1072 break;
1073 default:
1074 __d.clear();
1075 break;
1076 }
1077 return __d;
1078}
1079
1080// lookup_collatename is very FreeBSD-specific
1081
Howard Hinnantf409d2f2010-06-21 21:01:43 +00001082string __get_collation_name(const char* __s);
Howard Hinnant3257c982010-06-17 00:34:59 +00001083
1084template <class _CharT>
1085template <class _ForwardIterator>
1086typename regex_traits<_CharT>::string_type
1087regex_traits<_CharT>::__lookup_collatename(_ForwardIterator __f,
1088 _ForwardIterator __l, char) const
1089{
1090 string_type __s(__f, __l);
1091 string_type __r;
1092 if (!__s.empty())
1093 {
1094 __r = __get_collation_name(__s.c_str());
1095 if (__r.empty() && __s.size() <= 2)
1096 {
1097 __r = __col_->transform(__s.data(), __s.data() + __s.size());
1098 if (__r.size() == 1 || __r.size() == 12)
1099 __r = __s;
1100 else
1101 __r.clear();
1102 }
1103 }
1104 return __r;
1105}
1106
1107template <class _CharT>
1108template <class _ForwardIterator>
1109typename regex_traits<_CharT>::string_type
1110regex_traits<_CharT>::__lookup_collatename(_ForwardIterator __f,
1111 _ForwardIterator __l, wchar_t) const
1112{
1113 string_type __s(__f, __l);
1114 string __n;
1115 __n.reserve(__s.size());
1116 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end();
1117 __i != __e; ++__i)
1118 {
1119 if (static_cast<unsigned>(*__i) >= 127)
1120 return string_type();
1121 __n.push_back(char(*__i));
1122 }
1123 string_type __r;
1124 if (!__s.empty())
1125 {
1126 __n = __get_collation_name(__n.c_str());
1127 if (!__n.empty())
1128 __r.assign(__n.begin(), __n.end());
1129 else if (__s.size() <= 2)
1130 {
1131 __r = __col_->transform(__s.data(), __s.data() + __s.size());
1132 if (__r.size() == 1 || __r.size() == 3)
1133 __r = __s;
1134 else
1135 __r.clear();
1136 }
1137 }
1138 return __r;
1139}
1140
Howard Hinnantf409d2f2010-06-21 21:01:43 +00001141// lookup_classname
1142
1143ctype_base::mask __get_classname(const char* __s, bool __icase);
1144
1145template <class _CharT>
1146template <class _ForwardIterator>
1147typename regex_traits<_CharT>::char_class_type
1148regex_traits<_CharT>::__lookup_classname(_ForwardIterator __f,
1149 _ForwardIterator __l,
1150 bool __icase, char) const
1151{
1152 string_type __s(__f, __l);
1153 __ct_->tolower(&__s[0], &__s[0] + __s.size());
1154 return __get_classname(__s.c_str(), __icase);
1155}
1156
1157template <class _CharT>
1158template <class _ForwardIterator>
1159typename regex_traits<_CharT>::char_class_type
1160regex_traits<_CharT>::__lookup_classname(_ForwardIterator __f,
1161 _ForwardIterator __l,
1162 bool __icase, wchar_t) const
1163{
1164 string_type __s(__f, __l);
1165 __ct_->tolower(&__s[0], &__s[0] + __s.size());
1166 string __n;
1167 __n.reserve(__s.size());
1168 for (typename string_type::const_iterator __i = __s.begin(), __e = __s.end();
1169 __i != __e; ++__i)
1170 {
1171 if (static_cast<unsigned>(*__i) >= 127)
1172 return char_class_type();
1173 __n.push_back(char(*__i));
1174 }
1175 return __get_classname(__n.c_str(), __icase);
1176}
1177
1178template <class _CharT>
1179bool
1180regex_traits<_CharT>::isctype(char_type __c, char_class_type __m) const
1181{
1182 if (__ct_->is(__m, __c))
1183 return true;
1184 return (__c == '_' && (__m & __regex_word));
1185}
1186
1187template <class _CharT>
1188int
1189regex_traits<_CharT>::__value(unsigned char __ch, int __radix)
1190{
1191 if ((__ch & 0xF8u) == 0x30) // '0' <= __ch && __ch <= '7'
1192 return __ch - '0';
1193 if (__radix != 8)
1194 {
1195 if ((__ch & 0xFEu) == 0x38) // '8' <= __ch && __ch <= '9'
1196 return __ch - '0';
1197 if (__radix == 16)
1198 {
1199 __ch |= 0x20; // tolower
1200 if ('a' <= __ch && __ch <= 'f')
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001201 return __ch - ('a' - 10);
Howard Hinnantf409d2f2010-06-21 21:01:43 +00001202 }
1203 }
1204 return -1;
1205}
1206
1207template <class _CharT>
1208inline
1209int
1210regex_traits<_CharT>::__value(wchar_t __ch, int __radix) const
1211{
1212 return __value(static_cast<unsigned char>(__ct_->narrow(__ch, char_type())), __radix);
1213}
1214
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001215template <class _CharT> class __transition;
1216
1217template <class _CharT>
1218class __state
1219{
1220 typedef __transition<_CharT> __transition;
1221 __transition* __t1_;
1222 __transition* __t2_;
1223 int __state_;
1224 enum
1225 {
1226 __1_not_tried = 0,
1227 __1_succeded = 1,
1228 __1_failed = 2,
1229 __2_not_tried = 0,
1230 __2_succeded = 4,
1231 __2_failed = 8
1232 };
1233
1234 __state(const __state&);
1235 __state& operator=(const __state&);
1236public:
1237 __state()
1238 : __t1_(), __t2_(), __state_() {}
1239 ~__state();
1240
1241 const __state* operator()(_CharT __c);
1242
1243 void __add_one(__transition* __t) {__t1_ = __t;}
1244};
1245
1246template <class _CharT>
1247__state<_CharT>::~__state()
1248{
1249 delete __t1_;
1250 delete __t2_;
1251}
1252
1253template <class _CharT>
1254const __state<_CharT>*
1255__state<_CharT>::operator()(_CharT __c)
1256{
1257 const __state* __r = nullptr;
1258 if ((__state_ & 3) == 0)
1259 {
1260 if (__t1_)
1261 {
1262 __r = (*__t1_)(__c);
1263 if (__r)
1264 __state_ |= __1_succeded;
1265 else
1266 __state_ |= __1_failed;
1267 }
1268 else
1269 __state_ |= __1_failed;
1270 }
1271 else if ((__state_ & 0xC) == 0)
1272 {
1273 if (__t2_)
1274 {
1275 __r = (*__t2_)(__c);
1276 if (__r)
1277 __state_ |= __2_succeded;
1278 else
1279 __state_ |= __2_failed;
1280 }
1281 else
1282 __state_ |= __2_failed;
1283 }
1284 return __r;
1285}
1286
1287template <class _CharT>
1288class __transition
1289{
1290 __transition(const __transition&);
1291 __transition& operator=(const __transition&);
1292
1293 typedef __state<_CharT> __state;
1294 typedef unique_ptr<__state, void(*)(__state*)> __sptr;
1295
1296 static void __delete_state(__state* __p) {delete __p;}
1297 static void __ignore_state(__state*) {}
1298
1299protected:
1300 __sptr __sptr_;
1301public:
1302 __transition(bool __owns, __state* __st)
1303 : __sptr_(__st, __owns ? &__delete_state : &__ignore_state) {}
1304 virtual ~__transition() {}
1305
1306 virtual const __state* operator()(_CharT) const {return __sptr_.get();}
1307};
1308
1309template <class _CharT>
1310class __match_char
1311 : public __transition<_CharT>
1312{
1313 typedef __transition<_CharT> base;
1314 _CharT __c_;
1315public:
1316 __match_char(_CharT __c, bool __owns, __state<_CharT>* __st)
1317 : base(__owns, __st), __c_(__c) {}
1318
1319 virtual const __state<_CharT>* operator()(_CharT __c) const
1320 {return __c == __c_ ? base::__sptr_.get() : nullptr;}
1321};
1322
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001323template <class _CharT, class _Traits = regex_traits<_CharT> >
1324class basic_regex
1325{
1326public:
1327 // types:
1328 typedef _CharT value_type;
1329 typedef regex_constants::syntax_option_type flag_type;
1330 typedef typename _Traits::locale_type locale_type;
1331
1332private:
1333 _Traits __traits_;
1334 flag_type __flags_;
1335 unsigned __marked_count_;
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001336 int __open_count_;
1337 shared_ptr<__state<_CharT> > __start_;
1338 __state<_CharT>* __end_;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001339
1340public:
1341 // constants:
1342 static const/*expr*/ regex_constants::syntax_option_type icase = regex_constants::icase;
1343 static const/*expr*/ regex_constants::syntax_option_type nosubs = regex_constants::nosubs;
1344 static const/*expr*/ regex_constants::syntax_option_type optimize = regex_constants::optimize;
1345 static const/*expr*/ regex_constants::syntax_option_type collate = regex_constants::collate;
1346 static const/*expr*/ regex_constants::syntax_option_type ECMAScript = regex_constants::ECMAScript;
1347 static const/*expr*/ regex_constants::syntax_option_type basic = regex_constants::basic;
1348 static const/*expr*/ regex_constants::syntax_option_type extended = regex_constants::extended;
1349 static const/*expr*/ regex_constants::syntax_option_type awk = regex_constants::awk;
1350 static const/*expr*/ regex_constants::syntax_option_type grep = regex_constants::grep;
1351 static const/*expr*/ regex_constants::syntax_option_type egrep = regex_constants::egrep;
1352
1353 // construct/copy/destroy:
1354 basic_regex();
1355 explicit basic_regex(const value_type* __p, flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001356 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001357 {__parse(__p, __p + __traits_.length(__p));}
1358 basic_regex(const value_type* __p, size_t __len, flag_type __f)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001359 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001360 {__parse(__p, __p + __len);}
1361 basic_regex(const basic_regex&);
1362#ifdef _LIBCPP_MOVE
1363 basic_regex(basic_regex&&);
1364#endif
1365 template <class _ST, class _SA>
1366 explicit basic_regex(const basic_string<value_type, _ST, _SA>& __p,
1367 flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001368 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001369 {__parse(__p.begin(), __p.end());}
1370 template <class _ForwardIterator>
1371 basic_regex(_ForwardIterator __first, _ForwardIterator __last,
1372 flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001373 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001374 {__parse(__first, __last);}
1375 basic_regex(initializer_list<value_type> __il,
1376 flag_type __f = regex_constants::ECMAScript)
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001377 : __flags_(__f), __marked_count_(0), __open_count_(0), __end_(0)
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001378 {__parse(__il.begin(), __il.end());}
1379
1380 ~basic_regex();
1381
1382 basic_regex& operator=(const basic_regex&);
1383#ifdef _LIBCPP_MOVE
1384 basic_regex& operator=(basic_regex&&);
1385#endif
1386 basic_regex& operator=(const value_type* __p);
1387 basic_regex& operator=(initializer_list<value_type> __il);
1388 template <class _ST, class _SA>
1389 basic_regex& operator=(const basic_string<value_type, _ST, _SA>& __p);
1390
1391 // assign:
1392 basic_regex& assign(const basic_regex& __that);
1393#ifdef _LIBCPP_MOVE
1394 basic_regex& assign(basic_regex&& __that);
1395#endif
1396 basic_regex& assign(const value_type* __p, flag_type __f = regex_constants::ECMAScript);
1397 basic_regex& assign(const value_type* __p, size_t __len, flag_type __f);
1398 template <class _ST, class _SA>
1399 basic_regex& assign(const basic_string<value_type, _ST, _SA>& __s,
1400 flag_type __f = regex_constants::ECMAScript);
1401 template <class _InputIterator>
1402 basic_regex& assign(_InputIterator __first, _InputIterator __last,
1403 flag_type __f = regex_constants::ECMAScript);
1404 basic_regex& assign(initializer_list<value_type> __il,
1405 flag_type = regex_constants::ECMAScript);
1406
1407 // const operations:
1408 unsigned mark_count() const {return __marked_count_;}
1409 flag_type flags() const {return __flags_;}
1410
1411 // locale:
1412 locale_type imbue(locale_type __loc) {return __traits_.imbue(__loc);}
1413 locale_type getloc() const {return __traits_.getloc();}
1414
1415 // swap:
1416 void swap(basic_regex&);
1417
1418private:
1419 template <class _ForwardIterator>
1420 void __parse(_ForwardIterator __first, _ForwardIterator __last);
1421 template <class _ForwardIterator>
1422 _ForwardIterator
1423 __parse_basic_reg_exp(_ForwardIterator __first, _ForwardIterator __last);
1424 template <class _ForwardIterator>
1425 _ForwardIterator
1426 __parse_RE_expression(_ForwardIterator __first, _ForwardIterator __last);
1427 template <class _ForwardIterator>
1428 _ForwardIterator
1429 __parse_simple_RE(_ForwardIterator __first, _ForwardIterator __last);
1430 template <class _ForwardIterator>
1431 _ForwardIterator
1432 __parse_nondupl_RE(_ForwardIterator __first, _ForwardIterator __last);
1433 template <class _ForwardIterator>
1434 _ForwardIterator
1435 __parse_one_char_or_coll_elem_RE(_ForwardIterator __first, _ForwardIterator __last);
1436 template <class _ForwardIterator>
1437 _ForwardIterator
1438 __parse_Back_open_paren(_ForwardIterator __first, _ForwardIterator __last);
1439 template <class _ForwardIterator>
1440 _ForwardIterator
1441 __parse_Back_close_paren(_ForwardIterator __first, _ForwardIterator __last);
1442 template <class _ForwardIterator>
1443 _ForwardIterator
1444 __parse_Back_open_brace(_ForwardIterator __first, _ForwardIterator __last);
1445 template <class _ForwardIterator>
1446 _ForwardIterator
1447 __parse_Back_close_brace(_ForwardIterator __first, _ForwardIterator __last);
1448 template <class _ForwardIterator>
1449 _ForwardIterator
1450 __parse_BACKREF(_ForwardIterator __first, _ForwardIterator __last);
1451 template <class _ForwardIterator>
1452 _ForwardIterator
1453 __parse_ORD_CHAR(_ForwardIterator __first, _ForwardIterator __last);
1454 template <class _ForwardIterator>
1455 _ForwardIterator
1456 __parse_QUOTED_CHAR(_ForwardIterator __first, _ForwardIterator __last);
1457 template <class _ForwardIterator>
1458 _ForwardIterator
1459 __parse_RE_dupl_symbol(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnant0de86b62010-06-25 20:56:08 +00001460 template <class _ForwardIterator>
1461 _ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001462 __parse_ERE_dupl_symbol(_ForwardIterator __first, _ForwardIterator __last);
1463 template <class _ForwardIterator>
1464 _ForwardIterator
Howard Hinnant0de86b62010-06-25 20:56:08 +00001465 __parse_bracket_expression(_ForwardIterator __first, _ForwardIterator __last);
1466 template <class _ForwardIterator>
1467 _ForwardIterator
1468 __parse_follow_list(_ForwardIterator __first, _ForwardIterator __last);
1469 template <class _ForwardIterator>
1470 _ForwardIterator
1471 __parse_expression_term(_ForwardIterator __first, _ForwardIterator __last);
1472 template <class _ForwardIterator>
1473 _ForwardIterator
1474 __parse_equivalence_class(_ForwardIterator __first, _ForwardIterator __last);
1475 template <class _ForwardIterator>
1476 _ForwardIterator
1477 __parse_character_class(_ForwardIterator __first, _ForwardIterator __last);
1478 template <class _ForwardIterator>
1479 _ForwardIterator
1480 __parse_collating_symbol(_ForwardIterator __first, _ForwardIterator __last);
1481 template <class _ForwardIterator>
1482 _ForwardIterator
1483 __parse_DUP_COUNT(_ForwardIterator __first, _ForwardIterator __last, int& __c);
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001484 template <class _ForwardIterator>
1485 _ForwardIterator
1486 __parse_extended_reg_exp(_ForwardIterator __first, _ForwardIterator __last);
1487 template <class _ForwardIterator>
1488 _ForwardIterator
1489 __parse_ERE_branch(_ForwardIterator __first, _ForwardIterator __last);
1490 template <class _ForwardIterator>
1491 _ForwardIterator
1492 __parse_ERE_expression(_ForwardIterator __first, _ForwardIterator __last);
1493 template <class _ForwardIterator>
1494 _ForwardIterator
1495 __parse_one_char_or_coll_elem_ERE(_ForwardIterator __first, _ForwardIterator __last);
1496 template <class _ForwardIterator>
1497 _ForwardIterator
1498 __parse_ORD_CHAR_ERE(_ForwardIterator __first, _ForwardIterator __last);
1499 template <class _ForwardIterator>
1500 _ForwardIterator
1501 __parse_QUOTED_CHAR_ERE(_ForwardIterator __first, _ForwardIterator __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001502
Howard Hinnant0de86b62010-06-25 20:56:08 +00001503 void __push_l_anchor() {}
1504 void __push_r_anchor() {}
1505 void __push_match_any() {}
1506 void __push_greedy_inf_repeat(int __min) {}
1507 void __push_exact_repeat(int __count) {}
1508 void __push_repeat(int __min, int __max) {}
1509 void __start_nonmatching_list() {}
1510 void __start_matching_list() {}
1511 void __end_nonmatching_list() {}
1512 void __end_matching_list() {}
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001513 void __push_char(value_type __c);
Howard Hinnant0de86b62010-06-25 20:56:08 +00001514 void __push_char(const typename _Traits::string_type& __c) {}
1515 void __push_range() {}
1516 void __push_class_type(typename _Traits::char_class_type) {}
1517 void __push_back_ref(int __i) {}
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001518 void __push_alternation() {}
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001519};
1520
1521template <class _CharT, class _Traits>
1522inline
1523basic_regex<_CharT, _Traits>::basic_regex()
1524 : __traits_(), __flags_(), __marked_count_(0)
1525{
1526}
1527
1528template <class _CharT, class _Traits>
1529basic_regex<_CharT, _Traits>::~basic_regex()
1530{
1531}
1532
1533template <class _CharT, class _Traits>
1534template <class _ForwardIterator>
1535void
1536basic_regex<_CharT, _Traits>::__parse(_ForwardIterator __first,
1537 _ForwardIterator __last)
1538{
1539 switch (__flags_ & 0x3F0)
1540 {
1541 case ECMAScript:
1542 break;
1543 case basic:
1544 __parse_basic_reg_exp(__first, __last);
1545 break;
1546 case extended:
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001547 __parse_extended_reg_exp(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001548 break;
1549 case awk:
1550 break;
1551 case grep:
1552 break;
1553 case egrep:
1554 break;
1555 default:
1556 throw regex_error(regex_constants::error_temp);
1557 }
1558}
1559
1560template <class _CharT, class _Traits>
1561template <class _ForwardIterator>
1562_ForwardIterator
1563basic_regex<_CharT, _Traits>::__parse_basic_reg_exp(_ForwardIterator __first,
1564 _ForwardIterator __last)
1565{
1566 if (__first != __last)
1567 {
1568 if (*__first == '^')
1569 {
1570 __push_l_anchor();
1571 ++__first;
1572 }
1573 if (__first != __last)
1574 {
1575 __first = __parse_RE_expression(__first, __last);
1576 if (__first != __last)
1577 {
1578 _ForwardIterator __temp = next(__first);
1579 if (__temp == __last && *__first == '$')
1580 {
1581 __push_r_anchor();
1582 ++__first;
1583 }
1584 }
1585 }
1586 if (__first != __last)
1587 throw regex_error(regex_constants::error_temp);
1588 }
1589 return __first;
1590}
1591
1592template <class _CharT, class _Traits>
1593template <class _ForwardIterator>
1594_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001595basic_regex<_CharT, _Traits>::__parse_extended_reg_exp(_ForwardIterator __first,
1596 _ForwardIterator __last)
1597{
1598 while (true)
1599 {
1600 _ForwardIterator __temp = __parse_ERE_branch(__first, __last);
1601 if (__temp == __first)
1602 throw regex_error(regex_constants::error_temp);
1603 __first = __temp;
1604 if (__first == __last)
1605 break;
1606 if (*__first != '|')
1607 throw regex_error(regex_constants::error_temp);
1608 __push_alternation();
1609 ++__first;
1610 }
1611 return __first;
1612}
1613
1614template <class _CharT, class _Traits>
1615template <class _ForwardIterator>
1616_ForwardIterator
1617basic_regex<_CharT, _Traits>::__parse_ERE_branch(_ForwardIterator __first,
1618 _ForwardIterator __last)
1619{
1620 _ForwardIterator __temp = __parse_ERE_expression(__first, __last);
1621 if (__temp == __first)
1622 throw regex_error(regex_constants::error_temp);
1623 do
1624 {
1625 __first = __temp;
1626 __temp = __parse_ERE_expression(__first, __last);
1627 } while (__temp != __first);
1628 return __first;
1629}
1630
1631template <class _CharT, class _Traits>
1632template <class _ForwardIterator>
1633_ForwardIterator
1634basic_regex<_CharT, _Traits>::__parse_ERE_expression(_ForwardIterator __first,
1635 _ForwardIterator __last)
1636{
1637 _ForwardIterator __temp = __parse_one_char_or_coll_elem_ERE(__first, __last);
1638 if (__temp == __first && __temp != __last)
1639 {
1640 switch (*__temp)
1641 {
1642 case '^':
1643 __push_l_anchor();
1644 ++__temp;
1645 break;
1646 case '$':
1647 __push_r_anchor();
1648 ++__temp;
1649 break;
1650 case '(':
1651 ++__marked_count_;
1652 ++__open_count_;
1653 __temp = __parse_extended_reg_exp(++__temp, __last);
1654 if (__temp == __last || *__temp != ')')
1655 throw regex_error(regex_constants::error_paren);
1656 --__open_count_;
1657 ++__temp;
1658 break;
1659 }
1660 }
1661 if (__temp != __first)
1662 __temp = __parse_ERE_dupl_symbol(__temp, __last);
1663 __first = __temp;
1664 return __first;
1665}
1666
1667template <class _CharT, class _Traits>
1668template <class _ForwardIterator>
1669_ForwardIterator
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001670basic_regex<_CharT, _Traits>::__parse_RE_expression(_ForwardIterator __first,
1671 _ForwardIterator __last)
1672{
1673 while (true)
1674 {
1675 _ForwardIterator __temp = __parse_simple_RE(__first, __last);
1676 if (__temp == __first)
1677 break;
1678 __first = __temp;
1679 }
1680 return __first;
1681}
1682
1683template <class _CharT, class _Traits>
1684template <class _ForwardIterator>
1685_ForwardIterator
1686basic_regex<_CharT, _Traits>::__parse_simple_RE(_ForwardIterator __first,
1687 _ForwardIterator __last)
1688{
1689 if (__first != __last)
1690 {
1691 _ForwardIterator __temp = __parse_nondupl_RE(__first, __last);
1692 if (__temp != __first)
1693 {
1694 __first = __temp;
1695 __first = __parse_RE_dupl_symbol(__first, __last);
1696 }
1697 }
1698 return __first;
1699}
1700
1701template <class _CharT, class _Traits>
1702template <class _ForwardIterator>
1703_ForwardIterator
1704basic_regex<_CharT, _Traits>::__parse_nondupl_RE(_ForwardIterator __first,
1705 _ForwardIterator __last)
1706{
1707 _ForwardIterator __temp = __first;
1708 __first = __parse_one_char_or_coll_elem_RE(__first, __last);
1709 if (__temp == __first)
1710 {
1711 __temp = __parse_Back_open_paren(__first, __last);
1712 if (__temp != __first)
1713 {
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001714 ++__marked_count_;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001715 __first = __parse_RE_expression(__temp, __last);
1716 __temp = __parse_Back_close_paren(__first, __last);
1717 if (__temp == __first)
1718 throw regex_error(regex_constants::error_paren);
1719 __first = __temp;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001720 }
1721 else
1722 __first = __parse_BACKREF(__first, __last);
1723 }
1724 return __first;
1725}
1726
1727template <class _CharT, class _Traits>
1728template <class _ForwardIterator>
1729_ForwardIterator
1730basic_regex<_CharT, _Traits>::__parse_one_char_or_coll_elem_RE(
1731 _ForwardIterator __first,
1732 _ForwardIterator __last)
1733{
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001734 _ForwardIterator __temp = __parse_ORD_CHAR(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001735 if (__temp == __first)
1736 {
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001737 __temp = __parse_QUOTED_CHAR(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001738 if (__temp == __first)
1739 {
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001740 if (__temp != __last && *__temp == '.')
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001741 {
1742 __push_match_any();
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001743 ++__temp;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001744 }
1745 else
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001746 __temp = __parse_bracket_expression(__first, __last);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001747 }
1748 }
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001749 __first = __temp;
1750 return __first;
1751}
1752
1753template <class _CharT, class _Traits>
1754template <class _ForwardIterator>
1755_ForwardIterator
1756basic_regex<_CharT, _Traits>::__parse_one_char_or_coll_elem_ERE(
1757 _ForwardIterator __first,
1758 _ForwardIterator __last)
1759{
1760 _ForwardIterator __temp = __parse_ORD_CHAR_ERE(__first, __last);
1761 if (__temp == __first)
1762 {
1763 __temp = __parse_QUOTED_CHAR_ERE(__first, __last);
1764 if (__temp == __first)
1765 {
1766 if (__temp != __last && *__temp == '.')
1767 {
1768 __push_match_any();
1769 ++__temp;
1770 }
1771 else
1772 __temp = __parse_bracket_expression(__first, __last);
1773 }
1774 }
1775 __first = __temp;
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001776 return __first;
1777}
1778
1779template <class _CharT, class _Traits>
1780template <class _ForwardIterator>
1781_ForwardIterator
1782basic_regex<_CharT, _Traits>::__parse_Back_open_paren(_ForwardIterator __first,
1783 _ForwardIterator __last)
1784{
1785 if (__first != __last)
1786 {
1787 _ForwardIterator __temp = next(__first);
1788 if (__temp != __last)
1789 {
1790 if (*__first == '\\' && *__temp == '(')
1791 __first = ++__temp;
1792 }
1793 }
1794 return __first;
1795}
1796
1797template <class _CharT, class _Traits>
1798template <class _ForwardIterator>
1799_ForwardIterator
1800basic_regex<_CharT, _Traits>::__parse_Back_close_paren(_ForwardIterator __first,
1801 _ForwardIterator __last)
1802{
1803 if (__first != __last)
1804 {
1805 _ForwardIterator __temp = next(__first);
1806 if (__temp != __last)
1807 {
1808 if (*__first == '\\' && *__temp == ')')
1809 __first = ++__temp;
1810 }
1811 }
1812 return __first;
1813}
1814
1815template <class _CharT, class _Traits>
1816template <class _ForwardIterator>
1817_ForwardIterator
1818basic_regex<_CharT, _Traits>::__parse_Back_open_brace(_ForwardIterator __first,
1819 _ForwardIterator __last)
1820{
1821 if (__first != __last)
1822 {
1823 _ForwardIterator __temp = next(__first);
1824 if (__temp != __last)
1825 {
1826 if (*__first == '\\' && *__temp == '{')
1827 __first = ++__temp;
1828 }
1829 }
1830 return __first;
1831}
1832
1833template <class _CharT, class _Traits>
1834template <class _ForwardIterator>
1835_ForwardIterator
1836basic_regex<_CharT, _Traits>::__parse_Back_close_brace(_ForwardIterator __first,
1837 _ForwardIterator __last)
1838{
1839 if (__first != __last)
1840 {
1841 _ForwardIterator __temp = next(__first);
1842 if (__temp != __last)
1843 {
1844 if (*__first == '\\' && *__temp == '}')
1845 __first = ++__temp;
1846 }
1847 }
1848 return __first;
1849}
1850
1851template <class _CharT, class _Traits>
1852template <class _ForwardIterator>
1853_ForwardIterator
1854basic_regex<_CharT, _Traits>::__parse_BACKREF(_ForwardIterator __first,
1855 _ForwardIterator __last)
1856{
1857 if (__first != __last)
1858 {
1859 _ForwardIterator __temp = next(__first);
1860 if (__temp != __last)
1861 {
1862 if (*__first == '\\' && '1' <= *__temp && *__temp <= '9')
1863 {
1864 __push_back_ref(*__temp - '0');
1865 __first = ++__temp;
1866 }
1867 }
1868 }
1869 return __first;
1870}
1871
1872template <class _CharT, class _Traits>
1873template <class _ForwardIterator>
1874_ForwardIterator
1875basic_regex<_CharT, _Traits>::__parse_ORD_CHAR(_ForwardIterator __first,
1876 _ForwardIterator __last)
1877{
1878 if (__first != __last)
1879 {
1880 _ForwardIterator __temp = next(__first);
1881 if (__temp == __last && *__first == '$')
1882 return __first;
1883 // Not called inside a bracket
1884 if (*__first == '.' || *__first == '\\' || *__first == '[')
1885 return __first;
Howard Hinnant0de86b62010-06-25 20:56:08 +00001886 __push_char(*__first);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001887 ++__first;
1888 }
1889 return __first;
1890}
1891
1892template <class _CharT, class _Traits>
1893template <class _ForwardIterator>
1894_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001895basic_regex<_CharT, _Traits>::__parse_ORD_CHAR_ERE(_ForwardIterator __first,
1896 _ForwardIterator __last)
1897{
1898 if (__first != __last)
1899 {
1900 switch (*__first)
1901 {
1902 case '^':
1903 case '.':
1904 case '[':
1905 case '$':
1906 case '(':
1907 case '|':
1908 case '*':
1909 case '+':
1910 case '?':
1911 case '{':
1912 case '\\':
1913 break;
1914 case ')':
1915 if (__open_count_ == 0)
1916 {
1917 __push_char(*__first);
1918 ++__first;
1919 }
1920 break;
1921 default:
1922 __push_char(*__first);
1923 ++__first;
1924 break;
1925 }
1926 }
1927 return __first;
1928}
1929
1930template <class _CharT, class _Traits>
1931template <class _ForwardIterator>
1932_ForwardIterator
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001933basic_regex<_CharT, _Traits>::__parse_QUOTED_CHAR(_ForwardIterator __first,
1934 _ForwardIterator __last)
1935{
1936 if (__first != __last)
1937 {
1938 _ForwardIterator __temp = next(__first);
1939 if (__temp != __last)
1940 {
1941 if (*__first == '\\')
1942 {
1943 switch (*__temp)
1944 {
1945 case '^':
1946 case '.':
1947 case '*':
1948 case '[':
1949 case '$':
1950 case '\\':
Howard Hinnant0de86b62010-06-25 20:56:08 +00001951 __push_char(*__temp);
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00001952 __first = ++__temp;
1953 break;
1954 }
1955 }
1956 }
1957 }
1958 return __first;
1959}
1960
1961template <class _CharT, class _Traits>
1962template <class _ForwardIterator>
1963_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00001964basic_regex<_CharT, _Traits>::__parse_QUOTED_CHAR_ERE(_ForwardIterator __first,
1965 _ForwardIterator __last)
1966{
1967 if (__first != __last)
1968 {
1969 _ForwardIterator __temp = next(__first);
1970 if (__temp != __last)
1971 {
1972 if (*__first == '\\')
1973 {
1974 switch (*__temp)
1975 {
1976 case '^':
1977 case '.':
1978 case '*':
1979 case '[':
1980 case '$':
1981 case '\\':
1982 case '(':
1983 case ')':
1984 case '|':
1985 case '+':
1986 case '?':
1987 case '{':
1988 __push_char(*__temp);
1989 __first = ++__temp;
1990 break;
1991 }
1992 }
1993 }
1994 }
1995 return __first;
1996}
1997
1998template <class _CharT, class _Traits>
1999template <class _ForwardIterator>
2000_ForwardIterator
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002001basic_regex<_CharT, _Traits>::__parse_RE_dupl_symbol(_ForwardIterator __first,
2002 _ForwardIterator __last)
2003{
2004 if (__first != __last)
2005 {
Howard Hinnant0de86b62010-06-25 20:56:08 +00002006 if (*__first == '*')
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002007 {
2008 __push_greedy_inf_repeat(0);
2009 ++__first;
2010 }
2011 else
2012 {
2013 _ForwardIterator __temp = __parse_Back_open_brace(__first, __last);
2014 if (__temp != __first)
2015 {
2016 int __min = 0;
2017 __first = __temp;
2018 __temp = __parse_DUP_COUNT(__first, __last, __min);
2019 if (__temp == __first)
2020 throw regex_error(regex_constants::error_badbrace);
2021 __first = __temp;
2022 if (__first == __last)
2023 throw regex_error(regex_constants::error_brace);
2024 if (*__first != ',')
2025 {
2026 __temp = __parse_Back_close_brace(__first, __last);
2027 if (__temp == __first)
2028 throw regex_error(regex_constants::error_brace);
2029 __push_exact_repeat(__min);
2030 __first = __temp;
2031 }
2032 else
2033 {
2034 ++__first; // consume ','
2035 int __max = -1;
2036 __first = __parse_DUP_COUNT(__first, __last, __max);
2037 __temp = __parse_Back_close_brace(__first, __last);
2038 if (__temp == __first)
2039 throw regex_error(regex_constants::error_brace);
2040 if (__max == -1)
2041 __push_greedy_inf_repeat(__min);
2042 else
2043 {
2044 if (__max < __min)
2045 throw regex_error(regex_constants::error_badbrace);
2046 __push_repeat(__min, __max);
2047 }
2048 __first = __temp;
2049 }
2050 }
2051 }
2052 }
2053 return __first;
2054}
2055
Howard Hinnant0de86b62010-06-25 20:56:08 +00002056template <class _CharT, class _Traits>
2057template <class _ForwardIterator>
2058_ForwardIterator
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002059basic_regex<_CharT, _Traits>::__parse_ERE_dupl_symbol(_ForwardIterator __first,
2060 _ForwardIterator __last)
2061{
2062 if (__first != __last)
2063 {
2064 switch (*__first)
2065 {
2066 case '*':
2067 __push_greedy_inf_repeat(0);
2068 ++__first;
2069 break;
2070 case '+':
2071 __push_greedy_inf_repeat(1);
2072 ++__first;
2073 break;
2074 case '?':
2075 __push_repeat(0, 1);
2076 ++__first;
2077 break;
2078 case '{':
2079 {
2080 int __min;
2081 _ForwardIterator __temp = __parse_DUP_COUNT(__first, __last, __min);
2082 if (__temp == __first)
2083 throw regex_error(regex_constants::error_badbrace);
2084 __first = __temp;
2085 if (__first == __last)
2086 throw regex_error(regex_constants::error_brace);
2087 switch (*__first)
2088 {
2089 case '}':
2090 __push_exact_repeat(__min);
2091 ++__first;
2092 break;
2093 case ',':
2094 if (++__first == __last)
2095 throw regex_error(regex_constants::error_badbrace);
2096 if (*__first == '}')
2097 {
2098 __push_greedy_inf_repeat(__min);
2099 ++__first;
2100 }
2101 else
2102 {
2103 int __max;
2104 __temp = __parse_DUP_COUNT(__first, __last, __max);
2105 if (__temp == __first)
2106 throw regex_error(regex_constants::error_brace);
2107 __first = __temp;
2108 if (__first == __last || *__first != '}')
2109 throw regex_error(regex_constants::error_brace);
2110 ++__first;
2111 if (__max < __min)
2112 throw regex_error(regex_constants::error_badbrace);
2113 __push_repeat(__min, __max);
2114 }
2115 default:
2116 throw regex_error(regex_constants::error_badbrace);
2117 }
2118 }
2119 break;
2120 }
2121 }
2122 return __first;
2123}
2124
2125template <class _CharT, class _Traits>
2126template <class _ForwardIterator>
2127_ForwardIterator
Howard Hinnant0de86b62010-06-25 20:56:08 +00002128basic_regex<_CharT, _Traits>::__parse_bracket_expression(_ForwardIterator __first,
2129 _ForwardIterator __last)
2130{
2131 if (__first != __last && *__first == '[')
2132 {
2133 if (++__first == __last)
2134 throw regex_error(regex_constants::error_brack);
2135 bool __non_matching = false;
2136 if (*__first == '^')
2137 {
2138 ++__first;
2139 __non_matching = true;
2140 __start_nonmatching_list();
2141 }
2142 else
2143 __start_matching_list();
2144 if (__first == __last)
2145 throw regex_error(regex_constants::error_brack);
2146 if (*__first == ']')
2147 {
2148 __push_char(']');
2149 ++__first;
2150 }
2151 __first = __parse_follow_list(__first, __last);
2152 if (__first == __last)
2153 throw regex_error(regex_constants::error_brack);
2154 if (*__first == '-')
2155 {
2156 __push_char('-');
2157 ++__first;
2158 }
2159 if (__first == __last || *__first != ']')
2160 throw regex_error(regex_constants::error_brack);
2161 if (__non_matching)
2162 __end_nonmatching_list();
2163 else
2164 __end_matching_list();
2165 ++__first;
2166 }
2167 return __first;
2168}
2169
2170template <class _CharT, class _Traits>
2171template <class _ForwardIterator>
2172_ForwardIterator
2173basic_regex<_CharT, _Traits>::__parse_follow_list(_ForwardIterator __first,
2174 _ForwardIterator __last)
2175{
2176 if (__first != __last)
2177 {
2178 while (true)
2179 {
2180 _ForwardIterator __temp = __parse_expression_term(__first, __last);
2181 if (__temp == __first)
2182 break;
2183 __first = __temp;
2184 }
2185 }
2186 return __first;
2187}
2188
2189template <class _CharT, class _Traits>
2190template <class _ForwardIterator>
2191_ForwardIterator
2192basic_regex<_CharT, _Traits>::__parse_expression_term(_ForwardIterator __first,
2193 _ForwardIterator __last)
2194{
2195 if (__first != __last && *__first != ']')
2196 {
2197 bool __parsed_one = false;
2198 _ForwardIterator __temp = next(__first);
2199 if (__temp != __last && *__first == '[')
2200 {
2201 if (*__temp == '=')
2202 return __parse_equivalence_class(++__temp, __last);
2203 else if (*__temp == ':')
2204 return __parse_character_class(++__temp, __last);
2205 else if (*__temp == '.')
2206 {
2207 __first = __parse_collating_symbol(++__temp, __last);
2208 __parsed_one = true;
2209 }
2210 }
2211 if (!__parsed_one)
2212 {
2213 __push_char(*__first);
2214 ++__first;
2215 }
2216 if (__first != __last && *__first != ']')
2217 {
2218 __temp = next(__first);
2219 if (__temp != __last && *__first == '-' && *__temp != ']')
2220 {
2221 // parse a range
2222 __first = __temp;
2223 ++__temp;
2224 if (__temp != __last && *__first == '[' && *__temp == '.')
2225 __first = __parse_collating_symbol(++__temp, __last);
2226 else
2227 {
2228 __push_char(*__first);
2229 ++__first;
2230 }
2231 __push_range();
2232 }
2233 }
2234 }
2235 return __first;
2236}
2237
2238template <class _CharT, class _Traits>
2239template <class _ForwardIterator>
2240_ForwardIterator
2241basic_regex<_CharT, _Traits>::__parse_equivalence_class(_ForwardIterator __first,
2242 _ForwardIterator __last)
2243{
2244 // Found [=
2245 // This means =] must exist
2246 value_type _Equal_close[2] = {'=', ']'};
2247 _ForwardIterator __temp = _STD::search(__first, __last, _Equal_close,
2248 _Equal_close+2);
2249 if (__temp == __last)
2250 throw regex_error(regex_constants::error_brack);
2251 // [__first, __temp) contains all text in [= ... =]
2252 typedef typename _Traits::string_type string_type;
2253 string_type __collate_name =
2254 __traits_.lookup_collatename(__first, __temp);
2255 if (__collate_name.empty())
2256 throw regex_error(regex_constants::error_brack);
2257 string_type __equiv_name =
2258 __traits_.transform_primary(__collate_name.begin(),
2259 __collate_name.end());
2260 if (!__equiv_name.empty())
2261 __push_char(__equiv_name);
2262 else
2263 __push_char(__collate_name);
2264 __first = next(__temp, 2);
2265 return __first;
2266}
2267
2268template <class _CharT, class _Traits>
2269template <class _ForwardIterator>
2270_ForwardIterator
2271basic_regex<_CharT, _Traits>::__parse_character_class(_ForwardIterator __first,
2272 _ForwardIterator __last)
2273{
2274 // Found [:
2275 // This means :] must exist
2276 value_type _Colon_close[2] = {':', ']'};
2277 _ForwardIterator __temp = _STD::search(__first, __last, _Colon_close,
2278 _Colon_close+2);
2279 if (__temp == __last)
2280 throw regex_error(regex_constants::error_brack);
2281 // [__first, __temp) contains all text in [: ... :]
2282 typedef typename _Traits::char_class_type char_class_type;
2283 char_class_type __class_type =
2284 __traits_.lookup_classname(__first, __temp, __flags_ & icase);
2285 if (__class_type == 0)
2286 throw regex_error(regex_constants::error_brack);
2287 __push_class_type(__class_type);
2288 __first = next(__temp, 2);
2289 return __first;
2290}
2291
2292template <class _CharT, class _Traits>
2293template <class _ForwardIterator>
2294_ForwardIterator
2295basic_regex<_CharT, _Traits>::__parse_collating_symbol(_ForwardIterator __first,
2296 _ForwardIterator __last)
2297{
2298 // Found [.
2299 // This means .] must exist
2300 value_type _Dot_close[2] = {'.', ']'};
2301 _ForwardIterator __temp = _STD::search(__first, __last, _Dot_close,
2302 _Dot_close+2);
2303 if (__temp == __last)
2304 throw regex_error(regex_constants::error_brack);
2305 // [__first, __temp) contains all text in [. ... .]
2306 typedef typename _Traits::string_type string_type;
2307 string_type __collate_name =
2308 __traits_.lookup_collatename(__first, __temp);
2309 if (__collate_name.empty())
2310 throw regex_error(regex_constants::error_brack);
2311 __push_char(__collate_name);
2312 __first = next(__temp, 2);
2313 return __first;
2314}
2315
2316template <class _CharT, class _Traits>
2317template <class _ForwardIterator>
2318_ForwardIterator
2319basic_regex<_CharT, _Traits>::__parse_DUP_COUNT(_ForwardIterator __first,
2320 _ForwardIterator __last,
2321 int& __c)
2322{
2323 if (__first != __last && '0' <= *__first && *__first <= '9')
2324 {
2325 __c = *__first - '0';
2326 for (++__first; __first != __last && '0' <= *__first && *__first <= '9';
2327 ++__first)
2328 {
2329 __c *= 10;
2330 __c += *__first - '0';
2331 }
2332 }
2333 return __first;
2334}
2335
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002336template <class _CharT, class _Traits>
2337void
2338basic_regex<_CharT, _Traits>::__push_char(value_type __c)
2339{
2340 unique_ptr<__state<_CharT> > __new_end(new __state<_CharT>);
2341 unique_ptr<__transition<_CharT> > __new_transition(
2342 new __match_char<_CharT>(__c, true, __new_end.get()));
2343 __state<_CharT>* __e = __new_end.release();
2344 if (__end_ == nullptr)
2345 {
2346 __start_.reset(new __state<_CharT>);
2347 __end_ = __start_.get();
2348 }
2349 __end_->__add_one(__new_transition.release());
2350 __end_ = __e;
2351}
2352
Howard Hinnant8c2c18d2010-06-24 21:28:00 +00002353typedef basic_regex<char> regex;
2354typedef basic_regex<wchar_t> wregex;
2355
Howard Hinnantcd85b9e2010-06-29 18:37:43 +00002356// sub_match
2357
2358template <class _BidirectionalIterator>
2359class sub_match
2360 : public pair<_BidirectionalIterator, _BidirectionalIterator>
2361{
2362public:
2363 typedef _BidirectionalIterator iterator;
2364 typedef typename iterator_traits<iterator>::value_type value_type;
2365 typedef typename iterator_traits<iterator>::difference_type difference_type;
2366 typedef basic_string<value_type> string_type;
2367
2368 bool matched;
2369
2370 difference_type length() const
2371 {return matched ? _STD::distance(this->first, this->second) : 0;}
2372 string_type str() const
2373 {return matched ? string_type(this->first, this->second) : string_type();}
2374 operator string_type() const
2375 {return str();}
2376
2377 int compare(const sub_match& __s) const
2378 {return str().compare(__s.str());}
2379 int compare(const string_type& __s) const
2380 {return str().compare(__s);}
2381 int compare(const value_type* __s) const
2382 {return str().compare(__s);}
2383};
2384
2385typedef sub_match<const char*> csub_match;
2386typedef sub_match<const wchar_t*> wcsub_match;
2387typedef sub_match<string::const_iterator> ssub_match;
2388typedef sub_match<wstring::const_iterator> wssub_match;
2389
2390template <class _BiIter>
2391inline _LIBCPP_INLINE_VISIBILITY
2392bool
2393operator==(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2394{
2395 return __x.compare(__y) == 0;
2396}
2397
2398template <class _BiIter>
2399inline _LIBCPP_INLINE_VISIBILITY
2400bool
2401operator!=(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2402{
2403 return !(__x == __y);
2404}
2405
2406template <class _BiIter>
2407inline _LIBCPP_INLINE_VISIBILITY
2408bool
2409operator<(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2410{
2411 return __x.compare(__y) < 0;
2412}
2413
2414template <class _BiIter>
2415inline _LIBCPP_INLINE_VISIBILITY
2416bool
2417operator<=(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2418{
2419 return !(__y < __x);
2420}
2421
2422template <class _BiIter>
2423inline _LIBCPP_INLINE_VISIBILITY
2424bool
2425operator>=(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2426{
2427 return !(__x < __y);
2428}
2429
2430template <class _BiIter>
2431inline _LIBCPP_INLINE_VISIBILITY
2432bool
2433operator>(const sub_match<_BiIter>& __x, const sub_match<_BiIter>& __y)
2434{
2435 return __y < __x;
2436}
2437
2438template <class _BiIter, class _ST, class _SA>
2439inline _LIBCPP_INLINE_VISIBILITY
2440bool
2441operator==(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2442 const sub_match<_BiIter>& __y)
2443{
2444 return __y.compare(__x.c_str()) == 0;
2445}
2446
2447template <class _BiIter, class _ST, class _SA>
2448inline _LIBCPP_INLINE_VISIBILITY
2449bool
2450operator!=(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2451 const sub_match<_BiIter>& __y)
2452{
2453 return !(__x == __y);
2454}
2455
2456template <class _BiIter, class _ST, class _SA>
2457inline _LIBCPP_INLINE_VISIBILITY
2458bool
2459operator<(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2460 const sub_match<_BiIter>& __y)
2461{
2462 return __y.compare(__x.c_str()) > 0;
2463}
2464
2465template <class _BiIter, class _ST, class _SA>
2466inline _LIBCPP_INLINE_VISIBILITY
2467bool
2468operator>(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2469 const sub_match<_BiIter>& __y)
2470{
2471 return __y < __x;
2472}
2473
2474template <class _BiIter, class _ST, class _SA>
2475inline _LIBCPP_INLINE_VISIBILITY
2476bool operator>=(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2477 const sub_match<_BiIter>& __y)
2478{
2479 return !(__x < __y);
2480}
2481
2482template <class _BiIter, class _ST, class _SA>
2483inline _LIBCPP_INLINE_VISIBILITY
2484bool
2485operator<=(const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __x,
2486 const sub_match<_BiIter>& __y)
2487{
2488 return !(__y < __x);
2489}
2490
2491template <class _BiIter, class _ST, class _SA>
2492inline _LIBCPP_INLINE_VISIBILITY
2493bool
2494operator==(const sub_match<_BiIter>& __x,
2495 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2496{
2497 return __x.compare(__y.c_str()) == 0;
2498}
2499
2500template <class _BiIter, class _ST, class _SA>
2501inline _LIBCPP_INLINE_VISIBILITY
2502bool
2503operator!=(const sub_match<_BiIter>& __x,
2504 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2505{
2506 return !(__x == __y);
2507}
2508
2509template <class _BiIter, class _ST, class _SA>
2510inline _LIBCPP_INLINE_VISIBILITY
2511bool
2512operator<(const sub_match<_BiIter>& __x,
2513 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2514{
2515 return __x.compare(__y.c_str()) < 0;
2516}
2517
2518template <class _BiIter, class _ST, class _SA>
2519inline _LIBCPP_INLINE_VISIBILITY
2520bool operator>(const sub_match<_BiIter>& __x,
2521 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2522{
2523 return __y < __x;
2524}
2525
2526template <class _BiIter, class _ST, class _SA>
2527inline _LIBCPP_INLINE_VISIBILITY
2528bool
2529operator>=(const sub_match<_BiIter>& __x,
2530 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2531{
2532 return !(__x < __y);
2533}
2534
2535template <class _BiIter, class _ST, class _SA>
2536inline _LIBCPP_INLINE_VISIBILITY
2537bool
2538operator<=(const sub_match<_BiIter>& __x,
2539 const basic_string<typename iterator_traits<_BiIter>::value_type, _ST, _SA>& __y)
2540{
2541 return !(__y < __x);
2542}
2543
2544template <class _BiIter>
2545inline _LIBCPP_INLINE_VISIBILITY
2546bool
2547operator==(typename iterator_traits<_BiIter>::value_type const* __x,
2548 const sub_match<_BiIter>& __y)
2549{
2550 return __y.compare(__x) == 0;
2551}
2552
2553template <class _BiIter>
2554inline _LIBCPP_INLINE_VISIBILITY
2555bool
2556operator!=(typename iterator_traits<_BiIter>::value_type const* __x,
2557 const sub_match<_BiIter>& __y)
2558{
2559 return !(__x == __y);
2560}
2561
2562template <class _BiIter>
2563inline _LIBCPP_INLINE_VISIBILITY
2564bool
2565operator<(typename iterator_traits<_BiIter>::value_type const* __x,
2566 const sub_match<_BiIter>& __y)
2567{
2568 return __y.compare(__x) > 0;
2569}
2570
2571template <class _BiIter>
2572inline _LIBCPP_INLINE_VISIBILITY
2573bool
2574operator>(typename iterator_traits<_BiIter>::value_type const* __x,
2575 const sub_match<_BiIter>& __y)
2576{
2577 return __y < __x;
2578}
2579
2580template <class _BiIter>
2581inline _LIBCPP_INLINE_VISIBILITY
2582bool
2583operator>=(typename iterator_traits<_BiIter>::value_type const* __x,
2584 const sub_match<_BiIter>& __y)
2585{
2586 return !(__x < __y);
2587}
2588
2589template <class _BiIter>
2590inline _LIBCPP_INLINE_VISIBILITY
2591bool
2592operator<=(typename iterator_traits<_BiIter>::value_type const* __x,
2593 const sub_match<_BiIter>& __y)
2594{
2595 return !(__y < __x);
2596}
2597
2598template <class _BiIter>
2599inline _LIBCPP_INLINE_VISIBILITY
2600bool
2601operator==(const sub_match<_BiIter>& __x,
2602 typename iterator_traits<_BiIter>::value_type const* __y)
2603{
2604 return __x.compare(__y) == 0;
2605}
2606
2607template <class _BiIter>
2608inline _LIBCPP_INLINE_VISIBILITY
2609bool
2610operator!=(const sub_match<_BiIter>& __x,
2611 typename iterator_traits<_BiIter>::value_type const* __y)
2612{
2613 return !(__x == __y);
2614}
2615
2616template <class _BiIter>
2617inline _LIBCPP_INLINE_VISIBILITY
2618bool
2619operator<(const sub_match<_BiIter>& __x,
2620 typename iterator_traits<_BiIter>::value_type const* __y)
2621{
2622 return __x.compare(__y) < 0;
2623}
2624
2625template <class _BiIter>
2626inline _LIBCPP_INLINE_VISIBILITY
2627bool
2628operator>(const sub_match<_BiIter>& __x,
2629 typename iterator_traits<_BiIter>::value_type const* __y)
2630{
2631 return __y < __x;
2632}
2633
2634template <class _BiIter>
2635inline _LIBCPP_INLINE_VISIBILITY
2636bool
2637operator>=(const sub_match<_BiIter>& __x,
2638 typename iterator_traits<_BiIter>::value_type const* __y)
2639{
2640 return !(__x < __y);
2641}
2642
2643template <class _BiIter>
2644inline _LIBCPP_INLINE_VISIBILITY
2645bool
2646operator<=(const sub_match<_BiIter>& __x,
2647 typename iterator_traits<_BiIter>::value_type const* __y)
2648{
2649 return !(__y < __x);
2650}
2651
2652template <class _BiIter>
2653inline _LIBCPP_INLINE_VISIBILITY
2654bool
2655operator==(typename iterator_traits<_BiIter>::value_type const& __x,
2656 const sub_match<_BiIter>& __y)
2657{
2658 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2659 return __y.compare(string_type(1, __x)) == 0;
2660}
2661
2662template <class _BiIter>
2663inline _LIBCPP_INLINE_VISIBILITY
2664bool
2665operator!=(typename iterator_traits<_BiIter>::value_type const& __x,
2666 const sub_match<_BiIter>& __y)
2667{
2668 return !(__x == __y);
2669}
2670
2671template <class _BiIter>
2672inline _LIBCPP_INLINE_VISIBILITY
2673bool
2674operator<(typename iterator_traits<_BiIter>::value_type const& __x,
2675 const sub_match<_BiIter>& __y)
2676{
2677 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2678 return __y.compare(string_type(1, __x)) > 0;
2679}
2680
2681template <class _BiIter>
2682inline _LIBCPP_INLINE_VISIBILITY
2683bool
2684operator>(typename iterator_traits<_BiIter>::value_type const& __x,
2685 const sub_match<_BiIter>& __y)
2686{
2687 return __y < __x;
2688}
2689
2690template <class _BiIter>
2691inline _LIBCPP_INLINE_VISIBILITY
2692bool
2693operator>=(typename iterator_traits<_BiIter>::value_type const& __x,
2694 const sub_match<_BiIter>& __y)
2695{
2696 return !(__x < __y);
2697}
2698
2699template <class _BiIter>
2700inline _LIBCPP_INLINE_VISIBILITY
2701bool
2702operator<=(typename iterator_traits<_BiIter>::value_type const& __x,
2703 const sub_match<_BiIter>& __y)
2704{
2705 return !(__y < __x);
2706}
2707
2708template <class _BiIter>
2709inline _LIBCPP_INLINE_VISIBILITY
2710bool
2711operator==(const sub_match<_BiIter>& __x,
2712 typename iterator_traits<_BiIter>::value_type const& __y)
2713{
2714 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2715 return __x.compare(string_type(1, __y)) == 0;
2716}
2717
2718template <class _BiIter>
2719inline _LIBCPP_INLINE_VISIBILITY
2720bool
2721operator!=(const sub_match<_BiIter>& __x,
2722 typename iterator_traits<_BiIter>::value_type const& __y)
2723{
2724 return !(__x == __y);
2725}
2726
2727template <class _BiIter>
2728inline _LIBCPP_INLINE_VISIBILITY
2729bool
2730operator<(const sub_match<_BiIter>& __x,
2731 typename iterator_traits<_BiIter>::value_type const& __y)
2732{
2733 typedef basic_string<typename iterator_traits<_BiIter>::value_type> string_type;
2734 return __x.compare(string_type(1, __y)) < 0;
2735}
2736
2737template <class _BiIter>
2738inline _LIBCPP_INLINE_VISIBILITY
2739bool
2740operator>(const sub_match<_BiIter>& __x,
2741 typename iterator_traits<_BiIter>::value_type const& __y)
2742{
2743 return __y < __x;
2744}
2745
2746template <class _BiIter>
2747inline _LIBCPP_INLINE_VISIBILITY
2748bool
2749operator>=(const sub_match<_BiIter>& __x,
2750 typename iterator_traits<_BiIter>::value_type const& __y)
2751{
2752 return !(__x < __y);
2753}
2754
2755template <class _BiIter>
2756inline _LIBCPP_INLINE_VISIBILITY
2757bool
2758operator<=(const sub_match<_BiIter>& __x,
2759 typename iterator_traits<_BiIter>::value_type const& __y)
2760{
2761 return !(__y < __x);
2762}
2763
2764template <class _CharT, class _ST, class _BiIter>
2765inline _LIBCPP_INLINE_VISIBILITY
2766basic_ostream<_CharT, _ST>&
2767operator<<(basic_ostream<_CharT, _ST>& __os, const sub_match<_BiIter>& __m)
2768{
2769 return __os << __m.str();
2770}
2771
Howard Hinnant3257c982010-06-17 00:34:59 +00002772_LIBCPP_END_NAMESPACE_STD
2773
2774#endif // _LIBCPP_REGEX