All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.jbidibc.usbstickbasis.UsbStickBasisMessageReceiver Maven / Gradle / Ivy

package org.bidib.jbidibc.usbstickbasis;

import java.io.ByteArrayOutputStream;

import org.bidib.jbidibc.core.AbstractMessageReceiver;
import org.bidib.jbidibc.core.node.NodeRegistry;
import org.bidib.jbidibc.messages.exception.ProtocolException;
import org.bidib.jbidibc.messages.message.ResponseFactory;
import org.bidib.jbidibc.messages.utils.ByteUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class UsbStickBasisMessageReceiver extends AbstractMessageReceiver {
    private static final Logger LOGGER = LoggerFactory.getLogger(UsbStickBasisMessageReceiver.class);

    private ByteArrayOutputStream output = new ByteArrayOutputStream(2048);

    /**
     * Create a new instance of MessageReceiver.
     * 
     * @param nodeRegistry
     *            the node registry
     * @param checkCRC
     *            flag if we must check the CRC
     */
    public UsbStickBasisMessageReceiver(NodeRegistry nodeRegistry, final ResponseFactory responseFactory,
        boolean checkCRC) {
        super(nodeRegistry, responseFactory, checkCRC);
    }

    @Override
    public void enable() {
        LOGGER.info("enable is called.");
        // escapeHot.set(false);

        MSG_RAW_LOGGER.info("++++ Enable the message receiver.");

        try {
            output.reset();
        }
        catch (Exception ex) {
            LOGGER.warn("Reset buffered received data failed.", ex);
        }

        super.enable();
    }

    @Override
    public void disable() {
        LOGGER.info("Disable is called.");
        super.disable();

        MSG_RAW_LOGGER.info("++++ Disable the message receiver.");

        // escapeHot.set(false);
    }

    /**
     * Receive messages from the configured port
     * 
     * @param data
     *            the received data
     */
    @Override
    public void receive(final ByteArrayOutputStream data) {

        if (!isEnabled()) {
            LOGGER.info("The receiver is not running. Skip processing of messages.");
            try {
                byte[] rawdata = data.toByteArray();
                LOGGER
                    .info("Receiver is stopped, number of bytes read: {}, buffer: {}", rawdata.length,
                        ByteUtils.bytesToHex(rawdata));
            }
            catch (Exception ex) {
                LOGGER.warn("Read data from input stream to buffer failed.", ex);
            }
            return;
        }

        MSG_RAW_LOGGER.info("<<<< start parse input: {}", ByteUtils.bytesToHex(data));

        try {
            parseInput(data);
        }
        catch (Exception e) {
            LOGGER.warn("Exception detected in message receiver!", e);

            throw new RuntimeException(e);
        }
        finally {
            MSG_RAW_LOGGER.info("<<<< finished parse input");
        }
    }

    /**
     * Parse the received data to process the received bidib packets.
     * 
     * @param input
     *            the received data
     * @throws ProtocolException
     */
    protected void parseInput(final ByteArrayOutputStream input) throws ProtocolException {

        MSG_RAW_LOGGER.info("<<<< len: {}, data: {}", input.size(), ByteUtils.bytesToHex(input));

        // if a CRC error is detected in splitMessages the reading loop will terminate ...
        try {
            processMessages(input);
        }
        catch (ProtocolException ex) {
            LOGGER.warn("Process messages failed.", ex);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy