Go to the documentation of this file.00001 """autogenerated by genpy from re_srvs/LoadVslamMapRequest.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 LoadVslamMapRequest(genpy.Message):
00009 _md5sum = "9d98bb71a81c635de8886fd1fc890b66"
00010 _type = "re_srvs/LoadVslamMapRequest"
00011 _has_header = False
00012 _full_text = """string mapUID
00013
00014
00015 """
00016 __slots__ = ['mapUID']
00017 _slot_types = ['string']
00018
00019 def __init__(self, *args, **kwds):
00020 """
00021 Constructor. Any message fields that are implicitly/explicitly
00022 set to None will be assigned a default value. The recommend
00023 use is keyword arguments as this is more robust to future message
00024 changes. You cannot mix in-order arguments and keyword arguments.
00025
00026 The available fields are:
00027 mapUID
00028
00029 :param args: complete set of field values, in .msg order
00030 :param kwds: use keyword arguments corresponding to message field names
00031 to set specific fields.
00032 """
00033 if args or kwds:
00034 super(LoadVslamMapRequest, self).__init__(*args, **kwds)
00035
00036 if self.mapUID is None:
00037 self.mapUID = ''
00038 else:
00039 self.mapUID = ''
00040
00041 def _get_types(self):
00042 """
00043 internal API method
00044 """
00045 return self._slot_types
00046
00047 def serialize(self, buff):
00048 """
00049 serialize message into buffer
00050 :param buff: buffer, ``StringIO``
00051 """
00052 try:
00053 _x = self.mapUID
00054 length = len(_x)
00055 if python3 or type(_x) == unicode:
00056 _x = _x.encode('utf-8')
00057 length = len(_x)
00058 buff.write(struct.pack('<I%ss'%length, length, _x))
00059 except struct.error as se: self._check_types(se)
00060 except TypeError as te: self._check_types(te)
00061
00062 def deserialize(self, str):
00063 """
00064 unpack serialized message in str into this message instance
00065 :param str: byte array of serialized message, ``str``
00066 """
00067 try:
00068 end = 0
00069 start = end
00070 end += 4
00071 (length,) = _struct_I.unpack(str[start:end])
00072 start = end
00073 end += length
00074 if python3:
00075 self.mapUID = str[start:end].decode('utf-8')
00076 else:
00077 self.mapUID = str[start:end]
00078 return self
00079 except struct.error as e:
00080 raise genpy.DeserializationError(e)
00081
00082
00083 def serialize_numpy(self, buff, numpy):
00084 """
00085 serialize message with numpy array types into buffer
00086 :param buff: buffer, ``StringIO``
00087 :param numpy: numpy python module
00088 """
00089 try:
00090 _x = self.mapUID
00091 length = len(_x)
00092 if python3 or type(_x) == unicode:
00093 _x = _x.encode('utf-8')
00094 length = len(_x)
00095 buff.write(struct.pack('<I%ss'%length, length, _x))
00096 except struct.error as se: self._check_types(se)
00097 except TypeError as te: self._check_types(te)
00098
00099 def deserialize_numpy(self, str, numpy):
00100 """
00101 unpack serialized message in str into this message instance using numpy for array types
00102 :param str: byte array of serialized message, ``str``
00103 :param numpy: numpy python module
00104 """
00105 try:
00106 end = 0
00107 start = end
00108 end += 4
00109 (length,) = _struct_I.unpack(str[start:end])
00110 start = end
00111 end += length
00112 if python3:
00113 self.mapUID = str[start:end].decode('utf-8')
00114 else:
00115 self.mapUID = str[start:end]
00116 return self
00117 except struct.error as e:
00118 raise genpy.DeserializationError(e)
00119
00120 _struct_I = genpy.struct_I
00121 """autogenerated by genpy from re_srvs/LoadVslamMapResponse.msg. Do not edit."""
00122 import sys
00123 python3 = True if sys.hexversion > 0x03000000 else False
00124 import genpy
00125 import struct
00126
00127
00128 class LoadVslamMapResponse(genpy.Message):
00129 _md5sum = "358e233cde0c8a8bcfea4ce193f8fc15"
00130 _type = "re_srvs/LoadVslamMapResponse"
00131 _has_header = False
00132 _full_text = """bool success
00133
00134
00135 """
00136 __slots__ = ['success']
00137 _slot_types = ['bool']
00138
00139 def __init__(self, *args, **kwds):
00140 """
00141 Constructor. Any message fields that are implicitly/explicitly
00142 set to None will be assigned a default value. The recommend
00143 use is keyword arguments as this is more robust to future message
00144 changes. You cannot mix in-order arguments and keyword arguments.
00145
00146 The available fields are:
00147 success
00148
00149 :param args: complete set of field values, in .msg order
00150 :param kwds: use keyword arguments corresponding to message field names
00151 to set specific fields.
00152 """
00153 if args or kwds:
00154 super(LoadVslamMapResponse, self).__init__(*args, **kwds)
00155
00156 if self.success is None:
00157 self.success = False
00158 else:
00159 self.success = False
00160
00161 def _get_types(self):
00162 """
00163 internal API method
00164 """
00165 return self._slot_types
00166
00167 def serialize(self, buff):
00168 """
00169 serialize message into buffer
00170 :param buff: buffer, ``StringIO``
00171 """
00172 try:
00173 buff.write(_struct_B.pack(self.success))
00174 except struct.error as se: self._check_types(se)
00175 except TypeError as te: self._check_types(te)
00176
00177 def deserialize(self, str):
00178 """
00179 unpack serialized message in str into this message instance
00180 :param str: byte array of serialized message, ``str``
00181 """
00182 try:
00183 end = 0
00184 start = end
00185 end += 1
00186 (self.success,) = _struct_B.unpack(str[start:end])
00187 self.success = bool(self.success)
00188 return self
00189 except struct.error as e:
00190 raise genpy.DeserializationError(e)
00191
00192
00193 def serialize_numpy(self, buff, numpy):
00194 """
00195 serialize message with numpy array types into buffer
00196 :param buff: buffer, ``StringIO``
00197 :param numpy: numpy python module
00198 """
00199 try:
00200 buff.write(_struct_B.pack(self.success))
00201 except struct.error as se: self._check_types(se)
00202 except TypeError as te: self._check_types(te)
00203
00204 def deserialize_numpy(self, str, numpy):
00205 """
00206 unpack serialized message in str into this message instance using numpy for array types
00207 :param str: byte array of serialized message, ``str``
00208 :param numpy: numpy python module
00209 """
00210 try:
00211 end = 0
00212 start = end
00213 end += 1
00214 (self.success,) = _struct_B.unpack(str[start:end])
00215 self.success = bool(self.success)
00216 return self
00217 except struct.error as e:
00218 raise genpy.DeserializationError(e)
00219
00220 _struct_I = genpy.struct_I
00221 _struct_B = struct.Struct("<B")
00222 class LoadVslamMap(object):
00223 _type = 're_srvs/LoadVslamMap'
00224 _md5sum = '3dfc35c40fc8503a4b6fd8ff5668fcf2'
00225 _request_class = LoadVslamMapRequest
00226 _response_class = LoadVslamMapResponse