简体中文 | English
这是一个使用C++20编写的类型解析器,旨在提供对C++类型的树状可视化 ,受16bit-ykiko/magic-cpp的启发,使用类型特化和反射库yalantinglibs来实现类型解析。这使得代码量相比16bit-ykiko/magic-cpp大大减少。
当前的功能特别简单 ,只是用于解析类型并打印出类型的树状结构。 例如对于
#include "parser.hpp"
int main()
{
using T = int (*(*(*)(int*))[4])(int*); // 复杂的C风格函数指针类型 ,能看懂这个那算是谭浩强受害者了
type_vision::static_parse::Parser<T>::type::print();
return 0;
}或者你可能遇到std::function天才代码
#include "parser.hpp"
int main()
{
using T = std::function<int(const std::vector<int>&, std::tuple<int, int, int>)>; // hard to understand
type_vision::static_parse::Parser<T>::type::print();
return 0;
}由于使用了编译器宏和反射库yalantinglibs ,所以可以解析出更复杂的类型。
#include "parser.hpp"
enum class Color
{
Red=1,
Green,
Blue,
Yellow,
Purple
};
int main()
{
using T = Color;
type_vision::static_parse::Parser<T>::type::print();
return 0;
}满足聚合体的类对象可以被解析
#include "parser.hpp"
#include <string>
enum class Color
{
Red=1,
Green,
Blue,
Yellow,
Purple
};
class Person
{
public:
std::string name;
int age;
int id;
Color favorite_color;
public:
void setName(const std::string& name) { this->name = name; }
void setAge(int age) { this->age = age; }
void setId(int id) { this->id = id; }
void setFavoriteColor(Color color) { this->favorite_color = color; }
std::string getName() const { return name; }
int getAge() const { return age; }
int getId() const { return id; }
};
int main()
{
using T = Person;
type_vision::static_parse::Parser<T>::type::print();
return 0;
}- 没有用户声明的构造函数。
- 没有私有或受保护的非静态数据成员。
- 没有虚函数。
- 没有虚、私有或受保护的基类。
#include "parser.hpp"
#include <string>
template <int N>
struct Array {
int data[N];
};
int main() {
using T = Array<5>; // 数组类型
type_vision::static_parse::Parser<T>::type::print();
return 0;
}- 支持类型树的可视化
- 支持
lambda表达式的解析 - 支持不同类型树的
diff - 类型树序列化为
json或者yaml - 实现从类型树构造为合法且易懂的C++代码
- 使用C++26反射实现更复杂的类解析
This project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. You can view the full license here.
根据该License严禁将该项目用于任何商用目的。





