Monero
Toggle main menu visibility
Loading...
Searching...
No Matches
src
serialization
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
54
template
<
class
Archive,
class
T>
55
struct
variant_serialization_traits
56
{
57
};
58
63
template
<
class
Archive,
class
Variant,
class
TBegin,
class
TEnd>
64
struct
variant_reader
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
{
73
if
(
variant_serialization_traits<Archive, current_type>::get_tag
() == t) {
74
current_type
x;
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?
83
return
variant_reader<Archive, Variant, TNext, TEnd>::read
(
ar
, v, t);
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
91
template
<
class
Archive,
class
Variant,
class
TBegin>
92
struct
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
103
template
<
template
<
bool
>
class
Archive,
typename
...
T
>
104
static
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
120
template
<
template
<
bool
>
class
Archive>
121
struct
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
142
template
<
template
<
bool
>
class
Archive,
typename
...
T
>
143
static
bool
do_serialize
(Archive<true> &
ar
, boost::variant<T...> &v)
144
{
145
return
boost::apply_visitor(
variant_write_visitor<Archive>
(
ar
), v);
146
}
ar
binary_archive< false > ar
Definition
cold-outputs.cpp:54
a
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition
pointer.h:1124
serialization.h
Simple DSL AAPI based on.
variant_reader< Archive, Variant, TBegin, TBegin >::variant_tag_type
Archive::variant_tag_type variant_tag_type
Definition
variant.h:94
variant_reader< Archive, Variant, TBegin, TBegin >::read
static bool read(Archive &ar, Variant &v, variant_tag_type t)
Definition
variant.h:96
variant_reader
reads a variant
Definition
variant.h:65
variant_reader::current_type
boost::mpl::deref< TBegin >::type current_type
Definition
variant.h:68
variant_reader::variant_tag_type
Archive::variant_tag_type variant_tag_type
Definition
variant.h:66
variant_reader::read
static bool read(Archive &ar, Variant &v, variant_tag_type t)
Definition
variant.h:71
variant_reader::TNext
boost::mpl::next< TBegin >::type TNext
Definition
variant.h:67
variant_serialization_traits
Definition
variant.h:56
variant_write_visitor
Definition
variant.h:122
variant_write_visitor::operator()
bool operator()(T &rv) const
Definition
variant.h:128
variant_write_visitor::ar
Archive< true > & ar
Definition
variant.h:123
variant_write_visitor::variant_write_visitor
variant_write_visitor(Archive< true > &a)
Definition
variant.h:125
do_serialize
static bool do_serialize(Archive< false > &ar, boost::variant< T... > &v)
Definition
variant.h:104
T
#define T(x)
Generated on
for Monero by
1.17.0