zengine-old/engine/3rdparty/zlib/include/refl/detail/view.h

87 lines
2.3 KiB
C
Raw Normal View History

2024-04-07 21:15:34 +08:00
#pragma once
2024-04-06 23:50:17 +08:00
#include <string>
2024-04-07 21:15:34 +08:00
#include "type.h"
2024-04-06 23:50:17 +08:00
namespace refl {
class UClass;
class FieldPtr;
2024-04-09 16:31:09 +08:00
//生命周期短,适用于传参,不建议保存数据
2024-04-09 22:26:33 +08:00
//只能指向指针,引用=>指针,指针=>指针T => T*,T的类型丢失
2024-04-09 16:31:09 +08:00
struct ArgsView {
2024-04-06 23:50:17 +08:00
public:
const void* val;
const UClass* cls;
2024-04-11 10:13:15 +08:00
ArgsView() : val(nullptr), cls(nullptr) {}
2024-04-09 16:31:09 +08:00
//右值=>右值压入栈caller入栈地址
//左值=>caller变量地址
2024-04-07 21:15:34 +08:00
template<typename T>
2024-04-09 22:26:33 +08:00
ArgsView(T&& v): val(&v), cls(&TypeInfo<args_type_t<T>*>::StaticClass){
2024-04-11 10:13:15 +08:00
if constexpr (std::is_same_v<args_type_t<T>, void*>) {
val = v;
cls = &TypeInfo<const void*>::StaticClass;
}
else if constexpr (std::is_same_v<args_type_t<T>, ArgsView>) {
2024-04-09 16:31:09 +08:00
val = v.val;
cls = v.cls;
}
}
2024-04-09 22:26:33 +08:00
template<typename T>//参数 T* => T*
2024-04-11 10:13:15 +08:00
constexpr inline T cast_to() const {
2024-04-07 21:15:34 +08:00
if constexpr (std::is_pointer_v<T>) {
return (T)val;
}
else if constexpr (std::is_reference_v<T>){
using RT = std::remove_reference_t<T>;
return *(RT*)val;
}else{
return *(T*)val;
}
}
2024-04-09 22:26:33 +08:00
template<typename T>
2024-04-11 10:13:15 +08:00
T cast_ret() const {
2024-04-09 22:26:33 +08:00
if constexpr (std::is_pointer_v<T>) {
return *(T*)val;
}
else if constexpr (std::is_reference_v<T>) {
using RT = std::remove_reference_t<T>;
return **(RT**)val;
}
else {
return *(T*)val;
}
}
2024-04-07 21:15:34 +08:00
bool ConvertTo(const UClass* toClass);
2024-04-06 23:50:17 +08:00
};
2024-04-09 16:31:09 +08:00
//存入的是真实的数据类型,type用于拷贝数据
struct ArgsValue : public ArgsView {
const UClass* type;
template<typename T>
2024-04-09 22:26:33 +08:00
ArgsValue(T&& t) : ArgsView(t), type(&TypeInfo<args_type_t<T>>::StaticClass){}
2024-04-09 16:31:09 +08:00
};
struct ArgsValueList{
void* data{ nullptr };
ArgsView* ptr{nullptr};
int num{ 0 };
ArgsValueList(const std::vector<ArgsValue>& args);
~ArgsValueList();
};
2024-04-11 10:13:15 +08:00
class ObjectView {
public:
const char* ptr;
const UClass* cls;
const FieldPtr* cache{ nullptr };
ObjectView(const void* ptr, const UClass* cls) : ptr((const char*)ptr), cls(cls) {}
public:
template<typename T>
bool Get(const Name& name, T& t);
template<typename T>
bool Set(const Name& name, const T& t);
bool Invoke(const Name& name,const std::vector<ArgsView>& ArgsList);//这里是内存分配慢呀,这里是可以改成栈容器的
bool Invoke(const Name& name,std::vector<ArgsView>& ArgsList);
ObjectView Parent();
};
2024-04-06 23:50:17 +08:00
}