A Tuple_datatype is a Datatype that represents a fixed number of elements of potentially different types layed out in a specific way in memory. More...
Classes | |
| class | Element |
| A Element is one of the elements inside a Tuple_datatype. More... | |
Public Member Functions | |
| const std::vector< Element > & | elements () const |
| Accesses the elements in increasing offset order. | |
| size_t | size () const |
| Number of elements of the tuple. | |
| Datatype_sptr | densify () const override |
| Creates a new datatype as the dense copy of this one. | |
| Datatype_sptr | evaluate (Context &) const override |
| Creates a new datatype by resolving the value of all metadata references. | |
| bool | dense () const override |
| Indicate if the datatype is dense or not. | |
| size_t | datasize () const override |
| Computes the data size of a type, excluding potentially unused memory from a sparse type. | |
| size_t | buffersize () const override |
| Computes the data size of a type, including potentially unused memory from a sparse type. | |
| size_t | alignment () const override |
| Returns the required alignment for a type. | |
| bool | simple () const override |
| Tells if data can be copied as bytes (if type is dense) and doesn't need a destroyer. | |
| void * | data_to_dense_copy (void *, const void *) const override |
| Creates a dense deep copy of data. | |
| void * | data_from_dense_copy (void *, const void *) const override |
| Creates a sparse deep copy of dense data. | |
| Datatype_sptr | index (size_t) const override |
| Access the type of the element at the provided index. | |
| std::pair< void *, Datatype_sptr > | index (size_t, void *) const override |
| Access the type and value of the element at the provided index. | |
| Datatype_sptr | slice (size_t, size_t) const override |
| Access the type of the elements slice between the provided indices. | |
| std::pair< void *, Datatype_sptr > | slice (size_t, size_t, void *) const override |
| Access the type and value of the elements slice between the provided indices. | |
| void | destroy_data (void *) const override |
| Delete data whose type is described by the Datatype. | |
| std::string | debug_string () const override |
| Returns the datatype yaml representation as a string. | |
| bool | operator== (const Datatype &) const override |
| Test for equality. | |
Public Member Functions inherited from PDI::Datatype | |
| Datatype (const Attributes_map &attributes={}) | |
| Creates a new datatype. | |
| ~Datatype () override | |
| bool | operator!= (const Datatype &other) const |
| Test for inequality. | |
| virtual Datatype_sptr | member (const char *name) const |
| Access the type of the member with the provided name. | |
| virtual std::pair< void *, Datatype_sptr > | member (const char *name, void *data) const |
| Access the type and value of the member with the provided name. | |
| virtual Datatype_sptr | dereference () const |
| Access the type referenced by this. | |
| virtual std::pair< void *, Datatype_sptr > | dereference (void *data) const |
| Access the type and value referenced by this. | |
Public Member Functions inherited from PDI::Datatype_template | |
| Datatype_template (const Attributes_map &attributes={}) | |
| Creates datatype template with given attributes. | |
| Datatype_template (PC_tree_t datatype_tree) | |
| Creates datatype template. | |
| virtual | ~Datatype_template () |
| Destroys the template. | |
| Expression | attribute (const std::string &attribute_name) const |
| Returns attribute of given name as Expression. | |
| const Attributes_map & | attributes () const |
| Returns all attributes as a unordered map. | |
Static Public Member Functions | |
| static std::shared_ptr< Tuple_datatype > | make (std::vector< Element > elements, size_t buffersize, const Attributes_map &attributes={}) |
| Constructs a new Tuple_datatype. | |
Static Public Member Functions inherited from PDI::Datatype_template | |
| static void | load_basic_datatypes (Context &ctx) |
| Adds to the context the basic Array, Record, C and Fortran datatypes. | |
| static void | load_user_datatypes (Context &ctx, PC_tree_t types_tree) |
| Adds to the context the user defined datatypes. | |
Additional Inherited Members | |
Protected Attributes inherited from PDI::Datatype_template | |
| Attributes_map | m_attributes |
A Tuple_datatype is a Datatype that represents a fixed number of elements of potentially different types layed out in a specific way in memory.
Each element is given a index to access it.
| const std::vector< Element > & PDI::Tuple_datatype::elements | ( | ) | const |
Accesses the elements in increasing offset order.
| size_t PDI::Tuple_datatype::size | ( | ) | const |
Number of elements of the tuple.
|
overridevirtual |
Creates a new datatype as the dense copy of this one.
Implements PDI::Datatype.
|
overridevirtual |
Creates a new datatype by resolving the value of all metadata references.
| ctx | the context in which to evaluate this template |
Implements PDI::Datatype_template.
|
overridevirtual |
Indicate if the datatype is dense or not.
Implements PDI::Datatype.
|
overridevirtual |
Computes the data size of a type, excluding potentially unused memory from a sparse type.
Implements PDI::Datatype.
|
overridevirtual |
Computes the data size of a type, including potentially unused memory from a sparse type.
Implements PDI::Datatype.
|
overridevirtual |
|
overridevirtual |
Tells if data can be copied as bytes (if type is dense) and doesn't need a destroyer.
Implements PDI::Datatype.
|
overridevirtual |
Creates a dense deep copy of data.
| [in] | to | the pointer to the allocated memory to fill (dense data) |
| [in] | from | the pointer to the copied data (size of buffersize) |
Implements PDI::Datatype.
|
overridevirtual |
Creates a sparse deep copy of dense data.
| [in] | to | the pointer to the allocated memory to fill (size of buffersize) |
| [in] | from | the pointer to the copied data (dense data) |
Implements PDI::Datatype.
|
overridevirtual |
Access the type of the element at the provided index.
| index | the index where to look |
Reimplemented from PDI::Datatype.
|
overridevirtual |
Access the type and value of the element at the provided index.
| index | the index where to look |
| data | the address of the element to index |
Reimplemented from PDI::Datatype.
|
overridevirtual |
Access the type of the elements slice between the provided indices.
| start_index | the index where to start |
| end_index | the index where to end |
Reimplemented from PDI::Datatype.
|
overridevirtual |
Access the type and value of the elements slice between the provided indices.
| start_index | the index where to start |
| end_index | the index where to end |
| data | the address of the element to slice |
Reimplemented from PDI::Datatype.
|
overridevirtual |
Delete data whose type is described by the Datatype.
This does not deallocate the buffer used to store the data.
| [in] | ptr | to the data to free |
Implements PDI::Datatype.
|
overridevirtual |
Returns the datatype yaml representation as a string.
Implements PDI::Datatype.
|
overridevirtual |
Test for equality.
| other | the Datatype to compare |
Implements PDI::Datatype.
|
static |
Constructs a new Tuple_datatype.
| elements | the elements for the newly created Tuple_datatype in increasing offset order |
| buffersize | the total size of the buffer containing all elements |
| attributes | attributes of the tuple datatype |