Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/AddRegistrationRequest.java82
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java1003
2 files changed, 678 insertions, 407 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/AddRegistrationRequest.java b/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/AddRegistrationRequest.java
new file mode 100644
index 000000000..2239723b2
--- /dev/null
+++ b/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/AddRegistrationRequest.java
@@ -0,0 +1,82 @@
+/****************************************************************************
+ * Copyright (c) 2008 Composent, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Composent, Inc. - initial API and implementation
+ *****************************************************************************/
+
+package org.eclipse.ecf.provider.remoteservice.generic;
+
+import java.io.Serializable;
+import java.security.AccessControlException;
+import org.eclipse.core.runtime.Assert;
+
+public class AddRegistrationRequest implements Serializable {
+ private static final long serialVersionUID = -2671778516104780091L;
+ String service;
+ String filter;
+ AccessControlException acc;
+ AddRegistrationRequest parent;
+
+ private boolean done = false;
+
+ public AddRegistrationRequest(String service, String filter, AddRegistrationRequest parent) {
+ Assert.isNotNull(service);
+ this.service = service;
+ this.filter = filter;
+ this.parent = parent;
+ }
+
+ public String getService() {
+ return service;
+ }
+
+ public String getFilter() {
+ return filter;
+ }
+
+ public Integer getId() {
+ return new Integer(System.identityHashCode(this));
+ }
+
+ public void waitForResponse(long timeout) {
+ long startTime = System.currentTimeMillis();
+ long endTime = startTime + timeout;
+ synchronized (this) {
+ while (!done && (endTime >= System.currentTimeMillis())) {
+ try {
+ wait(timeout / 10);
+ } catch (InterruptedException e) {
+ // just return;
+ return;
+ }
+ }
+ }
+ }
+
+ public boolean isDone() {
+ return done;
+ }
+
+ public AccessControlException getException() {
+ return acc;
+ }
+
+ public void notifyResponse(AccessControlException exception) {
+ this.acc = exception;
+ synchronized (this) {
+ done = true;
+ if (parent != null) {
+ parent.notifyResponse(exception);
+ } else {
+ synchronized (this) {
+ this.notify();
+ }
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java b/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java
index 1ee082da4..57ac53be7 100644
--- a/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java
+++ b/providers/bundles/org.eclipse.ecf.provider.remoteservice/src/org/eclipse/ecf/provider/remoteservice/generic/RegistrySharedObject.java
@@ -9,316 +9,371 @@
package org.eclipse.ecf.provider.remoteservice.generic;
import java.io.IOException;
-import java.security.AccessController;
-import java.security.PrivilegedAction;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Dictionary;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
+import java.io.Serializable;
+import java.security.*;
+import java.util.*;
+import org.eclipse.core.runtime.Assert;
import org.eclipse.ecf.core.events.IContainerConnectedEvent;
import org.eclipse.ecf.core.events.IContainerDisconnectedEvent;
import org.eclipse.ecf.core.identity.ID;
-import org.eclipse.ecf.core.sharedobject.BaseSharedObject;
-import org.eclipse.ecf.core.sharedobject.SharedObjectInitException;
-import org.eclipse.ecf.core.sharedobject.SharedObjectMsg;
-import org.eclipse.ecf.core.util.ECFException;
-import org.eclipse.ecf.core.util.Event;
-import org.eclipse.ecf.core.util.IEventProcessor;
-import org.eclipse.ecf.core.util.Trace;
-import org.eclipse.ecf.internal.provider.remoteservice.Activator;
-import org.eclipse.ecf.internal.provider.remoteservice.IRemoteServiceProviderDebugOptions;
-import org.eclipse.ecf.remoteservice.IRemoteCall;
-import org.eclipse.ecf.remoteservice.IRemoteCallListener;
-import org.eclipse.ecf.remoteservice.IRemoteFilter;
-import org.eclipse.ecf.remoteservice.IRemoteService;
-import org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter;
-import org.eclipse.ecf.remoteservice.IRemoteServiceListener;
-import org.eclipse.ecf.remoteservice.IRemoteServiceReference;
-import org.eclipse.ecf.remoteservice.IRemoteServiceRegistration;
-import org.eclipse.ecf.remoteservice.events.IRemoteCallCompleteEvent;
-import org.eclipse.ecf.remoteservice.events.IRemoteCallStartEvent;
-import org.eclipse.ecf.remoteservice.events.IRemoteServiceEvent;
-import org.eclipse.ecf.remoteservice.events.IRemoteServiceRegisteredEvent;
-import org.eclipse.ecf.remoteservice.events.IRemoteServiceUnregisteredEvent;
-
-public class RegistrySharedObject extends BaseSharedObject implements
- IRemoteServiceContainerAdapter {
+import org.eclipse.ecf.core.sharedobject.*;
+import org.eclipse.ecf.core.sharedobject.events.ISharedObjectActivatedEvent;
+import org.eclipse.ecf.core.util.*;
+import org.eclipse.ecf.internal.provider.remoteservice.*;
+import org.eclipse.ecf.remoteservice.*;
+import org.eclipse.ecf.remoteservice.events.*;
+import org.osgi.framework.*;
+
+public class RegistrySharedObject extends BaseSharedObject implements IRemoteServiceContainerAdapter {
protected RemoteServiceRegistryImpl localRegistry;
- protected Map remoteRegistrys = Collections.synchronizedMap(new HashMap());
+ protected final Map remoteRegistrys = Collections.synchronizedMap(new HashMap());
+
+ protected final List serviceListeners = new ArrayList();
- protected List serviceListeners = new ArrayList();
+ protected final Map localServiceRegistrations = new HashMap();
+
+ protected Map addRegistrationRequests = new Hashtable();
+
+ protected List requests = Collections.synchronizedList(new ArrayList());
public RegistrySharedObject() {
+ //
+ }
+
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.core.sharedobject.BaseSharedObject#dispose(org.eclipse.ecf.core.identity.ID)
+ */
+ public void dispose(ID containerID) {
+ super.dispose(containerID);
+ unregisterAllServiceRegistrations();
+ remoteRegistrys.clear();
+ serviceListeners.clear();
+ localServiceRegistrations.clear();
+ addRegistrationRequests.clear();
+ requests.clear();
}
/* Begin implementation of IRemoteServiceContainerAdapter public interface */
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter#addRemoteServiceListener(org.eclipse.ecf.remoteservice.IRemoteServiceListener)
+ */
public void addRemoteServiceListener(IRemoteServiceListener listener) {
- trace("addRemoteServiceListener(" + listener + ")");
synchronized (serviceListeners) {
serviceListeners.add(listener);
}
}
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter#removeRemoteServiceListener(org.eclipse.ecf.remoteservice.IRemoteServiceListener)
+ */
public void removeRemoteServiceListener(IRemoteServiceListener listener) {
- trace("removeRemoteServiceListener(" + listener + ")");
synchronized (serviceListeners) {
serviceListeners.remove(listener);
}
}
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter#getRemoteService(org.eclipse.ecf.remoteservice.IRemoteServiceReference)
+ */
public IRemoteService getRemoteService(IRemoteServiceReference reference) {
- trace("getRemoteService(" + reference + ")");
- RemoteServiceRegistrationImpl registration = getRemoteServiceRegistrationImpl(reference);
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "getRemoteService", reference); //$NON-NLS-1$
+ final RemoteServiceRegistrationImpl registration = getRemoteServiceRegistrationImpl(reference);
if (registration == null)
return null;
- trace("getRemoteService.registration found=" + registration);
- return new RemoteServiceImpl(this, registration);
+ final RemoteServiceImpl remoteService = new RemoteServiceImpl(this, registration);
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "getRemoteService", remoteService); //$NON-NLS-1$
+ return remoteService;
}
- public IRemoteServiceReference[] getRemoteServiceReferences(ID[] idFilter,
- String clazz, String filter) {
- IRemoteFilter remoteFilter = createRemoteFilterFromString(filter);
- List references = new ArrayList();
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter#getRemoteServiceReferences(org.eclipse.ecf.core.identity.ID[], java.lang.String, java.lang.String)
+ */
+ public IRemoteServiceReference[] getRemoteServiceReferences(ID[] idFilter, String clazz, String filter) throws InvalidSyntaxException {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "getRemoteServiceReferences", new Object[] {idFilter, clazz, filter}); //$NON-NLS-1$
+ if (clazz == null)
+ return null;
+ final IRemoteFilter remoteFilter = (filter == null) ? null : new RemoteFilterImpl(filter);
+ final List references = new ArrayList();
synchronized (remoteRegistrys) {
if (idFilter == null) {
- ArrayList registrys = new ArrayList(remoteRegistrys.values());
- for (Iterator i = registrys.iterator(); i.hasNext();) {
- RemoteServiceRegistryImpl registry = (RemoteServiceRegistryImpl) i
- .next();
+ final ArrayList registrys = new ArrayList(remoteRegistrys.values());
+ for (final Iterator i = registrys.iterator(); i.hasNext();) {
+ final RemoteServiceRegistryImpl registry = (RemoteServiceRegistryImpl) i.next();
// Add IRemoteServiceReferences from each remote registry
- addReferencesFromRegistry(clazz, remoteFilter, registry,
- references);
+ addReferencesFromRegistry(clazz, remoteFilter, registry, references);
}
} else {
for (int i = 0; i < idFilter.length; i++) {
- RemoteServiceRegistryImpl registry = (RemoteServiceRegistryImpl) remoteRegistrys
- .get(idFilter[i]);
- if (registry != null)
- addReferencesFromRegistry(clazz, remoteFilter,
- registry, references);
+ final RemoteServiceRegistryImpl registry = (RemoteServiceRegistryImpl) remoteRegistrys.get(idFilter[i]);
+ if (registry != null) {
+ addReferencesFromRegistry(clazz, remoteFilter, registry, references);
+ }
}
}
}
- return (IRemoteServiceReference[]) references
- .toArray(new IRemoteServiceReference[references.size()]);
+ synchronized (localRegistry) {
+ addReferencesFromRegistry(clazz, remoteFilter, localRegistry, references);
+ }
+ if (references.size() == 0) {
+ // It's not already here...so send out AddRegistrationRequests
+ if (idFilter == null)
+ return null;
+ AddRegistrationRequest first = null;
+ List ourAddRegistrationRequests = new ArrayList();
+ for (int i = 0; i < idFilter.length; i++) {
+ ID target = idFilter[i];
+ if (target != null) {
+ AddRegistrationRequest request = new AddRegistrationRequest(clazz, filter, first);
+ if (i == 0)
+ first = request;
+ // Add to list of all know
+ ourAddRegistrationRequests.add(request);
+ addRegistrationRequests.put(request.getId(), request);
+ sendAddRegistrationRequest(target, request, getAddRegistrationRequestCredentials(request));
+ }
+ }
+ if (first != null) {
+ // Wait here for timeout or response
+ first.waitForResponse(ADD_REGISTRATION_REQUEST_TIMEOUT);
+ // Now...if we got a response, and there was no exception then we look again
+ if (first.isDone()) {
+ for (int i = 0; i < idFilter.length; i++) {
+ final RemoteServiceRegistryImpl registry = (RemoteServiceRegistryImpl) remoteRegistrys.get(idFilter[i]);
+ if (registry != null) {
+ addReferencesFromRegistry(clazz, remoteFilter, registry, references);
+ }
+ }
+ }
+ // In either case, remove all the addRegistrationRequests
+ for (Iterator i = ourAddRegistrationRequests.iterator(); i.hasNext();) {
+ AddRegistrationRequest request = (AddRegistrationRequest) i.next();
+ addRegistrationRequests.remove(request.getId());
+ }
+ }
+
+ }
+ final IRemoteServiceReference[] result = (IRemoteServiceReference[]) references.toArray(new IRemoteServiceReference[references.size()]);
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "getRemoteServiceReferences", result); //$NON-NLS-1$
+ return (result.length == 0) ? null : result;
}
- public IRemoteServiceRegistration registerRemoteService(String[] clazzes,
- Object service, Dictionary properties) {
- if (service == null)
- throw new NullPointerException("service cannot be null");
- int size = clazzes.length;
+ protected Serializable getAddRegistrationRequestCredentials(AddRegistrationRequest request) {
+ return null;
+ }
- if (size == 0)
- throw new IllegalArgumentException("service classes list is empty");
+ protected ID[] getTargetsFromProperties(Dictionary properties) {
+ return null;
+ }
- String[] copy = new String[clazzes.length];
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter#registerRemoteService(java.lang.String[], java.lang.Object, java.util.Dictionary)
+ */
+ public IRemoteServiceRegistration registerRemoteService(String[] clazzes, Object service, Dictionary properties) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "registerRemoteService", new Object[] {clazzes, service, properties}); //$NON-NLS-1$
+ if (service == null) {
+ throw new NullPointerException(Messages.RegistrySharedObject_EXCEPTION_SERVICE_CANNOT_BE_NULL);
+ }
+ final int size = clazzes.length;
+
+ if (size == 0) {
+ throw new IllegalArgumentException(Messages.RegistrySharedObject_EXCEPTION_SERVICE_CLASSES_LIST_EMPTY);
+ }
+
+ final String[] copy = new String[clazzes.length];
for (int i = 0; i < clazzes.length; i++) {
copy[i] = new String(clazzes[i].getBytes());
}
clazzes = copy;
- String invalidService = checkServiceClass(clazzes, service);
- if (invalidService != null)
- throw new IllegalArgumentException("Service is not valid: "
- + invalidService);
+ final String invalidService = checkServiceClass(clazzes, service);
+ if (invalidService != null) {
+ throw new IllegalArgumentException(Messages.RegistrySharedObject_7 + invalidService);
+ }
- RemoteServiceRegistrationImpl reg = new RemoteServiceRegistrationImpl();
+ final RemoteServiceRegistrationImpl reg = new RemoteServiceRegistrationImpl();
reg.publish(this, localRegistry, service, clazzes, properties);
- sendAddRegistration(reg);
+ final ID[] targets = getTargetsFromProperties(properties);
+ if (targets == null)
+ sendAddRegistration(null, reg);
+ else
+ for (int i = 0; i < targets.length; i++)
+ sendAddRegistration(targets[i], reg);
+
+ fireRemoteServiceListeners(createRegisteredEvent(reg));
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "registerRemoteService", reg); //$NON-NLS-1$
+
return reg;
}
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter#ungetRemoteService(org.eclipse.ecf.remoteservice.IRemoteServiceReference)
+ */
public boolean ungetRemoteService(IRemoteServiceReference ref) {
return true;
}
+ protected ISharedObjectContext getSOContext() {
+ return super.getContext();
+ }
+
/* End implementation of IRemoteServiceContainerAdapter public interface */
+ /* (non-Javadoc)
+ * @see org.eclipse.ecf.core.sharedobject.BaseSharedObject#initialize()
+ */
public void initialize() throws SharedObjectInitException {
super.initialize();
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "initialize"); //$NON-NLS-1$
super.addEventProcessor(new IEventProcessor() {
public boolean processEvent(Event arg0) {
- if (arg0 instanceof IContainerConnectedEvent)
+ if (arg0 instanceof IContainerConnectedEvent) {
handleContainerConnectedEvent((IContainerConnectedEvent) arg0);
- else if (arg0 instanceof IContainerDisconnectedEvent)
+ } else if (arg0 instanceof IContainerDisconnectedEvent) {
handleContainerDisconnectedEvent((IContainerDisconnectedEvent) arg0);
+ } else if (arg0 instanceof ISharedObjectActivatedEvent) {
+ if (getSOContext().getConnectedID() != null) {
+ // We're already connected, so send request for update
+ sendRegistryUpdateRequest();
+ }
+ }
return false;
}
});
localRegistry = new RemoteServiceRegistryImpl(getLocalContainerID());
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "initialize"); //$NON-NLS-1$
}
- protected void handleContainerDisconnectedEvent(
- IContainerDisconnectedEvent event) {
- trace("handleContainerDisconnectedEvent(" + event + ")");
- ID targetID = event.getTargetID();
+ protected void handleContainerDisconnectedEvent(IContainerDisconnectedEvent event) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "handleContainerDisconnectedEvent", event); //$NON-NLS-1$
+ final ID targetID = event.getTargetID();
synchronized (remoteRegistrys) {
- RemoteServiceRegistryImpl registry = getRemoteRegistry(targetID);
+ final RemoteServiceRegistryImpl registry = getRemoteRegistry(targetID);
if (registry != null) {
removeRemoteRegistry(targetID);
- RemoteServiceRegistrationImpl registrations[] = registry
- .getRegistrations();
+ final RemoteServiceRegistrationImpl registrations[] = registry.getRegistrations();
if (registrations != null) {
for (int i = 0; i < registrations.length; i++) {
- trace("handleContainerDisconnectedEvent.unregistering serviceid="
- + registrations[i].getServiceId());
registry.unpublishService(registrations[i]);
+ unregisterServiceRegistrationsForContainer(registrations[i].getContainerID());
fireRemoteServiceListeners(createUnregisteredEvent(registrations[i]));
}
}
}
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "handleContainerDisconnectedEvent"); //$NON-NLS-1$
+ }
+
+ protected void sendRegistryUpdate(ID targetContainerID) {
+ synchronized (localRegistry) {
+ final RemoteServiceRegistrationImpl registrations[] = localRegistry.getRegistrations();
+ if (registrations != null) {
+ for (int i = 0; i < registrations.length; i++) {
+ final RemoteServiceRegistrationImpl registration = registrations[i];
+ sendAddRegistration(targetContainerID, registration);
+ }
+ }
+ }
}
protected void handleContainerConnectedEvent(IContainerConnectedEvent event) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "handleContainerConnectedEvent", event); //$NON-NLS-1$
// If we're a group manager or the newly connected container is the
// group manager
- if (getContext().isGroupManager()
- || event.getTargetID().equals(getGroupID())) {
- trace("local containerID=" + getLocalContainerID()
- + " connected to groupID=" + getGroupID());
- // No local registry changes while this is going on
- synchronized (localRegistry) {
- RemoteServiceRegistrationImpl registrations[] = localRegistry
- .getRegistrations();
- if (registrations != null)
- for (int i = 0; i < registrations.length; i++) {
- RemoteServiceRegistrationImpl registration = registrations[i];
- sendAddRegistration(registration);
- }
- }
+ ID targetID = event.getTargetID();
+ // If we're the group manager, or we've just joined the group,
+ // then we sendAddRegistration to all
+ if (getContext().isGroupManager() || event.getTargetID().equals(getConnectedID())) {
+ targetID = null;
}
+ sendRegistryUpdate(targetID);
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "handleContainerDisconnectedEvent"); //$NON-NLS-1$
}
- private Request createRequest(
- RemoteServiceRegistrationImpl remoteRegistration, IRemoteCall call,
- IRemoteCallListener listener) {
- RemoteServiceReferenceImpl refImpl = (RemoteServiceReferenceImpl) remoteRegistration
- .getReference();
- RemoteCallImpl remoteCall = RemoteCallImpl.createRemoteCall(refImpl
- .getRemoteClass(), call.getMethod(), call.getParameters(), call
- .getTimeout());
- return new Request(this.getLocalContainerID(), remoteRegistration
- .getServiceId(), remoteCall, listener);
+ private Request createRequest(RemoteServiceRegistrationImpl remoteRegistration, IRemoteCall call, IRemoteCallListener listener) {
+ final RemoteServiceReferenceImpl refImpl = (RemoteServiceReferenceImpl) remoteRegistration.getReference();
+ return new Request(this.getLocalContainerID(), remoteRegistration.getServiceId(), RemoteCallImpl.createRemoteCall(refImpl.getRemoteClass(), call.getMethod(), call.getParameters(), call.getTimeout()), listener);
}
protected void fireRemoteServiceListeners(IRemoteServiceEvent event) {
+ List entries = null;
synchronized (serviceListeners) {
- for (Iterator i = serviceListeners.iterator(); i.hasNext();) {
- IRemoteServiceListener l = (IRemoteServiceListener) i.next();
- l.handleServiceEvent(event);
- }
+ entries = new ArrayList(serviceListeners);
+ }
+ for (final Iterator i = entries.iterator(); i.hasNext();) {
+ final IRemoteServiceListener l = (IRemoteServiceListener) i.next();
+ l.handleServiceEvent(event);
}
}
- private RemoteServiceRegistrationImpl getRemoteServiceRegistrationImpl(
- IRemoteServiceReference reference) {
+ private RemoteServiceRegistrationImpl getRemoteServiceRegistrationImpl(IRemoteServiceReference reference) {
if (reference instanceof RemoteServiceReferenceImpl) {
- RemoteServiceReferenceImpl ref = (RemoteServiceReferenceImpl) reference;
- if (!ref.isActive())
+ final RemoteServiceReferenceImpl ref = (RemoteServiceReferenceImpl) reference;
+ if (!ref.isActive()) {
return null;
- else
- return ref.getRegistration();
- } else
- return null;
- }
-
- IRemoteServiceReference[] getRemoteSeifrviceReferencesForRegistry(
- RemoteServiceRegistryImpl registry, String clazz, String filter) {
- return registry.lookupServiceReferences(clazz,
- createRemoteFilterFromString(filter));
- }
-
- IRemoteServiceReference[] getRemoteServiceReferencesForRegistry(
- RemoteServiceRegistryImpl registry) {
- return registry.lookupServiceReferences();
- }
-
- private IRemoteFilter createRemoteFilterFromString(String filter) {
- // XXX make remote filter
+ }
+ return ref.getRegistration();
+ }
return null;
}
- private void addReferencesFromRegistry(String clazz,
- IRemoteFilter remoteFilter, RemoteServiceRegistryImpl registry,
- List references) {
- IRemoteServiceReference[] rs = registry.lookupServiceReferences(clazz,
- remoteFilter);
- if (rs != null)
- for (int j = 0; j < rs.length; j++)
+ private void addReferencesFromRegistry(String clazz, IRemoteFilter remoteFilter, RemoteServiceRegistryImpl registry, List references) {
+ final IRemoteServiceReference[] rs = registry.lookupServiceReferences(clazz, remoteFilter);
+ if (rs != null) {
+ for (int j = 0; j < rs.length; j++) {
references.add(rs[j]);
+ }
+ }
}
- protected Object callSynch(RemoteServiceRegistrationImpl registration,
- IRemoteCall call) throws ECFException {
+ protected Object callSynch(RemoteServiceRegistrationImpl registration, IRemoteCall call) throws ECFException {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "callSynch", new Object[] {registration, call}); //$NON-NLS-1$
boolean doneWaiting = false;
Response response = null;
try {
// First send request
- long requestId = sendCallRequest(registration, call);
+ final Request request = sendCallRequest(registration, call);
// Then get the specified timeout and calculate when we should
// timeout in real time
- long timeout = call.getTimeout() + System.currentTimeMillis();
+ final long timeout = call.getTimeout() + System.currentTimeMillis();
// Now loop until timeout time has elapsed
while ((timeout - System.currentTimeMillis()) > 0 && !doneWaiting) {
- Request request = findRequestForId(requestId);
- if (request == null)
- throw new NullPointerException(
- "No pending request found id " + requestId);
synchronized (request) {
if (request.isDone()) {
- removeRequest(request);
- trace("request/response DONE: " + request);
+ Trace.trace(Activator.PLUGIN_ID, Messages.RegistrySharedObject_15 + request);
doneWaiting = true;
response = request.getResponse();
if (response == null)
- throw new NullPointerException(
- "Response to request is null");
+ throw new ECFException(Messages.RegistrySharedObject_EXCEPTION_INVALID_RESPONSE);
} else {
- trace("Waiting " + RESPONSE_WAIT_INTERVAL
- + " for response to request: " + request);
+ Trace.trace(Activator.PLUGIN_ID, "Waiting " + RESPONSE_WAIT_INTERVAL + " for response to request: " + request); //$NON-NLS-1$ //$NON-NLS-2$
request.wait(RESPONSE_WAIT_INTERVAL);
}
}
}
if (!doneWaiting)
- throw new ECFException("Request timed out after "
- + call.getTimeout() + " ms");
- } catch (IOException e) {
- logSendError(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
- throw new ECFException("Exception sending request", e);
- } catch (InterruptedException e) {
- logSendError(CALL_REQUEST_TIMEOUT_ERROR_CODE,
- CALL_REQUEST_TIMEOUT_ERROR_MESSAGE, e);
- throw new ECFException("Wait for response interrupted", e);
+ throw new ECFException(Messages.RegistrySharedObject_19 + call.getTimeout() + Messages.RegistrySharedObject_20);
+ } catch (final IOException e) {
+ log(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
+ throw new ECFException(Messages.RegistrySharedObject_EXCEPTION_SENDING_REQUEST, e);
+ } catch (final InterruptedException e) {
+ log(CALL_REQUEST_TIMEOUT_ERROR_CODE, CALL_REQUEST_TIMEOUT_ERROR_MESSAGE, e);
+ throw new ECFException(Messages.RegistrySharedObject_EXCEPTION_WAIT_INTERRUPTED, e);
}
// Success...now get values and return
Object result = null;
if (response.hadException())
- throw new ECFException("Exception in remote call", response
- .getException());
- else
- result = response.getResponse();
+ throw new ECFException(Messages.RegistrySharedObject_EXCEPTION_IN_REMOTE_CALL, response.getException());
+ result = response.getResponse();
- trace("request " + response.getRequestId() + " returning " + result);
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "callSynch", result); //$NON-NLS-1$
return result;
}
- protected void fireCallStartEvent(IRemoteCallListener listener,
- final long requestId, final IRemoteServiceReference reference,
- final IRemoteCall call) {
+ protected void fireCallStartEvent(IRemoteCallListener listener, final long requestId, final IRemoteServiceReference reference, final IRemoteCall call) {
if (listener != null) {
listener.handleEvent(new IRemoteCallStartEvent() {
public long getRequestId() {
@@ -334,20 +389,16 @@ public class RegistrySharedObject extends BaseSharedObject implements
}
public String toString() {
- StringBuffer buf = new StringBuffer(
- "IRemoteCallStartEvent[");
- buf.append(";reference=").append(reference)
- .append(";call=").append(call).append("]");
+ final StringBuffer buf = new StringBuffer("IRemoteCallStartEvent["); //$NON-NLS-1$
+ buf.append(";reference=").append(reference).append(";call=").append(call).append("]"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
return buf.toString();
}
});
}
}
- protected void fireCallCompleteEvent(IRemoteCallListener listener,
- final long requestId, final Object response,
- final boolean hadException, final Throwable exception) {
- if (listener != null)
+ protected void fireCallCompleteEvent(IRemoteCallListener listener, final long requestId, final Object response, final boolean hadException, final Throwable exception) {
+ if (listener != null) {
listener.handleEvent(new IRemoteCallCompleteEvent() {
public long getRequestId() {
return requestId;
@@ -366,130 +417,240 @@ public class RegistrySharedObject extends BaseSharedObject implements
}
public String toString() {
- StringBuffer buf = new StringBuffer(
- "IRemoteCallCompleteEvent[");
- buf.append(";response=").append(response).append(
- ";hadException=").append(hadException).append(
- ";exception=").append(exception).append("]");
+ final StringBuffer buf = new StringBuffer("IRemoteCallCompleteEvent["); //$NON-NLS-1$
+ buf.append(";response=").append(response).append(";hadException=").append(hadException).append(";exception=").append(exception).append("]"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
return buf.toString();
}
});
+ }
}
- static String checkServiceClass(final String[] clazzes,
- final Object serviceObject) {
- ClassLoader cl = (ClassLoader) AccessController
- .doPrivileged(new PrivilegedAction() {
- public Object run() {
- return serviceObject.getClass().getClassLoader();
- }
- });
+ static String checkServiceClass(final String[] clazzes, final Object serviceObject) {
+ final ClassLoader cl = (ClassLoader) AccessController.doPrivileged(new PrivilegedAction() {
+ public Object run() {
+ return serviceObject.getClass().getClassLoader();
+ }
+ });
for (int i = 0; i < clazzes.length; i++) {
try {
- Class serviceClazz = cl == null ? Class.forName(clazzes[i])
- : cl.loadClass(clazzes[i]);
- if (!serviceClazz.isInstance(serviceObject))
+ final Class serviceClazz = cl == null ? Class.forName(clazzes[i]) : cl.loadClass(clazzes[i]);
+ if (!serviceClazz.isInstance(serviceObject)) {
return clazzes[i];
- } catch (ClassNotFoundException e) {
+ }
+ } catch (final ClassNotFoundException e) {
// This check is rarely done
- if (extensiveCheckServiceClass(clazzes[i], serviceObject
- .getClass()))
+ if (extensiveCheckServiceClass(clazzes[i], serviceObject.getClass())) {
return clazzes[i];
+ }
}
}
return null;
}
- private static boolean extensiveCheckServiceClass(String clazz,
- Class serviceClazz) {
- if (clazz.equals(serviceClazz.getName()))
+ private static boolean extensiveCheckServiceClass(String clazz, Class serviceClazz) {
+ if (clazz.equals(serviceClazz.getName())) {
return false;
- Class[] interfaces = serviceClazz.getInterfaces();
- for (int i = 0; i < interfaces.length; i++)
- if (!extensiveCheckServiceClass(clazz, interfaces[i]))
+ }
+ final Class[] interfaces = serviceClazz.getInterfaces();
+ for (int i = 0; i < interfaces.length; i++) {
+ if (!extensiveCheckServiceClass(clazz, interfaces[i])) {
return false;
- Class superClazz = serviceClazz.getSuperclass();
- if (superClazz != null)
- if (!extensiveCheckServiceClass(clazz, superClazz))
+ }
+ }
+ final Class superClazz = serviceClazz.getSuperclass();
+ if (superClazz != null) {
+ if (!extensiveCheckServiceClass(clazz, superClazz)) {
return false;
+ }
+ }
return true;
}
/**
* Message send and handlers
*/
- private static final String FIRE_REQUEST = "handleFireRequest";
+ private static final String FIRE_REQUEST = "handleFireRequest"; //$NON-NLS-1$
- private static final String FIRE_REQUEST_ERROR_MESSAGE = "exception sending fire request message";
+ private static final String FIRE_REQUEST_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_SENDING_FIRE_REQUEST;
private static final int FIRE_REQUEST_ERROR_CODE = 202;
- private static final String CALL_REQUEST = "handleCallRequest";
+ private static final String CALL_REQUEST = "handleCallRequest"; //$NON-NLS-1$
- private static final String CALL_REQUEST_ERROR_MESSAGE = "exception sending call request message";
+ private static final String CALL_REQUEST_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_SENDING_CALL_REQUEST;
private static final int CALL_REQUEST_ERROR_CODE = 203;
- private static final String CALL_REQUEST_TIMEOUT_ERROR_MESSAGE = "timeout for call request";
+ private static final String CALL_REQUEST_TIMEOUT_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_TIMEOUT_FOR_CALL_REQUEST;
private static final int CALL_REQUEST_TIMEOUT_ERROR_CODE = 204;
- private static final String UNREGISTER = "handleUnregister";
+ private static final String UNREGISTER = "handleUnregister"; //$NON-NLS-1$
- private static final String UNREGISTER_ERROR_MESSAGE = "exception sending service unregister message";
+ private static final String UNREGISTER_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_SENDING_SERVICE_UNREGISTER;
private static final int UNREGISTER_ERROR_CODE = 206;
- private static final String MSG_INVOKE_ERROR_MESSAGE = "Exception in shared object message invoke";
+ private static final String MSG_INVOKE_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_SHARED_OBJECT_INVOKE;
private static final int MSG_INVOKE_ERROR_CODE = 207;
- private static final String SERVICE_INVOKE_ERROR_MESSAGE = "Exception invoking service";
+ private static final String SERVICE_INVOKE_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_INVOKING_SERVICE;
private static final int SERVICE_INVOKE_ERROR_CODE = 208;
- private static final String HANDLE_REQUEST_ERROR_MESSAGE = "Exception locally invoking remote call";
+ private static final String HANDLE_REQUEST_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_LOCALLY_INVOKING_REMOTE_CALL;
private static final int HANDLE_REQUEST_ERROR_CODE = 209;
- private static final String CALL_RESPONSE = "handleCallResponse";
+ private static final String CALL_RESPONSE = "handleCallResponse"; //$NON-NLS-1$
- private static final String CALL_RESPONSE_ERROR_MESSAGE = "Exception sending response";
+ private static final String CALL_RESPONSE_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_SENDING_RESPONSE;
private static final int CALL_RESPONSE_ERROR_CODE = 210;
- private static final String REQUEST_NOT_FOUND_ERROR_MESSAGE = "request not found for received response";
+ private static final String REQUEST_NOT_FOUND_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_REQUEST_NOT_FOUND;
private static final int REQUEST_NOT_FOUND_ERROR_CODE = 211;
private static final long RESPONSE_WAIT_INTERVAL = 5000;
- private static final String ADD_REGISTRATION = "handleAddRegistration";
+ private static final String ADD_REGISTRATION = "handleAddRegistration"; //$NON-NLS-1$
- private static final String ADD_REGISTRATION_ERROR_MESSAGE = "exception sending add service registration message";
+ private static final String ADD_REGISTRATION_ERROR_MESSAGE = Messages.RegistrySharedObject_EXCEPTION_SENDING_ADD_SERVICE;
private static final int ADD_REGISTRATION_ERROR_CODE = 212;
- protected void sendAddRegistration(RemoteServiceRegistrationImpl reg) {
- trace("sendAddRegistration(" + null + "," + reg + ")");
+ private static final String ADD_REGISTRATION_REFUSED = "handleAddRegistrationRefused"; //$NON-NLS-1$
+
+ private static final String ADD_REGISTRATION_REFUSED_ERROR_MESSAGE = "Error sending addRegistration refused"; //$NON-NLS-1$
+
+ private static final int ADD_REGISTRATION_REFUSED_ERROR_CODE = 214;
+
+ private static final String REQUEST_SERVICE = "handleRequestService"; //$NON-NLS-1$
+
+ private static final int REQUEST_SERVICE_ERROR_CODE = 213;
+
+ private static final String REQUEST_SERVICE_ERROR_MESSAGE = "Error sending requestServiceReference"; //$NON-NLS-1$
+
+ private static final String REGISTRY_UPDATE_REQUEST = "handleRegistryUpdateRequest"; //$NON-NLS-1$
+
+ private static final int ADD_REGISTRATION_REQUEST_TIMEOUT = 10000;
+
+ protected void sendRegistryUpdateRequest() {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendRegistryUpdateRequest"); //$NON-NLS-1$
try {
- sendSharedObjectMsgTo(null, SharedObjectMsg.createMsg(null,
- ADD_REGISTRATION, getLocalContainerID(), reg));
- } catch (IOException e) {
- logSendError(ADD_REGISTRATION_ERROR_CODE,
- ADD_REGISTRATION_ERROR_MESSAGE, e);
+ sendSharedObjectMsgTo(null, SharedObjectMsg.createMsg(REGISTRY_UPDATE_REQUEST, getLocalContainerID()));
+ } catch (final IOException e) {
+ log(CALL_RESPONSE_ERROR_CODE, CALL_RESPONSE_ERROR_MESSAGE, e);
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendRegistryUpdateRequest"); //$NON-NLS-1$
}
- protected void handleAddRegistration(ID remoteContainerID,
- final RemoteServiceRegistrationImpl registration) {
- if (remoteContainerID == null)
- throw new NullPointerException(
- "registry received with null client ID, discarding");
- if (getLocalContainerID().equals(remoteContainerID))
+ protected void handleRegistryUpdateRequest(ID remoteContainerID) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), REGISTRY_UPDATE_REQUEST);
+ if (remoteContainerID == null || getLocalContainerID().equals(remoteContainerID)) {
return;
- trace(remoteContainerID + " to " + getLocalContainerID() + " added "
- + registration);
+ }
+ sendRegistryUpdate(remoteContainerID);
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), REGISTRY_UPDATE_REQUEST);
+ }
+
+ protected AddRegistrationRequest sendAddRegistrationRequest(ID receiver, AddRegistrationRequest request, Serializable credentials) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendRequestService", new Object[] {receiver, request, credentials}); //$NON-NLS-1$
+ Assert.isNotNull(receiver);
+ Assert.isNotNull(request);
+ try {
+ sendSharedObjectMsgTo(receiver, SharedObjectMsg.createMsg(null, REQUEST_SERVICE, new Object[] {getLocalContainerID(), request, request.getId(), credentials}));
+ } catch (final IOException e) {
+ log(REQUEST_SERVICE_ERROR_CODE, REQUEST_SERVICE_ERROR_MESSAGE, e);
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendRequestService"); //$NON-NLS-1$
+ return request;
+ }
+
+ protected void checkRequestServiceAuthorization(ID remoteContainerID, AddRegistrationRequest request, Serializable credentials) throws AccessControlException {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "checkRequestServiceAuthorization", new Object[] {remoteContainerID, request, credentials}); //$NON-NLS-1$
+ return;
+ }
+
+ protected void handleRequestService(ID remoteContainerID, AddRegistrationRequest request, Integer requestId, Serializable credentials) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "handleRequestServiceReference", new Object[] {remoteContainerID, request, requestId, credentials}); //$NON-NLS-1$
+ if (remoteContainerID == null || requestId == null)
+ return;
+ if (request == null || request.getService() == null)
+ return;
+ IRemoteFilter rf = null;
+ try {
+ rf = (request.getFilter() == null) ? null : new RemoteFilterImpl(request.getFilter());
+ } catch (InvalidSyntaxException e) {
+ // log and set rf to null and ignore
+ log("handleRequestService invalid syntax exception for filter", e); //$NON-NLS-1$
+ rf = null;
+ }
+ try {
+ checkRequestServiceAuthorization(remoteContainerID, request, credentials);
+ } catch (AccessControlException e) {
+ // Log and return...i.e. do nothing
+ log("handleRequestService. checkRequestServiceAuthorization exception", e); //$NON-NLS-1$
+ sendAddRegistrationRequestRefused(remoteContainerID, requestId, e);
+ return;
+ }
+ synchronized (localRegistry) {
+ RemoteServiceReferenceImpl[] srs = (RemoteServiceReferenceImpl[]) localRegistry.lookupServiceReferences(request.getService(), rf);
+ if (srs != null && srs.length > 0) {
+ for (int i = 0; i < srs.length; i++) {
+ RemoteServiceRegistrationImpl impl = getRemoteServiceRegistrationImpl(srs[i]);
+ if (impl != null) {
+ sendAddRegistration(remoteContainerID, requestId, impl);
+ }
+ }
+ } else
+ sendAddRegistrationRequestRefused(remoteContainerID, requestId, null);
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "handleRequestService"); //$NON-NLS-1$
+ }
+
+ protected void sendAddRegistration(ID receiver, RemoteServiceRegistrationImpl reg) {
+ sendAddRegistration(receiver, null, reg);
+ }
+
+ protected void sendAddRegistration(ID receiver, Integer requestId, RemoteServiceRegistrationImpl reg) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendAddRegistration", new Object[] {receiver, requestId, reg}); //$NON-NLS-1$
+ try {
+ sendSharedObjectMsgTo(receiver, SharedObjectMsg.createMsg(null, ADD_REGISTRATION, getLocalContainerID(), requestId, reg));
+ } catch (final IOException e) {
+ log(ADD_REGISTRATION_ERROR_CODE, ADD_REGISTRATION_ERROR_MESSAGE, e);
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendAddRegistration"); //$NON-NLS-1$
+ }
+
+ protected void sendAddRegistrationRequestRefused(ID receiver, Integer requestId, Exception except) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendAddRegistrationRequestRefused", new Object[] {receiver, except}); //$NON-NLS-1$
+ try {
+ sendSharedObjectMsgTo(receiver, SharedObjectMsg.createMsg(null, ADD_REGISTRATION_REFUSED, getLocalContainerID(), requestId, except));
+ } catch (final IOException e) {
+ log(ADD_REGISTRATION_REFUSED_ERROR_CODE, ADD_REGISTRATION_REFUSED_ERROR_MESSAGE, e);
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendAddRegistrationRequestRefused"); //$NON-NLS-1$
+ }
+
+ protected void handleAddRegistrationRequestRefused(ID remoteContainerID, Integer requestId, AccessControlException e) {
+ if (remoteContainerID == null || requestId == null)
+ return;
+ // else lookup AddRegistrationRequest and notify
+ notifyAddRegistrationResponse(requestId, e);
+ }
+
+ protected void handleAddRegistration(ID remoteContainerID, final RemoteServiceRegistrationImpl registration) {
+ handleAddRegistration(remoteContainerID, null, registration);
+ }
+
+ protected void handleAddRegistration(ID remoteContainerID, Integer requestId, final RemoteServiceRegistrationImpl registration) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), ADD_REGISTRATION, new Object[] {remoteContainerID, registration});
+ if (remoteContainerID == null || getLocalContainerID().equals(remoteContainerID)) {
+ return;
+ }
synchronized (remoteRegistrys) {
// Find registry for remoteContainer
RemoteServiceRegistryImpl registry = getRemoteRegistry(remoteContainerID);
@@ -500,191 +661,229 @@ public class RegistrySharedObject extends BaseSharedObject implements
}
// publish service in this registry. At this point it's ready to go
registry.publishService(registration);
+ localRegisterService(registration);
// notify IRemoteServiceListeners synchronously
- fireRemoteServiceListeners(new IRemoteServiceRegisteredEvent() {
-
- public String[] getClazzes() {
- return registration.getClasses();
- }
+ fireRemoteServiceListeners(createRegisteredEvent(registration));
+ notifyAddRegistrationResponse(requestId, null);
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), ADD_REGISTRATION);
+ }
- public ID getContainerID() {
- return registration.getContainerID();
- }
+ /**
+ * @param requestId
+ */
+ private void notifyAddRegistrationResponse(Integer requestId, AccessControlException exception) {
+ if (requestId == null)
+ return;
+ AddRegistrationRequest request = (AddRegistrationRequest) addRegistrationRequests.remove(requestId);
+ if (request != null) {
+ request.notifyResponse(exception);
+ }
+ }
- public IRemoteServiceReference getReference() {
- return registration.getReference();
+ private void localRegisterService(RemoteServiceRegistrationImpl registration) {
+ final Object localServiceRegistrationValue = registration.getProperty(org.eclipse.ecf.remoteservice.Constants.AUTOREGISTER_REMOTE_PROXY);
+ if (localServiceRegistrationValue != null) {
+ final BundleContext context = Activator.getDefault().getContext();
+ if (context == null)
+ return;
+ final RemoteServiceImpl remoteServiceImpl = new RemoteServiceImpl(this, registration);
+ Object service;
+ try {
+ service = remoteServiceImpl.getProxy();
+ } catch (final ECFException e) {
+ e.printStackTrace();
+ log("localRegisterService", e); //$NON-NLS-1$
+ return;
+ }
+ final Hashtable properties = new Hashtable();
+ final String[] keys = registration.getPropertyKeys();
+ for (int i = 0; i < keys.length; i++) {
+ final Object value = registration.getProperty(keys[i]);
+ if (value != null) {
+ properties.put(keys[i], value);
}
+ }
+ final ID remoteContainerID = registration.getContainerID();
+ properties.put(org.eclipse.ecf.remoteservice.Constants.REMOTE_SERVICE_CONTAINER_ID, remoteContainerID.getName());
+ final ServiceRegistration serviceRegistration = context.registerService(registration.getClasses(), service, properties);
+ addLocalServiceRegistration(remoteContainerID, serviceRegistration);
+ }
+ }
- public String toString() {
- StringBuffer buf = new StringBuffer(
- "RemoteServiceRegisteredEvent[");
- buf.append("containerID=").append(
- registration.getContainerID());
- buf.append(";clazzes=").append(
- Arrays.asList(registration.getClasses()));
- buf.append(";reference=").append(
- registration.getReference()).append("]");
- return buf.toString();
- }
- });
+ private void addLocalServiceRegistration(ID remoteContainerID, ServiceRegistration registration) {
+ List containerRegistrations = (List) localServiceRegistrations.get(remoteContainerID);
+ if (containerRegistrations == null) {
+ containerRegistrations = new ArrayList();
+ localServiceRegistrations.put(remoteContainerID, containerRegistrations);
}
+ containerRegistrations.add(registration);
}
- protected long sendCallRequest(
- RemoteServiceRegistrationImpl remoteRegistration,
- final IRemoteCall call) throws IOException {
- Request request = createRequest(remoteRegistration, call, null);
+ protected Request sendCallRequest(RemoteServiceRegistrationImpl remoteRegistration, final IRemoteCall call) throws IOException {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendCallRequest", new Object[] {remoteRegistration, call}); //$NON-NLS-1$
+ final Request request = createRequest(remoteRegistration, call, null);
addRequest(request);
try {
- sendSharedObjectMsgTo(remoteRegistration.getContainerID(),
- SharedObjectMsg.createMsg(CALL_REQUEST, request));
- } catch (IOException e) {
+ sendSharedObjectMsgTo(remoteRegistration.getContainerID(), SharedObjectMsg.createMsg(CALL_REQUEST, request));
+ } catch (final IOException e) {
removeRequest(request);
throw e;
}
- return request.getRequestId();
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendCallRequest", request); //$NON-NLS-1$
+ return request;
}
protected void handleCallRequest(Request request) {
- ID responseTarget = request.getRequestContainerID();
- trace("handleCallRequest(" + request + ") from " + responseTarget);
- RemoteServiceRegistrationImpl localRegistration = getLocalRegistrationForRequest(request);
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "handleCallRequest", request); //$NON-NLS-1$
+ final ID responseTarget = request.getRequestContainerID();
+ final RemoteServiceRegistrationImpl localRegistration = getLocalRegistrationForRequest(request);
// Else we've got a local service and we invoke it
- RemoteCallImpl call = request.getCall();
+ final RemoteCallImpl call = request.getCall();
Response response = null;
Object result = null;
try {
result = localRegistration.callService(call);
response = new Response(request.getRequestId(), result);
- } catch (Exception e) {
+ } catch (final Exception e) {
response = new Response(request.getRequestId(), e);
- logHandleError(SERVICE_INVOKE_ERROR_CODE,
- SERVICE_INVOKE_ERROR_MESSAGE, e);
+ log(SERVICE_INVOKE_ERROR_CODE, SERVICE_INVOKE_ERROR_MESSAGE, e);
}
// Now send response back to responseTarget (original requestor)
sendCallResponse(responseTarget, response);
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "handleCallRequest"); //$NON-NLS-1$
}
- protected void sendCallRequestWithListener(
- RemoteServiceRegistrationImpl remoteRegistration, IRemoteCall call,
- IRemoteCallListener listener) {
- Request request = createRequest(remoteRegistration, call, listener);
- fireCallStartEvent(listener, request.getRequestId(), remoteRegistration
- .getReference(), call);
+ protected void sendCallRequestWithListener(RemoteServiceRegistrationImpl remoteRegistration, IRemoteCall call, IRemoteCallListener listener) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendCallRequestWithListener", new Object[] {remoteRegistration, call, listener}); //$NON-NLS-1$
+ final Request request = createRequest(remoteRegistration, call, listener);
+ fireCallStartEvent(listener, request.getRequestId(), remoteRegistration.getReference(), call);
try {
addRequest(request);
- sendSharedObjectMsgTo(remoteRegistration.getContainerID(),
- SharedObjectMsg.createMsg(CALL_REQUEST, request));
- } catch (IOException e) {
- logSendError(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
+ sendSharedObjectMsgTo(remoteRegistration.getContainerID(), SharedObjectMsg.createMsg(CALL_REQUEST, request));
+ } catch (final IOException e) {
+ log(CALL_REQUEST_ERROR_CODE, CALL_REQUEST_ERROR_MESSAGE, e);
removeRequest(request);
- fireCallCompleteEvent(listener, request.getRequestId(), null, true,
- e);
+ fireCallCompleteEvent(listener, request.getRequestId(), null, true, e);
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendCallRequestWithListener"); //$NON-NLS-1$
}
- private void sendCallResponse(ID responseTarget, Response response) {
+ protected void sendCallResponse(ID responseTarget, Response response) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendCallResponse", new Object[] {responseTarget, response}); //$NON-NLS-1$
try {
- trace("sending response " + response + " to " + responseTarget);
- sendSharedObjectMsgTo(responseTarget, SharedObjectMsg.createMsg(
- CALL_RESPONSE, response));
- } catch (IOException e) {
- logSendError(CALL_RESPONSE_ERROR_CODE, CALL_RESPONSE_ERROR_MESSAGE,
- e);
+ sendSharedObjectMsgTo(responseTarget, SharedObjectMsg.createMsg(CALL_RESPONSE, response));
+ } catch (final IOException e) {
+ log(CALL_RESPONSE_ERROR_CODE, CALL_RESPONSE_ERROR_MESSAGE, e);
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendCallResponse"); //$NON-NLS-1$
}
protected void handleCallResponse(Response response) {
- trace("handleCallResponse(" + response + ")");
- Request request = findRequestForId(response.getRequestId());
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), CALL_RESPONSE, new Object[] {response});
+ final Request request = getRequest(response.getRequestId());
if (request == null) {
- logHandleError(REQUEST_NOT_FOUND_ERROR_CODE,
- REQUEST_NOT_FOUND_ERROR_MESSAGE, new NullPointerException());
+ log(REQUEST_NOT_FOUND_ERROR_CODE, REQUEST_NOT_FOUND_ERROR_MESSAGE, new NullPointerException());
+ return;
+ }
+ removeRequest(request);
+ final IRemoteCallListener listener = request.getListener();
+ if (listener != null) {
+ fireCallCompleteEvent(listener, request.getRequestId(), response.getResponse(), response.hadException(), response.getException());
return;
- } else {
- IRemoteCallListener listener = request.getListener();
- if (listener != null) {
- fireCallCompleteEvent(listener, request.getRequestId(),
- response.getResponse(), response.hadException(),
- response.getException());
- return;
- } else {
- synchronized (request) {
- request.setResponse(response);
- request.setDone(true);
- request.notify();
- }
- }
}
+ synchronized (request) {
+ request.setResponse(response);
+ request.setDone(true);
+ request.notify();
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), CALL_RESPONSE);
}
- protected Request sendFireRequest(
- RemoteServiceRegistrationImpl remoteRegistration, IRemoteCall call)
- throws ECFException {
+ protected Request sendFireRequest(RemoteServiceRegistrationImpl remoteRegistration, IRemoteCall call) throws ECFException {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendFireRequest", new Object[] {remoteRegistration, call}); //$NON-NLS-1$
+ final Request request = createRequest(remoteRegistration, call, null);
try {
- Request request = createRequest(remoteRegistration, call, null);
- sendSharedObjectMsgTo(remoteRegistration.getContainerID(),
- SharedObjectMsg.createMsg(FIRE_REQUEST, request));
- return request;
- } catch (IOException e) {
- logSendError(FIRE_REQUEST_ERROR_CODE, FIRE_REQUEST_ERROR_MESSAGE, e);
- throw new ECFException("IOException sending remote request", e);
+ sendSharedObjectMsgTo(remoteRegistration.getContainerID(), SharedObjectMsg.createMsg(FIRE_REQUEST, request));
+ } catch (final IOException e) {
+ log(FIRE_REQUEST_ERROR_CODE, FIRE_REQUEST_ERROR_MESSAGE, e);
+ throw new ECFException(Messages.RegistrySharedObject_EXCEPTION_SENDING_REMOTE_REQUEST, e);
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendFireRequest", request); //$NON-NLS-1$
+ return request;
}
protected void handleFireRequest(Request request) {
- trace("handleFireRequest(" + request + ") from "
- + request.getRequestContainerID());
- RemoteServiceRegistrationImpl localRegistration = getLocalRegistrationForRequest(request);
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), FIRE_REQUEST, new Object[] {request});
+ final RemoteServiceRegistrationImpl localRegistration = getLocalRegistrationForRequest(request);
// Else we've got a local service and we invoke it
- RemoteCallImpl call = request.getCall();
+ final RemoteCallImpl call = request.getCall();
try {
localRegistration.callService(call);
- } catch (Exception e) {
- logSendError(HANDLE_REQUEST_ERROR_CODE,
- HANDLE_REQUEST_ERROR_MESSAGE, e);
+ } catch (final Exception e) {
+ log(HANDLE_REQUEST_ERROR_CODE, HANDLE_REQUEST_ERROR_MESSAGE, e);
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), FIRE_REQUEST);
}
- protected void sendUnregister(
- RemoteServiceRegistrationImpl serviceRegistration) {
+ protected void sendUnregister(RemoteServiceRegistrationImpl serviceRegistration) {
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "sendUnregister", new Object[] {serviceRegistration}); //$NON-NLS-1$
synchronized (localRegistry) {
localRegistry.unpublishService(serviceRegistration);
- ID containerID = serviceRegistration.getContainerID();
- Long serviceId = new Long(serviceRegistration.getServiceId());
- trace("sendUnregisterToAll(containerID=" + containerID
- + ",serviceId=" + serviceId + ")");
+ final ID containerID = serviceRegistration.getContainerID();
+ final Long serviceId = new Long(serviceRegistration.getServiceId());
try {
- this.sendSharedObjectMsgTo(null, SharedObjectMsg.createMsg(
- UNREGISTER, new Object[] { containerID, serviceId }));
- } catch (IOException e) {
- logSendError(UNREGISTER_ERROR_CODE, UNREGISTER_ERROR_MESSAGE, e);
+ this.sendSharedObjectMsgTo(null, SharedObjectMsg.createMsg(UNREGISTER, new Object[] {containerID, serviceId}));
+ } catch (final IOException e) {
+ log(UNREGISTER_ERROR_CODE, UNREGISTER_ERROR_MESSAGE, e);
+ }
+ }
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "sendUnregister"); //$NON-NLS-1$
+ }
+
+ private void unregisterServiceRegistrationsForContainer(ID containerID) {
+ if (containerID == null)
+ return;
+ final List containerRegistrations = (List) localServiceRegistrations.remove(containerID);
+ if (containerRegistrations != null) {
+ for (final Iterator i = containerRegistrations.iterator(); i.hasNext();) {
+ final ServiceRegistration serviceRegistration = (ServiceRegistration) i.next();
+ try {
+ serviceRegistration.unregister();
+ } catch (Exception e) {
+ // Simply log
+ log("unregister", e); //$NON-NLS-1$
+ }
+ }
+ }
+ }
+
+ private void unregisterAllServiceRegistrations() {
+ synchronized (remoteRegistrys) {
+ for (final Iterator i = localServiceRegistrations.keySet().iterator(); i.hasNext();) {
+ unregisterServiceRegistrationsForContainer((ID) i.next());
}
}
}
protected void handleUnregister(ID containerID, Long serviceId) {
- trace("handleUnregister(containerID=" + containerID + ",serviceId="
- + serviceId + ")");
+ Trace.entering(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_ENTERING, this.getClass(), "handleUnregister", new Object[] {containerID, serviceId}); //$NON-NLS-1$
synchronized (remoteRegistrys) {
// get registry for given containerID
- RemoteServiceRegistryImpl serviceRegistry = (RemoteServiceRegistryImpl) remoteRegistrys
- .get(containerID);
+ final RemoteServiceRegistryImpl serviceRegistry = (RemoteServiceRegistryImpl) remoteRegistrys.get(containerID);
if (serviceRegistry != null) {
- final RemoteServiceRegistrationImpl registration = serviceRegistry
- .findRegistrationForServiceId(serviceId.longValue());
+ final RemoteServiceRegistrationImpl registration = serviceRegistry.findRegistrationForServiceId(serviceId.longValue());
if (registration != null) {
- trace("handleUnregister.unregistering serviceid="
- + serviceId);
serviceRegistry.unpublishService(registration);
+ unregisterServiceRegistrationsForContainer(registration.getContainerID());
fireRemoteServiceListeners(createUnregisteredEvent(registration));
}
}
}
+ Trace.exiting(Activator.PLUGIN_ID, IRemoteServiceProviderDebugOptions.METHODS_EXITING, this.getClass(), "handleUnregister"); //$NON-NLS-1$
}
- protected IRemoteServiceUnregisteredEvent createUnregisteredEvent(
- final RemoteServiceRegistrationImpl registration) {
+ protected IRemoteServiceUnregisteredEvent createUnregisteredEvent(final RemoteServiceRegistrationImpl registration) {
return new IRemoteServiceUnregisteredEvent() {
public String[] getClazzes() {
@@ -700,14 +899,35 @@ public class RegistrySharedObject extends BaseSharedObject implements
}
public String toString() {
- StringBuffer buf = new StringBuffer(
- "RemoteServiceUnregisteredEvent[");
- buf.append("containerID=")
- .append(registration.getContainerID());
- buf.append(";clazzes=").append(
- Arrays.asList(registration.getClasses()));
- buf.append(";reference=").append(registration.getReference())
- .append("]");
+ final StringBuffer buf = new StringBuffer("RemoteServiceUnregisteredEvent["); //$NON-NLS-1$
+ buf.append("containerID=").append(registration.getContainerID()); //$NON-NLS-1$
+ buf.append(";clazzes=").append(Arrays.asList(registration.getClasses())); //$NON-NLS-1$
+ buf.append(";reference=").append(registration.getReference()).append("]"); //$NON-NLS-1$ //$NON-NLS-2$
+ return buf.toString();
+ }
+ };
+ }
+
+ protected IRemoteServiceRegisteredEvent createRegisteredEvent(final RemoteServiceRegistrationImpl registration) {
+ return new IRemoteServiceRegisteredEvent() {
+
+ public String[] getClazzes() {
+ return registration.getClasses();
+ }
+
+ public ID getContainerID() {
+ return registration.getContainerID();
+ }
+
+ public IRemoteServiceReference getReference() {
+ return registration.getReference();
+ }
+
+ public String toString() {
+ final StringBuffer buf = new StringBuffer("RemoteServiceRegisteredEvent["); //$NON-NLS-1$
+ buf.append("containerID=").append(registration.getContainerID()); //$NON-NLS-1$
+ buf.append(";clazzes=").append(Arrays.asList(registration.getClasses())); //$NON-NLS-1$
+ buf.append(";reference=").append(registration.getReference()).append("]"); //$NON-NLS-1$ //$NON-NLS-2$
return buf.toString();
}
};
@@ -717,10 +937,8 @@ public class RegistrySharedObject extends BaseSharedObject implements
* End message send/handlers
*/
- protected RemoteServiceRegistryImpl addRemoteRegistry(
- RemoteServiceRegistryImpl registry) {
- return (RemoteServiceRegistryImpl) remoteRegistrys.put(registry
- .getContainerID(), registry);
+ protected RemoteServiceRegistryImpl addRemoteRegistry(RemoteServiceRegistryImpl registry) {
+ return (RemoteServiceRegistryImpl) remoteRegistrys.put(registry.getContainerID(), registry);
}
protected RemoteServiceRegistryImpl getRemoteRegistry(ID containerID) {
@@ -731,68 +949,39 @@ public class RegistrySharedObject extends BaseSharedObject implements
return (RemoteServiceRegistryImpl) remoteRegistrys.remove(containerID);
}
- private RemoteServiceRegistrationImpl getLocalRegistrationForRequest(
- Request request) {
+ private RemoteServiceRegistrationImpl getLocalRegistrationForRequest(Request request) {
synchronized (localRegistry) {
- return localRegistry.findRegistrationForServiceId(request
- .getServiceId());
+ return localRegistry.findRegistrationForServiceId(request.getServiceId());
}
}
- protected void trace(String msg) {
- Trace.trace(Activator.getDefault(),
- IRemoteServiceProviderDebugOptions.DEBUG, msg);
- }
-
- protected void traceException(String methodName, Throwable t) {
- Trace.catching(Activator.getDefault(),
- IRemoteServiceProviderDebugOptions.EXCEPTIONS_CATCHING,
- RegistrySharedObject.class, methodName, t);
- }
-
- protected List requests = Collections.synchronizedList(new ArrayList());
-
- protected boolean addRequest(Request request) {
+ private boolean addRequest(Request request) {
return requests.add(request);
}
- protected Request findRequestForId(long requestId) {
+ private Request getRequest(long requestId) {
synchronized (requests) {
- for (Iterator i = requests.iterator(); i.hasNext();) {
- Request req = (Request) i.next();
- long reqId = req.getRequestId();
- if (reqId == requestId)
+ for (final Iterator i = requests.iterator(); i.hasNext();) {
+ final Request req = (Request) i.next();
+ final long reqId = req.getRequestId();
+ if (reqId == requestId) {
return req;
+ }
}
}
return null;
}
- protected boolean removeRequest(Request request) {
+ private boolean removeRequest(Request request) {
return requests.remove(request);
}
protected boolean handleSharedObjectMsg(SharedObjectMsg msg) {
try {
msg.invoke(this);
- } catch (Exception e) {
- logHandleError(MSG_INVOKE_ERROR_CODE, MSG_INVOKE_ERROR_MESSAGE, e);
+ } catch (final Exception e) {
+ log(MSG_INVOKE_ERROR_CODE, MSG_INVOKE_ERROR_MESSAGE, e);
}
return false;
}
-
- private void logSendError(int code, String message, Throwable exception) {
- traceException(message, exception);
- Activator.getDefault().getLog().log(
- new Status(IStatus.ERROR, Activator.PLUGIN_ID, code, message,
- exception));
- }
-
- private void logHandleError(int code, String message, Throwable exception) {
- traceException(message, exception);
- Activator.getDefault().getLog().log(
- new Status(IStatus.ERROR, Activator.PLUGIN_ID, code, message,
- exception));
- }
-
}

Back to the top