-
Notifications
You must be signed in to change notification settings - Fork 127
/
xtype_advance.cpp
108 lines (92 loc) · 2.54 KB
/
xtype_advance.cpp
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
/*
* Copyright (C) 2021 Duowan Inc. All rights reserved.
*
* Licensed 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 <stdio.h>
#include <iostream>
#include "xpack/json.h"
using namespace std;
// The requirement is to encode seq1 when type==1, and encode seq2 when type==2
struct Sub {
int type;
string seq1;
string seq2;
XPACK(O(type, seq1, seq2));
};
struct Test {
unsigned int uid;
string name;
Sub sub;
XPACK(O(uid, name, sub));
};
namespace xpack {
template<>
struct is_xpack_xtype<Sub> {static bool const value = true;};
template <class Decoder>
bool xpack_xtype_decode(Decoder& de, Sub &data, const xpack::Extend *ext) {
de.decode_struct(data, ext);
return true;
}
template <class BaseEncoder>
class MyEncoder {
public:
MyEncoder(BaseEncoder&b, const Sub&sub):_b(&b), _s(&sub){}
template <class T>
bool encode(const char*key, const T&val, const xpack::Extend *ext) {
if (strcmp(key, "seq1") == 0) {
if (_s->type == 1) {
return _b->encode(key, val, ext);
} else {
return false;
}
} else if (strcmp(key, "seq2") == 0) {
if (_s->type == 2) {
return _b->encode(key, val, ext);
} else {
return false;
}
} else {
return _b->encode(key, val, ext);
}
}
private:
BaseEncoder *_b;
const Sub *_s;
};
template <class Encoder>
bool xpack_xtype_encode(Encoder &en, const char *name, const Sub &data, const xpack::Extend *ext) {
(void)name;
MyEncoder<Encoder> my(en, data);
data.__x_pack_encode(my, data, ext);
return true;
}
}
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
Test t;
t.uid = 127;
t.name = "PonyJack";
t.sub.type = 1;
t.sub.seq1 = "10086";
t.sub.seq2 = "10001";
string str = xpack::json::encode(t);
cout<<str<<endl;
Test n;
xpack::json::decode(str, t);
cout<<t.uid<<endl;
t.sub.type = 2;
cout<<xpack::json::encode(t)<<endl;
return 0;
}