-
Notifications
You must be signed in to change notification settings - Fork 127
/
yaml_encoder.h
146 lines (129 loc) · 3.72 KB
/
yaml_encoder.h
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
143
144
145
146
/*
* 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.
*/
#ifndef __X_PACK_YAML_ENCODER_H
#define __X_PACK_YAML_ENCODER_H
#include <string>
#include "yaml-cpp/yaml.h"
#include "xencoder.h"
namespace xpack {
class YamlWriter:private noncopyable {
friend class XEncoder<YamlWriter>;
friend class YamlEncoder;
const static bool support_null = true;
public:
YamlWriter(size_t indent = 2, int maxDecimalPlaces = -1) {
e.SetIndent(indent);
if (maxDecimalPlaces > 0) {
e.SetFloatPrecision((size_t)maxDecimalPlaces);
e.SetDoublePrecision((size_t)maxDecimalPlaces);
}
}
~YamlWriter() {
}
private:
inline static const char *Name() {
return "yaml";
}
inline const char *IndexKey(size_t index) {
(void)index;
return NULL;
}
std::string String() {
return std::string(e.c_str(), e.size());
}
void ArrayBegin(const char *key, const Extend *ext) {
(void)ext;
xpack_set_key(key);
e << YAML::Value << YAML::BeginSeq;
}
void ArrayEnd(const char *key, const Extend *ext) {
(void)key;
(void)ext;
e << YAML::EndSeq;
}
void ObjectBegin(const char *key, const Extend *ext) {
(void)ext;
xpack_set_key(key);
e << YAML::Value << YAML::BeginMap;
}
void ObjectEnd(const char *key, const Extend *ext) {
(void)key;
(void)ext;
e << YAML::EndMap;
}
bool WriteNull(const char*key, const Extend *ext) {
(void)ext;
xpack_set_key(key);
e << YAML::Value << YAML::Null;
return true;
}
bool encode_bool(const char*key, const bool&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
e << YAML::Value << val;
return true;
}
bool encode_string(const char*key, const std::string&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
if (!val.empty()) {
e << YAML::Value << val;
} else {
e << YAML::Value << YAML::Null;
}
return true;
}
template <typename T>
typename x_enable_if<numeric<T>::value, bool>::type encode_number(const char*key, const T&val, const Extend *ext) {
(void)ext;
xpack_set_key(key);
e << YAML::Value << val;
return true;
}
void xpack_set_key(const char*key) { // openssl defined set_key macro, so we named it xpack_set_key
if (NULL!=key && key[0]!='\0') {
e << YAML::Key << key;
}
}
YAML::Emitter e;
};
class YamlEncoder {
public:
YamlEncoder() {
indentCount = 2;
maxDecimalPlaces = -1;
}
YamlEncoder& SetIndent(size_t indent) {
indentCount = indent;
return *this;
}
YamlEncoder& SetMaxDecimalPlaces(int _maxDecimalPlaces) {
maxDecimalPlaces = _maxDecimalPlaces;
return *this;
}
template <class T>
std::string encode(const T&val) {
YamlWriter wr(indentCount, maxDecimalPlaces);
XEncoder<YamlWriter> en(wr);
en.encode(NULL, val, NULL);
return wr.String();
}
private:
size_t indentCount;
int maxDecimalPlaces;
};
}
#endif