org.jpac.plc.ByteRxTx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elbfisch.core Show documentation
Show all versions of elbfisch.core Show documentation
Open-source runtime system for component-based implementation of automation solutions with Java
The newest version!
/**
* PROJECT : jPac PLC communication library
* MODULE : ByteRxTx.java
* VERSION : -
* DATE : -
* PURPOSE :
* AUTHOR : Bernd Schuster, MSK Gesellschaft fuer Automatisierung mbH, Schenefeld
* REMARKS : -
* CHANGES : CH#n
*
* This file is part of the jPac process automation controller.
* jPac is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* jPac is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the jPac If not, see .
*/
package org.jpac.plc;
import java.io.IOException;
import org.jpac.IndexOutOfRangeException;
/**
* Used to transfer a byte value between the java application and the plc.
* Can be used standalone or in the context of a complex data structure (STRUCT)
*/
public class ByteRxTx extends RxTx{
/**
* @param conn an open TCP/IP connection to the plc
* @param address address of the data item exchanged with the plc
* @param dataOffset the byte offset inside {@link #data}, holding the data item to be exchanged with the plc
* @param data instance of {@link Data} used to hold the data item exchanged with the plc.
* @throws IndexOutOfRangeException
*/
public ByteRxTx(Connection conn, Address address, int dataOffset, Data data) throws IndexOutOfRangeException{
super(conn, address, dataOffset, data);
if (address.getByteIndex() <= Address.NA || address.getBitIndex() != Address.NA || address.getSize() > getSize())
throw new IndexOutOfRangeException();
}
/**
* used to read the data item from plc and store it inside {@link #data}.
* @return this
* @throws IOException
*/
@Override
public ByteRxTx read() throws IOException{
super.read();
return this;
}
/**
* used to set the data item to a given value.
* The data item is written to {@link #data} first.
* The actual transfer to the plc is done by invocation of writeInt(): aRxTx.set(aValue).writeInt();
* @param value a value
* @return this. Useful in cases where the data item should be written to the plc immediately (see above).
* @throws AddressException
*/
public ByteRxTx set(byte value) throws AddressException, ValueOutOfRangeException {
getData().setBYTE(dataOffset, (int)value);
return this;
}
/**
* used to retrieve the current value of the data item.
* The data item is locally retrieved from {@link #data}.
* to get the actual value from the plc use read() first: value = aRxTx.read().get();
* @return value
* @throws AddressException
*/
public byte get() throws AddressException {
return (byte)getData().getBYTE(dataOffset);
}
public static int getSize() {
return 1;
}
@Override
public String toString(){
String str = null;
try{
str = new Integer(get()).toString();
}
catch(AddressException exc)
{
str = super.toString();
};
return str;
}
}