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