Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / classpath / gnu / javax / rmi / CORBA / CorbaOutput.java
blob1c723407980977a28ba6c9e21b4c03e94cc4e2f9
1 /* CorbaOutput.java --
2 Copyright (C) 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package gnu.javax.rmi.CORBA;
41 import org.omg.CORBA_2_3.portable.OutputStream;
43 import java.io.IOException;
44 import java.io.ObjectOutput;
45 import java.io.ObjectOutputStream;
46 import java.io.Serializable;
48 /**
49 * A class to substitute as an ObjectOutputStream for objects using writeObject
50 * method.
52 * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
54 public class CorbaOutput
55 extends ObjectOutputStream
56 implements ObjectOutput
58 /**
59 * A CORBA stream where the output is forwarded.
61 final OutputStream stream;
63 /**
64 * The utility class to write the object fields in default way.
66 final RmiUtilities util;
68 /**
69 * The object currently being written.
71 Object current;
73 /**
74 * Create an instance, delegating calls to the given CORBA stream.
76 public CorbaOutput(OutputStream an_output, Object firstObject,
77 RmiUtilities an_util)
78 throws Exception
80 stream = an_output;
81 current = firstObject;
82 util = an_util;
85 /**
86 * No action.
88 public void close()
89 throws IOException
93 /** @inheritDoc */
94 public void flush()
95 throws IOException
97 stream.flush();
100 /** @inheritDoc */
101 public void write(byte[] buf, int off, int len)
102 throws IOException
104 stream.write(buf, off, len);
107 /** @inheritDoc */
108 public void write(byte[] buf)
109 throws IOException
111 stream.write(buf);
114 /** @inheritDoc */
115 public void write(int val)
116 throws IOException
118 stream.write(val);
121 /** @inheritDoc */
122 public void writeBoolean(boolean val)
123 throws IOException
125 stream.write_boolean(val);
128 /** @inheritDoc */
129 public void writeByte(int val)
130 throws IOException
132 stream.write(val);
135 /** @inheritDoc */
136 public void writeBytes(String str)
137 throws IOException
139 stream.write_string(str);
142 /** @inheritDoc */
143 public void writeChar(int val)
144 throws IOException
146 stream.write_wchar((char) val);
149 /** @inheritDoc */
150 public void writeChars(String str)
151 throws IOException
153 stream.write_char_array(str.toCharArray(), 0, str.length());
156 /** @inheritDoc */
157 public void writeDouble(double val)
158 throws IOException
160 stream.write_double(val);
163 /** @inheritDoc */
164 public void writeFloat(float val)
165 throws IOException
167 stream.write_float(val);
170 /** @inheritDoc */
171 public void writeInt(int val)
172 throws IOException
174 stream.write_long(val);
177 /** @inheritDoc */
178 public void writeLong(long val)
179 throws IOException
181 stream.write_longlong(val);
185 * Objects are written as abstract interfaces.
187 protected void writeObjectOverride(Object obj)
188 throws IOException
190 current = obj;
191 stream.write_abstract_interface(obj);
194 /** @inheritDoc */
195 public void writeShort(int val)
196 throws IOException
198 stream.write_short((short) val);
202 * Such strings are written as wide strings, not as UTF.
204 public void writeUTF(String str)
205 throws IOException
207 stream.write_wstring(str);
211 * @inheritDoc
213 public void defaultWriteObject()
214 throws IOException
216 util.writeFields(stream, (Serializable) current);