1 package org.omg.IOP; 2 3 4 10 11 abstract public class IORHelper 12 { 13 private static String _id = "IDL:omg.org/IOP/IOR:1.0"; 14 15 public static void insert (org.omg.CORBA.Any a, org.omg.IOP.IOR that) 16 { 17 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 18 a.type (type ()); 19 write (out, that); 20 a.read_value (out.create_input_stream (), type ()); 21 } 22 23 public static org.omg.IOP.IOR extract (org.omg.CORBA.Any a) 24 { 25 return read (a.create_input_stream ()); 26 } 27 28 private static org.omg.CORBA.TypeCode __typeCode = null; 29 private static boolean __active = false; 30 synchronized public static org.omg.CORBA.TypeCode type () 31 { 32 if (__typeCode == null) 33 { 34 synchronized (org.omg.CORBA.TypeCode .class) 35 { 36 if (__typeCode == null) 37 { 38 if (__active) 39 { 40 return org.omg.CORBA.ORB.init().create_recursive_tc ( _id ); 41 } 42 __active = true; 43 org.omg.CORBA.StructMember [] _members0 = new org.omg.CORBA.StructMember [2]; 44 org.omg.CORBA.TypeCode _tcOf_members0 = null; 45 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0); 46 _members0[0] = new org.omg.CORBA.StructMember ( 47 "type_id", 48 _tcOf_members0, 49 null); 50 _tcOf_members0 = org.omg.IOP.TaggedProfileHelper.type (); 51 _tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0); 52 _members0[1] = new org.omg.CORBA.StructMember ( 53 "profiles", 54 _tcOf_members0, 55 null); 56 __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (org.omg.IOP.IORHelper.id (), "IOR", _members0); 57 __active = false; 58 } 59 } 60 } 61 return __typeCode; 62 } 63 64 public static String id () 65 { 66 return _id; 67 } 68 69 public static org.omg.IOP.IOR read (org.omg.CORBA.portable.InputStream istream) 70 { 71 org.omg.IOP.IOR value = new org.omg.IOP.IOR (); 72 value.type_id = istream.read_string (); 73 int _len0 = istream.read_long (); 74 value.profiles = new org.omg.IOP.TaggedProfile [_len0]; 75 for (int _o1 = 0;_o1 < value.profiles.length; ++_o1) 76 value.profiles[_o1] = org.omg.IOP.TaggedProfileHelper.read (istream); 77 return value; 78 } 79 80 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.IOP.IOR value) 81 { 82 ostream.write_string (value.type_id); 83 ostream.write_long (value.profiles.length); 84 for (int _i0 = 0;_i0 < value.profiles.length; ++_i0) 85 org.omg.IOP.TaggedProfileHelper.write (ostream, value.profiles[_i0]); 86 } 87 88 } 89 | Popular Tags |