/*============================================================================= Copyright (c) 2001-2010 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(SPIRIT_MATCHES_JAN_07_2010_0745PM) #define SPIRIT_MATCHES_JAN_07_2010_0745PM #if defined(_MSC_VER) #pragma once #endif #include #include #include #include #include #include #include namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////// // Enablers /////////////////////////////////////////////////////////////////////////// template <> struct use_directive // enables matches : mpl::true_ {}; }} namespace boost { namespace spirit { namespace qi { using spirit::matches; using spirit::matches_type; /////////////////////////////////////////////////////////////////////////// // matches_directive returns whether the embedded parser matched /////////////////////////////////////////////////////////////////////////// template struct matches_directive : unary_parser > { typedef Subject subject_type; matches_directive(Subject const& subject) : subject(subject) {} template struct attribute { typedef bool type; }; template bool parse(Iterator& first, Iterator const& last , Context& context, Skipper const& skipper, Attribute& attr) const { bool result = subject.parse(first, last, context, skipper, unused); spirit::traits::assign_to(result, attr); return true; } template info what(Context& context) const { return info("matches", subject.what(context)); } Subject subject; private: // silence MSVC warning C4512: assignment operator could not be generated matches_directive& operator= (matches_directive const&); }; /////////////////////////////////////////////////////////////////////////// // Parser generators: make_xxx function (objects) /////////////////////////////////////////////////////////////////////////// template struct make_directive { typedef matches_directive result_type; result_type operator()(unused_type, Subject const& subject, unused_type) const { return result_type(subject); } }; }}} namespace boost { namespace spirit { namespace traits { template struct has_semantic_action > : unary_has_semantic_action {}; }}} #endif