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

com.ghgande.j2mod.modbus.msg.ReadExceptionStatusResponse Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
/*
 * Copyright 2002-2016 jamod & j2mod development teams
 *
 * Licensed 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 com.ghgande.j2mod.modbus.msg;

import com.ghgande.j2mod.modbus.Modbus;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;

/**
 * Class implementing a ReadCommEventCounterResponse.
 *
 * @author Julie Haugh ([email protected])
 * @author Steve O'Hara (4NG)
 * @version 2.0 (March 2016)
 */
public class ReadExceptionStatusResponse extends ModbusResponse {

    // Message fields.
    private int status;

    /**
     * Constructs a new ReadExceptionStatusResponse instance.
     */
    public ReadExceptionStatusResponse() {
        super();

        setFunctionCode(Modbus.READ_EXCEPTION_STATUS);
        setDataLength(1);
    }

    /**
     * getStatus -- get the device's status.
     *
     * @return int
     */
    public int getStatus() {
        return status;
    }

    /**
     * setStatus -- set the device's status.
     *
     * @param status Status to set
     */
    public void setStatus(int status) {
        this.status = status;
    }

    /**
     * writeData -- output the completed Modbus message to dout
     * @throws java.io.IOException If the data cannot be written
     */
    @Override
    public void writeData(DataOutput dout) throws IOException {
        dout.write(getMessage());
    }

    /**
     * readData -- input the Modbus message from din. If there was a header,
     * such as for Modbus/TCP, it will have been read already.
     * @throws java.io.IOException If the data cannot be read
     */
    @Override
    public void readData(DataInput din) throws IOException {
        status = din.readByte() & 0xFF;
    }

    /**
     * getMessage -- format the message into a byte array.
     * @return Response as byte array
     */
    @Override
    public byte[] getMessage() {
        byte[] result = new byte[1];

        result[0] = (byte)(status & 0xFF);

        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy