public class CDRInputStream extends InputStream implements CodeSet.InputBuffer
| Modifier and Type | Field and Description |
|---|---|
protected byte[] |
buffer
indices into the actual buffer
|
protected int |
giop_minor |
protected int |
index |
boolean |
littleEndian |
protected int |
pos |
| Constructor and Description |
|---|
CDRInputStream(byte[] buffer) |
CDRInputStream(byte[] buffer,
boolean littleEndian) |
CDRInputStream(ORB orb,
byte[] buf) |
CDRInputStream(ORB orb,
byte[] buf,
boolean littleEndian) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
void |
closeEncapsulation()
close a CDR encapsulation and
restore index and byte order information
|
int |
get_pos()
Returns the current position in the buffer.
|
byte[] |
getBufferCopy() |
int |
getGIOPMinor() |
void |
mark(int readLimit) |
boolean |
markSupported() |
void |
openEncapsulatedArray() |
int |
openEncapsulation()
open a CDR encapsulation and
restore index and byte order information
|
ORB |
orb() |
java.lang.Object |
read_abstract_interface()
Reads an abstract interface from this stream.
|
java.lang.Object |
read_abstract_interface(java.lang.Class clazz)
Reads an abstract interface from this stream.
|
Any |
read_any() |
void |
read_boolean_array(boolean[] value,
int offset,
int length)
arrays
|
boolean |
read_boolean() |
void |
read_char_array(char[] value,
int offset,
int length)
read_char_array reads an character array from the stream. |
char |
read_char()
read_char reads a character from the stream. |
void |
read_double_array(double[] value,
int offset,
int length) |
double |
read_double() |
java.math.BigDecimal |
read_fixed()
Deprecated.
use
read_fixed(short, short) instead |
java.math.BigDecimal |
read_fixed(short digits,
short scale) |
void |
read_float_array(float[] value,
int offset,
int length) |
float |
read_float() |
void |
read_long_array(int[] value,
int offset,
int length) |
int |
read_long() |
void |
read_longlong_array(long[] value,
int offset,
int length) |
long |
read_longlong() |
Object |
read_Object() |
Object |
read_Object(java.lang.Class clazz) |
void |
read_octet_array(byte[] value,
int offset,
int length) |
byte |
read_octet() |
Principal |
read_Principal() |
void |
read_short_array(short[] value,
int offset,
int length) |
short |
read_short()
Read methods for big-endian as well as little endian data input
contributed by Mark Allerton
|
java.lang.String |
read_string()
read_string reads a string from the buffer. |
TypeCode |
read_TypeCode() |
void |
read_ulong_array(int[] value,
int offset,
int length) |
int |
read_ulong() |
void |
read_ulonglong_array(long[] value,
int offset,
int length) |
long |
read_ulonglong() |
void |
read_ushort_array(short[] value,
int offset,
int length) |
short |
read_ushort() |
java.io.Serializable |
read_value() |
java.io.Serializable |
read_value(BoxedValueHelper factory)
Overrides read_value(factory) in
org.omg.CORBA_2_3.portable.InputStream
|
java.io.Serializable |
read_value(java.lang.Class clz)
Overrides read_value(clz) in
org.omg.CORBA_2_3.portable.InputStream
|
java.io.Serializable |
read_value(java.io.Serializable value)
Unmarshals a valuetype instance from this stream.
|
java.io.Serializable |
read_value(java.lang.String rep_id)
Overrides read_value(java.io.Serializable value) in
org.omg.CORBA_2_3.portable.InputStream
|
void |
read_wchar_array(char[] value,
int offset,
int length) |
char |
read_wchar() |
java.lang.String |
read_wstring() |
int |
read()
Reads the next byte of data from the input stream.
|
int |
read(byte[] b)
Has the effect of read(b, 0, b.length);
|
int |
read(byte[] b,
int off,
int len)
Performs as described by
java.io.InputStream.read(byte[], int, int),
but never blocks. |
boolean |
readBOM()
Read the byte order marker indicating the endianess.
|
byte |
readByte()
Reads the next byte from an in-memory buffer.
|
void |
register_value(java.io.Serializable value)
Stores `value' into this stream's valueMap.
|
void |
reset() |
void |
setCodeSet(CodeSet codeSet,
CodeSet codeSetWide) |
void |
setGIOPMinor(int giop_minor) |
void |
setLittleEndian(boolean b) |
protected void |
skip(int distance) |
void |
updateMutatorConnection(GIOPConnection connection)
updateMutatorConnection is an accessor that updates the
ior mutator. |
read_Contextprotected int giop_minor
public boolean littleEndian
protected byte[] buffer
protected int pos
protected int index
public CDRInputStream(ORB orb, byte[] buf)
public CDRInputStream(ORB orb, byte[] buf, boolean littleEndian)
public CDRInputStream(byte[] buffer)
public CDRInputStream(byte[] buffer,
boolean littleEndian)
public void setGIOPMinor(int giop_minor)
public int getGIOPMinor()
public void close()
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.InputStreampublic ORB orb()
orb in class InputStreamprotected final void skip(int distance)
public final void closeEncapsulation()
public final int openEncapsulation()
public final void openEncapsulatedArray()
public byte[] getBufferCopy()
public int read()
throws java.io.IOException
int in the range 0 to
255. If no byte is available because the end of the stream
has been reached, the value -1 is returned.read in class InputStream-1 if the end of the
stream is reached.java.io.IOException - if stream is closed.public int available()
available in class java.io.InputStreampublic int read(byte[] b)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionread(byte[], int, int)public int read(byte[] b,
int off,
int len)
throws java.io.IOException
java.io.InputStream.read(byte[], int, int),
but never blocks.read in class java.io.InputStreamjava.io.IOExceptionpublic final Any read_any()
read_any in class InputStreampublic final boolean read_boolean()
read_boolean in class InputStreampublic final void read_boolean_array(boolean[] value,
int offset,
int length)
read_boolean_array in class InputStreampublic final char read_char()
read_char reads a character from the stream.read_char in class InputStreamchar valuepublic final void read_char_array(char[] value,
int offset,
int length)
read_char_array reads an character array from the stream.read_char_array in class InputStreamvalue - a char[], the result array.offset - an int, an offset into valuelength - an int, the length of the array to readpublic final double read_double()
read_double in class InputStreampublic final void read_double_array(double[] value,
int offset,
int length)
read_double_array in class InputStreampublic java.math.BigDecimal read_fixed()
read_fixed(short, short) insteadread_fixed in class InputStreampublic java.math.BigDecimal read_fixed(short digits,
short scale)
read_fixed in class InputStreampublic final float read_float()
read_float in class InputStreampublic final void read_float_array(float[] value,
int offset,
int length)
read_float_array in class InputStreampublic final int read_long()
read_long in class InputStreampublic final void read_long_array(int[] value,
int offset,
int length)
read_long_array in class InputStreampublic final long read_longlong()
read_longlong in class InputStreampublic final void read_longlong_array(long[] value,
int offset,
int length)
read_longlong_array in class InputStreampublic final Object read_Object()
read_Object in class InputStreampublic Object read_Object(java.lang.Class clazz)
read_Object in class InputStreampublic final byte read_octet()
read_octet in class InputStreampublic final void read_octet_array(byte[] value,
int offset,
int length)
read_octet_array in class InputStreampublic final Principal read_Principal()
read_Principal in class InputStreampublic final short read_short()
read_short in class InputStreampublic final void read_short_array(short[] value,
int offset,
int length)
read_short_array in class InputStreampublic final java.lang.String read_string()
read_string reads a string from the buffer. It is optimized
for whether it is reading a blank string, and whether codeset translation
is active.read_string in class InputStreamString value, possibly blank, never null.public final TypeCode read_TypeCode()
read_TypeCode in class InputStreampublic final int read_ulong()
read_ulong in class InputStreampublic final void read_ulong_array(int[] value,
int offset,
int length)
read_ulong_array in class InputStreampublic final long read_ulonglong()
read_ulonglong in class InputStreampublic final void read_ulonglong_array(long[] value,
int offset,
int length)
read_ulonglong_array in class InputStreampublic final short read_ushort()
read_ushort in class InputStreampublic final void read_ushort_array(short[] value,
int offset,
int length)
read_ushort_array in class InputStreampublic final char read_wchar()
read_wchar in class InputStreampublic byte readByte()
CodeSet.InputBufferreadByte in interface CodeSet.InputBufferpublic final boolean readBOM()
readBOM in interface CodeSet.InputBufferpublic final void read_wchar_array(char[] value,
int offset,
int length)
read_wchar_array in class InputStreampublic final java.lang.String read_wstring()
read_wstring in class InputStreampublic boolean markSupported()
markSupported in class java.io.InputStreampublic void mark(int readLimit)
mark in class java.io.InputStreampublic void reset()
throws java.io.IOException
reset in class java.io.InputStreamjava.io.IOExceptionpublic final void setLittleEndian(boolean b)
public java.io.Serializable read_value()
read_value in class InputStreampublic java.io.Serializable read_value(java.lang.String rep_id)
read_value in class InputStreampublic java.io.Serializable read_value(java.io.Serializable value)
read_value in class InputStreampublic java.io.Serializable read_value(java.lang.Class clz)
read_value in class InputStreampublic java.io.Serializable read_value(BoxedValueHelper factory)
read_value in class InputStreampublic java.lang.Object read_abstract_interface()
read_abstract_interface in class InputStreampublic java.lang.Object read_abstract_interface(java.lang.Class clazz)
read_abstract_interface in class InputStreampublic int get_pos()
CodeSet.InputBufferget_pos in interface CodeSet.InputBufferpublic void register_value(java.io.Serializable value)
public void updateMutatorConnection(GIOPConnection connection)
updateMutatorConnection is an accessor that updates the
ior mutator.
By making callers pass in a GIOPConnection not a transport this allows
callers to not have to call getTransport which would require a synchronized
lock. Therefore if the mutator has not been enabled this is effectively a
NOP.connection - an org.omg.ETF.Connection value