UnionMemberHelper.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /* UnionMemberHelper.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 org.omg.CORBA;
  32. import gnu.CORBA.Minor;
  33. import gnu.CORBA.OrbRestricted;
  34. import gnu.CORBA.TypeCodeHelper;
  35. import org.omg.CORBA.portable.InputStream;
  36. import org.omg.CORBA.portable.OutputStream;
  37. /**
  38. * A helper operations for the union member.
  39. *
  40. * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  41. */
  42. public abstract class UnionMemberHelper
  43. {
  44. /**
  45. * The cached typecode value (computed once).
  46. */
  47. private static TypeCode typeCode;
  48. /**
  49. * Used in creating recursive unions.
  50. */
  51. private static boolean active;
  52. /**
  53. * Inset the union member into the given Any.
  54. */
  55. public static void insert(Any a, UnionMember that)
  56. {
  57. OutputStream out = a.create_output_stream();
  58. a.type(type());
  59. write(out, that);
  60. a.read_value(out.create_input_stream(), type());
  61. }
  62. /**
  63. * Extract the union member from the given Any.
  64. */
  65. public static UnionMember extract(Any a)
  66. {
  67. return read(a.create_input_stream());
  68. }
  69. /**
  70. * Create and return the typecode for this union member.
  71. */
  72. public static synchronized TypeCode type()
  73. {
  74. if (typeCode == null)
  75. {
  76. synchronized (TypeCode.class)
  77. {
  78. if (typeCode == null)
  79. {
  80. if (active)
  81. {
  82. return OrbRestricted.Singleton.create_recursive_tc(id());
  83. }
  84. active = true;
  85. ORB orb = OrbRestricted.Singleton;
  86. StructMember[] members = new StructMember[ 4 ];
  87. TypeCode member;
  88. member = orb.create_string_tc(0);
  89. member =
  90. orb.create_alias_tc(IdentifierHelper.id(), "Identifier",
  91. member
  92. );
  93. members [ 0 ] = new StructMember("name", member, null);
  94. member = orb.get_primitive_tc(TCKind.tk_any);
  95. members [ 1 ] = new StructMember("label", member, null);
  96. member = orb.create_string_tc(0);
  97. member = orb.get_primitive_tc(TCKind.tk_TypeCode);
  98. members [ 2 ] = new StructMember("type", member, null);
  99. member = IDLTypeHelper.type();
  100. members [ 3 ] = new StructMember("type_def", member, null);
  101. typeCode =
  102. orb.create_struct_tc(UnionMemberHelper.id(), "UnionMember",
  103. members
  104. );
  105. active = false;
  106. }
  107. }
  108. }
  109. return typeCode;
  110. }
  111. /**
  112. * Return the UnionMember repository id.
  113. *
  114. * @return "IDL:omg.org/CORBA/UnionMember:1.0", always.
  115. */
  116. public static String id()
  117. {
  118. return "IDL:omg.org/CORBA/UnionMember:1.0";
  119. }
  120. /**
  121. * Read the union member from the given stream.
  122. */
  123. public static UnionMember read(InputStream istream)
  124. {
  125. try
  126. {
  127. UnionMember value = new UnionMember();
  128. value.name = istream.read_string();
  129. value.label = istream.read_any();
  130. value.type = TypeCodeHelper.read(istream);
  131. value.type_def = IDLTypeHelper.read(istream);
  132. return value;
  133. }
  134. catch (UserException ex)
  135. {
  136. MARSHAL m = new MARSHAL();
  137. m.minor = Minor.UserException;
  138. m.initCause(ex);
  139. throw m;
  140. }
  141. }
  142. /**
  143. * Write the union member to the given stream.
  144. */
  145. public static void write(OutputStream ostream, UnionMember value)
  146. {
  147. try
  148. {
  149. ostream.write_string(value.name);
  150. ostream.write_any(value.label);
  151. TypeCodeHelper.write(ostream, value.type);
  152. IDLTypeHelper.write(ostream, value.type_def);
  153. }
  154. catch (UserException ex)
  155. {
  156. MARSHAL m = new MARSHAL();
  157. m.minor = Minor.UserException;
  158. m.initCause(ex);
  159. throw m;
  160. }
  161. }
  162. }