"""LCM type definitions
This file automatically generated by lcm.
DO NOT MODIFY BY HAND!!!!
"""

try:
    import cStringIO.StringIO as BytesIO
except ImportError:
    from io import BytesIO
import struct

class class_detection_t(object):
    __slots__ = ["counts", "mean_size", "cls"]

    __typenames__ = ["double", "double", "string"]

    __dimensions__ = [None, None, None]

    def __init__(self):
        self.counts = 0.0
        self.mean_size = 0.0
        self.cls = ""

    def encode(self):
        buf = BytesIO()
        buf.write(class_detection_t._get_packed_fingerprint())
        self._encode_one(buf)
        return buf.getvalue()

    def _encode_one(self, buf):
        buf.write(struct.pack(">dd", self.counts, self.mean_size))
        __cls_encoded = self.cls.encode('utf-8')
        buf.write(struct.pack('>I', len(__cls_encoded)+1))
        buf.write(__cls_encoded)
        buf.write(b"\0")

    def decode(data):
        if hasattr(data, 'read'):
            buf = data
        else:
            buf = BytesIO(data)
        if buf.read(8) != class_detection_t._get_packed_fingerprint():
            raise ValueError("Decode error")
        return class_detection_t._decode_one(buf)
    decode = staticmethod(decode)

    def _decode_one(buf):
        self = class_detection_t()
        self.counts, self.mean_size = struct.unpack(">dd", buf.read(16))
        __cls_len = struct.unpack('>I', buf.read(4))[0]
        self.cls = buf.read(__cls_len)[:-1].decode('utf-8', 'replace')
        return self
    _decode_one = staticmethod(_decode_one)

    def _get_hash_recursive(parents):
        if class_detection_t in parents: return 0
        tmphash = (0x36c415a5f109b92f) & 0xffffffffffffffff
        tmphash  = (((tmphash<<1)&0xffffffffffffffff) + (tmphash>>63)) & 0xffffffffffffffff
        return tmphash
    _get_hash_recursive = staticmethod(_get_hash_recursive)
    _packed_fingerprint = None

    def _get_packed_fingerprint():
        if class_detection_t._packed_fingerprint is None:
            class_detection_t._packed_fingerprint = struct.pack(">Q", class_detection_t._get_hash_recursive([]))
        return class_detection_t._packed_fingerprint
    _get_packed_fingerprint = staticmethod(_get_packed_fingerprint)

    def get_hash(self):
        """Get the LCM hash of the struct"""
        return struct.unpack(">Q", class_detection_t._get_packed_fingerprint())[0]

