Imported GNU Classpath 0.90
[official-gcc.git] / libjava / classpath / java / rmi / activation / ActivationGroup.java
blob5e7bbd209984f92ff8a898bbf61a319feb25efb1
1 /* ActivationGroup.java -- the RMI activation group.
2 Copyright (c) 1996, 1997, 1998, 1999, 2006 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 java.rmi.activation;
41 import gnu.java.rmi.activation.DefaultActivationGroup;
42 import gnu.java.rmi.activation.DefaultActivationSystem;
44 import java.lang.reflect.Constructor;
45 import java.rmi.MarshalledObject;
46 import java.rmi.Remote;
47 import java.rmi.RemoteException;
48 import java.rmi.server.UnicastRemoteObject;
50 /**
51 * The entity that receives the request to activate object and activates it.
52 * Frequently there is one activation group per virtual machine.
54 * @author Audrius Meskauskas (audriusa@Bioinformatics.org) (from stub)
56 public abstract class ActivationGroup
57 extends UnicastRemoteObject
58 implements ActivationInstantiator
61 /**
62 * Use the SVUID for interoperability.
64 static final long serialVersionUID = - 7696947875314805420L;
66 /**
67 * The Id of the current group on this VM (null if none).
69 static ActivationGroupID currentGroupId = null;
71 /**
72 * The groups identifier.
74 final ActivationGroupID groupId;
76 /**
77 * The groups activation monitor.
79 ActivationMonitor monitor;
81 /**
82 * The groups incarnation number.
84 long incarnation;
86 /**
87 * The groups activation system.
89 static ActivationSystem system;
91 /**
92 * Used during the group creation (required constructor).
94 static final Class[] cConstructorTypes = new Class[]
96 ActivationGroupID.class,
97 MarshalledObject.class
101 * Create the new activation group with the given group id.
103 * @param aGroupId the group Id.
105 * @throws RemoteException if the group export fails.
107 protected ActivationGroup(ActivationGroupID aGroupId) throws RemoteException
109 groupId = aGroupId;
113 * The method is called when the object is exported. The group must notify
114 * the activation monitor, if this was not already done before.
116 * @param id the object activation id
117 * @param obj the remote object implementation
119 * @throws ActivationException if the group is inactive
120 * @throws UnknownObjectException if such object is not known
121 * @throws RemoteException if the call to monitor fails
123 public abstract void activeObject(ActivationID id, Remote obj)
124 throws ActivationException, UnknownObjectException, RemoteException;
127 * Notifies the monitor about the object being inactivated.
129 * @param id the object being inactivated.
130 * @return true always (must be overridden to return other values).
131 * @throws ActivationException never
132 * @throws UnknownObjectException if the object is not known
133 * @throws RemoteException if the remote call to monitor fails
135 public boolean inactiveObject(ActivationID id) throws ActivationException,
136 UnknownObjectException, RemoteException
138 if (monitor != null)
139 monitor.inactiveObject(id);
140 return true;
144 * Create the new instance of the activation group, using the class name and
145 * location information, stored in the passed descriptor. The method expects
146 * the group class to have the two parameter constructor, the first parameter
147 * being the {@link ActivationGroupID} and the second the
148 * {@link MarshalledObject}. The group must be first be registered with the
149 * ActivationSystem. Once a group is created, the currentGroupID method
150 * returns the identifier for this group until the group becomes inactive.
152 * @param id the activation group id
153 * @param desc the group descriptor, providing the information, necessary to
154 * create the group
155 * @param incarnation the incarnation number
156 * @return the created group instance
157 * @throws ActivationException if the activation fails due any reason
159 public static ActivationGroup createGroup(ActivationGroupID id,
160 ActivationGroupDesc desc,
161 long incarnation)
162 throws ActivationException
164 // If the activation system is not yet set, set it to the system.
165 // passed in the group id.
166 if (system == null)
167 system = id.system;
169 ActivationGroup group = null;
171 // TODO at the moment all groups are created on the current jre and the
172 // group class must be reachable via thread context class loader.
173 Class groupClass;
175 if (desc.className != null)
179 ClassLoader loader = Thread.currentThread().getContextClassLoader();
180 groupClass = loader.loadClass(desc.className);
182 catch (ClassNotFoundException e)
184 ActivationException acex = new ActivationException(
185 "Cannot load " + desc.className);
186 acex.detail = e;
187 throw acex;
190 else
191 groupClass = DefaultActivationGroup.class;
195 Constructor constructor = groupClass.getConstructor(cConstructorTypes);
196 group = (ActivationGroup) constructor.newInstance(
197 new Object[] { id, desc.data });
199 catch (Exception e)
201 ActivationException acex = new ActivationException(
202 "Cannot instantiate " + desc.className);
203 acex.detail = e;
204 throw acex;
207 currentGroupId = id;
210 group.monitor = getSystem().activeGroup(id, group, incarnation);
211 return group;
213 catch (RemoteException e)
215 ActivationException acex = new ActivationException("createGroup");
216 acex.detail = e;
217 throw acex;
222 * Get the id of current activation group.
224 * @return the id of the current activation group or null if none exists.
226 public static ActivationGroupID currentGroupID()
230 if (currentGroupId==null)
232 // This will also assing the currentGroupId to the current
233 // (default) group of the default system.
234 setSystem(DefaultActivationSystem.get());
237 catch (ActivationException e)
239 InternalError ierr = new InternalError("Unable to activate AS");
240 ierr.initCause(e);
241 throw ierr;
244 return currentGroupId;
248 * Set the activation system for this virtual machine. The system can only
249 * be set if no group is active.
251 * @param aSystem the system to set
253 * @throws ActivationException if some group is active now.
255 public static void setSystem(ActivationSystem aSystem)
256 throws ActivationException
258 if (currentGroupId!=null)
259 throw new ActivationException("Group active");
260 else
262 try
264 // Register the default transient activation system and group.
265 system = aSystem;
266 ActivationGroupDesc def = new ActivationGroupDesc(
267 DefaultActivationGroup.class.getName(),
269 null,
270 null,
271 null);
272 currentGroupId = system.registerGroup(def);
274 catch (Exception ex)
276 InternalError ierr = new InternalError("Unable to start default AG");
277 ierr.initCause(ex);
278 throw ierr;
284 * Get the current activation system. If the system is not set via
285 * {@link #setSystem} method, the default system for this virtual machine is
286 * returned. The default system is first searched by name
287 * "java.rmi.activation.ActivationSystem" on the activation registry port. The
288 * default value of the activation registry port is
289 * {@link ActivationSystem#SYSTEM_PORT}, but it can be changed by putting the
290 * system property java.rmi.activation.port. Both activation system and
291 * activation registry are provided by the RMI daemon tool, RMID, if it is
292 * running on the local host. If the RMID is not running, the internal
293 * transient activation system will be created and returned. This internal
294 * system is highly limited in in capabilities and is not intended to be used
295 * anywhere apart automated testing.
297 * @return the activation system for this virtual machine
298 * @throws ActivationException
300 public static ActivationSystem getSystem() throws ActivationException
302 if (system == null)
303 system = DefaultActivationSystem.get();
304 return system;
308 * Makes the call back to the groups {@link ActivationMonitor}.
310 * @param id the id obj the object being activated
311 * @param mObject the marshalled object, contains the activated remote object
312 * stub.
313 * @throws ActivationException on activation error
314 * @throws UnknownObjectException if such object is not registered
315 * @throws RemoteException on remote call (to monitor) error
317 protected void activeObject(ActivationID id, MarshalledObject mObject)
318 throws ActivationException, UnknownObjectException, RemoteException
320 if (monitor!=null)
321 monitor.activeObject(id, mObject);
323 id.group = this;
327 * Makes the call back to the groups {@link ActivationMonitor} and sets
328 * the current group to null.
330 protected void inactiveGroup() throws UnknownGroupException, RemoteException
332 if (monitor!=null)
333 monitor.inactiveGroup(groupId, incarnation);
335 if (currentGroupId!=null && currentGroupId.equals(groupId))
336 currentGroupId = null;