NameDynAnyPairHelper.java 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* NameDynAnyPairHelper.java --
  2. Copyright (C) 2005, 2006 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 org.omg.DynamicAny;
  32. import gnu.CORBA.Minor;
  33. import gnu.CORBA.NameDynAnyPairHolder;
  34. import gnu.CORBA.OrbRestricted;
  35. import org.omg.CORBA.Any;
  36. import org.omg.CORBA.BAD_OPERATION;
  37. import org.omg.CORBA.MARSHAL;
  38. import org.omg.CORBA.ORB;
  39. import org.omg.CORBA.StructMember;
  40. import org.omg.CORBA.TCKind;
  41. import org.omg.CORBA.TypeCode;
  42. import org.omg.CORBA.portable.InputStream;
  43. import org.omg.CORBA.portable.OutputStream;
  44. /**
  45. * A helper operations for the structure {@link NameDynAnyPair}.
  46. *
  47. * Following the 1.5 JDK specifications, DynAny (and hence any structure,
  48. * containing DynAny) is always a local object, so the two methods of this
  49. * helper ({@link #read} and {@link #write} are not in use, always throwing
  50. * {@link MARSHAL}.
  51. *
  52. * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  53. */
  54. public abstract class NameDynAnyPairHelper
  55. {
  56. /**
  57. * Extract the NameDynAnyPair from given Any.
  58. * This method uses the NameDynAnyPairHolder.
  59. *
  60. * @throws BAD_OPERATION if the passed Any does not contain NameDynAnyPair.
  61. */
  62. public static NameDynAnyPair extract(Any any)
  63. {
  64. try
  65. {
  66. return ((NameDynAnyPairHolder) any.extract_Streamable()).value;
  67. }
  68. catch (ClassCastException cex)
  69. {
  70. BAD_OPERATION bad = new BAD_OPERATION("NameDynAnyPair expected");
  71. bad.initCause(cex);
  72. bad.minor = Minor.Any;
  73. throw bad;
  74. }
  75. }
  76. /**
  77. * Get the NameDynAnyPair repository id.
  78. *
  79. * @return "IDL:omg.org/DynamicAny/NameDynAnyPair:1.0", always.
  80. */
  81. public static String id()
  82. {
  83. return "IDL:omg.org/DynamicAny/NameDynAnyPair:1.0";
  84. }
  85. /**
  86. * Create the NameDynAnyPair typecode (structure,
  87. * named "NameDynAnyPair").
  88. * The typecode states that the structure contains the
  89. * following fields: id, value.
  90. */
  91. public static TypeCode type()
  92. {
  93. ORB orb = OrbRestricted.Singleton;
  94. StructMember[] members = new StructMember[ 2 ];
  95. TypeCode field;
  96. field =
  97. orb.create_alias_tc("IDL:omg.org/DynamicAny/FieldName:1.0",
  98. "FieldName",
  99. orb.get_primitive_tc(TCKind.tk_string)
  100. );
  101. members [ 0 ] = new StructMember("id", field, null);
  102. field = DynAnyHelper.type();
  103. members [ 1 ] = new StructMember("value", field, null);
  104. return orb.create_struct_tc(id(), "NameDynAnyPair", members);
  105. }
  106. /**
  107. * Insert the NameDynAnyPair into the given Any.
  108. * This method uses the NameDynAnyPairHolder.
  109. *
  110. * @param any the Any to insert into.
  111. * @param that the NameDynAnyPair to insert.
  112. */
  113. public static void insert(Any any, NameDynAnyPair that)
  114. {
  115. any.insert_Streamable(new NameDynAnyPairHolder(that));
  116. }
  117. /**
  118. * The method should read this object from the CDR input stream, but
  119. * (following the JDK 1.5 API) it does not.
  120. *
  121. * @param input a org.omg.CORBA.portable stream to read from.
  122. *
  123. * @specenote Sun throws the same exception.
  124. *
  125. * @throws MARSHAL always.
  126. */
  127. public static NameDynAnyPair read(InputStream input)
  128. {
  129. throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id()));
  130. }
  131. /**
  132. * The method should write this object to the CDR input stream, but
  133. * (following the JDK 1.5 API) it does not.
  134. *
  135. * @param output a org.omg.CORBA.portable stream to write into.
  136. *
  137. * @specenote Sun throws the same exception.
  138. *
  139. * @throws MARSHAL always.
  140. */
  141. public static void write(OutputStream output, NameDynAnyPair value)
  142. {
  143. throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id()));
  144. }
  145. }