object-introspection/types/array_type.toml
Alastair Robertson 68290655b1 TypeGraph: Update container TOML files to new format
This change is fully backwards compatible with the old ContainerInfo
parser, as it is just adding new fields.

The old fields will continue to be used by legacy OICodeGen until that
is removed.

Also add a README to document the format.
2023-05-26 18:21:59 +01:00

31 lines
664 B
TOML

[info]
type_name = "std::array"
ctype = "ARRAY_TYPE"
header = "array"
# Old:
numTemplateParams = 1
ns = ["namespace std"]
typeName = "std::array<"
[codegen]
decl = """
template<typename T, long unsigned int N>
void getSizeType(const %1%<T, N> &container, size_t& returnArg);
"""
func = """
template<typename T, long unsigned int N>
void getSizeType(const %1%<T,N> &container, size_t& returnArg)
{
SAVE_DATA((uintptr_t)container.size());
SAVE_SIZE(sizeof(container));
for (auto & it: container) {
// undo the static size that has already been added per-element
SAVE_SIZE(-sizeof(it));
getSizeType(it, returnArg);
}
}
"""