|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.catalina.util.LifecycleBase org.apache.catalina.ha.tcp.SimpleTcpCluster
public class SimpleTcpCluster
A Cluster implementation using simple multicast. Responsible for setting up a cluster and provides callers with a valid multicast receiver/sender. FIXME remove install/remove/start/stop context dummys FIXME wrote testcases
Field Summary | |
---|---|
static String |
AFTER_MANAGERREGISTER_EVENT
|
static String |
AFTER_MANAGERUNREGISTER_EVENT
|
static String |
AFTER_MEMBERREGISTER_EVENT
|
static String |
AFTER_MEMBERUNREGISTER_EVENT
|
static String |
BEFORE_MANAGERREGISTER_EVENT
|
static String |
BEFORE_MANAGERUNREGISTER_EVENT
|
static String |
BEFORE_MEMBERREGISTER_EVENT
|
static String |
BEFORE_MEMBERUNREGISTER_EVENT
|
protected Channel |
channel
Group channel. |
protected String |
clusterImpName
Name for logging purpose |
protected List<ClusterListener> |
clusterListeners
Listeners of messages |
protected String |
clusterName
The cluster name to join |
protected Container |
container
The Container associated with this Cluster. |
protected boolean |
hasMembers
has members |
protected boolean |
heartbeatBackgroundEnabled
call Channel.heartbeat() at container background thread |
protected static String |
info
Descriptive information about this component implementation. |
static Log |
log
|
protected Map<String,ClusterManager> |
managers
The context name <->manager association for distributed contexts. |
protected ClusterManager |
managerTemplate
|
static String |
RECEIVE_MESSAGE_FAILURE_EVENT
|
static String |
SEND_MESSAGE_FAILURE_EVENT
|
protected static StringManager |
sm
The string manager for this package. |
protected PropertyChangeSupport |
support
The property change support for this component. |
Fields inherited from interface org.apache.catalina.Lifecycle |
---|
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT |
Constructor Summary | |
---|---|
SimpleTcpCluster()
|
Method Summary | |
---|---|
boolean |
accept(Serializable msg,
Member sender)
notify all listeners from receiving a new message is not ClusterMessage emit Failure Event to LifecylceListener |
void |
addClusterListener(ClusterListener listener)
Add cluster message listener and register cluster to this listener. |
void |
addValve(Valve valve)
Add cluster valve Cluster Valves are only add to container when cluster is started! |
void |
backgroundProcess()
Execute a periodic task, such as reloading, etc. |
protected void |
checkDefaults()
|
Manager |
createManager(String name)
Create new Manager without add to cluster (comes with start the manager) |
protected void |
destroyInternal()
|
ClusterListener[] |
findClusterListeners()
Get the cluster listeners associated with this cluster. |
Channel |
getChannel()
|
int |
getChannelSendOptions()
|
int |
getChannelStartOptions()
|
ClusterDeployer |
getClusterDeployer()
get current Deployer |
String |
getClusterName()
Return the name of the cluster that this Server is currently configured to operate within. |
Container |
getContainer()
Get the Container associated with our Cluster |
String |
getInfo()
Return descriptive information about this Cluster implementation and the corresponding version number, in the format <description>/<version> . |
Member |
getLocalMember()
Return the member that represents this node. |
Log |
getLogger()
Returns the associates logger with this cluster. |
Manager |
getManager(String name)
|
String |
getManagerName(String name,
Manager manager)
|
Map<String,ClusterManager> |
getManagers()
|
ClusterManager |
getManagerTemplate()
|
Member[] |
getMembers()
Get all current cluster members |
Object |
getProperty(String key)
get current config |
Iterator<String> |
getPropertyNames()
Get all properties keys |
String |
getProtocol()
Get the protocol used by the cluster. |
Valve[] |
getValves()
get all cluster valves |
boolean |
hasMembers()
Returns that cluster has members. |
protected void |
initInternal()
|
boolean |
isHeartbeatBackgroundEnabled()
Return heartbeat enable flag (default false) |
boolean |
isNotifyLifecycleListenerOnFailure()
|
void |
lifecycleEvent(LifecycleEvent lifecycleEvent)
Use as base to handle start/stop/periodic Events from host. |
void |
memberAdded(Member member)
New cluster member is registered |
void |
memberDisappeared(Member member)
Cluster member is gone |
void |
messageReceived(ClusterMessage message)
|
void |
messageReceived(Serializable message,
Member sender)
Receive a message from the channel |
protected void |
registerClusterValve()
register all cluster valve to host or engine |
void |
registerManager(Manager manager)
Register a manager with the cluster. |
void |
removeClusterListener(ClusterListener listener)
Remove message listener and deregister Cluster from listener. |
void |
removeManager(Manager manager)
Remove an application from cluster replication bus. |
void |
removeProperty(String key)
remove a configured property. |
void |
send(ClusterMessage msg)
send message to all cluster members |
void |
send(ClusterMessage msg,
Member dest)
send a cluster message to one member |
void |
setChannel(Channel channel)
|
void |
setChannelSendOptions(int channelSendOptions)
|
void |
setChannelStartOptions(int channelStartOptions)
|
void |
setClusterDeployer(ClusterDeployer clusterDeployer)
set a new Deployer, must be set before cluster started! |
void |
setClusterName(String clusterName)
Set the name of the cluster to join, if no cluster with this name is present create one. |
void |
setContainer(Container container)
Set the Container associated with our Cluster |
void |
setHeartbeatBackgroundEnabled(boolean heartbeatBackgroundEnabled)
enabled that container backgroundThread call heartbeat at channel |
void |
setManagerTemplate(ClusterManager managerTemplate)
|
void |
setNotifyLifecycleListenerOnFailure(boolean notifyListenerOnFailure)
|
boolean |
setProperty(String name,
Object value)
set config attributes with reflect and propagate to all managers |
boolean |
setProperty(String name,
String value)
JMX hack to direct use at jconsole |
void |
setProtocol(String protocol)
Set the protocol parameters. |
protected void |
startInternal()
Start Cluster and implement the requirements of LifecycleBase.startInternal() . |
protected void |
stopInternal()
Stop Cluster and implement the requirements of LifecycleBase.startInternal() . |
String |
toString()
Return a String rendering of this object. |
protected void |
transferProperty(String prefix,
Object bean)
transfer properties from cluster configuration to subelement bean. |
protected void |
unregisterClusterValve()
unregister all cluster valve to host or engine |
Methods inherited from class org.apache.catalina.util.LifecycleBase |
---|
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, init, removeLifecycleListener, setState, setState, start, stop |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.catalina.ha.CatalinaCluster |
---|
start, stop |
Methods inherited from interface org.apache.catalina.tribes.ChannelListener |
---|
equals, hashCode |
Field Detail |
---|
public static final Log log
protected static final String info
public static final String BEFORE_MEMBERREGISTER_EVENT
public static final String AFTER_MEMBERREGISTER_EVENT
public static final String BEFORE_MANAGERREGISTER_EVENT
public static final String AFTER_MANAGERREGISTER_EVENT
public static final String BEFORE_MANAGERUNREGISTER_EVENT
public static final String AFTER_MANAGERUNREGISTER_EVENT
public static final String BEFORE_MEMBERUNREGISTER_EVENT
public static final String AFTER_MEMBERUNREGISTER_EVENT
public static final String SEND_MESSAGE_FAILURE_EVENT
public static final String RECEIVE_MESSAGE_FAILURE_EVENT
protected Channel channel
protected String clusterImpName
protected static final StringManager sm
protected String clusterName
protected boolean heartbeatBackgroundEnabled
GroupChannel.heartbeat()
protected Container container
protected PropertyChangeSupport support
protected Map<String,ClusterManager> managers
protected ClusterManager managerTemplate
protected List<ClusterListener> clusterListeners
protected boolean hasMembers
Constructor Detail |
---|
public SimpleTcpCluster()
Method Detail |
---|
public String getInfo()
<description>/<version>
.
getInfo
in interface Cluster
public boolean isHeartbeatBackgroundEnabled()
public void setHeartbeatBackgroundEnabled(boolean heartbeatBackgroundEnabled)
heartbeatBackgroundEnabled
- the heartbeatBackgroundEnabled to setpublic void setClusterName(String clusterName)
setClusterName
in interface Cluster
clusterName
- The clustername to joinpublic String getClusterName()
getClusterName
in interface Cluster
public void setContainer(Container container)
setContainer
in interface Cluster
container
- The Container to usepublic Container getContainer()
getContainer
in interface Cluster
public boolean isNotifyLifecycleListenerOnFailure()
public void setNotifyLifecycleListenerOnFailure(boolean notifyListenerOnFailure)
notifyListenerOnFailure
- The notifyLifecycleListenerOnFailure to set.public void addValve(Valve valve)
addValve
in interface CatalinaCluster
valve
- The new cluster Valve.public Valve[] getValves()
getValves
in interface CatalinaCluster
public ClusterListener[] findClusterListeners()
public void addClusterListener(ClusterListener listener)
addClusterListener
in interface CatalinaCluster
CatalinaCluster.addClusterListener(org.apache.catalina.ha.ClusterListener)
public void removeClusterListener(ClusterListener listener)
removeClusterListener
in interface CatalinaCluster
CatalinaCluster.removeClusterListener(org.apache.catalina.ha.ClusterListener)
public ClusterDeployer getClusterDeployer()
getClusterDeployer
in interface CatalinaCluster
public void setClusterDeployer(ClusterDeployer clusterDeployer)
setClusterDeployer
in interface CatalinaCluster
public void setChannel(Channel channel)
setChannel
in interface CatalinaCluster
public void setManagerTemplate(ClusterManager managerTemplate)
public void setChannelSendOptions(int channelSendOptions)
public boolean hasMembers()
CatalinaCluster
hasMembers
in interface CatalinaCluster
public Member[] getMembers()
getMembers
in interface CatalinaCluster
public Member getLocalMember()
getLocalMember
in interface CatalinaCluster
public boolean setProperty(String name, String value)
name
- value
- public boolean setProperty(String name, Object value)
setProperty
in interface IDynamicProperty
name
- value
- public Object getProperty(String key)
getProperty
in interface IDynamicProperty
key
-
public Iterator<String> getPropertyNames()
getPropertyNames
in interface IDynamicProperty
public void removeProperty(String key)
removeProperty
in interface IDynamicProperty
key
- protected void transferProperty(String prefix, Object bean)
prefix
- bean
- public Map<String,ClusterManager> getManagers()
getManagers
in interface CatalinaCluster
public Channel getChannel()
getChannel
in interface CatalinaCluster
public ClusterManager getManagerTemplate()
public int getChannelSendOptions()
public Manager createManager(String name)
createManager
in interface Cluster
name
- Context Name of this managerCluster.createManager(java.lang.String)
,
LifecycleBase.start()
public void registerManager(Manager manager)
Cluster
registerManager
in interface Cluster
manager
- Managerpublic void removeManager(Manager manager)
removeManager
in interface Cluster
manager
- ManagerCluster.removeManager(Manager)
public String getManagerName(String name, Manager manager)
getManagerName
in interface CatalinaCluster
name
- manager
-
public Manager getManager(String name)
getManager
in interface CatalinaCluster
public void backgroundProcess()
backgroundProcess
in interface Cluster
FarmWarDeployer.backgroundProcess()
,
GroupChannel.heartbeat()
,
GroupChannel.HeartbeatThread.run()
public void lifecycleEvent(LifecycleEvent lifecycleEvent)
lifecycleEvent
in interface LifecycleListener
lifecycleEvent
- LifecycleEvent that has occurredLifecycleListener.lifecycleEvent(org.apache.catalina.LifecycleEvent)
protected void initInternal()
initInternal
in class LifecycleBase
protected void startInternal() throws LifecycleException
LifecycleBase.startInternal()
.
startInternal
in class LifecycleBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedprotected void checkDefaults()
protected void registerClusterValve() throws Exception
Exception
ClassNotFoundException
protected void unregisterClusterValve() throws Exception
Exception
ClassNotFoundException
protected void stopInternal() throws LifecycleException
LifecycleBase.startInternal()
.
stopInternal
in class LifecycleBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedprotected void destroyInternal()
destroyInternal
in class LifecycleBase
public String toString()
toString
in class Object
public void send(ClusterMessage msg)
send
in interface CatalinaCluster
msg
- message to transferCatalinaCluster.send(org.apache.catalina.ha.ClusterMessage)
public void send(ClusterMessage msg, Member dest)
send
in interface CatalinaCluster
msg
- message to transferdest
- Receiver memberCatalinaCluster.send(org.apache.catalina.ha.ClusterMessage,
org.apache.catalina.tribes.Member)
public void memberAdded(Member member)
memberAdded
in interface MembershipListener
member
- Member - the member that was addedMembershipListener.memberAdded(org.apache.catalina.tribes.Member)
public void memberDisappeared(Member member)
memberDisappeared
in interface MembershipListener
member
- MemberMembershipListener.memberDisappeared(org.apache.catalina.tribes.Member)
public boolean accept(Serializable msg, Member sender)
accept
in interface ChannelListener
msg
- received Messagesender
- Member
public void messageReceived(Serializable message, Member sender)
ChannelListener
messageReceived
in interface ChannelListener
message
- Serializablesender
- - the source of the messagepublic void messageReceived(ClusterMessage message)
public Log getLogger()
CatalinaCluster
getLogger
in interface CatalinaCluster
public void setProtocol(String protocol)
Cluster
setProtocol
in interface Cluster
protocol
- The protocol used by the clusterCluster.setProtocol(java.lang.String)
public String getProtocol()
Cluster
getProtocol
in interface Cluster
Cluster.getProtocol()
public int getChannelStartOptions()
public void setChannelStartOptions(int channelStartOptions)
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |