$search
00001 """autogenerated by genmsg_py from ObjectRecognitionGuiActionResult.msg. Do not edit.""" 00002 import roslib.message 00003 import struct 00004 00005 import object_recognition_gui.msg 00006 import roslib.rostime 00007 import actionlib_msgs.msg 00008 import std_msgs.msg 00009 00010 class ObjectRecognitionGuiActionResult(roslib.message.Message): 00011 _md5sum = "5a5f7e7e9976cabab28a6f9f96bf45ec" 00012 _type = "object_recognition_gui/ObjectRecognitionGuiActionResult" 00013 _has_header = True #flag to mark the presence of a Header object 00014 _full_text = """# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== 00015 00016 Header header 00017 actionlib_msgs/GoalStatus status 00018 ObjectRecognitionGuiResult result 00019 00020 ================================================================================ 00021 MSG: std_msgs/Header 00022 # Standard metadata for higher-level stamped data types. 00023 # This is generally used to communicate timestamped data 00024 # in a particular coordinate frame. 00025 # 00026 # sequence ID: consecutively increasing ID 00027 uint32 seq 00028 #Two-integer timestamp that is expressed as: 00029 # * stamp.secs: seconds (stamp_secs) since epoch 00030 # * stamp.nsecs: nanoseconds since stamp_secs 00031 # time-handling sugar is provided by the client library 00032 time stamp 00033 #Frame this data is associated with 00034 # 0: no frame 00035 # 1: global frame 00036 string frame_id 00037 00038 ================================================================================ 00039 MSG: actionlib_msgs/GoalStatus 00040 GoalID goal_id 00041 uint8 status 00042 uint8 PENDING = 0 # The goal has yet to be processed by the action server 00043 uint8 ACTIVE = 1 # The goal is currently being processed by the action server 00044 uint8 PREEMPTED = 2 # The goal received a cancel request after it started executing 00045 # and has since completed its execution (Terminal State) 00046 uint8 SUCCEEDED = 3 # The goal was achieved successfully by the action server (Terminal State) 00047 uint8 ABORTED = 4 # The goal was aborted during execution by the action server due 00048 # to some failure (Terminal State) 00049 uint8 REJECTED = 5 # The goal was rejected by the action server without being processed, 00050 # because the goal was unattainable or invalid (Terminal State) 00051 uint8 PREEMPTING = 6 # The goal received a cancel request after it started executing 00052 # and has not yet completed execution 00053 uint8 RECALLING = 7 # The goal received a cancel request before it started executing, 00054 # but the action server has not yet confirmed that the goal is canceled 00055 uint8 RECALLED = 8 # The goal received a cancel request before it started executing 00056 # and was successfully cancelled (Terminal State) 00057 uint8 LOST = 9 # An action client can determine that a goal is LOST. This should not be 00058 # sent over the wire by an action server 00059 00060 #Allow for the user to associate a string with GoalStatus for debugging 00061 string text 00062 00063 00064 ================================================================================ 00065 MSG: actionlib_msgs/GoalID 00066 # The stamp should store the time at which this goal was requested. 00067 # It is used by an action server when it tries to preempt all 00068 # goals that were requested before a certain time 00069 time stamp 00070 00071 # The id provides a way to associate feedback and 00072 # result message with specific goal requests. The id 00073 # specified must be unique. 00074 string id 00075 00076 00077 ================================================================================ 00078 MSG: object_recognition_gui/ObjectRecognitionGuiResult 00079 # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== 00080 00081 #the index of the model hypothesis that the user has selected for each cluster 00082 #values below 0 mean 'reject all hypotheses' 00083 int32[] selected_hypothesis_indices 00084 00085 """ 00086 __slots__ = ['header','status','result'] 00087 _slot_types = ['Header','actionlib_msgs/GoalStatus','object_recognition_gui/ObjectRecognitionGuiResult'] 00088 00089 def __init__(self, *args, **kwds): 00090 """ 00091 Constructor. Any message fields that are implicitly/explicitly 00092 set to None will be assigned a default value. The recommend 00093 use is keyword arguments as this is more robust to future message 00094 changes. You cannot mix in-order arguments and keyword arguments. 00095 00096 The available fields are: 00097 header,status,result 00098 00099 @param args: complete set of field values, in .msg order 00100 @param kwds: use keyword arguments corresponding to message field names 00101 to set specific fields. 00102 """ 00103 if args or kwds: 00104 super(ObjectRecognitionGuiActionResult, self).__init__(*args, **kwds) 00105 #message fields cannot be None, assign default values for those that are 00106 if self.header is None: 00107 self.header = std_msgs.msg._Header.Header() 00108 if self.status is None: 00109 self.status = actionlib_msgs.msg.GoalStatus() 00110 if self.result is None: 00111 self.result = object_recognition_gui.msg.ObjectRecognitionGuiResult() 00112 else: 00113 self.header = std_msgs.msg._Header.Header() 00114 self.status = actionlib_msgs.msg.GoalStatus() 00115 self.result = object_recognition_gui.msg.ObjectRecognitionGuiResult() 00116 00117 def _get_types(self): 00118 """ 00119 internal API method 00120 """ 00121 return self._slot_types 00122 00123 def serialize(self, buff): 00124 """ 00125 serialize message into buffer 00126 @param buff: buffer 00127 @type buff: StringIO 00128 """ 00129 try: 00130 _x = self 00131 buff.write(_struct_3I.pack(_x.header.seq, _x.header.stamp.secs, _x.header.stamp.nsecs)) 00132 _x = self.header.frame_id 00133 length = len(_x) 00134 buff.write(struct.pack('<I%ss'%length, length, _x)) 00135 _x = self 00136 buff.write(_struct_2I.pack(_x.status.goal_id.stamp.secs, _x.status.goal_id.stamp.nsecs)) 00137 _x = self.status.goal_id.id 00138 length = len(_x) 00139 buff.write(struct.pack('<I%ss'%length, length, _x)) 00140 buff.write(_struct_B.pack(self.status.status)) 00141 _x = self.status.text 00142 length = len(_x) 00143 buff.write(struct.pack('<I%ss'%length, length, _x)) 00144 length = len(self.result.selected_hypothesis_indices) 00145 buff.write(_struct_I.pack(length)) 00146 pattern = '<%si'%length 00147 buff.write(struct.pack(pattern, *self.result.selected_hypothesis_indices)) 00148 except struct.error as se: self._check_types(se) 00149 except TypeError as te: self._check_types(te) 00150 00151 def deserialize(self, str): 00152 """ 00153 unpack serialized message in str into this message instance 00154 @param str: byte array of serialized message 00155 @type str: str 00156 """ 00157 try: 00158 if self.header is None: 00159 self.header = std_msgs.msg._Header.Header() 00160 if self.status is None: 00161 self.status = actionlib_msgs.msg.GoalStatus() 00162 if self.result is None: 00163 self.result = object_recognition_gui.msg.ObjectRecognitionGuiResult() 00164 end = 0 00165 _x = self 00166 start = end 00167 end += 12 00168 (_x.header.seq, _x.header.stamp.secs, _x.header.stamp.nsecs,) = _struct_3I.unpack(str[start:end]) 00169 start = end 00170 end += 4 00171 (length,) = _struct_I.unpack(str[start:end]) 00172 start = end 00173 end += length 00174 self.header.frame_id = str[start:end] 00175 _x = self 00176 start = end 00177 end += 8 00178 (_x.status.goal_id.stamp.secs, _x.status.goal_id.stamp.nsecs,) = _struct_2I.unpack(str[start:end]) 00179 start = end 00180 end += 4 00181 (length,) = _struct_I.unpack(str[start:end]) 00182 start = end 00183 end += length 00184 self.status.goal_id.id = str[start:end] 00185 start = end 00186 end += 1 00187 (self.status.status,) = _struct_B.unpack(str[start:end]) 00188 start = end 00189 end += 4 00190 (length,) = _struct_I.unpack(str[start:end]) 00191 start = end 00192 end += length 00193 self.status.text = str[start:end] 00194 start = end 00195 end += 4 00196 (length,) = _struct_I.unpack(str[start:end]) 00197 pattern = '<%si'%length 00198 start = end 00199 end += struct.calcsize(pattern) 00200 self.result.selected_hypothesis_indices = struct.unpack(pattern, str[start:end]) 00201 return self 00202 except struct.error as e: 00203 raise roslib.message.DeserializationError(e) #most likely buffer underfill 00204 00205 00206 def serialize_numpy(self, buff, numpy): 00207 """ 00208 serialize message with numpy array types into buffer 00209 @param buff: buffer 00210 @type buff: StringIO 00211 @param numpy: numpy python module 00212 @type numpy module 00213 """ 00214 try: 00215 _x = self 00216 buff.write(_struct_3I.pack(_x.header.seq, _x.header.stamp.secs, _x.header.stamp.nsecs)) 00217 _x = self.header.frame_id 00218 length = len(_x) 00219 buff.write(struct.pack('<I%ss'%length, length, _x)) 00220 _x = self 00221 buff.write(_struct_2I.pack(_x.status.goal_id.stamp.secs, _x.status.goal_id.stamp.nsecs)) 00222 _x = self.status.goal_id.id 00223 length = len(_x) 00224 buff.write(struct.pack('<I%ss'%length, length, _x)) 00225 buff.write(_struct_B.pack(self.status.status)) 00226 _x = self.status.text 00227 length = len(_x) 00228 buff.write(struct.pack('<I%ss'%length, length, _x)) 00229 length = len(self.result.selected_hypothesis_indices) 00230 buff.write(_struct_I.pack(length)) 00231 pattern = '<%si'%length 00232 buff.write(self.result.selected_hypothesis_indices.tostring()) 00233 except struct.error as se: self._check_types(se) 00234 except TypeError as te: self._check_types(te) 00235 00236 def deserialize_numpy(self, str, numpy): 00237 """ 00238 unpack serialized message in str into this message instance using numpy for array types 00239 @param str: byte array of serialized message 00240 @type str: str 00241 @param numpy: numpy python module 00242 @type numpy: module 00243 """ 00244 try: 00245 if self.header is None: 00246 self.header = std_msgs.msg._Header.Header() 00247 if self.status is None: 00248 self.status = actionlib_msgs.msg.GoalStatus() 00249 if self.result is None: 00250 self.result = object_recognition_gui.msg.ObjectRecognitionGuiResult() 00251 end = 0 00252 _x = self 00253 start = end 00254 end += 12 00255 (_x.header.seq, _x.header.stamp.secs, _x.header.stamp.nsecs,) = _struct_3I.unpack(str[start:end]) 00256 start = end 00257 end += 4 00258 (length,) = _struct_I.unpack(str[start:end]) 00259 start = end 00260 end += length 00261 self.header.frame_id = str[start:end] 00262 _x = self 00263 start = end 00264 end += 8 00265 (_x.status.goal_id.stamp.secs, _x.status.goal_id.stamp.nsecs,) = _struct_2I.unpack(str[start:end]) 00266 start = end 00267 end += 4 00268 (length,) = _struct_I.unpack(str[start:end]) 00269 start = end 00270 end += length 00271 self.status.goal_id.id = str[start:end] 00272 start = end 00273 end += 1 00274 (self.status.status,) = _struct_B.unpack(str[start:end]) 00275 start = end 00276 end += 4 00277 (length,) = _struct_I.unpack(str[start:end]) 00278 start = end 00279 end += length 00280 self.status.text = str[start:end] 00281 start = end 00282 end += 4 00283 (length,) = _struct_I.unpack(str[start:end]) 00284 pattern = '<%si'%length 00285 start = end 00286 end += struct.calcsize(pattern) 00287 self.result.selected_hypothesis_indices = numpy.frombuffer(str[start:end], dtype=numpy.int32, count=length) 00288 return self 00289 except struct.error as e: 00290 raise roslib.message.DeserializationError(e) #most likely buffer underfill 00291 00292 _struct_I = roslib.message.struct_I 00293 _struct_3I = struct.Struct("<3I") 00294 _struct_B = struct.Struct("<B") 00295 _struct_2I = struct.Struct("<2I")