Package com.sun.corba.se.impl.ior
Class EncapsulationUtility
java.lang.Object
com.sun.corba.se.impl.ior.EncapsulationUtility
This static utility class contains various utility methods for reading and
writing CDR encapsulations.
- Author:
- Ken Cavanaugh
-
Method Summary
Modifier and TypeMethodDescriptionstatic InputStreamHelper method to read the octet array from is, deencapsulate it, and return as another InputStream.static voidreadIdentifiableSequence(List container, IdentifiableFactoryFinder finder, InputStream istr) Read the count from is, then read count Identifiables from is using the factory.static byte[]Helper method that reads an octet array from an input stream.static voidwriteEncapsulation(WriteContents obj, OutputStream os) static voidwriteIdentifiableSequence(List container, OutputStream os) Write all Identifiables that we contain to os.static voidwriteOutputStream(OutputStream dataStream, OutputStream os) Helper method that is used to extract data from an output stream and write the data to another output stream.
-
Method Details
-
readIdentifiableSequence
public static void readIdentifiableSequence(List container, IdentifiableFactoryFinder finder, InputStream istr) Read the count from is, then read count Identifiables from is using the factory. Add each constructed Identifiable to container. -
writeIdentifiableSequence
Write all Identifiables that we contain to os. The total length must be written before this method is called. -
writeOutputStream
Helper method that is used to extract data from an output stream and write the data to another output stream. Defined as static so that it can be used in another class. -
getEncapsulationStream
Helper method to read the octet array from is, deencapsulate it, and return as another InputStream. This must be called inside the constructor of a derived class to obtain the correct stream for unmarshalling data. -
readOctets
Helper method that reads an octet array from an input stream. Defined as static here so that it can be used in another class. -
writeEncapsulation
-