2022-12-19 14:37:51 +00:00
|
|
|
[info]
|
2023-05-23 22:26:38 +01:00
|
|
|
type_name = "std::optional"
|
2022-12-19 14:37:51 +00:00
|
|
|
ctype = "OPTIONAL_TYPE"
|
|
|
|
header = "optional"
|
2023-05-23 22:26:38 +01:00
|
|
|
|
|
|
|
# Old:
|
|
|
|
typeName = "std::optional<"
|
2022-12-19 14:37:51 +00:00
|
|
|
ns = ["namespace std"]
|
2023-05-23 22:26:38 +01:00
|
|
|
numTemplateParams = 1
|
2022-12-19 14:37:51 +00:00
|
|
|
|
|
|
|
[codegen]
|
|
|
|
decl = """
|
|
|
|
template<typename T>
|
2023-05-23 22:26:38 +01:00
|
|
|
void getSizeType(const %1%<T> &container, size_t& returnArg);
|
2022-12-19 14:37:51 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
func = """
|
|
|
|
template <typename T>
|
2023-05-23 22:26:38 +01:00
|
|
|
void getSizeType(const %1%<T>& container, size_t& returnArg) {
|
|
|
|
if (container) {
|
2022-12-19 14:37:51 +00:00
|
|
|
SAVE_SIZE(sizeof(%1%<T>) - sizeof(T));
|
|
|
|
SAVE_DATA(true);
|
2023-05-23 22:26:38 +01:00
|
|
|
getSizeType(*container, returnArg);
|
2022-12-19 14:37:51 +00:00
|
|
|
} else {
|
|
|
|
SAVE_SIZE(sizeof(%1%<T>));
|
|
|
|
SAVE_DATA(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
2023-04-20 17:52:58 +01:00
|
|
|
|
2023-08-24 11:13:23 +01:00
|
|
|
traversal_func = """
|
|
|
|
if (container.has_value()) {
|
2023-11-16 15:34:03 +00:00
|
|
|
return returnArg.template delegate<1>([&ctx, &container](auto ret) {
|
|
|
|
return OIInternal::getSizeType<Ctx>(ctx, *container, ret);
|
2023-08-24 11:13:23 +01:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return returnArg.template delegate<0>(std::identity());
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
[[codegen.processor]]
|
2023-11-15 19:28:21 +00:00
|
|
|
type = "types::st::Sum<DB, types::st::Unit<DB>, typename TypeHandler<Ctx, T0>::type>"
|
2023-08-24 11:13:23 +01:00
|
|
|
func = """
|
2024-01-09 13:56:17 +00:00
|
|
|
static constexpr auto elementField = make_field<Ctx, T0>("el");
|
2023-08-24 11:13:23 +01:00
|
|
|
|
|
|
|
auto sum = std::get<ParsedData::Sum>(d.val);
|
|
|
|
|
|
|
|
el.container_stats = result::Element::ContainerStats {
|
|
|
|
.capacity = 1,
|
|
|
|
.length = sum.index,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (sum.index == 1) {
|
|
|
|
el.exclusive_size -= sizeof(T0);
|
2023-09-14 16:09:23 +01:00
|
|
|
stack_ins(elementField);
|
2023-08-24 11:13:23 +01:00
|
|
|
}
|
|
|
|
"""
|