123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*=============================================================================
- Copyright (c) 2001-2011 Joel de Guzman
- 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_SPIRIT_QI_OPERATOR_NOT_PREDICATE_HPP
- #define BOOST_SPIRIT_QI_OPERATOR_NOT_PREDICATE_HPP
- #if defined(_MSC_VER)
- #pragma once
- #endif
- #include <boost/spirit/home/qi/domain.hpp>
- #include <boost/spirit/home/qi/meta_compiler.hpp>
- #include <boost/spirit/home/qi/parser.hpp>
- #include <boost/spirit/home/qi/detail/attributes.hpp>
- #include <boost/spirit/home/support/has_semantic_action.hpp>
- #include <boost/spirit/home/support/handles_container.hpp>
- #include <boost/spirit/home/support/info.hpp>
- #include <boost/proto/operators.hpp>
- #include <boost/proto/tags.hpp>
- namespace boost { namespace spirit
- {
- ///////////////////////////////////////////////////////////////////////////
- // Enablers
- ///////////////////////////////////////////////////////////////////////////
- template <>
- struct use_operator<qi::domain, proto::tag::logical_not> // enables !p
- : mpl::true_ {};
- }}
- namespace boost { namespace spirit { namespace qi
- {
- template <typename Subject>
- struct not_predicate : unary_parser<not_predicate<Subject> >
- {
- typedef Subject subject_type;
- template <typename Context, typename Iterator>
- struct attribute
- {
- typedef unused_type type;
- };
- not_predicate(Subject const& subject_)
- : subject(subject_) {}
- template <typename Iterator, typename Context
- , typename Skipper, typename Attribute>
- bool parse(Iterator& first, Iterator const& last
- , Context& context, Skipper const& skipper
- , Attribute& /*attr*/) const
- {
- Iterator i = first;
- return !subject.parse(i, last, context, skipper, unused);
- }
- template <typename Context>
- info what(Context& context) const
- {
- return info("not-predicate", subject.what(context));
- }
- Subject subject;
- };
- ///////////////////////////////////////////////////////////////////////////
- // Parser generators: make_xxx function (objects)
- ///////////////////////////////////////////////////////////////////////////
- template <typename Elements, typename Modifiers>
- struct make_composite<proto::tag::logical_not, Elements, Modifiers>
- : make_unary_composite<Elements, not_predicate>
- {};
- }}}
- namespace boost { namespace spirit { namespace traits
- {
- ///////////////////////////////////////////////////////////////////////////
- template <typename Subject>
- struct has_semantic_action<qi::not_predicate<Subject> >
- : unary_has_semantic_action<Subject> {};
- ///////////////////////////////////////////////////////////////////////////
- template <typename Subject, typename Attribute, typename Context
- , typename Iterator>
- struct handles_container<qi::not_predicate<Subject>, Attribute
- , Context, Iterator>
- : unary_handles_container<Subject, Attribute, Context, Iterator> {};
- }}}
- #endif
|