object-introspection/types/folly_optional_type.toml

60 lines
1.3 KiB
TOML
Raw Normal View History

2022-12-19 14:37:51 +00:00
[info]
type_name = "folly::Optional"
2022-12-19 14:37:51 +00:00
ctype = "FOLLY_OPTIONAL_TYPE"
header = "folly/Optional.h"
# Old:
typeName = "folly::Optional<"
2022-12-19 14:37:51 +00:00
ns = ["folly::Optional"]
numTemplateParams = 1
2022-12-19 14:37:51 +00:00
replaceTemplateParamIndex = []
[codegen]
decl = """
template<typename T>
void getSizeType(const %1%<T> &container, size_t& returnArg);
2022-12-19 14:37:51 +00:00
"""
func = """
template <typename T>
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((uintptr_t)(container.get_pointer()));
2022-12-19 14:37:51 +00:00
getSizeType(*(container.get_pointer()), returnArg);
2022-12-19 14:37:51 +00:00
} else {
SAVE_SIZE(sizeof(%1%<T>));
SAVE_DATA(0);
}
}
"""
traversal_func = """
if (container.has_value()) {
return returnArg.template delegate<1>([&ctx, &container](auto ret) {
return OIInternal::getSizeType<Ctx>(ctx, *container, ret);
});
} else {
return returnArg.template delegate<0>(std::identity());
}
"""
[[codegen.processor]]
type = "types::st::Sum<DB, types::st::Unit<DB>, typename TypeHandler<Ctx, T0>::type>"
func = """
static constexpr auto elementField = make_field<Ctx, T0>("el");
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);
stack_ins(elementField);
}
"""