de.gandev.modjn.entity.func.response.ReadDiscreteInputsResponse.java Source code

Java tutorial

Introduction

Here is the source code for de.gandev.modjn.entity.func.response.ReadDiscreteInputsResponse.java

Source

/*
 * Copyright 2012 modjn Project
 *
 * The modjn Project licenses this file to you under the Apache License,
 * version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */
package de.gandev.modjn.entity.func.response;

import de.gandev.modjn.entity.ModbusFunction;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import java.util.BitSet;

/**
 *
 * @author Andreas Gabriel <ag.gandev@googlemail.com>
 */
public class ReadDiscreteInputsResponse extends ModbusFunction {

    private short byteCount;
    private BitSet inputStatus;

    public ReadDiscreteInputsResponse() {
        super(READ_DISCRETE_INPUTS);
    }

    public ReadDiscreteInputsResponse(BitSet inputStatus) {
        super(READ_DISCRETE_INPUTS);

        byte[] inputs = inputStatus.toByteArray();

        // maximum of 2000 bits
        if (inputs.length > 250) {
            throw new IllegalArgumentException();
        }

        this.byteCount = (short) inputs.length;
        this.inputStatus = inputStatus;
    }

    public BitSet getInputStatus() {
        return inputStatus;
    }

    public short getByteCount() {
        return byteCount;
    }

    @Override
    public int calculateLength() {
        return 1 + 1 + byteCount;
    }

    @Override
    public ByteBuf encode() {
        ByteBuf buf = Unpooled.buffer(calculateLength());
        buf.writeByte(getFunctionCode());
        buf.writeByte(byteCount);
        buf.writeBytes(inputStatus.toByteArray());

        return buf;
    }

    @Override
    public void decode(ByteBuf data) {
        byteCount = data.readUnsignedByte();

        byte[] inputs = new byte[byteCount];
        data.readBytes(inputs);

        inputStatus = BitSet.valueOf(inputs);
    }

    @Override
    public String toString() {
        return "ReadDiscreteInputsResponse{" + "byteCount=" + byteCount + ", coilStatus=" + inputStatus + '}';
    }
}