Class ZooDiscoveryContainer
java.lang.Object
org.eclipse.ecf.core.AbstractContainer
org.eclipse.ecf.discovery.AbstractDiscoveryContainerAdapter
org.eclipse.ecf.provider.zookeeper.core.ZooDiscoveryContainer
- All Implemented Interfaces:
org.eclipse.core.runtime.IAdaptable,IContainer,IIdentifiable,IDiscoveryAdvertiser,IDiscoveryLocator
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected org.eclipse.ecf.provider.zookeeper.core.internal.Advertiserstatic ExecutorServiceprotected booleanprotected org.eclipse.ecf.provider.zookeeper.core.internal.LocalizerFields inherited from class org.eclipse.ecf.discovery.AbstractDiscoveryContainerAdapter
allServiceListeners, serviceListeners, servicesNamespaceName, serviceTypeListenersFields inherited from interface org.eclipse.ecf.discovery.IDiscoveryAdvertiser
CONTAINER_NAMEFields inherited from interface org.eclipse.ecf.discovery.IDiscoveryLocator
CONTAINER_NAME -
Method Summary
Modifier and TypeMethodDescriptionstatic booleanvoidconnect(ID id, IConnectContext connectContext) Connect to a target remote process or process group.voidDisconnect.voiddispose()Dispose this IContainer instance.Get the target ID that this container instance has connected to.Get the Namespace for creating a targetID suitable for use as the first parameter in subsequent calls toIContainer.connect(ID, IConnectContext).getID()Return the ID for this 'identifiable' object.org.apache.zookeeper.server.ZooKeeperServergetServiceInfo(IServiceID serviceID) Synchronously retrieve info about the serviceSynchronously get service info about all known servicesgetServices(IServiceTypeID type) Synchronously get service info about all known services of given service typeGet a Namespace for services associated with this discovery container adapter.Synchronously get service info about all known services of given service typestatic ZooDiscoveryContainervoidinit(ServiceReference reference) booleanvoidregisterService(IServiceInfo serviceInfo) Register the given service.voidsetDiscoveryProperties(Properties discoveryProperties) voidshutdown()voidUnregister all previously registered service.voidunregisterService(IServiceInfo serviceInfo) Unregister a previously registered service defined by serviceInfo.Methods inherited from class org.eclipse.ecf.discovery.AbstractDiscoveryContainerAdapter
addServiceListener, addServiceListener, addServiceTypeListener, clearListeners, fireServiceDiscovered, fireServiceTypeDiscovered, fireServiceUndiscovered, getAsyncServiceInfo, getAsyncServices, getAsyncServices, getAsyncServiceTypes, getConfig, getListeners, getServiceEvent, purgeCache, removeServiceListener, removeServiceListener, removeServiceTypeListenerMethods inherited from class org.eclipse.ecf.core.AbstractContainer
addListener, fireContainerEvent, getAdapter, getPasswordFromConnectContext, removeListener
-
Field Details
-
CACHED_THREAD_POOL
-
advertiser
protected org.eclipse.ecf.provider.zookeeper.core.internal.Advertiser advertiser -
localizer
protected org.eclipse.ecf.provider.zookeeper.core.internal.Localizer localizer -
isQuorumPeerReady
protected boolean isQuorumPeerReady
-
-
Method Details
-
autoStart
public static boolean autoStart()- Returns:
- true if the service is in autoStart mode.
-
getSingleton
-
init
-
setDiscoveryProperties
-
getDiscoveryProperties
-
shutdown
public void shutdown() -
getLocalServer
public org.apache.zookeeper.server.ZooKeeperServer getLocalServer() -
connect
Description copied from interface:IContainerConnect to a target remote process or process group. The target identified by the first parameter (targetID) is connected the implementation class. If authentication information is required, the required information is given via via the second parameter (connectContext). Callers note that depending upon the provider implementation this method may block. It is suggested that callers use a separate thread to call this method. This method provides an implementation independent way for container implementations to connect, authenticate, and communicate with a remote service or group of services. Providers are responsible for implementing this operation in a way appropriate to the given remote service (or group) via expected protocol.- Parameters:
id- the ID of the remote server or group to connect to. SeeIContainer.getConnectNamespace()for a explanation of the constraints upon this parameter.connectContext- any required context to allow this container to authenticate. May benullif underlying provider does not have any authentication requirements for connection.- Throws:
ContainerConnectException- thrown if communication cannot be established with remote service. Causes can include network connection failure, authentication failure, server error, or if container is already connected.
-
disconnect
public void disconnect()Description copied from interface:IContainerDisconnect. This operation will disconnect the local container instance from any previously joined target or group. Subsequent calls to getConnectedID() will returnnull. -
getConnectNamespace
Description copied from interface:IContainerGet the Namespace for creating a targetID suitable for use as the first parameter in subsequent calls toIContainer.connect(ID, IConnectContext). If this method returnsnull, then it means thatnullis expected as a valid parameter in subsequent calls toIContainer.connect(ID, IConnectContext). If this method returns a non-nullNamespace, then thetargetIDparameter inIContainer.connect(ID, IConnectContext)must be non-nullinstance created of the returned Namespace.- Specified by:
getConnectNamespacein interfaceIContainer- Overrides:
getConnectNamespacein classAbstractDiscoveryContainerAdapter- Returns:
- Namespace the namespace associated with subsequent calls to
IContainer.connect(ID, IConnectContext). Ifnull, then thetargetIDinstances passed toIContainer.connect(ID, IConnectContext)may benull. If notnull, thentargetIDinstances passed toIContainer.connect(ID, IConnectContext)must be instances of the returned Namespace.
-
getConnectedID
Description copied from interface:IContainerGet the target ID that this container instance has connected to. Returns null if not connected.- Returns:
- ID of the target we are connected to. Returns
nullif container not connected.
-
getServiceInfo
Description copied from interface:IDiscoveryLocatorSynchronously retrieve info about the service- Parameters:
serviceID- IServiceID of the service to get info about. Must not benull.- Returns:
- IServiceInfo the service info retrieved.
nullif no information retrievable.
-
getServiceTypes
Description copied from interface:IDiscoveryLocatorSynchronously get service info about all known services of given service type- Returns:
- IServiceTypeID[] the resulting array of service type IDs. Will
not be
null. May be of length 0.
-
getServices
Description copied from interface:IDiscoveryLocatorSynchronously get service info about all known services- Returns:
- IServiceInfo[] the resulting array of service info instances.
Will not be
null. May be of length 0.
-
getServices
Description copied from interface:IDiscoveryLocatorSynchronously get service info about all known services of given service type- Parameters:
type- IServiceTypeID defining the type of service we are interested in getting service info about. Must not benull- Returns:
- IServiceInfo[] the resulting array of service info instances.
Will not be
null. May be of length 0.
-
getServicesNamespace
Description copied from interface:IDiscoveryLocatorGet a Namespace for services associated with this discovery container adapter. The given Namespace may be used via IServiceIDFactory to create IServiceIDs rather than simple IDs. For example:IServiceID serviceID = ServiceIDFactory.getDefault().createServiceID(container.getServicesNamespace(), serviceType, serviceName);- Specified by:
getServicesNamespacein interfaceIDiscoveryAdvertiser- Specified by:
getServicesNamespacein interfaceIDiscoveryLocator- Overrides:
getServicesNamespacein classAbstractDiscoveryContainerAdapter- Returns:
- Namespace for creating service IDs. Will not be
null.
-
registerService
Description copied from interface:IDiscoveryAdvertiserRegister the given service. This publishes the service defined by the serviceInfo to the underlying publishing mechanism- Parameters:
serviceInfo- IServiceInfo of the service to be published. Must not benull.
-
unregisterAllServices
public void unregisterAllServices()Description copied from interface:IDiscoveryAdvertiserUnregister all previously registered service.- Specified by:
unregisterAllServicesin interfaceIDiscoveryAdvertiser- Overrides:
unregisterAllServicesin classAbstractDiscoveryContainerAdapter- See Also:
-
unregisterService
Description copied from interface:IDiscoveryAdvertiserUnregister a previously registered service defined by serviceInfo.- Parameters:
serviceInfo- IServiceInfo defining the service to unregister. Must not benull.
-
getAllServiceListeners
-
getServiceListenersForType
-
getServiceTypeListeners
-
dispose
public void dispose()Description copied from interface:IContainerDispose this IContainer instance. The container instance will be made inactive after the completion of this method and will be unavailable for subsequent usage.- Specified by:
disposein interfaceIContainer- Overrides:
disposein classAbstractDiscoveryContainerAdapter
-
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 interfaceIIdentifiable- Overrides:
getIDin classAbstractDiscoveryContainerAdapter- Returns:
- the ID for this identifiable object. May return
null.
-
isDisposed
public boolean isDisposed() -
getContainerName
- Specified by:
getContainerNamein classAbstractDiscoveryContainerAdapter- Returns:
- The name of this discovery container
-