StructMemberHelper.java 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /* StructMemberHelper.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. * Defines a helper operations for StructMember.
  39. *
  40. * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  41. */
  42. public abstract class StructMemberHelper
  43. {
  44. /**
  45. * The cached typecode value, computed once.
  46. */
  47. private static TypeCode typeCode;
  48. /**
  49. * This flag is used when creating typecodes for the recursive structures.
  50. */
  51. private static boolean active;
  52. /**
  53. * Insert the structure member into the given Any.
  54. */
  55. public static void insert(Any a, StructMember 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 structure member from the given Any.
  64. */
  65. public static StructMember extract(Any a)
  66. {
  67. return read(a.create_input_stream());
  68. }
  69. /**
  70. * Get a typecode for the StructMember.
  71. */
  72. public static synchronized TypeCode type()
  73. {
  74. if (typeCode == null)
  75. {
  76. ORB orb = OrbRestricted.Singleton;
  77. synchronized (TypeCode.class)
  78. {
  79. if (typeCode == null)
  80. {
  81. if (active)
  82. {
  83. return orb.create_recursive_tc(id());
  84. }
  85. active = true;
  86. StructMember[] members = new StructMember[ 3 ];
  87. TypeCode member = null;
  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_TypeCode);
  95. members [ 1 ] = new StructMember("type", member, null);
  96. members [ 2 ] =
  97. new StructMember("type_def", IDLTypeHelper.type(), null);
  98. typeCode =
  99. orb.create_struct_tc(StructMemberHelper.id(), "StructMember",
  100. members
  101. );
  102. active = false;
  103. }
  104. }
  105. }
  106. return typeCode;
  107. }
  108. /**
  109. * Return the StructMember repository id.
  110. *
  111. * @return "IDL:omg.org/CORBA/StructMember:1.0", always.
  112. */
  113. public static String id()
  114. {
  115. return "IDL:omg.org/CORBA/StructMember:1.0";
  116. }
  117. /**
  118. * Read the StructMember from the input stream.
  119. */
  120. public static StructMember read(InputStream istream)
  121. {
  122. try
  123. {
  124. StructMember value = new StructMember();
  125. value.name = istream.read_string();
  126. value.type = TypeCodeHelper.read(istream);
  127. value.type_def = IDLTypeHelper.read(istream);
  128. return value;
  129. }
  130. catch (UserException ex)
  131. {
  132. MARSHAL m = new MARSHAL();
  133. m.minor = Minor.UserException;
  134. m.initCause(ex);
  135. throw m;
  136. }
  137. }
  138. /**
  139. * Write the StructMember to the input stream.
  140. */
  141. public static void write(OutputStream ostream, StructMember value)
  142. {
  143. try
  144. {
  145. ostream.write_string(value.name);
  146. TypeCodeHelper.write(ostream, value.type);
  147. IDLTypeHelper.write(ostream, value.type_def);
  148. }
  149. catch (UserException ex)
  150. {
  151. MARSHAL m = new MARSHAL();
  152. m.minor = Minor.UserException;
  153. m.initCause(ex);
  154. throw m;
  155. }
  156. }
  157. }