"""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 app_control_t(object):
    __slots__ = ["run_flag"]

    __typenames__ = ["boolean"]

    __dimensions__ = [None]

    def __init__(self):
        self.run_flag = False

    def encode(self):
        buf = BytesIO()
        buf.write(app_control_t._get_packed_fingerprint())
        self._encode_one(buf)
        return buf.getvalue()

    def _encode_one(self, buf):
        buf.write(struct.pack(">b", self.run_flag))

    def decode(data):
        if hasattr(data, 'read'):
            buf = data
        else:
            buf = BytesIO(data)
        if buf.read(8) != app_control_t._get_packed_fingerprint():
            raise ValueError("Decode error")
        return app_control_t._decode_one(buf)
    decode = staticmethod(decode)

    def _decode_one(buf):
        self = app_control_t()
        self.run_flag = bool(struct.unpack('b', buf.read(1))[0])
        return self
    _decode_one = staticmethod(_decode_one)

    _hash = None
    def _get_hash_recursive(parents):
        if app_control_t in parents: return 0
        tmphash = (0xb2b376ccccfba2d8) & 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 app_control_t._packed_fingerprint is None:
            app_control_t._packed_fingerprint = struct.pack(">Q", app_control_t._get_hash_recursive([]))
        return app_control_t._packed_fingerprint
    _get_packed_fingerprint = staticmethod(_get_packed_fingerprint)

