EmptyExceptionHolder.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* EmptyStructHolder.java --
  2. Copyright (C) 2005 Free Software Foundation, Inc.
  3. This file is part of GNU Classpath.
  4. GNU Classpath is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. GNU Classpath is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Classpath; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301 USA.
  16. Linking this library statically or dynamically with other modules is
  17. making a combined work based on this library. Thus, the terms and
  18. conditions of the GNU General Public License cover the whole
  19. combination.
  20. As a special exception, the copyright holders of this library give you
  21. permission to link this library with independent modules to produce an
  22. executable, regardless of the license terms of these independent
  23. modules, and to copy and distribute the resulting executable under
  24. terms of your choice, provided that you also meet, for each linked
  25. independent module, the terms and conditions of the license of that
  26. module. An independent module is a module which is not derived from
  27. or based on this library. If you modify this library, you may extend
  28. this exception to your version of the library, but you are not
  29. obligated to do so. If you do not wish to do so, delete this
  30. exception statement from your version. */
  31. package gnu.CORBA;
  32. import org.omg.CORBA.BAD_OPERATION;
  33. import org.omg.CORBA.TypeCode;
  34. import org.omg.CORBA.UNKNOWN;
  35. import org.omg.CORBA.portable.InputStream;
  36. import org.omg.CORBA.portable.OutputStream;
  37. import org.omg.CORBA.portable.Streamable;
  38. /**
  39. * This holder can store any CORBA exception that has no user defined fields.
  40. * Only the repository ID is written when the method {@link #_write} is called.
  41. * The _read method is not supported for this holder.
  42. *
  43. * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  44. */
  45. public class EmptyExceptionHolder
  46. implements Streamable
  47. {
  48. /**
  49. * The wrapped exception.
  50. */
  51. public Throwable value;
  52. /**
  53. * The typecode of the wrapped exception.
  54. */
  55. public TypeCode typecode;
  56. /**
  57. * Create the exception holder, initialised to the given values.
  58. *
  59. * @param an_exception the wrapped exception.
  60. * @param an_id the exception repository id.
  61. */
  62. public EmptyExceptionHolder(Throwable an_exception, TypeCode a_typecode)
  63. {
  64. value = an_exception;
  65. typecode = a_typecode;
  66. }
  67. /**
  68. * Reads the exception from the input stream.
  69. *
  70. * The value field obtains the value of either the read exception or
  71. * the UNKNOWN if the repository ID does not match
  72. * the exception from the reachable code.
  73. */
  74. public void _read(InputStream input)
  75. {
  76. String id = input.read_string();
  77. Object ex = ObjectCreator.Idl2Object(id);
  78. if (ex == null)
  79. value = new UNKNOWN(id);
  80. else
  81. value = (Throwable) ex;
  82. }
  83. /**
  84. * Return the typecode of the stored exception.
  85. *
  86. * @return the value, passed as a_typecode in constructor.
  87. */
  88. public TypeCode _type()
  89. {
  90. return typecode;
  91. }
  92. /**
  93. * Write the exception into the give output stream. Writes the
  94. * repository id that is taken from the typecode. This method also
  95. * works when no helper class is available.
  96. *
  97. * @param output a stream to write into.
  98. *
  99. * @throws BAD_OPERATION if the value for the holder is not set or
  100. * the typecode cannot provide repository id.
  101. */
  102. public void _write(OutputStream output)
  103. {
  104. try
  105. {
  106. output.write_string(typecode.id());
  107. }
  108. catch (Exception ex)
  109. {
  110. BAD_OPERATION bad = new BAD_OPERATION();
  111. bad.minor = Minor.CDR;
  112. bad.initCause(ex);
  113. throw bad;
  114. }
  115. }
  116. }