Apollo  6.0
Open source self driving car software
underlay_message_type.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2018 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 
17 #ifndef CYBER_TRANSPORT_RTPS_UNDERLAY_MESSAGE_TYPE_H_
18 #define CYBER_TRANSPORT_RTPS_UNDERLAY_MESSAGE_TYPE_H_
19 
21 #include "fastrtps/TopicDataType.h"
22 
23 namespace apollo {
24 namespace cyber {
25 namespace transport {
26 
32 class UnderlayMessageType : public eprosima::fastrtps::TopicDataType {
33  public:
35 
37  virtual ~UnderlayMessageType();
38  bool serialize(void* data, SerializedPayload_t* payload);
39  bool deserialize(SerializedPayload_t* payload, void* data);
40  std::function<uint32_t()> getSerializedSizeProvider(void* data);
41  bool getKey(void* data, InstanceHandle_t* ihandle);
42  void* createData();
43  void deleteData(void* data);
44  MD5 m_md5;
45  unsigned char* m_keyBuffer;
46 };
47 
48 } // namespace transport
49 } // namespace cyber
50 } // namespace apollo
51 
52 #endif // CYBER_TRANSPORT_RTPS_UNDERLAY_MESSAGE_TYPE_H_
This class represents the structure UnderlayMessage defined by the user in the IDL file...
Definition: underlay_message.h:38
bool getKey(void *data, InstanceHandle_t *ihandle)
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
This class represents the TopicDataType of the type UnderlayMessage defined by the user in the IDL fi...
Definition: underlay_message_type.h:32
MD5 m_md5
Definition: underlay_message_type.h:44
bool serialize(void *data, SerializedPayload_t *payload)
unsigned char * m_keyBuffer
Definition: underlay_message_type.h:45
bool deserialize(SerializedPayload_t *payload, void *data)
std::function< uint32_t()> getSerializedSizeProvider(void *data)