-
Notifications
You must be signed in to change notification settings - Fork 0
/
tablebase.h
45 lines (37 loc) · 1.74 KB
/
tablebase.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
//
// Created by ws01 on 2021/7/23.
//
#ifndef ZEROMUSICSERVICE_SQLBASE_H
#define ZEROMUSICSERVICE_SQLBASE_H
#include <memory>
#include <string>
#include <list>
#include <map>
#define MAKE_TABLE_PTR(Name) std::shared_ptr<TableBase> makePtr() override{ \
auto ptr = std::make_shared<Name>(); \
ptr->initElement(); \
return ptr; \
} \
std::string getTableName() const override{ \
return #Name; \
}
/** @brief 变量类型 **/
enum class TypeOfData:char{
Bool, ///< 在不同数据库中以字节大小最小的整数型代替,所以请以short表示
Int,
Double,
String
};
/**
* @brief 数据表结构体
* @details 与数据表相等价,用于创建、获取、修改数据表的中介,使用时继承此结构体添加对应元素并完成相关纯虚函数,无特殊要求时可添加上述宏定义。
*/
struct TableBase{
virtual void initElement() = 0; ///< 用于完成结构体内元素指针与名称的映射
virtual std::shared_ptr<TableBase> makePtr() = 0; ///< 用于创建一个与自身相同类型的新对象,请调用新对象的initElement函数
virtual std::string getTableName() const = 0; ///< 获取表名
std::map<std::string, std::pair<void*, TypeOfData>> mapping;
std::string primaryKey; ///< 主键,若不设则请留空
bool selfIncreasing = false; ///< 自增,当设置了主键且主键为int类型时生效
};
#endif //ZEROMUSICSERVICE_SQLBASE_H