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