u32regex_token_iterator.hpp

来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 378 行 · 第 1/2 页

HPP
378
字号
/* * * Copyright (c) 2003 * John Maddock * * Use, modification and distribution are subject to the  * Boost Software License, Version 1.0. (See accompanying file  * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * */ /*  *   LOCATION:    see http://www.boost.org for most recent version.  *   FILE         u32regex_token_iterator.hpp  *   VERSION      see <boost/version.hpp>  *   DESCRIPTION: Provides u32regex_token_iterator implementation.  */#ifndef BOOST_REGEX_V4_U32REGEX_TOKEN_ITERATOR_HPP#define BOOST_REGEX_V4_U32REGEX_TOKEN_ITERATOR_HPP#if (BOOST_WORKAROUND(__BORLANDC__, >= 0x560) && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)))\      || BOOST_WORKAROUND(BOOST_MSVC, < 1300) \      || BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))//// Borland C++ Builder 6, and Visual C++ 6,// can't cope with the array template constructor// so we have a template member that will accept any type as // argument, and then assert that is really is an array://#include <boost/static_assert.hpp>#include <boost/type_traits/is_array.hpp>#endifnamespace boost{#ifdef BOOST_HAS_ABI_HEADERS#  include BOOST_ABI_PREFIX#endif#if BOOST_WORKAROUND(BOOST_MSVC, > 1300)#  pragma warning(push)#  pragma warning(disable:4700)#endiftemplate <class BidirectionalIterator>class u32regex_token_iterator_implementation {   typedef u32regex                              regex_type;   typedef sub_match<BidirectionalIterator>      value_type;   match_results<BidirectionalIterator> what;   // current match   BidirectionalIterator                end;    // end of search area   BidirectionalIterator                base;   // start of search area   const regex_type                     re;     // the expression   match_flag_type                      flags;  // match flags   value_type                           result; // the current string result   int                                  N;      // the current sub-expression being enumerated   std::vector<int>                     subs;   // the sub-expressions to enumeratepublic:   u32regex_token_iterator_implementation(const regex_type* p, BidirectionalIterator last, int sub, match_flag_type f)      : end(last), re(*p), flags(f){ subs.push_back(sub); }   u32regex_token_iterator_implementation(const regex_type* p, BidirectionalIterator last, const std::vector<int>& v, match_flag_type f)      : end(last), re(*p), flags(f), subs(v){}#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)      // can't reliably get this to work....#elif (BOOST_WORKAROUND(__BORLANDC__, >= 0x560) && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)))\      || BOOST_WORKAROUND(BOOST_MSVC, < 1300) \      || BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003)) \      || BOOST_WORKAROUND(__HP_aCC, < 60700)   template <class T>   u32regex_token_iterator_implementation(const regex_type* p, BidirectionalIterator last, const T& submatches, match_flag_type f)      : end(last), re(*p), flags(f)   {      // assert that T really is an array:      BOOST_STATIC_ASSERT(::boost::is_array<T>::value);      const std::size_t array_size = sizeof(T) / sizeof(submatches[0]);      for(std::size_t i = 0; i < array_size; ++i)      {         subs.push_back(submatches[i]);      }   }#else   template <std::size_t CN>   u32regex_token_iterator_implementation(const regex_type* p, BidirectionalIterator last, const int (&submatches)[CN], match_flag_type f)      : end(last), re(*p), flags(f)   {      for(std::size_t i = 0; i < CN; ++i)      {         subs.push_back(submatches[i]);      }   }#endif   bool init(BidirectionalIterator first)   {      base = first;      N = 0;      if(u32regex_search(first, end, what, re, flags, base) == true)      {         N = 0;         result = ((subs[N] == -1) ? what.prefix() : what[(int)subs[N]]);         return true;      }      else if((subs[N] == -1) && (first != end))      {         result.first = first;         result.second = end;         result.matched = (first != end);         N = -1;         return true;      }      return false;   }   bool compare(const u32regex_token_iterator_implementation& that)   {      if(this == &that) return true;      return (&re.get_data() == &that.re.get_data())          && (end == that.end)          && (flags == that.flags)          && (N == that.N)          && (what[0].first == that.what[0].first)          && (what[0].second == that.what[0].second);   }   const value_type& get()   { return result; }   bool next()   {      if(N == -1)         return false;      if(N+1 < (int)subs.size())      {         ++N;         result =((subs[N] == -1) ? what.prefix() : what[subs[N]]);         return true;      }      //if(what.prefix().first != what[0].second)      //   flags |= match_prev_avail | regex_constants::match_not_bob;      BidirectionalIterator last_end(what[0].second);      if(u32regex_search(last_end, end, what, re, ((what[0].first == what[0].second) ? flags | regex_constants::match_not_initial_null : flags), base))      {         N =0;         result =((subs[N] == -1) ? what.prefix() : what[subs[N]]);         return true;      }      else if((last_end != end) && (subs[0] == -1))      {         N =-1;         result.first = last_end;         result.second = end;         result.matched = (last_end != end);         return true;      }      return false;   }private:   u32regex_token_iterator_implementation& operator=(const u32regex_token_iterator_implementation&);};template <class BidirectionalIterator>class u32regex_token_iterator #ifndef BOOST_NO_STD_ITERATOR   : public std::iterator<         std::forward_iterator_tag,          sub_match<BidirectionalIterator>,         typename re_detail::regex_iterator_traits<BidirectionalIterator>::difference_type,         const sub_match<BidirectionalIterator>*,         const sub_match<BidirectionalIterator>& >         #endif{private:   typedef u32regex_token_iterator_implementation<BidirectionalIterator> impl;   typedef shared_ptr<impl> pimpl;public:   typedef          u32regex                                                regex_type;   typedef          sub_match<BidirectionalIterator>                        value_type;   typedef typename re_detail::regex_iterator_traits<BidirectionalIterator>::difference_type                                                                             difference_type;   typedef          const value_type*                                       pointer;   typedef          const value_type&                                       reference;    typedef          std::forward_iterator_tag                               iterator_category;      u32regex_token_iterator(){}   u32regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re,                         int submatch = 0, match_flag_type m = match_default)                        : pdata(new impl(&re, b, submatch, m))   {      if(!pdata->init(a))         pdata.reset();

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?