2024-06-14 22:25:34 +08:00
|
|
|
#include "guid.h"
|
|
|
|
|
#include "yaml/yaml.h"
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <cassert>
|
|
|
|
|
using namespace refl;
|
|
|
|
|
using namespace std;
|
2024-06-22 10:02:48 +08:00
|
|
|
void testGuid() {
|
|
|
|
|
Guid guid = Guid::Make();
|
2024-06-16 22:52:45 +08:00
|
|
|
YAML::TextArchive::Register<Guid>();
|
2024-06-22 10:02:48 +08:00
|
|
|
string text = YAML::Text_Serialize(guid);
|
|
|
|
|
auto res = YAML::Text_Unserialize<Guid>(text);
|
|
|
|
|
Guid guid2 = res.value();
|
|
|
|
|
assert(guid == guid2);
|
|
|
|
|
std::cout << guid << std::endl;
|
|
|
|
|
}
|
|
|
|
|
void testMeta() {
|
|
|
|
|
MetaBundle mb1;
|
|
|
|
|
mb1.metadatas.push_back({ Guid::Make() , "hello1" });
|
|
|
|
|
mb1.metadatas.push_back({ Guid::Make() , "hello2" });
|
|
|
|
|
mb1.metadatas.push_back({ Guid::Make() , "hello3" });
|
|
|
|
|
mb1.metadatas.push_back({ Guid::Make() , "hello4" });
|
|
|
|
|
string rmb1 = YAML::Text_Serialize(mb1);
|
|
|
|
|
auto rmb2 = YAML::Text_Unserialize<MetaBundle>(rmb1);
|
|
|
|
|
if (rmb2) {
|
|
|
|
|
MetaBundle aa = rmb2.value();
|
2024-06-14 22:25:34 +08:00
|
|
|
}
|
2024-06-22 10:02:48 +08:00
|
|
|
}
|
|
|
|
|
int main() {
|
|
|
|
|
constexpr bool m1 = refl::is_map_v<std::vector<int>>;
|
|
|
|
|
constexpr bool m2 = refl::is_sequence_v<std::map<int, float>>;
|
|
|
|
|
auto cls = &TypeInfo<Guid>::StaticClass;
|
|
|
|
|
testGuid();
|
|
|
|
|
testMeta();
|
2024-06-14 22:25:34 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|