123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- #ifndef BOOST_XPRESSIVE_SUB_MATCH_HPP_EAN_10_04_2005
- #define BOOST_XPRESSIVE_SUB_MATCH_HPP_EAN_10_04_2005
- #if defined(_MSC_VER)
- # pragma once
- #endif
- #include <iosfwd>
- #include <string>
- #include <utility>
- #include <iterator>
- #include <algorithm>
- #include <boost/mpl/assert.hpp>
- #include <boost/type_traits/is_same.hpp>
- #include <boost/iterator/iterator_traits.hpp>
- #include <boost/range/const_iterator.hpp>
- #include <boost/range/mutable_iterator.hpp>
- #include <boost/xpressive/detail/detail_fwd.hpp>
- #ifdef BOOST_XPRESSIVE_DOXYGEN_INVOKED
- namespace std
- {
-
- template<typename, typename> struct pair {};
- }
- #endif
- namespace boost { namespace xpressive
- {
- template<typename BidiIter>
- struct sub_match
- : std::pair<BidiIter, BidiIter>
- {
- private:
-
-
- struct dummy { int i_; };
- typedef int dummy::*bool_type;
- public:
- typedef typename iterator_value<BidiIter>::type value_type;
- typedef typename iterator_difference<BidiIter>::type difference_type;
- typedef typename detail::string_type<value_type>::type string_type;
- typedef BidiIter iterator;
- sub_match()
- : std::pair<BidiIter, BidiIter>()
- , matched(false)
- {
- }
- sub_match(BidiIter first, BidiIter second, bool matched_ = false)
- : std::pair<BidiIter, BidiIter>(first, second)
- , matched(matched_)
- {
- }
- string_type str() const
- {
- return this->matched ? string_type(this->first, this->second) : string_type();
- }
- operator string_type() const
- {
- return this->matched ? string_type(this->first, this->second) : string_type();
- }
- difference_type length() const
- {
- return this->matched ? std::distance(this->first, this->second) : 0;
- }
- operator bool_type() const
- {
- return this->matched ? &dummy::i_ : 0;
- }
- bool operator !() const
- {
- return !this->matched;
- }
-
-
-
- int compare(string_type const &str) const
- {
- return this->str().compare(str);
- }
-
-
- int compare(sub_match const &sub) const
- {
- return this->str().compare(sub.str());
- }
-
-
- int compare(value_type const *ptr) const
- {
- return this->str().compare(ptr);
- }
-
- bool matched;
- };
- template<typename BidiIter>
- inline BidiIter range_begin(sub_match<BidiIter> &sub)
- {
- return sub.first;
- }
- template<typename BidiIter>
- inline BidiIter range_begin(sub_match<BidiIter> const &sub)
- {
- return sub.first;
- }
- template<typename BidiIter>
- inline BidiIter range_end(sub_match<BidiIter> &sub)
- {
- return sub.second;
- }
- template<typename BidiIter>
- inline BidiIter range_end(sub_match<BidiIter> const &sub)
- {
- return sub.second;
- }
- template<typename BidiIter, typename Char, typename Traits>
- inline std::basic_ostream<Char, Traits> &operator <<
- (
- std::basic_ostream<Char, Traits> &sout
- , sub_match<BidiIter> const &sub
- )
- {
- typedef typename iterator_value<BidiIter>::type char_type;
- BOOST_MPL_ASSERT_MSG(
- (boost::is_same<Char, char_type>::value)
- , CHARACTER_TYPES_OF_STREAM_AND_SUB_MATCH_MUST_MATCH
- , (Char, char_type)
- );
- if(sub.matched)
- {
- std::ostream_iterator<char_type, Char, Traits> iout(sout);
- std::copy(sub.first, sub.second, iout);
- }
- return sout;
- }
- template<typename BidiIter>
- bool operator == (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.compare(rhs) == 0;
- }
- template<typename BidiIter>
- bool operator != (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.compare(rhs) != 0;
- }
- template<typename BidiIter>
- bool operator < (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.compare(rhs) < 0;
- }
- template<typename BidiIter>
- bool operator <= (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.compare(rhs) <= 0;
- }
- template<typename BidiIter>
- bool operator >= (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.compare(rhs) >= 0;
- }
- template<typename BidiIter>
- bool operator > (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.compare(rhs) > 0;
- }
- template<typename BidiIter>
- bool operator == (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs == rhs.str();
- }
- template<typename BidiIter>
- bool operator != (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs != rhs.str();
- }
- template<typename BidiIter>
- bool operator < (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs < rhs.str();
- }
- template<typename BidiIter>
- bool operator > (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs> rhs.str();
- }
- template<typename BidiIter>
- bool operator >= (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs >= rhs.str();
- }
- template<typename BidiIter>
- bool operator <= (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs <= rhs.str();
- }
- template<typename BidiIter>
- bool operator == (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() == rhs;
- }
- template<typename BidiIter>
- bool operator != (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() != rhs;
- }
- template<typename BidiIter>
- bool operator < (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() < rhs;
- }
- template<typename BidiIter>
- bool operator > (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() > rhs;
- }
- template<typename BidiIter>
- bool operator >= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() >= rhs;
- }
- template<typename BidiIter>
- bool operator <= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() <= rhs;
- }
- template<typename BidiIter>
- bool operator == (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs == rhs.str();
- }
- template<typename BidiIter>
- bool operator != (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs != rhs.str();
- }
- template<typename BidiIter>
- bool operator < (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs < rhs.str();
- }
- template<typename BidiIter>
- bool operator > (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs> rhs.str();
- }
- template<typename BidiIter>
- bool operator >= (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs >= rhs.str();
- }
- template<typename BidiIter>
- bool operator <= (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs <= rhs.str();
- }
- template<typename BidiIter>
- bool operator == (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() == rhs;
- }
- template<typename BidiIter>
- bool operator != (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() != rhs;
- }
- template<typename BidiIter>
- bool operator < (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() < rhs;
- }
- template<typename BidiIter>
- bool operator > (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() > rhs;
- }
- template<typename BidiIter>
- bool operator >= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() >= rhs;
- }
- template<typename BidiIter>
- bool operator <= (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() <= rhs;
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (sub_match<BidiIter> const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs.str() + rhs.str();
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const &rhs)
- {
- return lhs.str() + rhs;
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (typename iterator_value<BidiIter>::type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs + rhs.str();
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (sub_match<BidiIter> const &lhs, typename iterator_value<BidiIter>::type const *rhs)
- {
- return lhs.str() + rhs;
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (typename iterator_value<BidiIter>::type const *lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs + rhs.str();
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (sub_match<BidiIter> const &lhs, typename sub_match<BidiIter>::string_type const &rhs)
- {
- return lhs.str() + rhs;
- }
- template<typename BidiIter>
- typename sub_match<BidiIter>::string_type
- operator + (typename sub_match<BidiIter>::string_type const &lhs, sub_match<BidiIter> const &rhs)
- {
- return lhs + rhs.str();
- }
- }}
- namespace boost
- {
-
-
- template<typename BidiIter>
- struct range_mutable_iterator<xpressive::sub_match<BidiIter> >
- {
- typedef BidiIter type;
- };
-
-
- template<typename BidiIter>
- struct range_const_iterator<xpressive::sub_match<BidiIter> >
- {
- typedef BidiIter type;
- };
- }
- #endif
|