Update contrib.
1 ///////////////////////////////////////////////////////////////////////////////
2 /// \file sub_match.hpp
3 /// Contains the definition of the class template sub_match\<\>
4 /// and associated helper functions
6 // Copyright 2004 Eric Niebler. Distributed under the Boost
7 // Software License, Version 1.0. (See accompanying file
8 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10 #ifndef BOOST_XPRESSIVE_SUB_MATCH_HPP_EAN_10_04_2005
11 #define BOOST_XPRESSIVE_SUB_MATCH_HPP_EAN_10_04_2005
13 // MS compatible compilers support #pragma once
14 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
23 #include <boost/iterator/iterator_traits.hpp>
26 ///////////////////////////////////////////////////////////////////////////////
27 // This is a hack to get Doxygen to show the inheritance relation between
28 // sub_match<T> and std::pair<T,T>.
29 #ifdef BOOST_XPRESSIVE_DOXYGEN_INVOKED
34 template<typename, typename> struct pair {};
39 namespace boost { namespace xpressive
42 ///////////////////////////////////////////////////////////////////////////////
45 /// \brief Class template sub_match denotes the sequence of characters matched by a particular marked sub-expression.
47 /// When the marked sub-expression denoted by an object of type sub_match\<\> participated in a
48 /// regular expression match then member matched evaluates to true, and members first and second
49 /// denote the range of characters [first,second) which formed that match. Otherwise matched is false,
50 /// and members first and second contained undefined values.
52 /// If an object of type sub_match\<\> represents sub-expression 0 - that is to say the whole match -
53 /// then member matched is always true, unless a partial match was obtained as a result of the flag
54 /// match_partial being passed to a regular expression algorithm, in which case member matched is
55 /// false, and members first and second represent the character range that formed the partial match.
56 template<typename BidiIter>
58 : std::pair<BidiIter, BidiIter>
61 struct dummy { int i_; };
62 typedef int dummy::*bool_type;
65 typedef typename iterator_value<BidiIter>::type value_type;
66 typedef typename iterator_difference<BidiIter>::type difference_type;
67 typedef std::basic_string<value_type> string_type;
68 typedef BidiIter iterator;
70 explicit sub_match(BidiIter first = BidiIter(), BidiIter second = BidiIter(), bool matched_ = false)
71 : std::pair<BidiIter, BidiIter>(first, second)
76 string_type str() const
78 return this->matched ? string_type(this->first, this->second) : string_type();
81 operator string_type() const
83 return this->matched ? string_type(this->first, this->second) : string_type();
86 difference_type length() const
88 return this->matched ? std::distance(this->first, this->second) : 0;
91 operator bool_type() const
93 return this->matched ? &dummy::i_ : 0;
96 bool operator !() const
98 return !this->matched;
101 /// \brief Performs a lexicographic string comparison
102 /// \param str the string against which to compare
103 /// \return the results of (*this).str().compare(str)
104 int compare(string_type const &str) const
106 return this->str().compare(str);
110 int compare(sub_match const &sub) const
112 return this->str().compare(sub.str());
116 int compare(value_type const *ptr) const
118 return this->str().compare(ptr);
121 /// \brief true if this sub-match participated in the full match.
125 ///////////////////////////////////////////////////////////////////////////////
126 /// \brief insertion operator for sending sub-matches to ostreams
127 /// \param sout output stream.
128 /// \param sub sub_match object to be written to the stream.
129 /// \return sout \<\< sub.str()
130 template<typename BidiIter, typename Char, typename Traits>
131 inline std::basic_ostream<Char, Traits> &operator <<
133 std::basic_ostream<Char, Traits> &sout
134 , sub_match<BidiIter> const &sub
137 typedef typename iterator_value<BidiIter>::type char_type;
140 std::ostream_iterator<char_type, Char, Traits> iout(sout);
141 std::copy(sub.first, sub.second, iout);
147 // BUGBUG make these more efficient
149 template<typename BidiIter>
150 bool operator == (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
152 return lhs.compare(rhs) == 0;
155 template<typename BidiIter>
156 bool operator != (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
158 return lhs.compare(rhs) != 0;
161 template<typename BidiIter>
162 bool operator < (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
164 return lhs.compare(rhs) < 0;
167 template<typename BidiIter>
168 bool operator <= (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
170 return lhs.compare(rhs) <= 0;
173 template<typename BidiIter>
174 bool operator >= (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
176 return lhs.compare(rhs)>= 0;
179 template<typename BidiIter>
180 bool operator> (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
182 return lhs.compare(rhs)> 0;
185 template<typename BidiIter>
186 bool operator == (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
188 return lhs == rhs.str();
191 template<typename BidiIter>
192 bool operator != (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
194 return lhs != rhs.str();
197 template<typename BidiIter>
198 bool operator < (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
200 return lhs < rhs.str();
203 template<typename BidiIter>
204 bool operator> (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
206 return lhs> rhs.str();
209 template<typename BidiIter>
210 bool operator >= (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
212 return lhs >= rhs.str();
215 template<typename BidiIter>
216 bool operator <= (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
218 return lhs <= rhs.str();
221 template<typename BidiIter>
222 bool operator == (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
224 return lhs.str() == rhs;
227 template<typename BidiIter>
228 bool operator != (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
230 return lhs.str() != rhs;
233 template<typename BidiIter>
234 bool operator < (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
236 return lhs.str() < rhs;
239 template<typename BidiIter>
240 bool operator> (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
242 return lhs.str()> rhs;
245 template<typename BidiIter>
246 bool operator >= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
248 return lhs.str()>= rhs;
251 template<typename BidiIter>
252 bool operator <= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
254 return lhs.str() <= rhs;
257 template<typename BidiIter>
258 bool operator == (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
260 return lhs == rhs.str();
263 template<typename BidiIter>
264 bool operator != (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
266 return lhs != rhs.str();
269 template<typename BidiIter>
270 bool operator < (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
272 return lhs < rhs.str();
275 template<typename BidiIter>
276 bool operator> (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
278 return lhs> rhs.str();
281 template<typename BidiIter>
282 bool operator >= (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
284 return lhs >= rhs.str();
287 template<typename BidiIter>
288 bool operator <= (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
290 return lhs <= rhs.str();
293 template<typename BidiIter>
294 bool operator == (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
296 return lhs.str() == rhs;
299 template<typename BidiIter>
300 bool operator != (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
302 return lhs.str() != rhs;
305 template<typename BidiIter>
306 bool operator < (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
308 return lhs.str() < rhs;
311 template<typename BidiIter>
312 bool operator> (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
314 return lhs.str()> rhs;
317 template<typename BidiIter>
318 bool operator >= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
320 return lhs.str()>= rhs;
323 template<typename BidiIter>
324 bool operator <= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
326 return lhs.str() <= rhs;
329 }} // namespace boost::xpressive