/** This source adapted from https://github.com/kmicklas/variadic-static_variant * * Copyright (C) 2013 Kenneth Micklas * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * **/ #pragma once #include #include #include namespace fc { // Implementation details, the user should not import this: namespace impl { template struct storage_ops; template struct position; template struct type_info; template struct copy_construct { typedef void result_type; StaticVariant& sv; copy_construct( StaticVariant& s ):sv(s){} template void operator()( const T& v )const { sv.init(v); } }; template struct move_construct { typedef void result_type; StaticVariant& sv; move_construct( StaticVariant& s ):sv(s){} template void operator()( T& v )const { sv.init( std::move(v) ); } }; template struct storage_ops { static void del(int n, void *data) {} static void con(int n, void *data) {} template static typename visitor::result_type apply(int n, void *data, visitor& v) {} template static typename visitor::result_type apply(int n, void *data, const visitor& v) {} template static typename visitor::result_type apply(int n, const void *data, visitor& v) {} template static typename visitor::result_type apply(int n, const void *data, const visitor& v) {} }; template struct storage_ops { static void del(int n, void *data) { if(n == N) reinterpret_cast(data)->~T(); else storage_ops::del(n, data); } static void con(int n, void *data) { if(n == N) new(reinterpret_cast(data)) T(); else storage_ops::con(n, data); } template static typename visitor::result_type apply(int n, void *data, visitor& v) { if(n == N) return v(*reinterpret_cast(data)); else return storage_ops::apply(n, data, v); } template static typename visitor::result_type apply(int n, void *data, const visitor& v) { if(n == N) return v(*reinterpret_cast(data)); else return storage_ops::apply(n, data, v); } template static typename visitor::result_type apply(int n, const void *data, visitor& v) { if(n == N) return v(*reinterpret_cast(data)); else return storage_ops::apply(n, data, v); } template static typename visitor::result_type apply(int n, const void *data, const visitor& v) { if(n == N) return v(*reinterpret_cast(data)); else return storage_ops::apply(n, data, v); } }; template struct storage_ops { static void del(int n, void *data) { FC_THROW_EXCEPTION( fc::assert_exception, "Internal error: static_variant tag is invalid."); } static void con(int n, void *data) { FC_THROW_EXCEPTION( fc::assert_exception, "Internal error: static_variant tag is invalid." ); } template static typename visitor::result_type apply(int n, void *data, visitor& v) { FC_THROW_EXCEPTION( fc::assert_exception, "Internal error: static_variant tag is invalid." ); } template static typename visitor::result_type apply(int n, void *data, const visitor& v) { FC_THROW_EXCEPTION( fc::assert_exception, "Internal error: static_variant tag is invalid." ); } template static typename visitor::result_type apply(int n, const void *data, visitor& v) { FC_THROW_EXCEPTION( fc::assert_exception, "Internal error: static_variant tag is invalid." ); } template static typename visitor::result_type apply(int n, const void *data, const visitor& v) { FC_THROW_EXCEPTION( fc::assert_exception, "Internal error: static_variant tag is invalid." ); } }; template struct position { static const int pos = -1; }; template struct position { static const int pos = 0; }; template struct position { static const int pos = position::pos != -1 ? position::pos + 1 : -1; }; template struct type_info { static const bool no_reference_types = false; static const bool no_duplicates = position::pos == -1 && type_info::no_duplicates; static const size_t size = type_info::size > sizeof(T&) ? type_info::size : sizeof(T&); static const size_t count = 1 + type_info::count; }; template struct type_info { static const bool no_reference_types = type_info::no_reference_types; static const bool no_duplicates = position::pos == -1 && type_info::no_duplicates; static const size_t size = type_info::size > sizeof(T) ? type_info::size : sizeof(T&); static const size_t count = 1 + type_info::count; }; template<> struct type_info<> { static const bool no_reference_types = true; static const bool no_duplicates = true; static const size_t count = 0; static const size_t size = 0; }; } // namespace impl template class static_variant { static_assert(impl::type_info::no_reference_types, "Reference types are not permitted in static_variant."); static_assert(impl::type_info::no_duplicates, "static_variant type arguments contain duplicate types."); int _tag; char storage[impl::type_info::size]; template void init(const X& x) { _tag = impl::position::pos; new(storage) X(x); } template void init(X&& x) { _tag = impl::position::pos; new(storage) X( std::move(x) ); } template friend struct impl::copy_construct; template friend struct impl::move_construct; public: template struct tag { static_assert( impl::position::pos != -1, "Type not in static_variant." ); static const int value = impl::position::pos; }; static_variant() { _tag = 0; impl::storage_ops<0, Types...>::con(0, storage); } template static_variant( const static_variant& cpy ) { cpy.visit( impl::copy_construct(*this) ); } static_variant( const static_variant& cpy ) { cpy.visit( impl::copy_construct(*this) ); } static_variant( static_variant&& mv ) { mv.visit( impl::move_construct(*this) ); } template static_variant(const X& v) { static_assert( impl::position::pos != -1, "Type not in static_variant." ); init(v); } ~static_variant() { impl::storage_ops<0, Types...>::del(_tag, storage); } template static_variant& operator=(const X& v) { static_assert( impl::position::pos != -1, "Type not in static_variant." ); this->~static_variant(); init(v); return *this; } static_variant& operator=( const static_variant& v ) { if( this == &v ) return *this; this->~static_variant(); v.visit( impl::copy_construct(*this) ); return *this; } static_variant& operator=( static_variant&& v ) { if( this == &v ) return *this; this->~static_variant(); v.visit( impl::move_construct(*this) ); return *this; } friend bool operator == ( const static_variant& a, const static_variant& b ) { return a.which() == b.which(); } friend bool operator < ( const static_variant& a, const static_variant& b ) { return a.which() < b.which(); } template X& get() { static_assert( impl::position::pos != -1, "Type not in static_variant." ); if(_tag == impl::position::pos) { void* tmp(storage); return *reinterpret_cast(tmp); } else { FC_THROW_EXCEPTION( fc::assert_exception, "static_variant does not contain a value of type ${t}", ("t",fc::get_typename::name()) ); // std::string("static_variant does not contain value of type ") + typeid(X).name() // ); } } template const X& get() const { static_assert( impl::position::pos != -1, "Type not in static_variant." ); if(_tag == impl::position::pos) { const void* tmp(storage); return *reinterpret_cast(tmp); } else { FC_THROW_EXCEPTION( fc::assert_exception, "static_variant does not contain a value of type ${t}", ("t",fc::get_typename::name()) ); } } template typename visitor::result_type visit(visitor& v) { return impl::storage_ops<0, Types...>::apply(_tag, storage, v); } template typename visitor::result_type visit(const visitor& v) { return impl::storage_ops<0, Types...>::apply(_tag, storage, v); } template typename visitor::result_type visit(visitor& v)const { return impl::storage_ops<0, Types...>::apply(_tag, storage, v); } template typename visitor::result_type visit(const visitor& v)const { return impl::storage_ops<0, Types...>::apply(_tag, storage, v); } static int count() { return impl::type_info::count; } void set_which( int w ) { FC_ASSERT( w < count() ); this->~static_variant(); _tag = w; impl::storage_ops<0, Types...>::con(_tag, storage); } int which() const {return _tag;} }; template struct visitor { typedef Result result_type; }; struct from_static_variant { variant& var; const uint32_t _max_depth; from_static_variant( variant& dv, uint32_t max_depth ):var(dv),_max_depth(max_depth){} typedef void result_type; template void operator()( const T& v )const { to_variant( v, var, _max_depth ); } }; struct to_static_variant { const variant& var; const uint32_t _max_depth; to_static_variant( const variant& dv, uint32_t max_depth ):var(dv),_max_depth(max_depth){} typedef void result_type; template void operator()( T& v )const { from_variant( var, v, _max_depth ); } }; template void to_variant( const fc::static_variant& s, fc::variant& v, uint32_t max_depth ) { FC_ASSERT( max_depth > 0 ); variants vars(2); vars[0] = s.which(); s.visit( from_static_variant(vars[1], max_depth - 1) ); v = std::move(vars); } template void from_variant( const fc::variant& v, fc::static_variant& s, uint32_t max_depth ) { FC_ASSERT( max_depth > 0 ); auto ar = v.get_array(); if( ar.size() < 2 ) return; s.set_which( ar[0].as_uint64() ); s.visit( to_static_variant(ar[1], max_depth - 1) ); } template struct get_typename { static const char* name() { return typeid(static_variant).name(); } }; } // namespace fc