Monero
Loading...
Searching...
No Matches
variant.h
Go to the documentation of this file.
1// Copyright (c) 2014-2022, The Monero Project
2//
3// All rights reserved.
4//
5// Redistribution and use in source and binary forms, with or without modification, are
6// permitted provided that the following conditions are met:
7//
8// 1. Redistributions of source code must retain the above copyright notice, this list of
9// conditions and the following disclaimer.
10//
11// 2. Redistributions in binary form must reproduce the above copyright notice, this list
12// of conditions and the following disclaimer in the documentation and/or other
13// materials provided with the distribution.
14//
15// 3. Neither the name of the copyright holder nor the names of its contributors may be
16// used to endorse or promote products derived from this software without specific
17// prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28//
29// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30
37#pragma once
38
39#include <boost/variant/variant.hpp>
40#include <boost/variant/apply_visitor.hpp>
41#include <boost/variant/static_visitor.hpp>
42#include <boost/mpl/empty.hpp>
43#include <boost/mpl/if.hpp>
44#include <boost/mpl/front.hpp>
45#include <boost/mpl/pop_front.hpp>
46#include "serialization.h"
47
54template <class Archive, class T>
58
63template <class Archive, class Variant, class TBegin, class TEnd>
65{
66 typedef typename Archive::variant_tag_type variant_tag_type;
67 typedef typename boost::mpl::next<TBegin>::type TNext;
68 typedef typename boost::mpl::deref<TBegin>::type current_type;
69
70 // A tail recursive inline function.... okay...
71 static inline bool read(Archive &ar, Variant &v, variant_tag_type t)
72 {
75 if(!do_serialize(ar, x))
76 {
77 ar.set_fail();
78 return false;
79 }
80 v = x;
81 } else {
82 // Tail recursive.... but no mutation is going on. Why?
84 }
85 return true;
86 }
87};
88
89// This one just fails when you call it.... okay
90// So the TEnd parameter must be specified/different from TBegin
91template <class Archive, class Variant, class TBegin>
92struct variant_reader<Archive, Variant, TBegin, TBegin>
93{
94 typedef typename Archive::variant_tag_type variant_tag_type;
95
96 static inline bool read(Archive &ar, Variant &v, variant_tag_type t)
97 {
98 ar.set_fail();
99 return false;
100 }
101};
102
103template <template <bool> class Archive, typename... T>
104static bool do_serialize(Archive<false> &ar, boost::variant<T...> &v) {
105 using types = typename boost::variant<T...>::types;
106 typename Archive<false>::variant_tag_type t;
107 ar.begin_variant();
108 ar.read_variant_tag(t);
109 if(!variant_reader<Archive<false>, boost::variant<T...>,
110 typename boost::mpl::begin<types>::type,
111 typename boost::mpl::end<types>::type>::read(ar, v, t))
112 {
113 ar.set_fail();
114 return false;
115 }
116 ar.end_variant();
117 return true;
118}
119
120template <template <bool> class Archive>
121struct variant_write_visitor : public boost::static_visitor<bool>
122{
123 Archive<true> &ar;
124
125 variant_write_visitor(Archive<true> &a) : ar(a) { }
126
127 template <class T>
128 bool operator ()(T &rv) const
129 {
130 ar.begin_variant();
131 ar.write_variant_tag(variant_serialization_traits<Archive<true>, T>::get_tag());
132 if(!do_serialize(ar, rv))
133 {
134 ar.set_fail();
135 return false;
136 }
137 ar.end_variant();
138 return true;
139 }
140};
141
142template <template <bool> class Archive, typename... T>
143static bool do_serialize(Archive<true> &ar, boost::variant<T...> &v)
144{
145 return boost::apply_visitor(variant_write_visitor<Archive>(ar), v);
146}
binary_archive< false > ar
Definition cold-outputs.cpp:54
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1124
Simple DSL AAPI based on.
Archive::variant_tag_type variant_tag_type
Definition variant.h:94
static bool read(Archive &ar, Variant &v, variant_tag_type t)
Definition variant.h:96
reads a variant
Definition variant.h:65
boost::mpl::deref< TBegin >::type current_type
Definition variant.h:68
Archive::variant_tag_type variant_tag_type
Definition variant.h:66
static bool read(Archive &ar, Variant &v, variant_tag_type t)
Definition variant.h:71
boost::mpl::next< TBegin >::type TNext
Definition variant.h:67
Definition variant.h:56
Definition variant.h:122
bool operator()(T &rv) const
Definition variant.h:128
Archive< true > & ar
Definition variant.h:123
variant_write_visitor(Archive< true > &a)
Definition variant.h:125
static bool do_serialize(Archive< false > &ar, boost::variant< T... > &v)
Definition variant.h:104
#define T(x)