net.wimpi.modbus.io.ASCIIOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jamod Show documentation
Show all versions of jamod Show documentation
jamod is an object oriented implementation of the Modbus protocol, realized 100% in Java. It allows to quickly
realize master and slave applications in various transport flavors (IP and serial).
The newest version!
/***
* Copyright 2002-2010 jamod development team
*
* 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 net.wimpi.modbus.io;
import java.io.IOException;
import java.io.OutputStream;
import java.io.FilterOutputStream;
import net.wimpi.modbus.util.ModbusUtil;
/**
* Class implementing a specialized OutputStream which
* encodes bytes written to the stream into two hexadecimal
* characters each.
* Note that the "virtual" characters FRAME_START and FRAME_END
* are exceptions, they are translated to the respective characters
* as given by the specification.
*
* @author Dieter Wimberger
* @version 1.2 (@date@)
*
* @see net.wimpi.modbus.io.ModbusASCIITransport#FRAME_START
* @see net.wimpi.modbus.io.ModbusASCIITransport#FRAME_END
*/
public class ASCIIOutputStream
extends FilterOutputStream {
/**
* Constructs a new ASCIIOutputStream instance
* writing to the given OutputStream.
*
* @param out a base output stream instance to be wrapped.
*/
public ASCIIOutputStream(OutputStream out) {
super(out);
}//constructor
/**
* Writes a byte encoded as two hexadecimal characters to
* the raw output stream.
*
* @param b the byte to be written as int.
* @throws IOException if an I/O error occurs.
*/
public void write(int b) throws IOException {
if (b == ModbusASCIITransport.FRAME_START) {
out.write(58);
//System.out.println("Wrote FRAME_START");
return;
} else if (b == ModbusASCIITransport.FRAME_END) {
out.write(13);
out.write(10);
//System.out.println("Wrote FRAME_END");
return;
} else {
out.write(ModbusUtil.toHex(b));
//System.out.println("Wrote byte "+b+"="+new String(ModbusUtil.toHex(b)));
}
}//write
/**
* Writes an array of bytes encoded as two hexadecimal
* characters to the raw output stream.
*
* @param data the byte[] to be written.
* @throws IOException if an I/O error occurs.
*/
public void write(byte[] data) throws IOException {
for (int i = 0; i < data.length; i++) {
write(data[i]);
}
}//write(byte[])
/**
* Writes an array of bytes encoded as two hexadecimal
* characters to the raw output stream.
*
* @param data the byte[] to be written.
* @param off the offset into the data to start writing from.
* @param len the number of bytes to be written from off.
*
* @throws IOException if an I/O error occurs.
*/
public void write(byte[] data, int off, int len) throws IOException {
for (int i = off; i < len; i++) {
write(data[i]);
}
}//write(byte[])
}//class ASCIIOutputStream