x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
simple_repeat_matcher.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\xpressive\detail\core\matcher\simple_repeat_matcher.hpp
旋转
特效
属性
历史版本
/////////////////////////////////////////////////////////////////////////////// // simple_repeat_matcher.hpp // // Copyright 2007 Eric Niebler. Distributed under 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) #ifndef BOOST_XPRESSIVE_DETAIL_CORE_MATCHER_SIMPLE_REPEAT_MATCHER_HPP_EAN_10_04_2005 #define BOOST_XPRESSIVE_DETAIL_CORE_MATCHER_SIMPLE_REPEAT_MATCHER_HPP_EAN_10_04_2005 // MS compatible compilers support #pragma once #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include
#include
#include
#include
#include
#include
#include
namespace boost { namespace xpressive { namespace detail { /////////////////////////////////////////////////////////////////////////////// // simple_repeat_traits // struct greedy_slow_tag {}; struct greedy_fast_tag {}; struct non_greedy_tag {}; typedef static_xpression
any_sxpr; typedef matcher_wrapper
any_dxpr; template
struct simple_repeat_traits { typedef typename mpl::if_
::type tag_type; }; template<> struct simple_repeat_traits
{ typedef greedy_fast_tag tag_type; }; template<> struct simple_repeat_traits
{ typedef greedy_fast_tag tag_type; }; /////////////////////////////////////////////////////////////////////////////// // simple_repeat_matcher // template
struct simple_repeat_matcher : quant_style_variable_width { typedef Xpr xpr_type; typedef mpl::bool_
greedy_type; Xpr xpr_; unsigned int min_, max_; std::size_t width_; simple_repeat_matcher(Xpr const &xpr, unsigned int min, unsigned int max, std::size_t width) : xpr_(xpr) , min_(min) , max_(max) , width_(width) { // it is the job of the parser to make sure this never happens BOOST_ASSERT(min <= max); BOOST_ASSERT(0 != max); BOOST_ASSERT(0 != width && unknown_width() != width); BOOST_ASSERT(Xpr::width == unknown_width() || Xpr::width == width); } template
bool match(match_state
&state, Next const &next) const { typedef mpl::bool_
::value> is_rand; typedef typename simple_repeat_traits
::tag_type tag_type; return this->match_(state, next, tag_type()); } // greedy, fixed-width quantifier template
bool match_(match_state
&state, Next const &next, greedy_slow_tag) const { int const diff = -static_cast
(Xpr::width == unknown_width::value ? this->width_ : Xpr::width); unsigned int matches = 0; BidiIter const tmp = state.cur_; // greedily match as much as we can while(matches < this->max_ && this->xpr_.match(state)) { ++matches; } if(this->min_ > matches) { state.cur_ = tmp; return false; } // try matching the rest of the pattern, and back off if necessary for(; ; --matches, std::advance(state.cur_, diff)) { if(next.match(state)) { return true; } else if(this->min_ == matches) { state.cur_ = tmp; return false; } } } // non-greedy fixed-width quantification template
bool match_(match_state
&state, Next const &next, non_greedy_tag) const { BidiIter const tmp = state.cur_; unsigned int matches = 0; for(; matches < this->min_; ++matches) { if(!this->xpr_.match(state)) { state.cur_ = tmp; return false; } } do { if(next.match(state)) { return true; } } while(matches++ < this->max_ && this->xpr_.match(state)); state.cur_ = tmp; return false; } // when greedily matching any character, skip to the end instead of iterating there. template
bool match_(match_state
&state, Next const &next, greedy_fast_tag) const { BidiIter const tmp = state.cur_; std::size_t const diff_to_end = static_cast
(state.end_ - tmp); // is there enough room? if(this->min_ > diff_to_end) { return false; } BidiIter const min_iter = tmp + this->min_; state.cur_ += (std::min)((std::size_t)this->max_, diff_to_end); for(;; --state.cur_) { if(next.match(state)) { return true; } else if(min_iter == state.cur_) { state.cur_ = tmp; return false; } } } detail::width get_width() const { if(this->min_ != this->max_) { return unknown_width::value; } return this->min_ * this->width_; } private: simple_repeat_matcher &operator =(simple_repeat_matcher const &); }; // BUGBUG can all non-greedy quantification be done with the fixed width quantifier? // BUGBUG matchers are chained together using static_xpression so that matchers to // the left can invoke matchers to the right. This is so that if the left matcher // succeeds but the right matcher fails, the left matcher is given the opportunity // to try something else. This is how backtracking works. However, if the left matcher // can succeed only one way (as with any_matcher, for example), it does not need // backtracking. In this case, leaving its stack frame active is a waste of stack // space. Can something be done? }}} #endif
simple_repeat_matcher.hpp
网页地址
文件地址
上一页
34/36
下一页
下载
( 6 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.