2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / java / rmi / server / RemoteObject.java
bloba1febf2dd62708871be3ed14b0d2d545d8325f59
1 /*
2 Copyright (c) 1996, 1997, 1998, 1999 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., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 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. */
38 package java.rmi.server;
40 import java.io.Serializable;
41 import java.rmi.Remote;
42 import java.rmi.NoSuchObjectException;
43 import java.rmi.UnmarshalException;
44 import java.rmi.server.RemoteRef;
45 import java.io.ObjectInputStream;
46 import java.io.ObjectOutputStream;
47 import java.io.IOException;
48 import java.lang.ClassNotFoundException;
49 import java.lang.InstantiationException;
50 import java.lang.IllegalAccessException;
51 import java.lang.reflect.Constructor;
53 public abstract class RemoteObject
54 implements Remote, Serializable {
56 public static final long serialVersionUID = -3215090123894869218l;
58 protected transient RemoteRef ref;
60 protected RemoteObject() {
61 this(null);
64 protected RemoteObject(RemoteRef newref) {
65 ref = newref;
68 public RemoteRef getRef() {
69 return (ref);
72 public static Remote toStub(Remote obj) throws NoSuchObjectException
74 Class cls = obj.getClass();
75 String classname = cls.getName();
76 ClassLoader cl = cls.getClassLoader();
77 try
79 Class scls = cl.loadClass(classname + "_Stub");
80 // JDK 1.2 stubs
81 Class[] stubprototype = new Class[] { RemoteRef.class };
82 Constructor con = scls.getConstructor(stubprototype);
83 return (Remote)(con.newInstance(new Object[]{obj}));
85 catch (Exception e) {}
86 throw new NoSuchObjectException(obj.getClass().getName());
89 public int hashCode() {
90 if (ref == null) {
91 return (0);
93 else {
94 return (ref.hashCode());
98 public boolean equals(Object obj) {
99 // We only compare references.
100 return (this == obj);
103 public String toString()
105 if (ref == null)
106 return getClass ().toString ();
107 return (ref.toString ());
110 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
112 String cname = in.readUTF();
113 if (!cname.equals(""))
115 if (cname.equals ("UnicastRef2"))
117 // hack for interoperating with JDK
118 cname = "UnicastRef";
119 in.read (); //some unknown UnicastRef2 field
122 cname = RemoteRef.packagePrefix + '.' + cname;
123 try
125 Class cls = Class.forName(cname);
126 ref = (RemoteRef)cls.newInstance();
128 catch (InstantiationException e1)
130 throw new UnmarshalException("failed to create ref", e1);
132 catch (IllegalAccessException e2)
134 throw new UnmarshalException("failed to create ref", e2);
136 ref.readExternal(in);
138 else
140 ref = (RemoteRef)in.readObject();
144 private void writeObject(ObjectOutputStream out) throws IOException, ClassNotFoundException {
145 if (ref == null) {
146 throw new UnmarshalException("no ref to serialize");
148 String cname = ref.getRefClass(out);
149 if (cname != null && cname.length() > 0) {
150 out.writeUTF(cname);
151 ref.writeExternal(out);
153 else {
154 out.writeUTF("");
155 out.writeObject(ref);