serialization.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3  * Copyright (C) 2009, Willow Garage, Inc.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright notice,
8  * this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the names of Willow Garage, Inc. nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef ROSCPP_SERIALIZATION_H
30 #define ROSCPP_SERIALIZATION_H
31 
33 
34 #include <ros/types.h>
35 #include <ros/time.h>
36 
37 #include "serialized_message.h"
38 #include "ros/message_traits.h"
39 #include "ros/builtin_message_traits.h"
40 #include "ros/exception.h"
41 #include "ros/datatypes.h"
42 
43 #include <vector>
44 #include <map>
45 
46 //#include <boost/array.hpp>
47 //#include <boost/call_traits.hpp>
48 //#include <boost/utility/enable_if.hpp>
49 //#include <boost/mpl/and.hpp>
50 //#include <boost/mpl/or.hpp>
51 //#include <boost/mpl/not.hpp>
52 
53 #include <cstring>
54 
55 #define ROS_NEW_SERIALIZATION_API 1
56 
74 #define ROS_DECLARE_ALLINONE_SERIALIZER \
75  template<typename Stream, typename T> \
76  inline static void write(Stream& stream, const T& t) \
77  { \
78  allInOne<Stream, const T&>(stream, t); \
79  } \
80  \
81  template<typename Stream, typename T> \
82  inline static void read(Stream& stream, T& t) \
83  { \
84  allInOne<Stream, T&>(stream, t); \
85  } \
86  \
87  template<typename T> \
88  inline static uint32_t serializedLength(const T& t) \
89  { \
90  LStream stream; \
91  allInOne<LStream, const T&>(stream, t); \
92  return stream.getLength(); \
93  }
94 
95 namespace roswrap
96 {
97 namespace serialization
98 {
99 namespace mt = message_traits;
100 // namespace mpl = boost::mpl;
101 
103 {
104 public:
105  StreamOverrunException(const std::string& what)
106  : Exception(what)
107  {}
108 };
109 
111 
119 template<typename T>
121 {
125  template<typename Stream>
126  inline static void write(Stream& stream, /*typename boost::call_traits<T>::param_type*/ T& t)
127  {
128  t.serialize(stream.getData(), 0);
129  }
130 
134  template<typename Stream>
135  inline static void read(Stream& stream, /*typename boost::call_traits<T>::reference*/ T& t)
136  {
137  t.deserialize(stream.getData());
138  }
139 
143  inline static uint32_t serializedLength(/*typename boost::call_traits<T>::param_type*/ T& t)
144  {
145  return t.serializationLength();
146  }
147 };
148 
152 template<typename T, typename Stream>
153 inline void serialize(Stream& stream, const T& t)
154 {
155  Serializer<T>::write(stream, t);
156 }
157 
161 template<typename T, typename Stream>
162 inline void deserialize(Stream& stream, T& t)
163 {
164  Serializer<T>::read(stream, t);
165 }
166 
170 template<typename T>
171 inline uint32_t serializationLength(const T& t)
172 {
174 }
175 
176 #define ROS_CREATE_SIMPLE_SERIALIZER(Type) \
177  template<> struct Serializer<Type> \
178  { \
179  template<typename Stream> inline static void write(Stream& stream, const Type v) \
180  { \
181  *reinterpret_cast<Type*>(stream.advance(sizeof(v))) = v; \
182  } \
183  \
184  template<typename Stream> inline static void read(Stream& stream, Type& v) \
185  { \
186  v = *reinterpret_cast<Type*>(stream.advance(sizeof(v))); \
187  } \
188  \
189  inline static uint32_t serializedLength(const Type&) \
190  { \
191  return sizeof(Type); \
192  } \
193  };
194 
195 #define ROS_CREATE_SIMPLE_SERIALIZER_ARM(Type) \
196  template<> struct Serializer<Type> \
197  { \
198  template<typename Stream> inline static void write(Stream& stream, const Type v) \
199  { \
200  memcpy(stream.advance(sizeof(v)), &v, sizeof(v) ); \
201  } \
202  \
203  template<typename Stream> inline static void read(Stream& stream, Type& v) \
204  { \
205  memcpy(&v, stream.advance(sizeof(v)), sizeof(v) ); \
206  } \
207  \
208  inline static uint32_t serializedLength(const Type&) \
209  { \
210  return sizeof(Type); \
211  } \
212 };
213 
214 #if defined(__arm__) || defined(__arm)
225 #else
236 #endif
237 
241 template<> struct Serializer<bool>
242 {
243  template<typename Stream> inline static void write(Stream& stream, const bool v)
244  {
245  uint8_t b = (uint8_t)v;
246 #if defined(__arm__) || defined(__arm)
247  memcpy(stream.advance(1), &b, 1 );
248 #else
249  *reinterpret_cast<uint8_t*>(stream.advance(1)) = b;
250 #endif
251  }
252 
253  template<typename Stream> inline static void read(Stream& stream, bool& v)
254  {
255  uint8_t b;
256 #if defined(__arm__) || defined(__arm)
257  memcpy(&b, stream.advance(1), 1 );
258 #else
259  b = *reinterpret_cast<uint8_t*>(stream.advance(1));
260 #endif
261  v = (bool)b;
262  }
263 
264  inline static uint32_t serializedLength(bool)
265  {
266  return 1;
267  }
268 };
269 
273 template<class ContainerAllocator>
274 struct Serializer<std::basic_string<char, std::char_traits<char>, ContainerAllocator> >
275 {
276  typedef std::basic_string<char, std::char_traits<char>, ContainerAllocator> StringType;
277 
278  template<typename Stream>
279  inline static void write(Stream& stream, const StringType& str)
280  {
281  size_t len = str.size();
282  stream.next((uint32_t)len);
283 
284  if (len > 0)
285  {
286  memcpy(stream.advance((uint32_t)len), str.data(), len);
287  }
288  }
289 
290  template<typename Stream>
291  inline static void read(Stream& stream, StringType& str)
292  {
293  uint32_t len;
294  stream.next(len);
295  if (len > 0)
296  {
297  str = StringType((char*)stream.advance(len), len);
298  }
299  else
300  {
301  str.clear();
302  }
303  }
304 
305  inline static uint32_t serializedLength(const StringType& str)
306  {
307  return 4 + (uint32_t)str.size();
308  }
309 };
310 
314 template<>
316 {
317  template<typename Stream>
318  inline static void write(Stream& stream, const ros::Time& v)
319  {
320  stream.next(v.sec);
321  stream.next(v.nsec);
322  }
323 
324  template<typename Stream>
325  inline static void read(Stream& stream, ros::Time& v)
326  {
327  stream.next(v.sec);
328  stream.next(v.nsec);
329  }
330 
331  inline static uint32_t serializedLength(const ros::Time&)
332  {
333  return 8;
334  }
335 };
336 
340 template<>
342 {
343  template<typename Stream>
344  inline static void write(Stream& stream, const ros::Duration& v)
345  {
346  stream.next(v.sec);
347  stream.next(v.nsec);
348  }
349 
350  template<typename Stream>
351  inline static void read(Stream& stream, ros::Duration& v)
352  {
353  stream.next(v.sec);
354  stream.next(v.nsec);
355  }
356 
357  inline static uint32_t serializedLength(const ros::Duration&)
358  {
359  return 8;
360  }
361 };
362 
366 template<typename T, class ContainerAllocator, class Enabled = void>
368 {};
369 
373 template<typename T, class ContainerAllocator>
374 struct VectorSerializer<T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize<T>::value >::type >
375 {
376  typedef std::vector<T, typename ContainerAllocator::template rebind<T>::other> VecType;
377  typedef typename VecType::iterator IteratorType;
378  typedef typename VecType::const_iterator ConstIteratorType;
379 
380  template<typename Stream>
381  inline static void write(Stream& stream, const VecType& v)
382  {
383  stream.next((uint32_t)v.size());
384  ConstIteratorType it = v.begin();
385  ConstIteratorType end = v.end();
386  for (; it != end; ++it)
387  {
388  stream.next(*it);
389  }
390  }
391 
392  template<typename Stream>
393  inline static void read(Stream& stream, VecType& v)
394  {
395  uint32_t len;
396  stream.next(len);
397  v.resize(len);
398  IteratorType it = v.begin();
399  IteratorType end = v.end();
400  for (; it != end; ++it)
401  {
402  stream.next(*it);
403  }
404  }
405 
406  inline static uint32_t serializedLength(const VecType& v)
407  {
408  uint32_t size = 4;
409  ConstIteratorType it = v.begin();
410  ConstIteratorType end = v.end();
411  for (; it != end; ++it)
412  {
413  size += serializationLength(*it);
414  }
415 
416  return size;
417  }
418 };
419 
423 template<typename T, class ContainerAllocator>
424 struct VectorSerializer<T, ContainerAllocator, typename std::enable_if<mt::IsSimple<T>::value >::type >
425 {
426  typedef std::vector<T, typename ContainerAllocator::template rebind<T>::other> VecType;
427  typedef typename VecType::iterator IteratorType;
428  typedef typename VecType::const_iterator ConstIteratorType;
429 
430  template<typename Stream>
431  inline static void write(Stream& stream, const VecType& v)
432  {
433  uint32_t len = (uint32_t)v.size();
434  stream.next(len);
435  if (!v.empty())
436  {
437  const uint32_t data_len = len * (uint32_t)sizeof(T);
438  memcpy(stream.advance(data_len), &v.front(), data_len);
439  }
440  }
441 
442  template<typename Stream>
443  inline static void read(Stream& stream, VecType& v)
444  {
445  uint32_t len;
446  stream.next(len);
447  v.resize(len);
448 
449  if (len > 0)
450  {
451  const uint32_t data_len = (uint32_t)sizeof(T) * len;
452  memcpy(&v.front(), stream.advance(data_len), data_len);
453  }
454  }
455 
456  inline static uint32_t serializedLength(const VecType& v)
457  {
458  return 4 + v.size() * (uint32_t)sizeof(T);
459  }
460 };
461 
465 template<typename T, class ContainerAllocator>
466 struct VectorSerializer<T, ContainerAllocator, typename std::enable_if<mt::IsFixedSize<T>::value && !mt::IsSimple<T>::value >::type >
467 // typename std::enable_if<std::__and_<mt::IsFixedSize<T>::value, std::__not_<mt::IsSimple<T>::value > > >::type >
468 {
469  typedef std::vector<T, typename ContainerAllocator::template rebind<T>::other> VecType;
470  typedef typename VecType::iterator IteratorType;
471  typedef typename VecType::const_iterator ConstIteratorType;
472 
473  template<typename Stream>
474  inline static void write(Stream& stream, const VecType& v)
475  {
476  stream.next((uint32_t)v.size());
477  ConstIteratorType it = v.begin();
478  ConstIteratorType end = v.end();
479  for (; it != end; ++it)
480  {
481  stream.next(*it);
482  }
483  }
484 
485  template<typename Stream>
486  inline static void read(Stream& stream, VecType& v)
487  {
488  uint32_t len;
489  stream.next(len);
490  v.resize(len);
491  IteratorType it = v.begin();
492  IteratorType end = v.end();
493  for (; it != end; ++it)
494  {
495  stream.next(*it);
496  }
497  }
498 
499  inline static uint32_t serializedLength(const VecType& v)
500  {
501  uint32_t size = 4;
502  if (!v.empty())
503  {
504  uint32_t len_each = serializationLength(v.front());
505  size += len_each * (uint32_t)v.size();
506  }
507 
508  return size;
509  }
510 };
511 
515 template<typename T, class ContainerAllocator, typename Stream>
516 inline void serialize(Stream& stream, const std::vector<T, ContainerAllocator>& t)
517 {
519 }
520 
524 template<typename T, class ContainerAllocator, typename Stream>
525 inline void deserialize(Stream& stream, std::vector<T, ContainerAllocator>& t)
526 {
528 }
529 
533 template<typename T, class ContainerAllocator>
534 inline uint32_t serializationLength(const std::vector<T, ContainerAllocator>& t)
535 {
537 }
538 
542 template<typename T, size_t N, class Enabled = void>
544 {};
545 
549 template<typename T, size_t N>
550 struct ArraySerializer<T, N, typename std::enable_if<!mt::IsFixedSize<T>::value >::type>
551 {
552  typedef std::array<T, N > ArrayType;
553  typedef typename ArrayType::iterator IteratorType;
554  typedef typename ArrayType::const_iterator ConstIteratorType;
555 
556  template<typename Stream>
557  inline static void write(Stream& stream, const ArrayType& v)
558  {
559  ConstIteratorType it = v.begin();
560  ConstIteratorType end = v.end();
561  for (; it != end; ++it)
562  {
563  stream.next(*it);
564  }
565  }
566 
567  template<typename Stream>
568  inline static void read(Stream& stream, ArrayType& v)
569  {
570  IteratorType it = v.begin();
571  IteratorType end = v.end();
572  for (; it != end; ++it)
573  {
574  stream.next(*it);
575  }
576  }
577 
578  inline static uint32_t serializedLength(const ArrayType& v)
579  {
580  uint32_t size = 0;
581  ConstIteratorType it = v.begin();
582  ConstIteratorType end = v.end();
583  for (; it != end; ++it)
584  {
585  size += serializationLength(*it);
586  }
587 
588  return size;
589  }
590 };
591 
595 template<typename T, size_t N>
596 struct ArraySerializer<T, N, typename std::enable_if<mt::IsSimple<T>::value >::type>
597 {
598  typedef std::array<T, N > ArrayType;
599  typedef typename ArrayType::iterator IteratorType;
600  typedef typename ArrayType::const_iterator ConstIteratorType;
601 
602  template<typename Stream>
603  inline static void write(Stream& stream, const ArrayType& v)
604  {
605  const uint32_t data_len = N * sizeof(T);
606  memcpy(stream.advance(data_len), &v.front(), data_len);
607  }
608 
609  template<typename Stream>
610  inline static void read(Stream& stream, ArrayType& v)
611  {
612  const uint32_t data_len = N * sizeof(T);
613  memcpy(&v.front(), stream.advance(data_len), data_len);
614  }
615 
616  inline static uint32_t serializedLength(const ArrayType&)
617  {
618  return N * sizeof(T);
619  }
620 };
621 
625 template<typename T, size_t N>
626 struct ArraySerializer<T, N, typename std::enable_if<mt::IsFixedSize<T>::value && !mt::IsSimple<T>::value >::type >
627 // typename std::enable_if<std::__and_<mt::IsFixedSize<T>::value, std::__not_<mt::IsSimple<T>::value > > >::type>
628 {
629  typedef std::array<T, N > ArrayType;
630  typedef typename ArrayType::iterator IteratorType;
631  typedef typename ArrayType::const_iterator ConstIteratorType;
632 
633  template<typename Stream>
634  inline static void write(Stream& stream, const ArrayType& v)
635  {
636  ConstIteratorType it = v.begin();
637  ConstIteratorType end = v.end();
638  for (; it != end; ++it)
639  {
640  stream.next(*it);
641  }
642  }
643 
644  template<typename Stream>
645  inline static void read(Stream& stream, ArrayType& v)
646  {
647  IteratorType it = v.begin();
648  IteratorType end = v.end();
649  for (; it != end; ++it)
650  {
651  stream.next(*it);
652  }
653  }
654 
655  inline static uint32_t serializedLength(const ArrayType& v)
656  {
657  return serializationLength(v.front()) * N;
658  }
659 };
660 
664 template<typename T, size_t N, typename Stream>
665 inline void serialize(Stream& stream, const std::array<T, N>& t)
666 {
668 }
669 
673 template<typename T, size_t N, typename Stream>
674 inline void deserialize(Stream& stream, std::array<T, N>& t)
675 {
677 }
678 
682 template<typename T, size_t N>
683 inline uint32_t serializationLength(const std::array<T, N>& t)
684 {
686 }
687 
691 namespace stream_types
692 {
694 {
698 };
699 }
701 
706 {
707  /*
708  * \brief Returns a pointer to the current position of the stream
709  */
710  inline uint8_t* getData() { return data_; }
716  ROS_FORCE_INLINE uint8_t* advance(uint32_t len)
717  {
718  uint8_t* old_data = data_;
719  data_ += len;
720  if (data_ > end_)
721  {
722  // Throwing directly here causes a significant speed hit due to the extra code generated
723  // for the throw statement
725  }
726  return old_data;
727  }
728 
732  inline uint32_t getLength() { return (uint32_t)(end_ - data_); }
733 
734 protected:
735  Stream(uint8_t* _data, uint32_t _count)
736  : data_(_data)
737  , end_(_data + _count)
738  {}
739 
740 private:
741  uint8_t* data_;
742  uint8_t* end_;
743 };
744 
749 {
750  static const StreamType stream_type = stream_types::Input;
751 
752  IStream(uint8_t* data, uint32_t count)
753  : Stream(data, count)
754  {}
755 
759  template<typename T>
761  {
762  deserialize(*this, t);
763  }
764 
765  template<typename T>
767  {
768  deserialize(*this, t);
769  return *this;
770  }
771 };
772 
777 {
778  static const StreamType stream_type = stream_types::Output;
779 
780  OStream(uint8_t* data, uint32_t count)
781  : Stream(data, count)
782  {}
783 
787  template<typename T>
788  ROS_FORCE_INLINE void next(const T& t)
789  {
790  serialize(*this, t);
791  }
792 
793  template<typename T>
795  {
796  serialize(*this, t);
797  return *this;
798  }
799 };
800 
801 
809 {
810  static const StreamType stream_type = stream_types::Length;
811 
813  : count_(0)
814  {}
815 
819  template<typename T>
820  ROS_FORCE_INLINE void next(const T& t)
821  {
822  count_ += serializationLength(t);
823  }
824 
828  ROS_FORCE_INLINE uint32_t advance(uint32_t len)
829  {
830  uint32_t old = count_;
831  count_ += len;
832  return old;
833  }
834 
838  inline uint32_t getLength() { return count_; }
839 
840 private:
841  uint32_t count_;
842 };
843 
847 template<typename M>
848 inline SerializedMessage serializeMessage(const M& message)
849 {
851  uint32_t len = serializationLength(message);
852  m.num_bytes = len + 4;
853  m.buf.reset(new uint8_t[m.num_bytes]);
854 
855  OStream s(m.buf.get(), (uint32_t)m.num_bytes);
856  serialize(s, (uint32_t)m.num_bytes - 4);
857  m.message_start = s.getData();
858  serialize(s, message);
859 
860  return m;
861 }
862 
866 template<typename M>
867 inline SerializedMessage serializeServiceResponse(bool ok, const M& message)
868 {
870 
871  if (ok)
872  {
873  uint32_t len = serializationLength(message);
874  m.num_bytes = len + 5;
875  m.buf.reset(new uint8_t[m.num_bytes]);
876 
877  OStream s(m.buf.get(), (uint32_t)m.num_bytes);
878  serialize(s, (uint8_t)ok);
879  serialize(s, (uint32_t)m.num_bytes - 5);
880  serialize(s, message);
881  }
882  else
883  {
884  uint32_t len = serializationLength(message);
885  m.num_bytes = len + 1;
886  m.buf.reset(new uint8_t[m.num_bytes]);
887 
888  OStream s(m.buf.get(), (uint32_t)m.num_bytes);
889  serialize(s, (uint8_t)ok);
890  serialize(s, message);
891  }
892 
893  return m;
894 }
895 
899 template<typename M>
900 inline void deserializeMessage(const SerializedMessage& m, M& message)
901 {
902  IStream s(m.message_start, m.num_bytes - (m.message_start - m.buf.get()));
904 }
905 
906 
907 // Additional serialization traits
908 
909 template<typename M>
911 {
912  std::shared_ptr<M> message;
913  std::shared_ptr<std::map<std::string, std::string> > connection_header;
914 };
915 
920 template<typename M>
922 {
923  static void notify(const PreDeserializeParams<M>&) { }
924 };
925 
926 } // namespace serialization
927 
928 } // namespace roswrap
929 
930 #endif // ROSCPP_SERIALIZATION_H
roswrap::Exception
Base class for all exceptions thrown by ROS.
Definition: exception.h:40
roswrap::Time
Time representation. May either represent wall clock time or ROS clock time.
Definition: time.h:177
roswrap::serialization::OStream::OStream
OStream(uint8_t *data, uint32_t count)
Definition: serialization.h:780
roswrap::serialization::IStream::next
ROS_FORCE_INLINE void next(T &t)
Deserialize an item from this input stream.
Definition: serialization.h:760
roswrap::serialization::Serializer
Templated serialization class. Default implementation provides backwards compatibility with old messa...
Definition: serialization.h:120
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsSimple< T >::value >::type >::ConstIteratorType
ArrayType::const_iterator ConstIteratorType
Definition: serialization.h:600
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsSimple< T >::value >::type >::IteratorType
ArrayType::iterator IteratorType
Definition: serialization.h:599
roswrap::serialization::Stream::Stream
Stream(uint8_t *_data, uint32_t _count)
Definition: serialization.h:735
roswrap::serialization::Stream::advance
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.
Definition: serialization.h:716
roswrap::serialization::LStream::count_
uint32_t count_
Definition: serialization.h:841
roswrap::serialization::OStream::next
ROS_FORCE_INLINE void next(const T &t)
Serialize an item to this output stream.
Definition: serialization.h:788
roswrap::serialization::LStream::LStream
LStream()
Definition: serialization.h:812
roswrap::serialization::Serializer< bool >::write
static void write(Stream &stream, const bool v)
Definition: serialization.h:243
s
XmlRpcServer s
ros
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::write
static void write(Stream &stream, const ArrayType &v)
Definition: serialization.h:634
roswrap::serialization::serialize
void serialize(Stream &stream, const T &t)
Serialize an object. Stream here should normally be a ros::serialization::OStream.
Definition: serialization.h:153
test_server.type
type
Definition: test_server.py:210
roscpp_serialization_macros.h
roswrap::serialization::Serializer::write
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...
Definition: serialization.h:126
roswrap::serialization::IStream
Input stream.
Definition: serialization.h:748
roswrap::serialization::serializeMessage
SerializedMessage serializeMessage(const M &message)
Serialize a message.
Definition: serialization.h:848
DurationBase< Duration >::nsec
int32_t nsec
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::ArrayType
std::array< T, N > ArrayType
Definition: serialization.h:629
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::serializedLength
static uint32_t serializedLength(const ArrayType &v)
Definition: serialization.h:655
roswrap::serialization::stream_types::Input
@ Input
Definition: serialization.h:695
roswrap::serialization::PreDeserialize::notify
static void notify(const PreDeserializeParams< M > &)
Definition: serialization.h:923
roswrap::serialization::deserializeMessage
void deserializeMessage(const SerializedMessage &m, M &message)
Deserialize a message. If includes_length is true, skips the first 4 bytes.
Definition: serialization.h:900
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsSimple< T >::value >::type >::read
static void read(Stream &stream, VecType &v)
Definition: serialization.h:443
roswrap::serialization::Serializer< ros::Time >::serializedLength
static uint32_t serializedLength(const ros::Time &)
Definition: serialization.h:331
ros::Exception
roswrap::serialization::Serializer< std::basic_string< char, std::char_traits< char >, ContainerAllocator > >::read
static void read(Stream &stream, StringType &str)
Definition: serialization.h:291
roswrap::serialization::StreamOverrunException
Definition: serialization.h:102
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::IteratorType
ArrayType::iterator IteratorType
Definition: serialization.h:630
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::VecType
std::vector< T, typename ContainerAllocator::template rebind< T >::other > VecType
Definition: serialization.h:376
data
data
ROSCPP_SERIALIZATION_DECL
#define ROSCPP_SERIALIZATION_DECL
Definition: roscpp_serialization_macros.h:53
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::IteratorType
VecType::iterator IteratorType
Definition: serialization.h:470
roswrap::SerializedMessage::buf
boost::shared_array< uint8_t > buf
Definition: serialized_message.h:43
roswrap::serialization::Serializer< ros::Duration >::write
static void write(Stream &stream, const ros::Duration &v)
Definition: serialization.h:344
roswrap::serialization::OStream
Output stream.
Definition: serialization.h:776
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsSimple< T >::value >::type >::IteratorType
VecType::iterator IteratorType
Definition: serialization.h:427
ROS_CREATE_SIMPLE_SERIALIZER_ARM
#define ROS_CREATE_SIMPLE_SERIALIZER_ARM(Type)
Definition: serialization.h:195
roswrap::serialization::Serializer< std::basic_string< char, std::char_traits< char >, ContainerAllocator > >::StringType
std::basic_string< char, std::char_traits< char >, ContainerAllocator > StringType
Definition: serialization.h:276
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::ConstIteratorType
VecType::const_iterator ConstIteratorType
Definition: serialization.h:378
roswrap::SerializedMessage
Definition: serialized_message.h:40
roswrap::serialization::serializationLength
uint32_t serializationLength(const T &t)
Determine the serialized length of an object.
Definition: serialization.h:171
message
def message(msg, *args, **kwargs)
roswrap::serialization::stream_types::Length
@ Length
Definition: serialization.h:697
serialized_message.h
roswrap::serialization::LStream
Length stream.
Definition: serialization.h:808
roswrap::serialization::Serializer< ros::Duration >::read
static void read(Stream &stream, ros::Duration &v)
Definition: serialization.h:351
roswrap::serialization::Serializer::serializedLength
static uint32_t serializedLength(T &t)
Determine the serialized length of an object.
Definition: serialization.h:143
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsSimple< T >::value >::type >::serializedLength
static uint32_t serializedLength(const ArrayType &)
Definition: serialization.h:616
roswrap::serialization::LStream::advance
ROS_FORCE_INLINE uint32_t advance(uint32_t len)
increment the length by len
Definition: serialization.h:828
roswrap::Duration
Duration representation for use with the Time class.
Definition: duration.h:109
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsSimple< T >::value >::type >::ConstIteratorType
VecType::const_iterator ConstIteratorType
Definition: serialization.h:428
roswrap::serialization::StreamOverrunException::StreamOverrunException
StreamOverrunException(const std::string &what)
Definition: serialization.h:105
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsSimple< T >::value >::type >::write
static void write(Stream &stream, const ArrayType &v)
Definition: serialization.h:603
roswrap::serialization::IStream::IStream
IStream(uint8_t *data, uint32_t count)
Definition: serialization.h:752
roswrap::serialization::Serializer::read
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...
Definition: serialization.h:135
roswrap::serialization::LStream::getLength
uint32_t getLength()
Get the total length of this tream.
Definition: serialization.h:838
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::write
static void write(Stream &stream, const ArrayType &v)
Definition: serialization.h:557
roswrap::serialization::Stream::getLength
uint32_t getLength()
Returns the amount of space left in the stream.
Definition: serialization.h:732
roswrap
Definition: param_modi.cpp:41
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::read
static void read(Stream &stream, ArrayType &v)
Definition: serialization.h:645
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::serializedLength
static uint32_t serializedLength(const ArrayType &v)
Definition: serialization.h:578
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsSimple< T >::value >::type >::serializedLength
static uint32_t serializedLength(const VecType &v)
Definition: serialization.h:456
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::VecType
std::vector< T, typename ContainerAllocator::template rebind< T >::other > VecType
Definition: serialization.h:469
TimeBase< Time, Duration >::sec
uint32_t sec
roswrap::serialization::deserialize
void deserialize(Stream &stream, T &t)
Deserialize an object. Stream here should normally be a ros::serialization::IStream.
Definition: serialization.h:162
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::IteratorType
VecType::iterator IteratorType
Definition: serialization.h:377
TimeBase< Time, Duration >::nsec
uint32_t nsec
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::ConstIteratorType
VecType::const_iterator ConstIteratorType
Definition: serialization.h:471
roswrap::serialization::PreDeserialize
called by the SubscriptionCallbackHelper after a message is instantiated but before that message is d...
Definition: serialization.h:921
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::read
static void read(Stream &stream, ArrayType &v)
Definition: serialization.h:568
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::write
static void write(Stream &stream, const VecType &v)
Definition: serialization.h:474
roswrap::serialization::Stream::getData
uint8_t * getData()
Definition: serialization.h:710
roswrap::serialization::Serializer< ros::Time >::read
static void read(Stream &stream, ros::Time &v)
Definition: serialization.h:325
roswrap::serialization::StreamType
stream_types::StreamType StreamType
Definition: serialization.h:700
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::IteratorType
ArrayType::iterator IteratorType
Definition: serialization.h:553
ros::Time
roswrap::serialization::PreDeserializeParams
Definition: serialization.h:910
colaa::detail::read
T read(const std::string &str)
General template which is unimplemented; implemented specializations follow below.
Definition: colaa.hpp:72
std
roswrap::serialization::stream_types::StreamType
StreamType
Definition: serialization.h:693
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsSimple< T >::value >::type >::read
static void read(Stream &stream, ArrayType &v)
Definition: serialization.h:610
ROS_CREATE_SIMPLE_SERIALIZER
#define ROS_CREATE_SIMPLE_SERIALIZER(Type)
Definition: serialization.h:176
roswrap::serialization::PreDeserializeParams::connection_header
std::shared_ptr< std::map< std::string, std::string > > connection_header
Definition: serialization.h:913
sick_scan_base.h
roswrap::serialization::Stream
Stream base-class, provides common functionality for IStream and OStream.
Definition: serialization.h:705
roswrap::serialization::Serializer< std::basic_string< char, std::char_traits< char >, ContainerAllocator > >::write
static void write(Stream &stream, const StringType &str)
Definition: serialization.h:279
roswrap::serialization::Serializer< bool >::read
static void read(Stream &stream, bool &v)
Definition: serialization.h:253
roswrap::serialization::Serializer< ros::Time >::write
static void write(Stream &stream, const ros::Time &v)
Definition: serialization.h:318
roswrap::serialization::PreDeserializeParams::message
std::shared_ptr< M > message
Definition: serialization.h:912
roswrap::serialization::Serializer< bool >::serializedLength
static uint32_t serializedLength(bool)
Definition: serialization.h:264
roswrap::serialization::IStream::operator>>
ROS_FORCE_INLINE IStream & operator>>(T &t)
Definition: serialization.h:766
roswrap::SerializedMessage::message_start
uint8_t * message_start
Definition: serialized_message.h:45
roswrap::serialization::Serializer< ros::Duration >::serializedLength
static uint32_t serializedLength(const ros::Duration &)
Definition: serialization.h:357
roswrap::serialization::OStream::operator<<
ROS_FORCE_INLINE OStream & operator<<(const T &t)
Definition: serialization.h:794
roswrap::serialization::throwStreamOverrun
ROSCPP_SERIALIZATION_DECL void throwStreamOverrun()
Definition: rossimu.cpp:324
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::read
static void read(Stream &stream, VecType &v)
Definition: serialization.h:486
roswrap::serialization::VectorSerializer
Vector serializer. Default implementation does nothing.
Definition: serialization.h:367
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::read
static void read(Stream &stream, VecType &v)
Definition: serialization.h:393
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsSimple< T >::value >::type >::write
static void write(Stream &stream, const VecType &v)
Definition: serialization.h:431
roswrap::serialization::stream_types::Output
@ Output
Definition: serialization.h:696
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsSimple< T >::value >::type >::VecType
std::vector< T, typename ContainerAllocator::template rebind< T >::other > VecType
Definition: serialization.h:426
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsSimple< T >::value >::type >::ArrayType
std::array< T, N > ArrayType
Definition: serialization.h:598
roswrap::serialization::ArraySerializer
Array serializer, default implementation does nothing.
Definition: serialization.h:543
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::serializedLength
static uint32_t serializedLength(const VecType &v)
Definition: serialization.h:406
roswrap::ok
ROSCPP_DECL bool ok()
Check whether it's time to exit.
Definition: rossimu.cpp:273
roswrap::serialization::Stream::data_
uint8_t * data_
Definition: serialization.h:741
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::write
static void write(Stream &stream, const VecType &v)
Definition: serialization.h:381
roswrap::serialization::LStream::next
ROS_FORCE_INLINE void next(const T &t)
Add the length of an item to this length stream.
Definition: serialization.h:820
ros::Duration
roswrap::serialization::Stream::end_
uint8_t * end_
Definition: serialization.h:742
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::ConstIteratorType
ArrayType::const_iterator ConstIteratorType
Definition: serialization.h:554
roswrap::serialization::serializeServiceResponse
SerializedMessage serializeServiceResponse(bool ok, const M &message)
Serialize a service response.
Definition: serialization.h:867
roswrap::serialization::VectorSerializer< T, ContainerAllocator, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::serializedLength
static uint32_t serializedLength(const VecType &v)
Definition: serialization.h:499
roswrap::SerializedMessage::num_bytes
size_t num_bytes
Definition: serialized_message.h:44
ROS_FORCE_INLINE
#define ROS_FORCE_INLINE
Definition: macros.h:40
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if<!mt::IsFixedSize< T >::value >::type >::ArrayType
std::array< T, N > ArrayType
Definition: serialization.h:552
t
geometry_msgs::TransformStamped t
DurationBase< Duration >::sec
int32_t sec
roswrap::serialization::ArraySerializer< T, N, typename std::enable_if< mt::IsFixedSize< T >::value &&!mt::IsSimple< T >::value >::type >::ConstIteratorType
ArrayType::const_iterator ConstIteratorType
Definition: serialization.h:631
roswrap::serialization::Serializer< std::basic_string< char, std::char_traits< char >, ContainerAllocator > >::serializedLength
static uint32_t serializedLength(const StringType &str)
Definition: serialization.h:305


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10