ADTF  3.18.3
Decoder

Decoder for dynamic structures defined by a DataDefinition definition. More...

Inheritance diagram for Decoder:
[legend]

Public Member Functions

DEV_ESSENTIAL_DEPRECATED_DECODER Decoder ()=default
 Default constructor.
 
 Decoder (Decoder &&)=default
 Move constructor.
 
DEV_ESSENTIAL_DEPRECATED_DECODER Decoderoperator= (Decoder &&)=default
 Move assignment operator.
 
 Decoder (const Decoder &)=delete
 No copy constructor.
 
Decoderoperator= (const Decoder &)=delete
 No copy assignment operator.
 
a_util::result::Result isValid () const override
 
size_t getElementCount () const override
 
size_t getBufferSize (DataRepresentation rep=deserialized) const
 
Codec makeCodecFor (void *data, size_t data_size, DataRepresentation rep) const
 Create a new codec with the current dynamic structure layout for a new data buffer. More...
 
- Public Member Functions inherited from StaticDecoder
 ~StaticDecoder ()=default
 virtual DTOR
 
DEV_ESSENTIAL_DEPRECATED_STATIC_DECODER StaticDecoder ()
 Default constructor.
 
 StaticDecoder (const StaticDecoder &)=delete
 Noncopyable.
 
StaticDecoderoperator= (const StaticDecoder &)=delete
 Noncopyable.
 
 StaticDecoder (StaticDecoder &&)=default
 Move constructor.
 
DEV_ESSENTIAL_DEPRECATED_STATIC_DECODER StaticDecoderoperator= (StaticDecoder &&)=default
 Move assignment operator.
 
a_util::result::Result getElement (size_t index, const StructElement *&element) const
 Access information about an element. More...
 
a_util::result::Result getElementValue (size_t index, void *value) const
 Returns the current value of the given element by copying its data to the passed-in location. More...
 
a_util::result::Result getElementValue (size_t index, a_util::variant::Variant &value) const
 Returns the current value of the given element as a variant. More...
 
const void * getElementAddress (size_t index) const
 
size_t getStaticBufferSize (DataRepresentation rep=deserialized) const
 
DataRepresentation getRepresentation () const
 

Protected Member Functions

virtual const void * getLayoutElement (size_t index) const
 this virtual pointer must stay for binary compatiblity.
 
 Decoder (const std::shared_ptr< LegacyCodecAccess > &legacy_codec_access)
 For internal use only.
 
 Decoder (std::shared_ptr< const StructLayout >, const void *data, size_t data_size, DataRepresentation rep)
 This CTOR must stay there for binary compatible reason due to an inline usage within old CodecFactory.
 
- Protected Member Functions inherited from StaticDecoder
 StaticDecoder (std::shared_ptr< const StructLayout > layout, const void *data, size_t data_size, DataRepresentation rep)
 For internal use only.
 
 StaticDecoder (const std::shared_ptr< LegacyCodecAccess > &legacy_codec_access)
 For internal use only.
 

Private Attributes

std::shared_ptr< std::vector< int32_t > > _compat_dynamic_elements
 For internal use only.
 
LegacyOffsets _compat_buffer_sizes
 For internal use only.
 

Additional Inherited Members

- Protected Attributes inherited from StaticDecoder
std::shared_ptr< LegacyCodecAccess > _legacy_access
 For internal use only.
 
const void * _compat_data
 For internal use only.
 
size_t _compat_data_size
 For internal use only.
 
const void * _compat_element_accessor
 For internal use only.
 

Detailed Description

Decoder for dynamic structures defined by a DataDefinition definition.

@dev_essential_deprecated Use the new ddl::codec::Decoder() instead.

Definition at line 46 of file codec_legacy.h.

Member Function Documentation

◆ getBufferSize()

size_t getBufferSize ( DataRepresentation  rep = deserialized) const
Parameters
[in]repThe data representation for which the buffer size should be returned.
Returns
The size of the structure in the requested data representation.

◆ getElementCount()

size_t getElementCount ( ) const
overridevirtual

Returns
The amount of elements contained in the data structure.

Reimplemented from StaticDecoder.

◆ isValid()

a_util::result::Result isValid ( ) const
overridevirtual

Returns
Whether or not the decoder is valid.
Return values
ERR_INVALID_ARGThe passed data is not large enough.

Reimplemented from StaticDecoder.

◆ makeCodecFor()

Codec makeCodecFor ( void *  data,
size_t  data_size,
DataRepresentation  rep 
) const

Create a new codec with the current dynamic structure layout for a new data buffer.

Parameters
[in]dataThe pointer to the new raw data.
[in]data_sizeThe size of the new raw data.
[in]repThe representation that the data should be encoded in.
Returns
A codec.