-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreflect-cpp.lua
167 lines (148 loc) · 7.98 KB
/
reflect-cpp.lua
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package("reflect-cpp")
set_homepage("https://github.com/getml/reflect-cpp")
set_description("A C++20 library for fast serialization, deserialization and validation using reflection. Supports JSON, BSON, CBOR, flexbuffers, msgpack, TOML, XML, YAML / msgpack.org[C++20]")
set_license("MIT")
add_urls("https://github.com/getml/reflect-cpp/archive/refs/tags/$(version).tar.gz",
"https://github.com/getml/reflect-cpp.git", {submodules = false})
add_versions("v0.17.0", "08b6406cbe4c6c14ff1a619fe93a94f92f6d9eb22213d93529ad975993945e45")
add_versions("v0.16.0", "a84d94dbd353d788926d6e54507b44c046863f7bc4ecb35afe0338374a68a77d")
add_versions("v0.14.1", "639aec9d33025703a58d32c231ab1ab474c0cc4fb0ff90eadcaffb49271c41cd")
add_versions("v0.14.0", "ea92a2460a71184b7d4fa4e9baad9910efad092df78b114459a7d6b0ee558d3c")
add_versions("v0.13.0", "a7a31832fe8bbaa7f7299da46dfd4ccc8b99a13242e16a1d93f8669de1fca9c6")
add_versions("v0.12.0", "13d448dd5eaee13ecb7ab5cb61cb263c7111ba75230503adc823a888f68e1eaa")
add_versions("v0.11.1", "e45f112fb3f14507a4aa53b99ae2d4ab6a4e7b2d5f04dd06fec00bf7faa7bbdc")
add_versions("v0.10.0", "d2c8876d993ddc8c57c5804e767786bdb46a2bdf1a6cd81f4b14f57b1552dfd7")
add_patches("0.16.0", "patches/0.16.0/cmake.patch", "1b2a6e0ed81dd0bd373bd1daaf52010de965f3829e5e19406c53e8ebf0a5b9fc")
add_patches("0.11.1", "patches/0.11.1/cmake.patch", "a43ae2c6de455054ab860adfb309da7bd376c31c493c8bab0ebe07aae0805205")
add_patches("0.10.0", "patches/0.10.0/cmake.patch", "b8929c0a13bd4045cbdeea0127e08a784e2dc8c43209ca9f056fff4a3ab5c4d3")
add_configs("bson", {description = "Enable Bson Support.", default = false, type = "boolean", readonly = true})
add_configs("yyjson", {description = "Enable yyjson Support.", default = true, type = "boolean"})
add_configs("cbor", {description = "Enable Cbor Support.", default = false, type = "boolean"})
add_configs("flatbuffers", {description = "Enable Flexbuffers Support.", default = false, type = "boolean"})
add_configs("msgpack", {description = "Enable Msgpack Support.", default = false, type = "boolean"})
add_configs("xml", {description = "Enable Xml Support.", default = false, type = "boolean"})
add_configs("toml", {description = "Enable Toml Support.", default = false, type = "boolean"})
add_configs("yaml", {description = "Enable Yaml Support.", default = false, type = "boolean"})
add_configs("ubjson", {description = "Enable UBJSON Support.", default = false, type = "boolean"})
if is_plat("windows") then
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
end
on_check(function (package)
if package:is_plat("windows") then
local vs = package:toolchain("msvc"):config("vs")
assert(vs and tonumber(vs) >= 2022, "package(reflect-cpp): need vs >= 2022")
else
assert(package:check_cxxsnippets({test = [[
#include <ranges>
#include <source_location>
#include <iostream>
void test() {
constexpr std::string_view message = "Hello, C++20!";
for (char c : std::views::filter(message, [](char c) { return std::islower(c); }))
std::cout << std::source_location::current().line() << ": " << c << '\n';
}
]]}, {configs = {languages = "c++20"}}), "package(reflect-cpp) Require at least C++20.")
end
end)
on_load(function (package)
if package:config("yyjson") then
package:add("deps", "yyjson")
end
if package:config("cbor") then
package:add("deps", "tinycbor")
end
if package:config("flatbuffers") then
package:add("deps", "flatbuffers")
end
if package:config("msgpack") then
package:add("deps", "msgpack-c")
end
if package:config("xml") then
package:add("deps", "pugixml")
end
if package:config("toml") then
package:add("deps", "toml++")
end
if package:config("yaml") then
package:add("deps", "yaml-cpp")
end
if package:config("ubjson") then
package:add("deps", "jsoncons")
end
local version = package:version()
if version then
if version:lt("0.13.0") then
package:set("kind", "library", {headeronly = true})
end
if version:ge("0.11.1") then
package:add("deps", "ctre", {configs = {cmake = true}})
if version:eq("0.11.1") then
package:add("defines", "REFLECTCPP_NO_BUNDLED_DEPENDENCIES")
end
end
end
if package:gitref() or version:lt("0.11.1") or version:ge("0.13.0") then
package:add("deps", "cmake")
end
end)
on_install(function (package)
local version = package:version()
if package:gitref() or version:lt("0.11.1") or version:ge("0.13.0") then
local configs = {
"-DREFLECTCPP_USE_BUNDLED_DEPENDENCIES=OFF",
"-DREFLECTCPP_USE_VCPKG=OFF",
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_BSON=" .. (package:config("bson") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_CBOR=" .. (package:config("cbor") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_FLEXBUFFERS=" .. (package:config("flatbuffers") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_MSGPACK=" .. (package:config("msgpack") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_XML=" .. (package:config("xml") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_TOML=" .. (package:config("toml") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_UBJSON=" .. (package:config("ubjson") and "ON" or "OFF"))
table.insert(configs, "-DREFLECTCPP_YAML=" .. (package:config("yaml") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
os.rm("include/thirdparty")
os.cp("include", package:installdir())
else
os.rm("include/thirdparty")
os.cp("include", package:installdir())
end
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <rfl/json.hpp>
#include <rfl.hpp>
struct Person {
std::string first_name;
std::string last_name;
int age;
};
const auto homer = Person{.first_name = "Homer",
.last_name = "Simpson",
.age = 45};
void test() {
const std::string json_string = rfl::json::write(homer);
auto homer2 = rfl::json::read<Person>(json_string).value();
}
]]}, {configs = {languages = "c++20"}}))
if package:config("msgpack") then
assert(package:check_cxxsnippets({test = [[
#include <rfl/msgpack.hpp>
#include <rfl.hpp>
struct Person {
std::string first_name;
std::string last_name;
int age;
};
const auto homer = Person{.first_name = "Homer",
.last_name = "Simpson",
.age = 45};
void test() {
std::vector<char> msgpack_str_vec = rfl::msgpack::write(homer);
auto homer2 = rfl::msgpack::read<Person>(msgpack_str_vec).value();
}
]]}, {configs = {languages = "c++20"}}))
end
end)