近期项目用到了json规范来实现数据传递,但是由于c++没有反射功能,在使用json的时候,无法做到定义class,则能自动生成对象转json字符串和json字符串反序列化为对象的功能。每次新增对象,或者修改字段,都必须手动修改c++代码,这样的搬砖非常苦恼。顾想设计一个自动生成对象和json代码的工具。思路如下图:
一、字段描述
1、字段名;
2、字段类型;
3、字段复合类型;(当类型为list、map、object的时候描述对应的类型)
4、字段默认值;
5、字段描述;
#ifndef __DTFIELD_H
#define __DTFIELD_H
#include <string>
#include <map>
class dtfield
{
public:
std::string fcreatedate = "";//创建日期
std::string fcode = "";//属性唯一代码
std::string description = "";//中文描述
std::string dtfieldtype_fcode = "";//数据类型代码
std::string finnerfieldtype = "";//当数据类型代码为集合时对应的集合数据类型代码
std::string flength = "";//属性值的最大字段长度
std::string fdecimal = "0";//数据类型代码为数值的小数位
std::string fdefault = "";//属性缺省值
std::string fshoworder = "";//显示顺序
std::map<std::string,std::string> extendparam = "";//扩展参数key=value;
public:
dtfield();
~dtfield();
public:
/// Functional methods please refer to the base class(UTJsonConvertBase) description
bool ObjectFromJson(const std::string &jsonInt);
bool ObjectToJson(std::string &jsonOut, std::map<std::string, bool> *pFileds = NULL);
bool Copy(utdtfield* pObject);
public:
bool ObjectFromJsonElement(void* pElementIn);
bool ObjectToJsonElement(void *pDoc, void *pElement, std::map<std::string, bool> *pFileds = NULL);
bool Clear();
};
#endif//__UTDTFIELD_H
二、对象描述
1、类名;
2、类描述;
3、父类名称;
4、字段列表描述
5、成员函数描述(基类接口方法)
#ifndef __DTOBJECT_H
#define __DTOBJECT_H
#include <string>
#include <map>
#include <vector>
#include "dtfield.h"
class dtobject
{
public:
std::string fcreatedate = "";//创建日期
std::string fcode = "";//对象代码
std::string description = "";//中文名称
std::map<std::string,std::string> extendparam = "";//扩展参数key=value;
std::vector<dtfield*> ltfield;//对象属性列表
public:
~dtobject();
dtobject();
public:
/// Functional methods please refer to the base class(UTJsonConvertBase) description
bool ObjectFromJson(const std::string &jsonInt);
bool ObjectToJson(std::string &jsonOut, std::map<std::string, bool> *pFileds = NULL);
bool Copy(utdtobject* pObject);
public:
bool ObjectFromJsonElement(void* pElementIn);
bool ObjectToJsonElement(void *pDoc, void *pElement, std::map<std::string, bool> *pFileds = NULL);
bool Clear();
};
#endif//__DTOBJECT_H
三、项目描述
1、项目名称(做为命名空间)
2、项目描述
3、类列表
#ifndef __DTPROJECTOBJECT_H
#define __DTPROJECTOBJECT_H
#include <string>
#include <map>
#include <vector>
#include "dtobject.h"
class dtprojectobject
{
public:
std::string fcreatedate = "";//创建日期
std::string fcode = "";//项目代码
std::string description = "";//项目描述
std::string dtprojectversion_fcode = "";//版本代码
std::map<std::string,std::string> extendparam = "";//扩展参数key=value;
std::vector<dtobject*> ltobj;//项目对象列表
public:
dtprojectobject();
~dtprojectobject();
public:
/// Functional methods please refer to the base class(UTJsonConvertBase) description
bool ObjectFromJson(const std::string &jsonInt);
bool ObjectToJson(std::string &jsonOut, std::map<std::string, bool> *pFileds = NULL);
bool Copy(utdtprojectobject* pObject);
public:
bool ObjectFromJsonElement(void* pElementIn);
bool ObjectToJsonElement(void *pDoc, void *pElement, std::map<std::string, bool> *pFileds = NULL);
bool Clear();
};
#endif//__DTPROJECTOBJECT_H
四、项目描述与c++类映射
项目---------------------------c++头文件
项目名称---------------------c++命名空间
五、代码生成工具下载地址
代码生成工具