|
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.ha.ClusterListener org.apache.catalina.ha.deploy.FarmWarDeployer
public class FarmWarDeployer
A farm war deployer is a class that is able to deploy/undeploy web applications in WAR from within the cluster.
Any host can act as the admin, and will have three directories
Field Summary | |
---|---|
protected File |
appBase
The host appBase. |
protected File |
configBase
Path where context descriptors should be deployed. |
protected String |
deployDir
|
protected HashMap<String,FileMessageFactory> |
fileFactories
|
protected Host |
host
The associated host. |
protected MBeanServer |
mBeanServer
MBean server. |
protected ObjectName |
oname
The associated deployer ObjectName. |
protected int |
processDeployFrequency
Frequency of the Farm watchDir check. |
protected boolean |
started
|
protected String |
tempDir
|
protected String |
watchDir
|
protected boolean |
watchEnabled
|
protected WarWatcher |
watcher
|
Fields inherited from class org.apache.catalina.ha.ClusterListener |
---|
cluster |
Constructor Summary | |
---|---|
FarmWarDeployer()
|
Method Summary | |
---|---|
boolean |
accept(ClusterMessage msg)
Before the cluster invokes messageReceived the cluster will ask the receiver to accept or decline the message, In the future, when messages get big, the accept method will only take a message header |
protected void |
addServiced(String name)
Invoke the check method on the deployer. |
void |
backgroundProcess()
call from container Background Process |
protected void |
check(String name)
Invoke the check method on the deployer. |
void |
cleanDeployDir()
|
protected boolean |
copy(File from,
File to)
Copy a file to the specified temp directory. |
boolean |
equals(Object listener)
|
void |
fileModified(File newWar)
|
void |
fileRemoved(File removeWar)
|
protected File |
getAppBase()
Return a File object representing the "application root" directory for our associated Host. |
String |
getDeployDir()
|
FileMessageFactory |
getFactory(FileMessage msg)
create factory for all transported war files |
String |
getInfo()
Return descriptive information about this deployer implementation and the corresponding version number, in the format <description>/<version> . |
int |
getProcessDeployFrequency()
Return the frequency of watcher checks. |
String |
getTempDir()
|
String |
getWatchDir()
|
boolean |
getWatchEnabled()
|
int |
hashCode()
|
void |
install(String contextName,
File webapp)
Install a new web application, whose web application archive is at the specified URL, into this container and all the other members of the cluster with the specified context name. |
protected boolean |
isServiced(String name)
Invoke the check method on the deployer. |
boolean |
isWatchEnabled()
|
void |
messageReceived(ClusterMessage msg)
Callback from the cluster, when a message is received, The cluster will broadcast it invoking the messageReceived on the receiver. |
protected void |
remove(String contextName)
Invoke the remove method on the deployer. |
void |
remove(String contextName,
boolean undeploy)
Remove an existing web application, attached to the specified context name. |
void |
removeFactory(FileMessage msg)
Remove file (war) from messages) |
protected void |
removeServiced(String name)
Invoke the check method on the deployer. |
void |
setDeployDir(String deployDir)
|
void |
setProcessDeployFrequency(int processExpiresFrequency)
Set the watcher checks frequency. |
void |
setTempDir(String tempDir)
|
void |
setWatchDir(String watchDir)
|
void |
setWatchEnabled(boolean watchEnabled)
|
void |
start()
Start the cluster deployer, the owning container will invoke this |
void |
stop()
Stops the cluster deployer, the owning container will invoke this |
protected void |
undeployDir(File dir)
Delete the specified directory, including all of its contents and subdirectories recursively. |
Methods inherited from class org.apache.catalina.ha.ClusterListener |
---|
accept, getCluster, messageReceived, setCluster |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.catalina.ha.ClusterDeployer |
---|
getCluster, setCluster |
Methods inherited from interface org.apache.catalina.tribes.ChannelListener |
---|
accept, messageReceived |
Field Detail |
---|
protected boolean started
protected HashMap<String,FileMessageFactory> fileFactories
protected String deployDir
protected String tempDir
protected String watchDir
protected boolean watchEnabled
protected WarWatcher watcher
protected int processDeployFrequency
protected File configBase
protected Host host
protected File appBase
protected MBeanServer mBeanServer
protected ObjectName oname
Constructor Detail |
---|
public FarmWarDeployer()
Method Detail |
---|
public String getInfo()
<description>/<version>
.
public void start() throws Exception
ClusterDeployer
start
in interface ClusterDeployer
Exception
- - if failure to start clusterpublic void stop() throws LifecycleException
ClusterDeployer
stop
in interface ClusterDeployer
LifecycleException
public void cleanDeployDir()
public void messageReceived(ClusterMessage msg)
messageReceived
in class ClusterListener
msg
- ClusterMessage - the message received from the clusterpublic FileMessageFactory getFactory(FileMessage msg) throws FileNotFoundException, IOException
msg
-
FileNotFoundException
IOException
public void removeFactory(FileMessage msg)
msg
- public boolean accept(ClusterMessage msg)
accept
in class ClusterListener
msg
- ClusterMessage
public void install(String contextName, File webapp) throws IOException
If this application is successfully installed locally, a ContainerEvent
of type INSTALL_EVENT
will be sent to all registered
listeners, with the newly created Context
as an argument.
install
in interface ClusterDeployer
contextName
- The context name to which this application should be installed
(must be unique)webapp
- A WAR file or unpacked directory structure containing the web
application to be installed
IllegalArgumentException
- if the specified context name is malformed
IllegalStateException
- if the specified context name is already deployed
IOException
- if an input/output error was encountered during
installationpublic void remove(String contextName, boolean undeploy) throws IOException
REMOVE_EVENT
will be sent to all registered
listeners, with the removed Context
as an argument.
Deletes the web application war file and/or directory if they exist in
the Host's appBase.
remove
in interface ClusterDeployer
contextName
- The context name of the application to be removedundeploy
- boolean flag to remove web application from server
IllegalArgumentException
- if the specified context name is malformed
IllegalArgumentException
- if the specified context name does not identify a
currently installed web application
IOException
- if an input/output error occurs during removalpublic void fileModified(File newWar)
fileModified
in interface FileChangeListener
public void fileRemoved(File removeWar)
fileRemoved
in interface FileChangeListener
protected File getAppBase()
protected void remove(String contextName) throws Exception
Exception
protected void undeployDir(File dir)
dir
- File object representing the directory to be deletedpublic void backgroundProcess()
ClusterDeployer
backgroundProcess
in interface ClusterDeployer
protected void check(String name) throws Exception
Exception
protected boolean isServiced(String name) throws Exception
Exception
protected void addServiced(String name) throws Exception
Exception
protected void removeServiced(String name) throws Exception
Exception
public boolean equals(Object listener)
equals
in interface ChannelListener
equals
in class ClusterListener
listener
- Object
Object.equals(Object)
public int hashCode()
hashCode
in interface ChannelListener
hashCode
in class ClusterListener
Object.hashCode()
public String getDeployDir()
public void setDeployDir(String deployDir)
public String getTempDir()
public void setTempDir(String tempDir)
public String getWatchDir()
public void setWatchDir(String watchDir)
public boolean isWatchEnabled()
public boolean getWatchEnabled()
public void setWatchEnabled(boolean watchEnabled)
public int getProcessDeployFrequency()
public void setProcessDeployFrequency(int processExpiresFrequency)
processExpiresFrequency
- the new manager checks frequencyprotected boolean copy(File from, File to)
from
- copy from tempto
- to host appBase directory
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |