9 Star 53 Fork 22

xyz347/xpack

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
json-data.cpp 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
xyz347 提交于 2023-06-18 08:22 +08:00 . support yaml sqlite (#39)
/*
* 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 <iostream>
#include "xpack/json.h"
using namespace std;
struct Example {
string type;
xpack::JsonData data;
XPACK(O(type, data));
};
struct Range {
int min;
int max;
XPACK(O(min, max));
};
struct User {
int id;
string name;
XPACK(O(id, name));
};
static void test(const std::string &data) {
Example e;
xpack::json::decode(data, e);
if (e.type == "range") {
Range r;
e.data.Get(r);
cout<<"min in r:"<<r.min<<endl;
cout<<"max in r:"<<r.max<<endl;
cout<<"min:"<<e.data["min"].Get<int>()<<endl;
cout<<"max:"<<e.data["max"].Get<int>()<<endl;
} else if (e.type == "user") {
cout<<"id:"<<e.data["id"].Get<int>()<<endl;
cout<<"name:"<<e.data["name"].Get<std::string>()<<endl;
} else {
cout<<"unknow type"<<endl;
}
cout<<"re encode:"<<xpack::json::encode(e)<<endl;
cout<<"data encode:"<<xpack::json::encode(e.data)<<endl;
cout<<"data dir encode:"<<e.data.String()<<endl;
}
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
string s1 = "{\"type\":\"range\", \"data\":{\"min\":12, \"max\":22}}";
string s2 = "{\"type\":\"user\", \"data\":{\"id\":123, \"name\":\"xpack\"}}";
test(s1);
test(s2);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xyz347/xpack.git
git@gitee.com:xyz347/xpack.git
xyz347
xpack
xpack
master

搜索帮助