//License /*** * Java Modbus Library (jamod) * Copyright (c) 2002-2004, jamod development team * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the author nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. ***/ package net.wimpi.modbus.msg; import java.io.DataInput; import java.io.DataOutput; import java.io.IOException; import net.wimpi.modbus.Modbus; import net.wimpi.modbus.ModbusCoupler; import net.wimpi.modbus.procimg.DigitalOut; import net.wimpi.modbus.procimg.IllegalAddressException; import net.wimpi.modbus.procimg.ProcessImage; /** * Class implementing a <tt>ReadCoilsRequest</tt>. * The implementation directly correlates with the class 1 * function <i>read coils (FC 1)</i>. It encapsulates * the corresponding request message. * <p> * Coils are understood as bits that can be manipulated * (i.e. set or unset). * * @author Dieter Wimberger * @version 1.2rc2 (14/04/2014) */ public final class ReadCoilsRequest extends ModbusRequest { //instance attributes private int m_Reference; private int m_BitCount; /** * Constructs a new <tt>ReadCoilsRequest</tt> * instance. */ public ReadCoilsRequest() { super(); setFunctionCode(Modbus.READ_COILS); //4 bytes (unit id and function code is excluded) setDataLength(4); }//constructor /** * Constructs a new <tt>ReadCoilsRequest</tt> * instance with a given reference and count of coils * (i.e. bits) to be read. * <p> * @param ref the reference number of the register * to read from. * @param count the number of bits to be read. */ public ReadCoilsRequest(int ref, int count) { super(); setFunctionCode(Modbus.READ_COILS); //4 bytes (unit id and function code is excluded) setDataLength(4); setReference(ref); setBitCount(count); }//constructor public ModbusResponse createResponse() { ReadCoilsResponse response = null; DigitalOut[] douts = null; //1. get process image ProcessImage procimg = ModbusCoupler.getReference().getProcessImage(); //2. get coil range try { douts = procimg.getDigitalOutRange(this.getReference(), this.getBitCount()); } catch (IllegalAddressException iaex) { return createExceptionResponse(Modbus.ILLEGAL_ADDRESS_EXCEPTION); } response = new ReadCoilsResponse(douts.length); //transfer header data if (!isHeadless()) { response.setTransactionID(this.getTransactionID()); response.setProtocolID(this.getProtocolID()); } else { response.setHeadless(); } response.setUnitID(this.getUnitID()); response.setFunctionCode(this.getFunctionCode()); for (int i = 0; i < douts.length; i++) { response.setCoilStatus(i, douts[i].isSet()); } return response; }//createResponse /** * Sets the reference of the register to start reading * from with this <tt>ReadCoilsRequest</tt>. * <p> * @param ref the reference of the register * to start reading from. */ public void setReference(int ref) { m_Reference = ref; //setChanged(true); }//setReference /** * Returns the reference of the register to to start * reading from with this <tt>ReadCoilsRequest</tt>. * <p> * @return the reference of the register * to start reading from as <tt>int</tt>. */ public int getReference() { return m_Reference; }//getReference /** * Sets the number of bits (i.e. coils) to be read with * this <tt>ReadCoilsRequest</tt>. * <p> * @param count the number of bits to be read. */ public void setBitCount(int count) { if(count > Modbus.MAX_BITS) { throw new IllegalArgumentException("Maximum bitcount exceeded."); } else { m_BitCount = count; } }//setBitCount /** * Returns the number of bits (i.e. coils) to be * read with this <tt>ReadCoilsRequest</tt>. * <p> * @return the number of bits to be read. */ public int getBitCount() { return m_BitCount; }//getBitCount public void writeData(DataOutput dout) throws IOException { dout.writeShort(m_Reference); dout.writeShort(m_BitCount); }//writeData public void readData(DataInput din) throws IOException { m_Reference = din.readUnsignedShort(); m_BitCount = din.readUnsignedShort(); }//readData }//class ReadCoilsRequest