1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
#ifndef QPID_SERIALIZER_H
#define QPID_SERIALIZER_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.
*
*/
#include <algorithm>
namespace qpid {
/**
* Overload for types that do not provide a serialize() member.
* It should retrun a wrapper holding a reference to t that implements
* serialize()
*/
template <class T> T& serializable(T& t) { return t; }
/** Serialize std::pair */
template <class T, class U> struct SerializablePair {
std::pair<T,U>& value;
SerializablePair(std::pair<T,U>& x) : value(x) {}
template <class S> void serialize(S& s) { s(value.first)(value.second); }
};
template <class T, class U>
SerializablePair<T,U> serializable(std::pair<T,U>& p) {
return SerializablePair<T,U>(p);
}
/**
* Base class for all serializers.
* Derived serializers inherit from either Encoder or Decoder.
* Serializers can be used as functors or static_visitors.
*/
template <class Derived> class Serializer {
public:
typedef Derived& result_type; // unary functor requirement.
/** Wrapper functor to pass serializer functors by reference. */
template <class S> struct Ref {
typedef typename S::result_type result_type;
S& s;
Ref(S& ss) : s(ss) {}
template <class T> result_type operator()(T& x) { return s(x); }
template <class T> result_type operator()(const T& x) { return s(x); }
};
/** Reference wrapper to pass serializers by reference,
* e.g. to std:: functions that take functors.
*/
template <class S> static Ref<S> ref(S& s) { return Ref<S>(s); }
/** Generic rule to serialize an iterator range */
template <class Iter> Derived& operator()(Iter begin, Iter end) {
std::for_each(begin, end, ref(this->self()));
return self();
}
protected:
Derived& self() { return *static_cast<Derived*>(this); }
};
/**
* Base class for encoders, provides generic encode functions.
*
* A derived encoder must provide operator(const T&) to encode all
* primitive types T.
*/
template <class Derived> class EncoderBase : public Serializer<Derived> {
public:
using Serializer<Derived>::operator();
using Serializer<Derived>::self;
/** Default op() for non-primitive types. */
template <class T> Derived& operator()(const T& t) {
serializable(const_cast<T&>(t)).serialize(self()); return self();
}
/** Split serialize() into encode()/decode() */
template <class T> Derived& split(const T& t) {
t.encode(self()); return self();
}
};
/**
* Base class for decoders, provides generic decode functions.
*
* A derived encoder must provide operator(T&) to encode all
* primitive types T.
*/
template <class Derived> class DecoderBase : public Serializer<Derived> {
public:
using Serializer<Derived>::operator();
using Serializer<Derived>::self;
/** Default op() for non-primitive types. */
template <class T> Derived& operator()(T& t) {
serializable(t).serialize(self()); return self();
}
/** Split serialize() into encode()/decode() */
template <class T> Derived& split(T& t) {
t.decode(self()); return self();
}
};
/** Serialize a type by converting it to/from another type.
* To serialize type Foo by converting to/from type Bar create
* a serializable() overload like this:
*
* SerializeAs<Foo,Bar> serializable(Foo& t) { return SerializeAs<Foo,Bar>(t); }
*/
template <class Type, class AsType>
struct SerializeAs {
Type& value;
SerializeAs(Type & t) : value(t) {}
template <class S> void serialize(S& s) { s.split(*this); }
template <class S> void encode(S& s) const { s(AsType(value)); }
template <class S> void decode(S& s) { AsType x; s(x); value=Type(x); }
};
} // namespace qpid
#endif /*!QPID_SERIALIZER_H*/
|