x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
cpp_lex_iterator.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\wave\cpplexer\cpp_lex_iterator.hpp
旋转
特效
属性
历史版本
/*============================================================================= Boost.Wave: A Standard compliant C++ preprocessor library Definition of the lexer iterator http://www.boost.org/ Copyright (c) 2001-2008 Hartmut Kaiser. 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) =============================================================================*/ #if !defined(CPP_LEX_ITERATOR_HPP_AF0C37E3_CBD8_4F33_A225_51CF576FA61F_INCLUDED) #define CPP_LEX_ITERATOR_HPP_AF0C37E3_CBD8_4F33_A225_51CF576FA61F_INCLUDED #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
// this must occur after all of the includes and before any code appears #ifdef BOOST_HAS_ABI_HEADERS #include BOOST_ABI_PREFIX #endif #if 0 != __COMO_VERSION__ #define BOOST_WAVE_EOF_PREFIX static #else #define BOOST_WAVE_EOF_PREFIX #endif /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace wave { namespace cpplexer { namespace impl { /////////////////////////////////////////////////////////////////////////////// // // lex_iterator_functor_shim // /////////////////////////////////////////////////////////////////////////////// template
class lex_iterator_functor_shim { typedef typename TokenT::position_type position_type; public: template
lex_iterator_functor_shim(IteratorT const &first, IteratorT const &last, position_type const &pos, boost::wave::language_support language) : functor_ptr(lex_input_interface_generator
::new_lexer(first, last, pos, language)) #if 0 != __DECCXX_VER || BOOST_INTEL_CXX_VERSION > 900 || defined(__PGI) , eof() #endif // 0 != __DECCXX_VER {} // interface to the boost::spirit::multi_pass_policies::functor_input policy typedef TokenT result_type; BOOST_WAVE_EOF_PREFIX result_type const eof; result_type operator()() { BOOST_ASSERT(0 != functor_ptr.get()); return functor_ptr->get(); } void set_position(position_type const &pos) { BOOST_ASSERT(0 != functor_ptr.get()); functor_ptr->set_position(pos); } #if BOOST_WAVE_SUPPORT_PRAGMA_ONCE != 0 bool has_include_guards(std::string& guard_name) const { return functor_ptr->has_include_guards(guard_name); } #endif private: boost::shared_ptr
> functor_ptr; }; /////////////////////////////////////////////////////////////////////////////// // eof token #if 0 != __COMO_VERSION__ template
typename lex_iterator_functor_shim
::result_type const lex_iterator_functor_shim
::eof; #endif // 0 != __COMO_VERSION__ /////////////////////////////////////////////////////////////////////////////// } // namespace impl /////////////////////////////////////////////////////////////////////////////// // // lex_iterator // // A generic C++ lexer interface class, which allows to plug in different // lexer implementations. The interface between the lexer type used and // the preprocessor component depends on the token type only (template // parameter TokenT). // Additionally, the following requirements apply: // // - the lexer type should have a function implemented, which returnes // the next lexed token from the input stream: // typename TokenT get(); // - at the end of the input stream this function should return the // eof token equivalent // - the lexer should implement a constructor taking two iterators // pointing to the beginning and the end of the input stream, // a third parameter containing the name of the parsed input file // and a 4th parameter of the type boost::wave::language_support // which specifies, which language subset should be supported (C++, // C99, C++0x etc.). // /////////////////////////////////////////////////////////////////////////////// template
class lex_iterator : public boost::spirit::multi_pass< impl::lex_iterator_functor_shim
, boost::wave::util::functor_input > { typedef impl::lex_iterator_functor_shim
input_policy_type; typedef boost::spirit::multi_pass
base_type; public: typedef TokenT token_type; lex_iterator() {} template
lex_iterator(IteratorT const &first, IteratorT const &last, typename TokenT::position_type const &pos, boost::wave::language_support language) : base_type(input_policy_type(first, last, pos, language)) {} void set_position(typename TokenT::position_type const &pos) { typedef typename TokenT::position_type position_type; // set the new position in the current token token_type& currtoken = base_type::get_input(); position_type currpos = currtoken.get_position(); currpos.set_file(pos.get_file()); currpos.set_line(pos.get_line()); currtoken.set_position(currpos); // set the new position for future tokens as well if (token_type::string_type::npos != currtoken.get_value().find_first_of('\n')) { currpos.set_line(pos.get_line() + 1); } base_type::get_functor().set_position(currpos); } #if BOOST_WAVE_SUPPORT_PRAGMA_ONCE != 0 // return, whether the current file has include guards // this function returns meaningful results only if the file was scanned // completely bool has_include_guards(std::string& guard_name) const { return base_type::get_functor().has_include_guards(guard_name); } #endif }; /////////////////////////////////////////////////////////////////////////////// } // namespace cpplexer } // namespace wave } // namespace boost // the suffix header occurs after all of the code #ifdef BOOST_HAS_ABI_HEADERS #include BOOST_ABI_SUFFIX #endif #undef BOOST_WAVE_EOF_PREFIX #endif // !defined(CPP_LEX_ITERATOR_HPP_AF0C37E3_CBD8_4F33_A225_51CF576FA61F_INCLUDED)
cpp_lex_iterator.hpp
网页地址
文件地址
上一页
4/9
下一页
下载
( 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.