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


ml_classifiers
Author(s): Scott Niekum
autogenerated on Fri Jan 3 2014 11:30:23