jamod at SF

net.wimpi.modbus.io
Class BytesInputStream

java.lang.Object
  extended byjava.io.InputStream
      extended bynet.wimpi.modbus.io.FastByteArrayInputStream
          extended bynet.wimpi.modbus.io.BytesInputStream
All Implemented Interfaces:
java.io.DataInput

public class BytesInputStream
extends FastByteArrayInputStream
implements java.io.DataInput

Class implementing a byte array input stream with a DataInput interface.

Version:
1.2rc1 (09/11/2004)
Author:
Dieter Wimberger

Field Summary
 
Fields inherited from class net.wimpi.modbus.io.FastByteArrayInputStream
buf, count, mark, pos
 
Constructor Summary
BytesInputStream(byte[] data)
          Constructs a new BytesInputStream instance, that will read from the given data.
BytesInputStream(int size)
          Constructs a new BytesInputStream instance, with an empty buffer of a given size.
 
Method Summary
 byte[] getBuffer()
          Returns the reference to the input buffer.
 int getBufferLength()
          Returns the end of the buffer being read.
 boolean readBoolean()
           
 byte readByte()
           
 char readChar()
           
 double readDouble()
           
 float readFloat()
           
 void readFully(byte[] b)
           
 void readFully(byte[] b, int off, int len)
           
 int readInt()
           
 java.lang.String readLine()
           
 long readLong()
           
 short readShort()
           
 int readUnsignedByte()
           
 int readUnsignedShort()
           
 java.lang.String readUTF()
           
 void reset(byte[] data)
          Resets this BytesInputStream using the given byte[] as new input buffer.
 void reset(byte[] data, int length)
          Resets this BytesInputStream using the given byte[] as new input buffer and a given length.
 void reset(int length)
          Resets this BytesInputStream assigning the input buffer a new length.
 int skip(int n)
          Skips the given number of bytes or all bytes till the end of the assigned input buffer length.
 int skipBytes(int n)
           
 
Methods inherited from class net.wimpi.modbus.io.FastByteArrayInputStream
available, getBufferBytes, getBufferOffset, mark, markSupported, read, read, read, reset, skip
 
Methods inherited from class java.io.InputStream
close
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BytesInputStream

public BytesInputStream(int size)
Constructs a new BytesInputStream instance, with an empty buffer of a given size.

Parameters:
size - the size of the input buffer.

BytesInputStream

public BytesInputStream(byte[] data)
Constructs a new BytesInputStream instance, that will read from the given data.

Parameters:
data - a byte array containing data to be read.
Method Detail

reset

public void reset(byte[] data)
Resets this BytesInputStream using the given byte[] as new input buffer.

Parameters:
data - a byte array with data to be read.

reset

public void reset(byte[] data,
                  int length)
Resets this BytesInputStream using the given byte[] as new input buffer and a given length.

Parameters:
data - a byte array with data to be read.
length - the length of the buffer to be considered.

reset

public void reset(int length)
Resets this BytesInputStream assigning the input buffer a new length.

Parameters:
length - the length of the buffer to be considered.

skip

public int skip(int n)
Skips the given number of bytes or all bytes till the end of the assigned input buffer length.

Parameters:
n - the number of bytes to be skipped as int.
Returns:
the number of bytes skipped.

getBuffer

public byte[] getBuffer()
Returns the reference to the input buffer.

Returns:
the reference to the byte[] input buffer.

getBufferLength

public int getBufferLength()
Description copied from class: FastByteArrayInputStream
Returns the end of the buffer being read.

Overrides:
getBufferLength in class FastByteArrayInputStream
Returns:
the end of the buffer.

readFully

public void readFully(byte[] b)
               throws java.io.IOException
Specified by:
readFully in interface java.io.DataInput
Throws:
java.io.IOException

readFully

public void readFully(byte[] b,
                      int off,
                      int len)
               throws java.io.IOException
Specified by:
readFully in interface java.io.DataInput
Throws:
java.io.IOException

skipBytes

public int skipBytes(int n)
              throws java.io.IOException
Specified by:
skipBytes in interface java.io.DataInput
Throws:
java.io.IOException

readBoolean

public boolean readBoolean()
                    throws java.io.IOException
Specified by:
readBoolean in interface java.io.DataInput
Throws:
java.io.IOException

readByte

public byte readByte()
              throws java.io.IOException
Specified by:
readByte in interface java.io.DataInput
Throws:
java.io.IOException

readUnsignedByte

public int readUnsignedByte()
                     throws java.io.IOException
Specified by:
readUnsignedByte in interface java.io.DataInput
Throws:
java.io.IOException

readShort

public short readShort()
                throws java.io.IOException
Specified by:
readShort in interface java.io.DataInput
Throws:
java.io.IOException

readUnsignedShort

public int readUnsignedShort()
                      throws java.io.IOException
Specified by:
readUnsignedShort in interface java.io.DataInput
Throws:
java.io.IOException

readChar

public char readChar()
              throws java.io.IOException
Specified by:
readChar in interface java.io.DataInput
Throws:
java.io.IOException

readInt

public int readInt()
            throws java.io.IOException
Specified by:
readInt in interface java.io.DataInput
Throws:
java.io.IOException

readLong

public long readLong()
              throws java.io.IOException
Specified by:
readLong in interface java.io.DataInput
Throws:
java.io.IOException

readFloat

public float readFloat()
                throws java.io.IOException
Specified by:
readFloat in interface java.io.DataInput
Throws:
java.io.IOException

readDouble

public double readDouble()
                  throws java.io.IOException
Specified by:
readDouble in interface java.io.DataInput
Throws:
java.io.IOException

readLine

public java.lang.String readLine()
                          throws java.io.IOException
Specified by:
readLine in interface java.io.DataInput
Throws:
java.io.IOException

readUTF

public java.lang.String readUTF()
                         throws java.io.IOException
Specified by:
readUTF in interface java.io.DataInput
Throws:
java.io.IOException

jamod at SF

Copyright © 2002-2004 jamod development team.