#ifndef QPID_FRAMING_VARIANT_H #define QPID_FRAMING_VARIANT_H /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ /**@file Tools for using boost::variant. */ #include namespace qpid { namespace framing { class Buffer; /** boost::static_visitor that throws an exception if variant contains a blank. * Subclasses need to have a using() declaration, which can be generated * with QPID_USING_NOBLANK(R) */ template struct NoBlankVisitor : public boost::static_visitor { R foundBlank() const { assert(0); throw Exception(QPID_MSG("Invalid variant value.")); } R operator()(const boost::blank&) const { return foundBlank(); } R operator()(boost::blank&) const { return foundBlank(); } }; }} // qpid::framing /** Generate a using statement, needed in visitors inheriting NoBlankVisitor * @param R return type. */ #define QPID_USING_NOBLANK(R) using ::qpid::framing::NoBlankVisitor::operator() namespace qpid { namespace framing { /** Convert the variant value to type R. */ template struct ConvertVisitor : public NoBlankVisitor { QPID_USING_NOBLANK(R); template R operator()(T& t) const { return t; } }; /** Convert the address of variant value to type R. */ template struct AddressVisitor : public NoBlankVisitor { QPID_USING_NOBLANK(R); template R operator()(T& t) const { return &t; } }; /** Apply a visitor to the nested variant.*/ template struct ApplyVisitor : public NoBlankVisitor { QPID_USING_NOBLANK(typename V::result_type); const V& visitor; ApplyVisitor(const V& v) : visitor(v) {} template typename V::result_type operator()(T& t) const { return boost::apply_visitor(visitor, t); } }; /** Convenience function to construct and apply an ApplyVisitor */ template typename Visitor::result_type applyApplyVisitor(const Visitor& visitor, Visitable& visitable) { return boost::apply_visitor(ApplyVisitor(visitor), visitable); } }} // namespace qpid::framing #endif /*!QPID_FRAMING_VARIANT_H*/