22 #include <fastcdr/FastBuffer.h> 23 #include <fastcdr/Cdr.h> 34 setName(
"sensor_msgs::msg::dds_::PointField_");
36 type_size += eprosima::fastcdr::Cdr::alignment(type_size, 4);
37 m_typeSize =
static_cast<uint32_t
>(type_size) + 4;
41 m_keyBuffer =
reinterpret_cast<unsigned char*
>(malloc(keyLength));
60 eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char*>(payload->data), payload->max_size);
62 eprosima::fastcdr::Cdr ser(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN, eprosima::fastcdr::Cdr::DDS_CDR);
63 payload->encapsulation = ser.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS ? CDR_BE : CDR_LE;
65 ser.serialize_encapsulation();
72 catch (eprosima::fastcdr::exception::NotEnoughMemoryException& )
78 payload->length =
static_cast<uint32_t
>(ser.getSerializedDataLength());
92 eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char*>(payload->data), payload->length);
95 eprosima::fastcdr::Cdr deser(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN, eprosima::fastcdr::Cdr::DDS_CDR);
98 deser.read_encapsulation();
99 payload->encapsulation = deser.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS ? CDR_BE : CDR_LE;
104 catch (eprosima::fastcdr::exception::NotEnoughMemoryException& )
115 return [data]() -> uint32_t
124 return reinterpret_cast<void*
>(
new PointField());
138 if (!m_isGetKeyDefined)
146 eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char*>(
m_keyBuffer),
150 eprosima::fastcdr::Cdr ser(fastbuffer, eprosima::fastcdr::Cdr::BIG_ENDIANNESS);
155 m_md5.update(
m_keyBuffer, static_cast<unsigned int>(ser.getSerializedDataLength()));
157 for (uint8_t i = 0; i < 16; ++i)
159 handle->value[i] =
m_md5.digest[i];
164 for (uint8_t i = 0; i < 16; ++i)
static eProsima_user_DllExport bool isKeyDefined()
This function tells you if the Key has been defined for this type.
This class represents the structure PointField defined by the user in the IDL file.
virtual eProsima_user_DllExport std::function< uint32_t()> getSerializedSizeProvider(void *data) override
static eProsima_user_DllExport size_t getCdrSerializedSize(const sensor_msgs::msg::PointField &data, size_t current_alignment=0)
This function returns the serialized size of a data depending on the buffer alignment.
virtual eProsima_user_DllExport bool getKey(void *data, eprosima::fastrtps::rtps::InstanceHandle_t *ihandle, bool force_md5=false) override
eprosima::fastrtps::rtps::InstanceHandle_t InstanceHandle_t
eprosima::fastrtps::rtps::InstanceHandle_t InstanceHandle_t
static eProsima_user_DllExport size_t getKeyMaxCdrSerializedSize(size_t current_alignment=0)
This function returns the maximum serialized size of the Key of an object depending on the buffer ali...
eProsima_user_DllExport PointFieldPubSubType()
eProsima_user_DllExport void serializeKey(eprosima::fastcdr::Cdr &cdr) const
This function serializes the key members of an object using CDR serialization.
eProsima_user_DllExport void deserialize(eprosima::fastcdr::Cdr &cdr)
This function deserializes an object using CDR serialization.
unsigned char * m_keyBuffer
virtual eProsima_user_DllExport bool serialize(void *data, eprosima::fastrtps::rtps::SerializedPayload_t *payload) override
eprosima::fastrtps::rtps::SerializedPayload_t SerializedPayload_t
virtual eProsima_user_DllExport bool deserialize(eprosima::fastrtps::rtps::SerializedPayload_t *payload, void *data) override
virtual eProsima_user_DllExport ~PointFieldPubSubType() override
static eProsima_user_DllExport size_t getMaxCdrSerializedSize(size_t current_alignment=0)
This function returns the maximum serialized size of an object depending on the buffer alignment...
eprosima::fastrtps::rtps::SerializedPayload_t SerializedPayload_t
eProsima_user_DllExport void serialize(eprosima::fastcdr::Cdr &cdr) const
This function serializes an object using CDR serialization.
virtual eProsima_user_DllExport void * createData() override
virtual eProsima_user_DllExport void deleteData(void *data) override