src/share/classes/org/omg/CORBA/StringValueHelper.java

Wed, 27 Apr 2016 01:21:28 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:21:28 +0800
changeset 0
7ef37b2cdcad
child 748
6845b95cba6b
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/corba/
changeset: 765:f46df0af2ca8
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation. Oracle designates this
aoqi@0 8 * particular file as subject to the "Classpath" exception as provided
aoqi@0 9 * by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10 *
aoqi@0 11 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 * accompanied this code).
aoqi@0 16 *
aoqi@0 17 * You should have received a copy of the GNU General Public License version
aoqi@0 18 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20 *
aoqi@0 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 * or visit www.oracle.com if you need additional information or have any
aoqi@0 23 * questions.
aoqi@0 24 */
aoqi@0 25 /*
aoqi@0 26 * Licensed Materials - Property of IBM
aoqi@0 27 * RMI-IIOP v1.0
aoqi@0 28 * Copyright IBM Corp. 1998 1999 All Rights Reserved
aoqi@0 29 *
aoqi@0 30 */
aoqi@0 31
aoqi@0 32 package org.omg.CORBA;
aoqi@0 33
aoqi@0 34 /**
aoqi@0 35 * The Helper for <tt>StringValue</tt>. For more information on
aoqi@0 36 * Helper files, see <a href="doc-files/generatedfiles.html#helper">
aoqi@0 37 * "Generated Files: Helper Files"</a>.<P>
aoqi@0 38 * org/omg/CORBA/StringValueHelper.java
aoqi@0 39 * Generated by the IDL-to-Java compiler (portable), version "3.0"
aoqi@0 40 * from orb.idl
aoqi@0 41 * 31 May 1999 22:27:30 o'clock GMT+00:00
aoqi@0 42 *
aoqi@0 43 * The class definition has been modified to conform to the following
aoqi@0 44 * OMG specifications :
aoqi@0 45 * <ul>
aoqi@0 46 * <li> ORB core as defined by CORBA 2.3.1
aoqi@0 47 * (<a href="http://cgi.omg.org/cgi-bin/doc?formal/99-10-07">formal/99-10-07</a>)
aoqi@0 48 * </li>
aoqi@0 49 *
aoqi@0 50 * <li> IDL/Java Language Mapping as defined in
aoqi@0 51 * <a href="http://cgi.omg.org/cgi-bin/doc?ptc/00-01-08">ptc/00-01-08</a>
aoqi@0 52 * </li>
aoqi@0 53 * </ul>
aoqi@0 54 */
aoqi@0 55
aoqi@0 56 public class StringValueHelper implements org.omg.CORBA.portable.BoxedValueHelper
aoqi@0 57 {
aoqi@0 58 private static String _id = "IDL:omg.org/CORBA/StringValue:1.0";
aoqi@0 59
aoqi@0 60 private static StringValueHelper _instance = new StringValueHelper ();
aoqi@0 61
aoqi@0 62 public static void insert (org.omg.CORBA.Any a, String that)
aoqi@0 63 {
aoqi@0 64 org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
aoqi@0 65 a.type (type ());
aoqi@0 66 write (out, that);
aoqi@0 67 a.read_value (out.create_input_stream (), type ());
aoqi@0 68 }
aoqi@0 69
aoqi@0 70 public static String extract (org.omg.CORBA.Any a)
aoqi@0 71 {
aoqi@0 72 return read (a.create_input_stream ());
aoqi@0 73 }
aoqi@0 74
aoqi@0 75 private static org.omg.CORBA.TypeCode __typeCode = null;
aoqi@0 76 private static boolean __active = false;
aoqi@0 77 synchronized public static org.omg.CORBA.TypeCode type ()
aoqi@0 78 {
aoqi@0 79 if (__typeCode == null)
aoqi@0 80 {
aoqi@0 81 synchronized (org.omg.CORBA.TypeCode.class)
aoqi@0 82 {
aoqi@0 83 if (__typeCode == null)
aoqi@0 84 {
aoqi@0 85 if (__active)
aoqi@0 86 {
aoqi@0 87 return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
aoqi@0 88 }
aoqi@0 89 __active = true;
aoqi@0 90 __typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
aoqi@0 91 __typeCode = org.omg.CORBA.ORB.init ().create_value_box_tc (_id, "StringValue", __typeCode);
aoqi@0 92 __active = false;
aoqi@0 93 }
aoqi@0 94 }
aoqi@0 95 }
aoqi@0 96 return __typeCode;
aoqi@0 97 }
aoqi@0 98
aoqi@0 99 public static String id ()
aoqi@0 100 {
aoqi@0 101 return _id;
aoqi@0 102 }
aoqi@0 103
aoqi@0 104 public static String read (org.omg.CORBA.portable.InputStream istream)
aoqi@0 105 {
aoqi@0 106 if (!(istream instanceof org.omg.CORBA_2_3.portable.InputStream)) {
aoqi@0 107 throw new org.omg.CORBA.BAD_PARAM(); }
aoqi@0 108 return (String) ((org.omg.CORBA_2_3.portable.InputStream) istream).read_value (_instance);
aoqi@0 109 }
aoqi@0 110
aoqi@0 111 public java.io.Serializable read_value (org.omg.CORBA.portable.InputStream istream)
aoqi@0 112 {
aoqi@0 113 String tmp;
aoqi@0 114 tmp = istream.read_string ();
aoqi@0 115 return (java.io.Serializable) tmp;
aoqi@0 116 }
aoqi@0 117
aoqi@0 118 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
aoqi@0 119 {
aoqi@0 120 if (!(ostream instanceof org.omg.CORBA_2_3.portable.OutputStream)) {
aoqi@0 121 throw new org.omg.CORBA.BAD_PARAM(); }
aoqi@0 122 ((org.omg.CORBA_2_3.portable.OutputStream) ostream).write_value (value, _instance);
aoqi@0 123 }
aoqi@0 124
aoqi@0 125 public void write_value (org.omg.CORBA.portable.OutputStream ostream, java.io.Serializable value)
aoqi@0 126 {
aoqi@0 127 if (!(value instanceof String)) {
aoqi@0 128 throw new org.omg.CORBA.MARSHAL(); }
aoqi@0 129 String valueType = (String) value;
aoqi@0 130 ostream.write_string (valueType);
aoqi@0 131 }
aoqi@0 132
aoqi@0 133 public String get_id ()
aoqi@0 134 {
aoqi@0 135 return _id;
aoqi@0 136 }
aoqi@0 137
aoqi@0 138 }

mercurial