Go to the documentation of this file.00001 """autogenerated by genpy from actionlib_tutorials/FibonacciResult.msg. Do not edit."""
00002 import sys
00003 python3 = True if sys.hexversion > 0x03000000 else False
00004 import genpy
00005 import struct
00006
00007
00008 class FibonacciResult(genpy.Message):
00009 _md5sum = "b81e37d2a31925a0e8ae261a8699cb79"
00010 _type = "actionlib_tutorials/FibonacciResult"
00011 _has_header = False
00012 _full_text = """# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======
00013 #result definition
00014 int32[] sequence
00015
00016 """
00017 __slots__ = ['sequence']
00018 _slot_types = ['int32[]']
00019
00020 def __init__(self, *args, **kwds):
00021 """
00022 Constructor. Any message fields that are implicitly/explicitly
00023 set to None will be assigned a default value. The recommend
00024 use is keyword arguments as this is more robust to future message
00025 changes. You cannot mix in-order arguments and keyword arguments.
00026
00027 The available fields are:
00028 sequence
00029
00030 :param args: complete set of field values, in .msg order
00031 :param kwds: use keyword arguments corresponding to message field names
00032 to set specific fields.
00033 """
00034 if args or kwds:
00035 super(FibonacciResult, self).__init__(*args, **kwds)
00036
00037 if self.sequence is None:
00038 self.sequence = []
00039 else:
00040 self.sequence = []
00041
00042 def _get_types(self):
00043 """
00044 internal API method
00045 """
00046 return self._slot_types
00047
00048 def serialize(self, buff):
00049 """
00050 serialize message into buffer
00051 :param buff: buffer, ``StringIO``
00052 """
00053 try:
00054 length = len(self.sequence)
00055 buff.write(_struct_I.pack(length))
00056 pattern = '<%si'%length
00057 buff.write(struct.pack(pattern, *self.sequence))
00058 except struct.error as se: self._check_types(se)
00059 except TypeError as te: self._check_types(te)
00060
00061 def deserialize(self, str):
00062 """
00063 unpack serialized message in str into this message instance
00064 :param str: byte array of serialized message, ``str``
00065 """
00066 try:
00067 end = 0
00068 start = end
00069 end += 4
00070 (length,) = _struct_I.unpack(str[start:end])
00071 pattern = '<%si'%length
00072 start = end
00073 end += struct.calcsize(pattern)
00074 self.sequence = struct.unpack(pattern, str[start:end])
00075 return self
00076 except struct.error as e:
00077 raise genpy.DeserializationError(e)
00078
00079
00080 def serialize_numpy(self, buff, numpy):
00081 """
00082 serialize message with numpy array types into buffer
00083 :param buff: buffer, ``StringIO``
00084 :param numpy: numpy python module
00085 """
00086 try:
00087 length = len(self.sequence)
00088 buff.write(_struct_I.pack(length))
00089 pattern = '<%si'%length
00090 buff.write(self.sequence.tostring())
00091 except struct.error as se: self._check_types(se)
00092 except TypeError as te: self._check_types(te)
00093
00094 def deserialize_numpy(self, str, numpy):
00095 """
00096 unpack serialized message in str into this message instance using numpy for array types
00097 :param str: byte array of serialized message, ``str``
00098 :param numpy: numpy python module
00099 """
00100 try:
00101 end = 0
00102 start = end
00103 end += 4
00104 (length,) = _struct_I.unpack(str[start:end])
00105 pattern = '<%si'%length
00106 start = end
00107 end += struct.calcsize(pattern)
00108 self.sequence = numpy.frombuffer(str[start:end], dtype=numpy.int32, count=length)
00109 return self
00110 except struct.error as e:
00111 raise genpy.DeserializationError(e)
00112
00113 _struct_I = genpy.struct_I