📄 tomcattreebuilder.java
字号:
/*
* $Header: /home/cvs/jakarta-tomcat-catalina/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/TomcatTreeBuilder.java,v 1.9 2003/10/03 21:23:34 amyroh Exp $
* $Revision: 1.9 $
* $Date: 2003/10/03 21:23:34 $
*
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*/
package org.apache.webapp.admin;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Locale;
import java.net.URLEncoder;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.commons.modeler.ManagedBean;
import org.apache.commons.modeler.Registry;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.util.MessageResources;
import javax.management.AttributeNotFoundException;
import javax.management.MalformedObjectNameException;
import javax.management.MBeanServer;
import javax.management.MBeanServerFactory;
import javax.management.QueryExp;
import javax.management.Query;
import javax.management.ObjectInstance;
import javax.management.ObjectName;
import javax.management.JMException;
import javax.management.MBeanAttributeInfo;
import javax.management.MBeanInfo;
/**
* <p> Implementation of TreeBuilder interface for Tomcat Tree Controller
* to build plugin components into the tree
*
* @author Jazmin Jonson
* @author Manveen Kaur
* @author Amy Roh
* @version $Revision: 1.9 $ $Date: 2003/10/03 21:23:34 $
*/
public class TomcatTreeBuilder implements TreeBuilder{
// This SERVER_LABEL needs to be localized
private final static String SERVER_LABEL = "Tomcat Server";
public final static String DEFAULT_DOMAIN = "Catalina";
public final static String SERVER_TYPE = ":type=Server";
public final static String FACTORY_TYPE =
DEFAULT_DOMAIN + ":type=MBeanFactory";
public final static String SERVICE_TYPE = ":type=Service";
public final static String ENGINE_TYPE = ":type=Engine";
public final static String CONNECTOR_TYPE = ":type=Connector";
public final static String HOST_TYPE = ":type=Host";
public final static String CONTEXT_TYPE = ":type=Context";
public final static String DEFAULTCONTEXT_TYPE = ":type=DefaultContext";
public final static String LOADER_TYPE = ":type=Loader";
public final static String MANAGER_TYPE = ":type=Manager";
public final static String LOGGER_TYPE = ":type=Logger";
public final static String REALM_TYPE = ":type=Realm";
public final static String VALVE_TYPE = ":type=Valve";
public final static String WILDCARD = ",*";
private static MBeanServer mBServer = null;
public void buildTree(TreeControl treeControl,
ApplicationServlet servlet,
HttpServletRequest request) {
try {
mBServer = servlet.getServer();
TreeControlNode root = treeControl.getRoot();
MessageResources resources = (MessageResources)
servlet.getServletContext().getAttribute(Action.MESSAGES_KEY);
getServers(root, resources);
} catch(Throwable t){
t.printStackTrace(System.out);
}
}
public static ObjectName getMBeanFactory()
throws MalformedObjectNameException {
return new ObjectName(FACTORY_TYPE);
}
/**
* Append nodes for all defined servers.
*
* @param rootNode Root node for the tree control
* @param resources The MessageResources for our localized messages
* messages
*
* @exception Exception if an exception occurs building the tree
*/
public void getServers(TreeControlNode rootNode, MessageResources resources)
throws Exception {
String domain = rootNode.getDomain();
Iterator serverNames =
Lists.getServers(mBServer,domain).iterator();
while (serverNames.hasNext()) {
String serverName = (String) serverNames.next();
ObjectName objectName = new ObjectName(serverName);
String nodeLabel = SERVER_LABEL;
TreeControlNode serverNode =
new TreeControlNode(serverName,
"Server.gif",
nodeLabel,
"EditServer.do?select=" +
URLEncoder.encode(serverName) +
"&nodeLabel=" +
URLEncoder.encode(nodeLabel),
"content",
true, domain);
rootNode.addChild(serverNode);
getServices(serverNode, serverName, resources);
}
}
/**
* Append nodes for all defined services for the specified server.
*
* @param serverNode Server node for the tree control
* @param serverName Object name of the parent server
* @param resources The MessageResources for our localized messages
* messages
*
* @exception Exception if an exception occurs building the tree
*/
public void getServices(TreeControlNode serverNode, String serverName,
MessageResources resources) throws Exception {
String domain = serverNode.getDomain();
Iterator serviceNames =
Lists.getServices(mBServer, serverName).iterator();
while (serviceNames.hasNext()) {
String serviceName = (String) serviceNames.next();
ObjectName objectName = new ObjectName(serviceName);
String nodeLabel =
"Service (" + objectName.getKeyProperty("serviceName") + ")";
TreeControlNode serviceNode =
new TreeControlNode(serviceName,
"Service.gif",
nodeLabel,
"EditService.do?select=" +
URLEncoder.encode(serviceName) +
"&nodeLabel=" +
URLEncoder.encode(nodeLabel),
"content",
false, domain);
serverNode.addChild(serviceNode);
getConnectors(serviceNode, serviceName);
getDefaultContexts(serviceNode, serviceName, resources);
getHosts(serviceNode, serviceName, resources);
getLoggers(serviceNode, serviceName);
getRealms(serviceNode, serviceName);
getValves(serviceNode, serviceName);
}
}
/**
* Append nodes for all defined connectors for the specified service.
*
* @param serviceNode Service node for the tree control
* @param serviceName Object name of the parent service
*
* @exception Exception if an exception occurs building the tree
*/
public void getConnectors(TreeControlNode serviceNode, String serviceName)
throws Exception{
String domain = serviceNode.getDomain();
Iterator connectorNames =
Lists.getConnectors(mBServer, serviceName).iterator();
while (connectorNames.hasNext()) {
String connectorName = (String) connectorNames.next();
ObjectName objectName = new ObjectName(connectorName);
String nodeLabel =
"Connector (" + objectName.getKeyProperty("port") + ")";
TreeControlNode connectorNode =
new TreeControlNode(connectorName,
"Connector.gif",
nodeLabel,
"EditConnector.do?select=" +
URLEncoder.encode(connectorName) +
"&nodeLabel=" +
URLEncoder.encode(nodeLabel),
"content",
false, domain);
serviceNode.addChild(connectorNode);
}
}
/**
* Append nodes for all defined hosts for the specified service.
*
* @param serviceNode Service node for the tree control
* @param serviceName Object name of the parent service
* @param resources The MessageResources for our localized messages
* messages
*
* @exception Exception if an exception occurs building the tree
*/
public void getHosts(TreeControlNode serviceNode, String serviceName,
MessageResources resources) throws Exception {
String domain = serviceNode.getDomain();
Iterator hostNames =
Lists.getHosts(mBServer, serviceName).iterator();
while (hostNames.hasNext()) {
String hostName = (String) hostNames.next();
ObjectName objectName = new ObjectName(hostName);
String nodeLabel =
"Host (" + objectName.getKeyProperty("host") + ")";
TreeControlNode hostNode =
new TreeControlNode(hostName,
"Host.gif",
nodeLabel,
"EditHost.do?select=" +
URLEncoder.encode(hostName) +
"&nodeLabel=" +
URLEncoder.encode(nodeLabel),
"content",
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -