mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-12 21:56:54 +00:00
Make folly::Optional TBv2 compliant (#490)
Summary: The container implementation for `folly::Optional` currently lacks TBv2 support. This change is a skilfully crafted cut-n-paste of the `std::optional` TBv2 implementation. Reviewed By: ajor Differential Revision: D56139280
This commit is contained in:
parent
a014cdd4de
commit
03518150c5
@ -29,3 +29,31 @@ void getSizeType(const %1%<T>& container, size_t& returnArg) {
|
||||
}
|
||||
}
|
||||
"""
|
||||
|
||||
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);
|
||||
}
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user