⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modbusmessageimpl.java

📁 jamod is an object oriented implementation of the Modbus protocol, realized 100 in Java. It allows
💻 JAVA
字号:
//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.util.ModbusUtil;/** * Abstract class implementing a <tt>ModbusMessage</tt>. * This class provides specialised implementations with * the functionality they have in common. * * @author Dieter Wimberger * @version 1.2rc1 (09/11/2004) */public abstract class ModbusMessageImpl    implements ModbusMessage {  //instance attributes  private int m_TransactionID = Modbus.DEFAULT_TRANSACTION_ID;  private int m_ProtocolID = Modbus.DEFAULT_PROTOCOL_ID;  private int m_DataLength;  private int m_UnitID = Modbus.DEFAULT_UNIT_ID;  private int m_FunctionCode;  private boolean m_Headless = false;       //flag for headerless (serial) transport  /*** Header ******************************************/  /**   * Tests if this message instance is headless.   *   * @return true if headless, false otherwise.   */  public boolean isHeadless() {    return m_Headless;  }//isHeadless  public void setHeadless() {    m_Headless = true;  }//setHeadless  /**   * Sets the headless flag of this message.   *   * @param b true if headless, false otherwise.   */  protected void setHeadless(boolean b) {    m_Headless = b;  }//setHeadless  public int getTransactionID() {    return m_TransactionID;  }//getTransactionID  /**   * Sets the transaction identifier of this   * <tt>ModbusMessage</tt>.<p>   * The identifier should be a 2-byte (short) non negative   * integer value valid in the range of 0-65535.<br>   * <p>   * @param tid the transaction identifier as <tt>int</tt>.   */  public void setTransactionID(int tid) {    m_TransactionID = tid;    //setChanged(true);  }//setTransactionID  public int getProtocolID() {    return m_ProtocolID;  }//getProtocolID  /**   * Sets the protocol identifier of this   * <tt>ModbusMessage</tt>.<p>   * The identifier should be a 2-byte (short) non negative   * integer value valid in the range of 0-65535.<br>   * <p>   * @param pid the protocol identifier as <tt>int</tt>.   */  public void setProtocolID(int pid) {    m_ProtocolID = pid;    //setChanged(true);  }//setProtocolID  public int getDataLength() {    return m_DataLength;  }//getDataLength  /**   * Sets the length of the data appended   * after the protocol header.<p>   * Note that this library, a bit in contrast to the   * specification, counts the unit identifier and the   * function code to the header, because it is part   * of each and every message. Thus this message will   * append two (2) to the passed in integer value.   * <p>   * @param length the data length as <tt>int</tt>.   */  public void setDataLength(int length) {    //should be below 255, check!    m_DataLength = length + 2;  }//setData  public int getUnitID() {    return m_UnitID;  }//getUnitID  /**   * Sets the unit identifier of  this   * <tt>ModbusMessage</tt>.<br>   * The identifier should be a 1-byte non negative   * integer value valid in the range of 0-255.   *   * @param num the unit identifier number to be set.   */  public void setUnitID(int num) {    m_UnitID = num;    //setChanged(true);  }//setUnitID  public int getFunctionCode() {    return m_FunctionCode;  }//getFunctionCode  /**   * Sets the function code of this <tt>ModbusMessage</tt>.<br>   * The function code should be a 1-byte non negative   * integer value valid in the range of 0-127.<br>   * Function codes are ordered in conformance   * classes their values are specified in   * <tt>net.wimpi.modbus.Modbus</tt>.   *   * @param code the code of the function to be set.   * @see net.wimpi.modbus.Modbus   */  protected void setFunctionCode(int code) {    m_FunctionCode = code;    //setChanged(true);  }//setFunctionCode  /*** Data ********************************************/  /*** Transportable ***********************************/  /**   * Writes this message to the given <tt>DataOutput</tt>.   *   * @param dout a <tt>DataOutput</tt> instance.   * @throws IOException if an I/O related error occurs.   */  public void writeTo(DataOutput dout)      throws IOException {    if (!isHeadless()) {      dout.writeShort(getTransactionID());      dout.writeShort(getProtocolID());      dout.writeShort(getDataLength());    }    dout.writeByte(getUnitID());    dout.writeByte(getFunctionCode());    writeData(dout);  }//writeTo  /**   * Writes the subclass specific data to the given DataOutput.   *   * @param dout the DataOutput to be written to.   * @throws IOException if an I/O related error occurs.   */  public abstract void writeData(DataOutput dout)      throws IOException;  public void readFrom(DataInput din)      throws IOException {    if (!isHeadless()) {      setTransactionID(din.readUnsignedShort());      setProtocolID(din.readUnsignedShort());      m_DataLength = din.readUnsignedShort();    }    setUnitID(din.readUnsignedByte());    setFunctionCode(din.readUnsignedByte());    readData(din);  }//readFrom  /**   * Reads the subclass specific data from the given DataInput instance.   *   * @param din the DataInput to read from.   * @throws IOException if an I/O related error occurs.   */  public abstract void readData(DataInput din)      throws IOException;  public int getOutputLength() {    int l = 2 + getDataLength();    if (!isHeadless()) {      l = l + 6;    }    return l;  }//getOutputLength  /*** END Transportable *******************************/  /**   * Returns the this message as hexadecimal string.   *   * @return the message as hex encoded string.   */  public String getHexMessage() {    return ModbusUtil.toHex(this);  }//getHexMessage}//class ModbusMessageImpl

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -