Zserio C++ runtime library
1.0.0
Built for Zserio 2.13.0
|
#include <TypeInfo.h>
Static Public Member Functions | |
static const IBasicTypeInfo< ALLOC > & | getBool () |
static const IBasicTypeInfo< ALLOC > & | getInt8 () |
static const IBasicTypeInfo< ALLOC > & | getInt16 () |
static const IBasicTypeInfo< ALLOC > & | getInt32 () |
static const IBasicTypeInfo< ALLOC > & | getInt64 () |
static const IBasicTypeInfo< ALLOC > & | getUInt8 () |
static const IBasicTypeInfo< ALLOC > & | getUInt16 () |
static const IBasicTypeInfo< ALLOC > & | getUInt32 () |
static const IBasicTypeInfo< ALLOC > & | getUInt64 () |
static const IBasicTypeInfo< ALLOC > & | getVarInt16 () |
static const IBasicTypeInfo< ALLOC > & | getVarInt32 () |
static const IBasicTypeInfo< ALLOC > & | getVarInt64 () |
static const IBasicTypeInfo< ALLOC > & | getVarInt () |
static const IBasicTypeInfo< ALLOC > & | getVarUInt16 () |
static const IBasicTypeInfo< ALLOC > & | getVarUInt32 () |
static const IBasicTypeInfo< ALLOC > & | getVarUInt64 () |
static const IBasicTypeInfo< ALLOC > & | getVarUInt () |
static const IBasicTypeInfo< ALLOC > & | getVarSize () |
static const IBasicTypeInfo< ALLOC > & | getFloat16 () |
static const IBasicTypeInfo< ALLOC > & | getFloat32 () |
static const IBasicTypeInfo< ALLOC > & | getFloat64 () |
static const IBasicTypeInfo< ALLOC > & | getBytes () |
static const IBasicTypeInfo< ALLOC > & | getString () |
static const IBasicTypeInfo< ALLOC > & | getBitBuffer () |
static const IBasicTypeInfo< ALLOC > & | getFixedSignedBitField (uint8_t bitSize) |
static const IBasicTypeInfo< ALLOC > & | getFixedUnsignedBitField (uint8_t bitSize) |
static const IBasicTypeInfo< ALLOC > & | getDynamicSignedBitField (uint8_t maxBitSize) |
static const IBasicTypeInfo< ALLOC > & | getDynamicUnsignedBitField (uint8_t maxBitSize) |
Protected Member Functions | |
BuiltinTypeInfo (StringView schemaName, SchemaType schemaType, CppType cppType) | |
Additional Inherited Members | |
![]() | |
TypeInfoBase (StringView schemaName, SchemaType schemaType, CppType cppType) | |
~TypeInfoBase () override=0 | |
StringView | getSchemaName () const override |
SchemaType | getSchemaType () const override |
CppType | getCppType () const override |
uint8_t | getBitSize () const override |
Span< const BasicFieldInfo< ALLOC > > | getFields () const override |
Span< const BasicParameterInfo< ALLOC > > | getParameters () const override |
Span< const BasicFunctionInfo< ALLOC > > | getFunctions () const override |
StringView | getSelector () const override |
Span< const BasicCaseInfo< ALLOC > > | getCases () const override |
const IBasicTypeInfo< ALLOC > & | getUnderlyingType () const override |
Span< const StringView > | getUnderlyingTypeArguments () const override |
Span< const ItemInfo > | getEnumItems () const override |
Span< const ItemInfo > | getBitmaskValues () const override |
Span< const BasicColumnInfo< ALLOC > > | getColumns () const override |
StringView | getSqlConstraint () const override |
StringView | getVirtualTableUsing () const override |
bool | isWithoutRowId () const override |
Span< const BasicTableInfo< ALLOC > > | getTables () const override |
StringView | getTemplateName () const override |
Span< const BasicTemplateArgumentInfo< ALLOC > > | getTemplateArguments () const override |
Span< const BasicMessageInfo< ALLOC > > | getMessages () const override |
Span< const BasicMethodInfo< ALLOC > > | getMethods () const override |
IBasicReflectablePtr< ALLOC > | createInstance (const ALLOC &allocator) const override |
IBasicReflectablePtr< ALLOC > | createInstance () const override |
TypeInfoBase (const TypeInfoBase &)=delete | |
TypeInfoBase & | operator= (const TypeInfoBase &)=delete |
TypeInfoBase (const TypeInfoBase &&)=delete | |
TypeInfoBase & | operator= (const TypeInfoBase &&)=delete |
![]() | |
virtual | ~IBasicTypeInfo ()=default |
Type information abstract base class for builtin types.
Definition at line 93 of file TypeInfo.h.
|
protected |
Constructor.
schemaName | The schema name to be stored in type information. |
schemaType | The schema type to be stored in type information. |
cppType | The C++ type to be stored in type information. |
Definition at line 1005 of file TypeInfo.h.
|
static |
Gets the type information of extern schema type.
Definition at line 1181 of file TypeInfo.h.
|
static |
Gets the type information of bool schema type.
Definition at line 1010 of file TypeInfo.h.
|
static |
Gets the type information of bytes schema type.
Definition at line 1163 of file TypeInfo.h.
|
static |
Gets the type information of dynamic signed bit field schema type.
maxBitSize | The maximum bit size of the dynamic bit field. |
Definition at line 1202 of file TypeInfo.h.
|
static |
Gets the type information of dynamic unsigned bit field schema type.
maxBitSize | The maximum bit size of the dynamic bit field. |
Definition at line 1241 of file TypeInfo.h.
|
static |
Gets the type information of fixed signed bit field schema type.
bitSize | The bit size of the bit field. |
Definition at line 1190 of file TypeInfo.h.
|
static |
Gets the type information of fixed unsigned bit field schema type.
bitSize | The bit size of the bit field. |
Definition at line 1196 of file TypeInfo.h.
|
static |
Gets the type information of float16 schema type.
Definition at line 1145 of file TypeInfo.h.
|
static |
Gets the type information of float32 schema type.
Definition at line 1151 of file TypeInfo.h.
|
static |
Gets the type information of float64 schema type.
Definition at line 1157 of file TypeInfo.h.
|
static |
Gets the type information of int16 schema type.
Definition at line 1022 of file TypeInfo.h.
|
static |
Gets the type information of int32 schema type.
Definition at line 1028 of file TypeInfo.h.
|
static |
Gets the type information of int64 schema type.
Definition at line 1034 of file TypeInfo.h.
|
static |
Gets the type information of int8 schema type.
Definition at line 1016 of file TypeInfo.h.
|
static |
Gets the type information of string schema type.
Definition at line 1172 of file TypeInfo.h.
|
static |
Gets the type information of uint16 schema type.
Definition at line 1046 of file TypeInfo.h.
|
static |
Gets the type information of uint32 schema type.
Definition at line 1052 of file TypeInfo.h.
|
static |
Gets the type information of uint64 schema type.
Definition at line 1058 of file TypeInfo.h.
|
static |
Gets the type information of uint8 schema type.
Definition at line 1040 of file TypeInfo.h.
|
static |
Gets the type information of varint schema type.
Definition at line 1091 of file TypeInfo.h.
|
static |
Gets the type information of varint16 schema type.
Definition at line 1064 of file TypeInfo.h.
|
static |
Gets the type information of varint32 schema type.
Definition at line 1073 of file TypeInfo.h.
|
static |
Gets the type information of varint64 schema type.
Definition at line 1082 of file TypeInfo.h.
|
static |
Gets the type information of varsize schema type.
Definition at line 1136 of file TypeInfo.h.
|
static |
Gets the type information of varuint schema type.
Definition at line 1127 of file TypeInfo.h.
|
static |
Gets the type information of varuint16 schema type.
Definition at line 1100 of file TypeInfo.h.
|
static |
Gets the type information of varuint32 schema type.
Definition at line 1109 of file TypeInfo.h.
|
static |
Gets the type information of varuint64 schema type.
Definition at line 1118 of file TypeInfo.h.