⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractcdrinput.java

📁 gcc的组建
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
/* AbstractCdrInput.java --   Copyright (C) 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package gnu.CORBA.CDR;import gnu.CORBA.BigDecimalHelper;import gnu.CORBA.OrbFunctional;import gnu.CORBA.GIOP.CharSets_OSF;import gnu.CORBA.GIOP.CodeSetServiceContext;import gnu.CORBA.IOR;import gnu.CORBA.IorDelegate;import gnu.CORBA.Minor;import gnu.CORBA.TypeCodeHelper;import gnu.CORBA.Unexpected;import gnu.CORBA.Version;import gnu.CORBA.gnuAny;import gnu.CORBA.StubLocator;import org.omg.CORBA.Any;import org.omg.CORBA.AnySeqHolder;import org.omg.CORBA.BAD_OPERATION;import org.omg.CORBA.BooleanSeqHolder;import org.omg.CORBA.CharSeqHolder;import org.omg.CORBA.DoubleSeqHolder;import org.omg.CORBA.FloatSeqHolder;import org.omg.CORBA.LongLongSeqHolder;import org.omg.CORBA.LongSeqHolder;import org.omg.CORBA.MARSHAL;import org.omg.CORBA.ORB;import org.omg.CORBA.OctetSeqHolder;import org.omg.CORBA.ShortSeqHolder;import org.omg.CORBA.TypeCode;import org.omg.CORBA.TypeCodePackage.BadKind;import org.omg.CORBA.TypeCodePackage.Bounds;import org.omg.CORBA.ULongLongSeqHolder;import org.omg.CORBA.ULongSeqHolder;import org.omg.CORBA.UShortSeqHolder;import org.omg.CORBA.WCharSeqHolder;import org.omg.CORBA.portable.InputStream;import org.omg.CORBA.portable.ObjectImpl;import java.io.EOFException;import java.io.IOException;import java.io.InputStreamReader;import java.io.Serializable;import java.math.BigDecimal;/** * A simple CORBA CDR (common data representation) input stream, reading data * from the given {@link java.io.InputStream}. The primitive types are aligned * on they natural boundaries by implementing the abstract method * {@link #align(int boundary)}. *  * The same class also implements {@link org.omg.CORBA.DataInputStream} to read * the object content in a user defined way. *  * TODO This class uses 16 bits per Unicode character only, as it was until jdk * 1.4 inclusive. *  * @author Audrius Meskauskas (AudriusA@Bioinformatics.org) */public abstract class AbstractCdrInput  extends org.omg.CORBA_2_3.portable.InputStream  implements org.omg.CORBA.DataInputStream{  /**   * The runtime, associated with this stream. This field is only used when   * reading and writing value types and filled-in in gnu.CORBA.CDR.Vio.   */  public transient gnuRuntime runtime;  /**   * The message, explaining that the exception has been thrown due unexpected   * end of the input stream. This usually happens the server and client   * disagree on communication or data representation rules.   */  protected static final String UNEXP_EOF = "Unexpected end of stream";  /**   * This instance is used to convert primitive data types into the byte   * sequences.   */  protected AbstractDataInput b;  /**   * The input stream, from where the data are actually being read.   */  protected java.io.InputStream actual_stream;  /**   * The associated orb, if any.   */  protected ORB orb;  /**   * The GIOP version.   */  protected Version giop = new Version(1, 2);  /**   * The code set information.   */  protected CodeSetServiceContext codeset = CodeSetServiceContext.STANDARD;  /**   * The name of the currently used narrow charset, null if the native narrow   * charset is used.   */  private String narrow_charset = null;  /**   * The name of the currently used wide charset, null if the native wide   * charset is used.   */  private String wide_charset = null;  /**   * True if the native code set is used for narrow characters. If the set is   * native, no the intermediate Reader object is instantiated when writing   * characters.   */  private boolean narrow_native;  /**   * True if the native code set is used for wide characters. If the set is   * native, no the intermediate Reader object is instantiated when writing   * characters.   */  private boolean wide_native;  /**   * If true, the stream expect the multi-byte data in the form "less   * significant byte first" (Little Endian). This is the opposite to the java   * standard (Big Endian).   */  private boolean little_endian;  /**   * Creates the stream. The stream reads Big Endian by default.   *    * @param readFrom a stream to read CORBA input from.   */  public AbstractCdrInput(java.io.InputStream readFrom)  {    setInputStream(readFrom);    setCodeSet(CodeSetServiceContext.STANDARD);  }  /**   * Creates the stream, requiring the subsequent call of   * {@link #setInputStream(java.io.InputStream)}.   */  public AbstractCdrInput()  {    setCodeSet(CodeSetServiceContext.STANDARD);  }  /**   * Set the Big Endian or Little Endian encoding. The stream reads Big Endian   * by default.   *    * @param use_little_endian if true, the stream expect the multi-byte data in   * the form "less significant byte first" (Little Endian). This is the   * opposite to the java standard (Big Endian).   */  public void setBigEndian(boolean use_big_endian)  {    little_endian = !use_big_endian;    setInputStream(actual_stream);  }  /**   * Get the used encoding.   *    * @param true for Big Endian, false for Little Endian.   */  public boolean isBigEndian()  {    return !little_endian;  }  /**   * Clone all important settings to another stream.   */  public void cloneSettings(AbstractCdrInput stream)  {    stream.setBigEndian(isBigEndian());    stream.setCodeSet(getCodeSet());    stream.setVersion(giop);    stream.setOrb(orb);  }  /**   * Set the input stream that receives the CORBA input.   *    * @param readFrom the stream.   */  public void setInputStream(java.io.InputStream readFrom)  {    if (little_endian)      b = new LittleEndianInputStream(readFrom);    else      b = new BigEndianInputStream(readFrom);    actual_stream = readFrom;  }  /**   * Set the alignment offset, if the index of the first byte in the stream is   * different from 0.   */  public abstract void setOffset(int offset);  /**   * Set the orb, associated with this stream.   *    * @param an_orb   */  public void setOrb(ORB an_orb)  {    orb = an_orb;  }  /**   * Set the GIOP version. Some data types are written differently for the   * different versions. The default version is 1.0 .   */  public void setVersion(Version giop_version)  {    giop = giop_version;  }  /**   * Align the curretn position at the given natural boundary.   */  public abstract void align(int boundary);  /**   * Reads the CORBA unsigned long (java int), returning the value in the   * sufficiently large java long.   */  public long gnu_read_ulong()  {    try      {        long l = b.readInt();        l &= 0xFFFFFFF;        return l;      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }    catch (IOException ex)      {        throw new Unexpected(ex);      }  }  /**   * Read the unsigned short integer value and return it as java int,   * sufficiently large to hold all values.   */  public int gnu_read_ushort()  {    try      {        align(2);        return b.readUnsignedShort();      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }    catch (IOException ex)      {        throw new Unexpected(ex);      }  }  /**   * Return the associated {@link ORB}.   *    * @return the associated {@link ORB} or null is no such is set.   */  public ORB orb()  {    return orb;  }  /**   * Read a single byte directly from the buffer.   */  public int read()    throws java.io.IOException  {    try      {        return b.read();      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }  }  /**   * Read bytes directly from the buffer.   */  public int read(byte[] x, int ofs, int len)    throws java.io.IOException  {    try      {        return b.read(x, ofs, len);      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }  }  /**   * Read bytes directly from the buffer.   */  public int read(byte[] x)    throws java.io.IOException  {    try      {        return b.read(x);      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }  }  /**   * Read the CORBA object. The object to read is represented in the form of the   * plain (not a string-encoded) IOR profile without the heading endian   * indicator. The responsible method for reading such data is   * {@link IOR.read_no_endian}.   *    * The returned object is usually casted into the given type using the .narrow   * method of its helper, despite in some cases the direct cast would also   * work.   *    * The null objects are recognised from the empty profile set. For such   * objects, null is returned.   *    * @return the loaded and constructed object.   */  public org.omg.CORBA.Object read_Object()  {    try      {        IOR ior = new IOR();        ior._read_no_endian(this);        if (ior.Id == null)          return null;        // Check maybe this is a remote reference to the local object.        // This is only possible if we access the repository of the        // connected object.        if (orb instanceof OrbFunctional)          {            OrbFunctional forb = (OrbFunctional) orb;            org.omg.CORBA.Object local = forb.find_local_object(ior);            if (local != null)              return local;          }        // Search for the available stubs.        ObjectImpl impl = StubLocator.search(orb, ior);        try          {            if (impl._get_delegate() == null)              impl._set_delegate(new IorDelegate(orb, ior));          }        catch (BAD_OPERATION ex)          {            // Some colaborants may throw this exception            // in response to the attempt to get the unset delegate.            impl._set_delegate(new IorDelegate(orb, ior));          }        return impl;      }    catch (IOException ex)      {        MARSHAL bad = new MARSHAL();        bad.minor = Minor.IOR;        bad.initCause(ex);        throw bad;      }  }  /**   * Read the type code. The type code format is defined in the CORBA   * documenation.   */  public TypeCode read_TypeCode()  {    try      {        return TypeCodeHelper.read(this);      }    catch (Bounds ex)      {        throw new Unexpected();      }    catch (BadKind ex)      {        throw new Unexpected();      }  }  /**   * Read the CORBA {@link Any}. This method first reads the type code, then   * delegates the functionality to {@link Any#read_value}.   */  public Any read_any()  {    TypeCode ty = read_TypeCode();    gnuAny any = new gnuAny();    any.read_value(this, ty);    return any;  }  /**   * Read the boolean, treating any non zero byte as true, zero byte as false.   */  public boolean read_boolean()  {    try      {        return b.read() == 0 ? false : true;      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }    catch (IOException ex)      {        throw new Unexpected(ex);      }  }  /**   * Read the array of boolean.   */  public void read_boolean_array(boolean[] x, int offs, int len)  {    try      {        for (int i = offs; i < offs + len; i++)          {            x[i] = b.read() == 0 ? false : true;          }      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }    catch (IOException ex)      {        throw new Unexpected(ex);      }  }  /**   * Read a character using narrow charset encoding. Depending form which   * encoding is set, this still can be Unicode or ever wider.   */  public char read_char()  {    try      {        if (narrow_native)          return (char) b.read();        else          return (char) new InputStreamReader((InputStream) b, narrow_charset).read();      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }    catch (IOException ex)      {        throw new Unexpected(ex);      }  }  /**   * Read a character array, using narrow charset encoding.   */  public void read_char_array(char[] x, int offset, int length)  {    try      {        if (narrow_native)          {            for (int i = offset; i < offset + length; i++)              x[i] = (char) b.read();          }        else          {            InputStreamReader reader = new InputStreamReader((InputStream) b,              narrow_charset);            reader.read(x, offset, length);          }      }    catch (EOFException ex)      {        MARSHAL t = new MARSHAL(UNEXP_EOF);        t.minor = Minor.EOF;        t.initCause(ex);        throw t;      }    catch (IOException ex)      {        throw new Unexpected(ex);      }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -