Go to the documentation of this file.
29 #ifndef ROSCPP_SERIALIZATION_H
30 #define ROSCPP_SERIALIZATION_H
34 #include <ros/types.h>
38 #include "ros/message_traits.h"
39 #include "ros/builtin_message_traits.h"
40 #include "ros/exception.h"
41 #include "ros/datatypes.h"
55 #define ROS_NEW_SERIALIZATION_API 1
74 #define ROS_DECLARE_ALLINONE_SERIALIZER \
75 template<typename Stream, typename T> \
76 inline static void write(Stream& stream, const T& t) \
78 allInOne<Stream, const T&>(stream, t); \
81 template<typename Stream, typename T> \
82 inline static void read(Stream& stream, T& t) \
84 allInOne<Stream, T&>(stream, t); \
87 template<typename T> \
88 inline static uint32_t serializedLength(const T& t) \
91 allInOne<LStream, const T&>(stream, t); \
92 return stream.getLength(); \
97 namespace serialization
99 namespace mt = message_traits;
125 template<
typename Stream>
134 template<
typename Stream>
145 return t.serializationLength();
152 template<
typename T,
typename Stream>
161 template<
typename T,
typename Stream>
176 #define ROS_CREATE_SIMPLE_SERIALIZER(Type) \
177 template<> struct Serializer<Type> \
179 template<typename Stream> inline static void write(Stream& stream, const Type v) \
181 *reinterpret_cast<Type*>(stream.advance(sizeof(v))) = v; \
184 template<typename Stream> inline static void read(Stream& stream, Type& v) \
186 v = *reinterpret_cast<Type*>(stream.advance(sizeof(v))); \
189 inline static uint32_t serializedLength(const Type&) \
191 return sizeof(Type); \
195 #define ROS_CREATE_SIMPLE_SERIALIZER_ARM(Type) \
196 template<> struct Serializer<Type> \
198 template<typename Stream> inline static void write(Stream& stream, const Type v) \
200 memcpy(stream.advance(sizeof(v)), &v, sizeof(v) ); \
203 template<typename Stream> inline static void read(Stream& stream, Type& v) \
205 memcpy(&v, stream.advance(sizeof(v)), sizeof(v) ); \
208 inline static uint32_t serializedLength(const Type&) \
210 return sizeof(Type); \
214 #if defined(__arm__) || defined(__arm)
243 template<
typename Stream>
inline static void write(
Stream& stream,
const bool v)
245 uint8_t b = (uint8_t)v;
246 #if defined(__arm__) || defined(__arm)
247 memcpy(stream.
advance(1), &b, 1 );
249 *
reinterpret_cast<uint8_t*
>(stream.
advance(1)) = b;
253 template<
typename Stream>
inline static void read(
Stream& stream,
bool& v)
256 #if defined(__arm__) || defined(__arm)
257 memcpy(&b, stream.
advance(1), 1 );
259 b = *
reinterpret_cast<uint8_t*
>(stream.
advance(1));
273 template<
class ContainerAllocator>
274 struct Serializer<
std::basic_string<char, std::char_traits<char>, ContainerAllocator> >
276 typedef std::basic_string<char, std::char_traits<char>, ContainerAllocator>
StringType;
278 template<
typename Stream>
281 size_t len = str.size();
282 stream.next((uint32_t)len);
286 memcpy(stream.
advance((uint32_t)len), str.data(), len);
290 template<
typename Stream>
307 return 4 + (uint32_t)str.size();
317 template<
typename Stream>
324 template<
typename Stream>
343 template<
typename Stream>
350 template<
typename Stream>
366 template<
typename T,
class ContainerAllocator,
class Enabled =
void>
373 template<
typename T,
class ContainerAllocator>
376 typedef std::vector<T, typename ContainerAllocator::template rebind<T>::other>
VecType;
380 template<
typename Stream>
383 stream.next((uint32_t)v.size());
386 for (; it != end; ++it)
392 template<
typename Stream>
400 for (; it != end; ++it)
411 for (; it != end; ++it)
423 template<
typename T,
class ContainerAllocator>
426 typedef std::vector<T, typename ContainerAllocator::template rebind<T>::other>
VecType;
430 template<
typename Stream>
433 uint32_t len = (uint32_t)v.size();
437 const uint32_t data_len = len * (uint32_t)
sizeof(T);
438 memcpy(stream.
advance(data_len), &v.front(), data_len);
442 template<
typename Stream>
451 const uint32_t data_len = (uint32_t)
sizeof(T) * len;
452 memcpy(&v.front(), stream.
advance(data_len), data_len);
458 return 4 + v.size() * (uint32_t)
sizeof(T);
465 template<
typename T,
class ContainerAllocator>
469 typedef std::vector<T, typename ContainerAllocator::template rebind<T>::other>
VecType;
473 template<
typename Stream>
476 stream.next((uint32_t)v.size());
479 for (; it != end; ++it)
485 template<
typename Stream>
493 for (; it != end; ++it)
505 size += len_each * (uint32_t)v.size();
515 template<
typename T,
class ContainerAllocator,
typename Stream>
524 template<
typename T,
class ContainerAllocator,
typename Stream>
533 template<
typename T,
class ContainerAllocator>
542 template<
typename T,
size_t N,
class Enabled =
void>
549 template<
typename T,
size_t N>
556 template<
typename Stream>
561 for (; it != end; ++it)
567 template<
typename Stream>
572 for (; it != end; ++it)
583 for (; it != end; ++it)
595 template<
typename T,
size_t N>
602 template<
typename Stream>
605 const uint32_t data_len = N *
sizeof(T);
606 memcpy(stream.
advance(data_len), &v.front(), data_len);
609 template<
typename Stream>
612 const uint32_t data_len = N *
sizeof(T);
613 memcpy(&v.front(), stream.
advance(data_len), data_len);
618 return N *
sizeof(T);
625 template<
typename T,
size_t N>
633 template<
typename Stream>
638 for (; it != end; ++it)
644 template<
typename Stream>
649 for (; it != end; ++it)
664 template<
typename T,
size_t N,
typename Stream>
673 template<
typename T,
size_t N,
typename Stream>
682 template<
typename T,
size_t N>
691 namespace stream_types
718 uint8_t* old_data = data_;
732 inline uint32_t
getLength() {
return (uint32_t)(end_ - data_); }
737 , end_(_data + _count)
830 uint32_t old = count_;
930 #endif // ROSCPP_SERIALIZATION_H
Base class for all exceptions thrown by ROS.
Time representation. May either represent wall clock time or ROS clock time.
OStream(uint8_t *data, uint32_t count)
ROS_FORCE_INLINE void next(T &t)
Deserialize an item from this input stream.
Templated serialization class. Default implementation provides backwards compatibility with old messa...
ArrayType::const_iterator ConstIteratorType
ArrayType::iterator IteratorType
Stream(uint8_t *_data, uint32_t _count)
ROS_FORCE_INLINE uint8_t * advance(uint32_t len)
Advances the stream, checking bounds, and returns a pointer to the position before it was advanced.
ROS_FORCE_INLINE void next(const T &t)
Serialize an item to this output stream.
static void write(Stream &stream, const bool v)
static void write(Stream &stream, const ArrayType &v)
void serialize(Stream &stream, const T &t)
Serialize an object. Stream here should normally be a ros::serialization::OStream.
static void write(Stream &stream, T &t)
Write an object to the stream. Normally the stream passed in here will be a ros::serialization::OStre...
SerializedMessage serializeMessage(const M &message)
Serialize a message.
std::array< T, N > ArrayType
static uint32_t serializedLength(const ArrayType &v)
static void notify(const PreDeserializeParams< M > &)
void deserializeMessage(const SerializedMessage &m, M &message)
Deserialize a message. If includes_length is true, skips the first 4 bytes.
static void read(Stream &stream, VecType &v)
static uint32_t serializedLength(const ros::Time &)
static void read(Stream &stream, StringType &str)
ArrayType::iterator IteratorType
std::vector< T, typename ContainerAllocator::template rebind< T >::other > VecType
#define ROSCPP_SERIALIZATION_DECL
VecType::iterator IteratorType
boost::shared_array< uint8_t > buf
static void write(Stream &stream, const ros::Duration &v)
VecType::iterator IteratorType
#define ROS_CREATE_SIMPLE_SERIALIZER_ARM(Type)
std::basic_string< char, std::char_traits< char >, ContainerAllocator > StringType
VecType::const_iterator ConstIteratorType
uint32_t serializationLength(const T &t)
Determine the serialized length of an object.
def message(msg, *args, **kwargs)
static void read(Stream &stream, ros::Duration &v)
static uint32_t serializedLength(T &t)
Determine the serialized length of an object.
static uint32_t serializedLength(const ArrayType &)
ROS_FORCE_INLINE uint32_t advance(uint32_t len)
increment the length by len
Duration representation for use with the Time class.
VecType::const_iterator ConstIteratorType
StreamOverrunException(const std::string &what)
static void write(Stream &stream, const ArrayType &v)
IStream(uint8_t *data, uint32_t count)
static void read(Stream &stream, T &t)
Read an object from the stream. Normally the stream passed in here will be a ros::serialization::IStr...
uint32_t getLength()
Get the total length of this tream.
static void write(Stream &stream, const ArrayType &v)
uint32_t getLength()
Returns the amount of space left in the stream.
static void read(Stream &stream, ArrayType &v)
static uint32_t serializedLength(const ArrayType &v)
static uint32_t serializedLength(const VecType &v)
std::vector< T, typename ContainerAllocator::template rebind< T >::other > VecType
void deserialize(Stream &stream, T &t)
Deserialize an object. Stream here should normally be a ros::serialization::IStream.
VecType::iterator IteratorType
VecType::const_iterator ConstIteratorType
called by the SubscriptionCallbackHelper after a message is instantiated but before that message is d...
static void read(Stream &stream, ArrayType &v)
static void write(Stream &stream, const VecType &v)
static void read(Stream &stream, ros::Time &v)
stream_types::StreamType StreamType
ArrayType::iterator IteratorType
T read(const std::string &str)
General template which is unimplemented; implemented specializations follow below.
static void read(Stream &stream, ArrayType &v)
#define ROS_CREATE_SIMPLE_SERIALIZER(Type)
std::shared_ptr< std::map< std::string, std::string > > connection_header
Stream base-class, provides common functionality for IStream and OStream.
static void write(Stream &stream, const StringType &str)
static void read(Stream &stream, bool &v)
static void write(Stream &stream, const ros::Time &v)
std::shared_ptr< M > message
static uint32_t serializedLength(bool)
ROS_FORCE_INLINE IStream & operator>>(T &t)
static uint32_t serializedLength(const ros::Duration &)
ROS_FORCE_INLINE OStream & operator<<(const T &t)
ROSCPP_SERIALIZATION_DECL void throwStreamOverrun()
static void read(Stream &stream, VecType &v)
Vector serializer. Default implementation does nothing.
static void read(Stream &stream, VecType &v)
static void write(Stream &stream, const VecType &v)
std::vector< T, typename ContainerAllocator::template rebind< T >::other > VecType
std::array< T, N > ArrayType
Array serializer, default implementation does nothing.
static uint32_t serializedLength(const VecType &v)
ROSCPP_DECL bool ok()
Check whether it's time to exit.
static void write(Stream &stream, const VecType &v)
ROS_FORCE_INLINE void next(const T &t)
Add the length of an item to this length stream.
ArrayType::const_iterator ConstIteratorType
SerializedMessage serializeServiceResponse(bool ok, const M &message)
Serialize a service response.
static uint32_t serializedLength(const VecType &v)
std::array< T, N > ArrayType
geometry_msgs::TransformStamped t
ArrayType::const_iterator ConstIteratorType
static uint32_t serializedLength(const StringType &str)
sick_scan_xd
Author(s): Michael Lehning
, Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10