org.openorb.orb.io
Class ListInputStream

java.lang.Object
  extended byjava.io.InputStream
      extended byorg.omg.CORBA.portable.InputStream
          extended byorg.omg.CORBA_2_3.portable.InputStream
              extended byorg.openorb.orb.io.ListInputStream
All Implemented Interfaces:
ExtendedInputStream

public class ListInputStream
extends org.omg.CORBA_2_3.portable.InputStream
implements ExtendedInputStream

This implementation of org.omg.CORBA_2_3.portable.InputStream uses a list as it's backing store. All non primitive types are stored by reference.

Version:
$Revision: 1.9 $ $Date: 2004/02/10 21:02:49 $
Author:
Chris Wood

Constructor Summary
ListInputStream(org.omg.CORBA.ORB orb, java.util.List source)
          Create new list input stream.
 
Method Summary
 int available()
          This operation is not available as the stream does not deal with bytes.
 boolean equals(java.lang.Object obj)
          Compare this ListInputStream to another ListInputStream or ListOutputStream.
 java.lang.String get_codebase()
          Get codebase associated with stream.
 int getSourceSize()
          Set the index into the source.
 void mark(int ign)
          Mark the position for later resetting.
 boolean markAvailable()
          Returns true.
 org.omg.CORBA.ORB orb()
          Get the orb associated with the stream.
 java.lang.Object read_abstract_interface()
           
 java.lang.Object read_abstract_interface(java.lang.Class clz)
           
 org.omg.CORBA.Any read_any()
           
 void read_boolean_array(boolean[] dest, int off, int len)
          Read a boolean array.
 boolean read_boolean()
          Read a boolean value.
 void read_char_array(char[] dest, int off, int len)
           
 char read_char()
           
 org.omg.CORBA.Context read_Context()
           
 void read_double_array(double[] dest, int off, int len)
           
 double read_double()
           
 java.math.BigDecimal read_fixed()
           
 java.math.BigDecimal read_fixed(short digits, short scale)
          read a fixed.
 java.math.BigDecimal read_fixed(org.omg.CORBA.TypeCode type)
          read a fixed.
 void read_float_array(float[] dest, int off, int len)
           
 float read_float()
           
 void read_long_array(int[] dest, int off, int len)
           
 int read_long()
           
 void read_longlong_array(long[] dest, int off, int len)
           
 long read_longlong()
           
 org.omg.CORBA.Object read_Object()
           
 org.omg.CORBA.Object read_Object(java.lang.Class clz)
           
 void read_octet_array(byte[] dest, int off, int len)
           
 byte read_octet()
           
 org.omg.CORBA.Principal read_Principal()
          Deprecated. Deprecated by CORBA 2.2
 void read_short_array(short[] dest, int off, int len)
           
 short read_short()
           
 java.lang.String read_string()
           
 org.omg.CORBA.TypeCode read_TypeCode()
           
 void read_ulong_array(int[] dest, int off, int len)
           
 int read_ulong()
           
 void read_ulonglong_array(long[] dest, int off, int len)
           
 long read_ulonglong()
           
 void read_ushort_array(short[] dest, int off, int len)
           
 short read_ushort()
           
 java.io.Serializable read_value()
           
 java.io.Serializable read_value(org.omg.CORBA.portable.BoxedValueHelper factory)
           
 java.io.Serializable read_value(java.lang.Class clz)
           
 java.io.Serializable read_value(java.io.Serializable value)
          This function has a nonstandard implementation, it copies the data from the contained valuetype into the given target.
 java.io.Serializable read_value(java.lang.String rep_id)
           
 void read_wchar_array(char[] dest, int off, int len)
           
 char read_wchar()
           
 java.lang.String read_wstring()
           
 void reset()
          Reset the position to one previously marked.
 int skip()
          This operation is not available as the stream does not deal with bytes.
 
Methods inherited from class org.omg.CORBA.portable.InputStream
read
 
Methods inherited from class java.io.InputStream
close, markSupported, read, read, skip
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListInputStream

public ListInputStream(org.omg.CORBA.ORB orb,
                       java.util.List source)
Create new list input stream. This is normally called only by the ListOutputStream, since the contents of the list are specialized.

Parameters:
orb - the owning orb.
source - data source.
Method Detail

orb

public org.omg.CORBA.ORB orb()
Get the orb associated with the stream.

Specified by:
orb in interface ExtendedInputStream

get_codebase

public java.lang.String get_codebase()
Get codebase associated with stream. This will return the contents of any TAG_JAVA_CODEBASE service context when unmarshaling, or otherwise return null. Always returns null for list stream.

Specified by:
get_codebase in interface ExtendedInputStream

getSourceSize

public int getSourceSize()
Set the index into the source. This is used to reset the position to one visited previously. private void setIndex( int index ) { if ( index > m_source.size() || index < 0 ) { throw new IndexOutOfBoundsException(); } m_iter_pos = index; m_iter = null; }


skip

public int skip()
This operation is not available as the stream does not deal with bytes.


available

public int available()
This operation is not available as the stream does not deal with bytes.


markAvailable

public boolean markAvailable()
Returns true.


mark

public void mark(int ign)
Mark the position for later resetting.

Parameters:
ign - ignored, stream does not deal with bytes.

reset

public void reset()
Reset the position to one previously marked.


read_boolean

public boolean read_boolean()
Read a boolean value.


read_boolean_array

public void read_boolean_array(boolean[] dest,
                               int off,
                               int len)
Read a boolean array.


read_octet

public byte read_octet()

read_octet_array

public void read_octet_array(byte[] dest,
                             int off,
                             int len)

read_short

public short read_short()

read_short_array

public void read_short_array(short[] dest,
                             int off,
                             int len)

read_ushort

public short read_ushort()

read_ushort_array

public void read_ushort_array(short[] dest,
                              int off,
                              int len)

read_long

public int read_long()

read_long_array

public void read_long_array(int[] dest,
                            int off,
                            int len)

read_ulong

public int read_ulong()

read_ulong_array

public void read_ulong_array(int[] dest,
                             int off,
                             int len)

read_longlong

public long read_longlong()

read_longlong_array

public void read_longlong_array(long[] dest,
                                int off,
                                int len)

read_ulonglong

public long read_ulonglong()

read_ulonglong_array

public void read_ulonglong_array(long[] dest,
                                 int off,
                                 int len)

read_char

public char read_char()

read_char_array

public void read_char_array(char[] dest,
                            int off,
                            int len)

read_wchar

public char read_wchar()

read_wchar_array

public void read_wchar_array(char[] dest,
                             int off,
                             int len)

read_float

public float read_float()

read_float_array

public void read_float_array(float[] dest,
                             int off,
                             int len)

read_double

public double read_double()

read_double_array

public void read_double_array(double[] dest,
                              int off,
                              int len)

read_string

public java.lang.String read_string()

read_wstring

public java.lang.String read_wstring()

read_Object

public org.omg.CORBA.Object read_Object()

read_Object

public org.omg.CORBA.Object read_Object(java.lang.Class clz)

read_TypeCode

public org.omg.CORBA.TypeCode read_TypeCode()

read_any

public org.omg.CORBA.Any read_any()

read_Context

public org.omg.CORBA.Context read_Context()

read_Principal

public org.omg.CORBA.Principal read_Principal()
Deprecated. Deprecated by CORBA 2.2


read_fixed

public java.math.BigDecimal read_fixed()

read_fixed

public java.math.BigDecimal read_fixed(org.omg.CORBA.TypeCode type)
read a fixed.

Specified by:
read_fixed in interface ExtendedInputStream

read_fixed

public java.math.BigDecimal read_fixed(short digits,
                                       short scale)
read a fixed.

Specified by:
read_fixed in interface ExtendedInputStream

read_value

public java.io.Serializable read_value()

read_value

public java.io.Serializable read_value(java.lang.String rep_id)

read_value

public java.io.Serializable read_value(java.lang.Class clz)

read_value

public java.io.Serializable read_value(org.omg.CORBA.portable.BoxedValueHelper factory)

read_value

public java.io.Serializable read_value(java.io.Serializable value)
This function has a nonstandard implementation, it copies the data from the contained valuetype into the given target. The CDR streams also have a similar function.


read_abstract_interface

public java.lang.Object read_abstract_interface()

read_abstract_interface

public java.lang.Object read_abstract_interface(java.lang.Class clz)

equals

public boolean equals(java.lang.Object obj)
Compare this ListInputStream to another ListInputStream or ListOutputStream.