Class BaseSharedObject
- java.lang.Object
- 
- org.eclipse.ecf.core.sharedobject.BaseSharedObject
 
- 
- All Implemented Interfaces:
- org.eclipse.core.runtime.IAdaptable,- IIdentifiable,- ISharedObject
 - Direct Known Subclasses:
- DistributedEventAdmin,- OptimisticSharedObject,- RegistrySharedObject,- TransactionSharedObject
 
 public class BaseSharedObject extends Object implements ISharedObject, IIdentifiable Base class for shared object classes. This base class provides a number of utility method for subclasses to use for tracing (e.g.traceCatching(String, Throwable),traceEntering(String),traceExiting(String)) logging (e.g.log(int, String, Throwable)), as well as methods to access theISharedObjectContextfor the shared object instance (e.g.getID(),getHomeContainerID(),getContext(),getConfig(),getProperties(),isConnected(),isPrimary(), etc). Also provided are a number of methods for sending messages to remote replica shared objects (e.g.sendSharedObjectMsgTo(ID, SharedObjectMsg),sendSharedObjectMsgToPrimary(SharedObjectMsg),sendSharedObjectMsgToSelf(SharedObjectMsg)) and methods for replicating oneself to remote containers (e.g.replicateToRemoteContainers(ID[])). Finally, object lifecycle methods are also provided (e.g.initialize(),creationCompleted(),dispose(ID)). Subclasses may use and override these methods as appropriate.
- 
- 
Field SummaryFields Modifier and Type Field Description protected static intDESTROYREMOTE_CODEprotected static intDESTROYSELFLOCAL_CODE
 - 
Constructor SummaryConstructors Constructor Description BaseSharedObject()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaddEventProcessor(IEventProcessor proc)Add an event processor to the set of event processors available.voidclearEventProcessors()Clear event processors.protected voidcreationCompleted()Called by replication strategy code (e.g.protected voiddestroyRemote(ID remoteID)protected voiddestroySelf()Destroy this shared object in the context of the current container.protected voiddestroySelfLocal()Destroy the local copy of this shared object in the current container.voiddispose(ID containerID)Method called by the ISharedObjectContainer upon ISharedObject destruction.protected voidfireEventProcessors(Event event)Fire the current set of event processors with given event.ObjectgetAdapter(Class adapter)protected ISharedObjectConfiggetConfig()Get the config for this shared object.protected IDgetConnectedID()protected ISharedObjectContextgetContext()Get the shared object context for this object.protected ID[]getGroupMemberIDs()Get IDs of remote containers currently in this group.protected IDgetHomeContainerID()IDgetID()Return the ID for this 'identifiable' object.protected IDgetLocalContainerID()protected Map<String,?>getProperties()protected ReplicaSharedObjectDescriptiongetReplicaDescription(ID receiver)Get a ReplicaSharedObjectDescription for a replica to be created on a given receiver.protected ReplicaSharedObjectDescription[]getReplicaDescriptions(ID[] receivers)This method is called by replicateToRemoteContainers to determine the ReplicaSharedObjectDescriptions associated with the given receivers.protected SharedObjectMsggetSharedObjectMsgFromEvent(ISharedObjectMessageEvent event)Get SharedObjectMsg from ISharedObjectMessageEvent.voidhandleEvent(Event event)Handle Event passed to this IEventHandler.voidhandleEvents(Event[] events)Handle Events passed to this IEventHandler.protected booleanhandleSharedObjectCreateResponseEvent(ISharedObjectCreateResponseEvent createResponseEvent)Handle a ISharedObjectCreateResponseEvent.protected booleanhandleSharedObjectMsg(ID fromID, SharedObjectMsg msg)protected booleanhandleSharedObjectMsg(SharedObjectMsg msg)SharedObjectMsg handler method.protected booleanhandleSharedObjectMsgEvent(ISharedObjectMessageEvent event)Handle a ISharedObjectMessageEvent.protected voidhandleUnhandledEvent(Event event)Method called when an event is not handled by any event processor.voidinit(ISharedObjectConfig initData)Initialize this ISharedObject.protected voidinitialize()Initialize this shared object.protected booleanisConnected()protected booleanisPrimary()protected voidlog(int code, String method, Throwable e)protected voidlog(String method, Throwable e)booleanremoveEventProcessor(IEventProcessor proc)Remove an event processor from the set of event processors available to this object.protected voidreplicateToRemoteContainers(ID[] remoteContainers)Replicate this shared object to a given set of remote containers.protected voidsendSharedObjectMsgTo(ID toID, SharedObjectMsg msg)Send SharedObjectMessage to container with given ID.protected voidsendSharedObjectMsgToPrimary(SharedObjectMsg msg)Send SharedObjectMsg to this shared object's primary instance.protected voidsendSharedObjectMsgToSelf(SharedObjectMsg msg)Send SharedObjectMsg to local shared object.protected voidtrace(String method, String message)protected voidtraceCatching(String method, Throwable t)protected voidtraceEntering(String methodName)protected voidtraceEntering(String methodName, Object param)protected voidtraceEntering(String methodName, Object[] params)protected voidtraceExiting(String methodName)protected voidtraceExiting(String methodName, Object result)
 
- 
- 
- 
Field Detail- 
DESTROYREMOTE_CODEprotected static final int DESTROYREMOTE_CODE - See Also:
- Constant Field Values
 
 - 
DESTROYSELFLOCAL_CODEprotected static final int DESTROYSELFLOCAL_CODE - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
initpublic final void init(ISharedObjectConfig initData) throws SharedObjectInitException Description copied from interface:ISharedObjectInitialize this ISharedObject. The ISharedObjectContainer for this ISharedObject must call this method with a non-null instance of ISharedObjectConfig. ISharedObject implementations can use this initialization to perform any initialization necessary prior to receiving any events (via handleEvent/s). Note that the ISharedObjectContext provided via the ISharedObjectConfig.getSharedObjectContext() method is not guaranteed to allow any method calls until after this init() method call has completed.- Specified by:
- initin interface- ISharedObject
- Parameters:
- initData- the initialization data passed by the ISharedObjectContainer upon initialization
- Throws:
- SharedObjectInitException- thrown by ISharedObject to halt initialization. ISharedObjectContainers must respond to such an exception by halting the addition of the ISharedObject instance and treating it as not in the container.
 
 - 
initializeprotected void initialize() throws SharedObjectInitExceptionInitialize this shared object. Subclasses may override as appropriate to define custom initialization behavior. If initialization should fail, then a SharedObjectInitException should be thrown by implementing code. Also, subclasses overriding this method should call super.initialize() before running their own code.- Throws:
- SharedObjectInitException- if initialization should throw
 
 - 
creationCompletedprotected void creationCompleted() Called by replication strategy code (e.g. two phase commit) when creation is completed (i.e. when transactional replication completed successfully). Subclasses that need to be notified when creation is completed should override this method.
 - 
disposepublic void dispose(ID containerID) Description copied from interface:ISharedObjectMethod called by the ISharedObjectContainer upon ISharedObject destruction. Once this method is called, no more Events will be passed to a ISharedObject until the init method is called again.- Specified by:
- disposein interface- ISharedObject
- Parameters:
- containerID- the ID of the container that is disposing this ISharedObject
 
 - 
getAdapterpublic Object getAdapter(Class adapter) - Specified by:
- getAdapterin interface- org.eclipse.core.runtime.IAdaptable
 
 - 
handleEventpublic void handleEvent(Event event) Description copied from interface:ISharedObjectHandle Event passed to this IEventHandler.- Specified by:
- handleEventin interface- ISharedObject
- Parameters:
- event- the Event for the implementer to handle
 
 - 
addEventProcessorpublic boolean addEventProcessor(IEventProcessor proc) Add an event processor to the set of event processors available.- Parameters:
- proc- the event processor to add. Must not be- null.
- Returns:
- trueif actually added,- falseotherwise.
 
 - 
removeEventProcessorpublic boolean removeEventProcessor(IEventProcessor proc) Remove an event processor from the set of event processors available to this object.- Parameters:
- proc- the event processor to remove. Must not be- null.
- Returns:
- trueif actually removed,- falseotherwise.
 
 - 
clearEventProcessorspublic void clearEventProcessors() Clear event processors.
 - 
handleUnhandledEventprotected void handleUnhandledEvent(Event event) Method called when an event is not handled by any event processor.- Parameters:
- event- the event that was not handled.
 
 - 
fireEventProcessorsprotected void fireEventProcessors(Event event) Fire the current set of event processors with given event.- Parameters:
- event- the event to deliver to event processors.
 
 - 
handleEventspublic void handleEvents(Event[] events) Description copied from interface:ISharedObjectHandle Events passed to this IEventHandler.- Specified by:
- handleEventsin interface- ISharedObject
- Parameters:
- events- the Events [] for the implementer to handle
 
 - 
getIDpublic ID getID() Description copied from interface:IIdentifiableReturn the ID for this 'identifiable' object. The returned ID should be unique within its namespace. May returnnull.- Specified by:
- getIDin interface- IIdentifiable
- Returns:
- the ID for this identifiable object.  May return null.
 
 - 
getConfigprotected final ISharedObjectConfig getConfig() Get the config for this shared object.- Returns:
- ISharedObjectConfig for this object.  The ISharedObjectConfig is 
 set within init(ISharedObjectConfig). Will not benullas long as the init method is called prior to this method being called.
 
 - 
getContextprotected final ISharedObjectContext getContext() Get the shared object context for this object.- Returns:
- ISharedObjectContext the context.  Will not be null.
 
 - 
getHomeContainerIDprotected ID getHomeContainerID() - Returns:
- ID that is the home container ID (primary) for this shared object.  Will not be nullas long as theinit(ISharedObjectConfig)method has been called (by container) as a result ofISharedObjectManager.addSharedObject(ID, ISharedObject, Map).
 
 - 
getLocalContainerIDprotected ID getLocalContainerID() - Returns:
- ID that is the local container ID for this shared object.  Will be nullif the shared object is *not* in a local container (i.e. has been removed from the container).
 
 - 
getConnectedIDprotected ID getConnectedID() - Returns:
- ID the connected ID for the container that contains this shared object.  Will be non-nullif the surrounding container is not currently connected.
 
 - 
isConnectedprotected final boolean isConnected() - Returns:
- trueif the surrounding container is currently connected,- falseotherwise.
 
 - 
isPrimaryprotected final boolean isPrimary() - Returns:
- trueif this shared object replica is the primary. The definition of primary is whether the- getLocalContainerID()and- getHomeContainerID()values are equal.
 
 - 
getPropertiesprotected final Map<String,?> getProperties() - Returns:
- Map any properties associated with this shared object via the ISharedObjectConfig provided
 upon init(ISharedObjectConfig).
 
 - 
destroySelfprotected void destroySelf() Destroy this shared object in the context of the current container. Destroys both local copy and any replicas present in remote containers.
 - 
destroySelfLocalprotected void destroySelfLocal() Destroy the local copy of this shared object in the current container.
 - 
destroyRemoteprotected void destroyRemote(ID remoteID) throws IOException - Parameters:
- remoteID- the ID of the remote container where the replica should be destroyed.
- Throws:
- IOException- if the destroy message cannot be sent (i.e. due to disconnection, etc).
 
 - 
sendSharedObjectMsgToprotected void sendSharedObjectMsgTo(ID toID, SharedObjectMsg msg) throws IOException Send SharedObjectMessage to container with given ID. The toID parameter may be null, and if null the message will be delivered to all containers in group. The second parameter may not be null.- Parameters:
- toID- the target container ID for the SharedObjectMsg. If null, the given message is sent to all other containers currently in group
- msg- the message instance to send
- Throws:
- IOException- thrown if the local container is not connected or unable to send for other reason
 
 - 
sendSharedObjectMsgToPrimaryprotected void sendSharedObjectMsgToPrimary(SharedObjectMsg msg) throws IOException Send SharedObjectMsg to this shared object's primary instance.- Parameters:
- msg- the message instance to send
- Throws:
- IOException- throws if the local container is not connect or unable to send for other reason
 
 - 
sendSharedObjectMsgToSelfprotected void sendSharedObjectMsgToSelf(SharedObjectMsg msg) Send SharedObjectMsg to local shared object. This places the given message at the end of this shared object's message queue for processing.- Parameters:
- msg- the message instance to send.
 
 - 
getSharedObjectMsgFromEventprotected SharedObjectMsg getSharedObjectMsgFromEvent(ISharedObjectMessageEvent event) Get SharedObjectMsg from ISharedObjectMessageEvent. ISharedObjectMessageEvents can come from both local and remote sources. In the remote case, the SharedObjectMsg has to be retrieved from the RemoteSharedObjectEvent rather than the ISharedObjectMessageEvent.getData() directly. This method will provide a non-null SharedObjectMsg if it's provided either via remotely or locally. Returns null if the given event does not provide a valid SharedObjectMsg.- Parameters:
- event-
- Returns:
- SharedObjectMsg the SharedObjectMsg delivered by the given event
 
 - 
handleSharedObjectMsgEventprotected boolean handleSharedObjectMsgEvent(ISharedObjectMessageEvent event) Handle a ISharedObjectMessageEvent. This method will be automatically called by the SharedObjectMsgEventProcessor when a ISharedObjectMessageEvent is received. The SharedObjectMsgEventProcessor is associated with this object via the initialize() method- Parameters:
- event- the event to handle
- Returns:
- true if the provided event should receive no further processing. If false the provided Event should be passed to subsequent event processors.
 
 - 
handleSharedObjectMsgprotected boolean handleSharedObjectMsg(ID fromID, SharedObjectMsg msg) - Since:
- 2.4
 
 - 
handleSharedObjectCreateResponseEventprotected boolean handleSharedObjectCreateResponseEvent(ISharedObjectCreateResponseEvent createResponseEvent) Handle a ISharedObjectCreateResponseEvent. This handler is called by handleSharedObjectMsgEvent when the ISharedObjectMessageEvent is of type ISharedObjectCreateResponseEvent. This default implementation simply returns false. Subclasses may override as appropriate. Note that if return value is true, it will prevent subsequent event processors from having a chance to process event- Parameters:
- createResponseEvent- the ISharedObjectCreateResponseEvent received
- Returns:
- true if the provided event should receive no further processing. If false the provided Event should be passed to subsequent event processors.
 
 - 
handleSharedObjectMsgprotected boolean handleSharedObjectMsg(SharedObjectMsg msg) SharedObjectMsg handler method. This method will be called byhandleSharedObjectMsgEvent(ISharedObjectMessageEvent)when a SharedObjectMsg is received either from a local source or a remote source. This default implementation simply returns false so that other processing of of the given msg can occur. Subclasses should override this behavior to define custom logic for handling SharedObjectMsgs.- Parameters:
- msg- the SharedObjectMsg received
- Returns:
- true if the msg has been completely handled and subsequent processing should stop. False if processing should continue
 
 - 
getReplicaDescriptionprotected ReplicaSharedObjectDescription getReplicaDescription(ID receiver) Get a ReplicaSharedObjectDescription for a replica to be created on a given receiver.- Parameters:
- receiver- the receiver the ReplicaSharedObjectDescription is for
- Returns:
- ReplicaSharedObjectDescription to be associated with given receiver. A non-null ReplicaSharedObjectDescription must be returned.
 
 - 
getReplicaDescriptionsprotected ReplicaSharedObjectDescription[] getReplicaDescriptions(ID[] receivers) This method is called by replicateToRemoteContainers to determine the ReplicaSharedObjectDescriptions associated with the given receivers. Receivers may be null (meaning that all in group are to be receivers), and if so then this method should return a ReplicaSharedObjectDescription [] of length 1 with a single ReplicaSharedObjectDescription that will be used for all receivers. If receivers is non-null, then the ReplicaSharedObjectDescription [] result must be of same length as the receivers array. This method calls the getReplicaDescription method to create a replica description for each receiver. If this method returns null, null replication is done.- Parameters:
- receivers- an ID[] of the intended receivers for the resulting ReplicaSharedObjectDescriptions. If null, then the entire current group is assumed to be the target, and this method should return a ReplicaSharedObjectDescriptions array of length 1, with a single ReplicaSharedObjectDescriptions for all target receivers.
- Returns:
- ReplicaSharedObjectDescription[] to determine replica descriptions for each receiver. A null return value indicates that no replicas are to be created. If the returned array is not null, then it must be of same length as the receivers parameter.
 
 - 
getGroupMemberIDsprotected ID[] getGroupMemberIDs() Get IDs of remote containers currently in this group. This method consults the current container context to retrieve the current group membership- Returns:
- ID[] of current group membership. Will not return null;
- See Also:
- ISharedObjectContext.getGroupMemberIDs()
 
 - 
replicateToRemoteContainersprotected void replicateToRemoteContainers(ID[] remoteContainers) Replicate this shared object to a given set of remote containers. This method will invoke the method getReplicaDescriptions in order to determine the set of ReplicaSharedObjectDescriptions to send to remote containers.- Parameters:
- remoteContainers- the set of remote containers to replicate to. If null, all containers in the current group are sent a message to create a replica of this shared object.
 
 - 
traceEnteringprotected void traceEntering(String methodName) 
 - 
traceExitingprotected void traceExiting(String methodName) 
 
- 
 
-