object-introspection/types/repeated_field_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
809 B
TOML

[info]
type_name = "google::protobuf::RepeatedField"
ctype = "REPEATED_FIELD_TYPE"
header = "google/protobuf/repeated_field.h"
# Old:
typeName = "google::protobuf::RepeatedField<"
ns = ["google::protobuf::RepeatedField"]
numTemplateParams = 1
replaceTemplateParamIndex = []
[codegen]
decl = """
template<typename Element>
void getSizeType(const %1%<Element> &container, size_t& returnArg);
"""
func = """
template<typename Element>
void getSizeType(const %1%<Element> &container, size_t& returnArg)
{
SAVE_DATA((uintptr_t)&container);
SAVE_DATA((uintptr_t)container.Capacity());
SAVE_DATA((uintptr_t)container.size());
// The double ampersand is needed otherwise this loop doesn't work with vector<bool>
for (const auto& it: container) {
getSizeType(it, returnArg);
}
}
"""