// ======================================================================== // $Id: ServerMBean.java,v 1.12 2005/09/16 12:06:59 gregwilkins Exp $ // Copyright 1999-2004 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // ======================================================================== package net.lightbody.bmp.proxy.jetty.jetty.jmx; import net.lightbody.bmp.proxy.jetty.http.jmx.HttpServerMBean; import net.lightbody.bmp.proxy.jetty.jetty.Server; import net.lightbody.bmp.proxy.jetty.log.LogFactory; import net.lightbody.bmp.proxy.jetty.util.LogSupport; import org.apache.commons.logging.Log; import javax.management.InstanceNotFoundException; import javax.management.MBeanException; import javax.management.MBeanServer; import javax.management.ObjectName; import java.io.IOException; /* ------------------------------------------------------------ */ /** JettyServer MBean. * This Model MBean class provides the mapping for HttpServer * management methods. It also registers itself as a membership * listener of the HttpServer, so it can create and destroy MBean * wrappers for listeners and contexts. * * @version $Revision: 1.12 $ * @author Greg Wilkins (gregw) */ public class ServerMBean extends HttpServerMBean { private static Log log = LogFactory.getLog(ServerMBean.class); private Server _jettyServer; private String _configuration; /* ------------------------------------------------------------ */ /** Constructor. * @exception MBeanException * @exception InstanceNotFoundException */ public ServerMBean(Server jettyServer) throws MBeanException, InstanceNotFoundException { super(jettyServer); } /* ------------------------------------------------------------ */ /** Constructor. * @exception MBeanException * @exception InstanceNotFoundException */ public ServerMBean() throws MBeanException, InstanceNotFoundException { this(new Server()); } /* ------------------------------------------------------------ */ /** Constructor. * @param configuration URL or File to jetty.xml style configuration file * @exception IOException * @exception MBeanException * @exception InstanceNotFoundException */ public ServerMBean(String configuration) throws IOException,MBeanException, InstanceNotFoundException { this(new Server()); _configuration=configuration; } /* ------------------------------------------------------------ */ protected ObjectName newObjectName(MBeanServer server) { return uniqueObjectName(server, getDefaultDomain()+":Server="); } /* ------------------------------------------------------------ */ protected void defineManagedResource() { super.defineManagedResource(); defineAttribute("configuration"); defineAttribute("rootWebApp"); defineAttribute("webApplicationConfigurationClassNames"); defineOperation("addWebApplication", new String[]{"java.lang.String", "java.lang.String"}, IMPACT_ACTION); defineOperation("addWebApplication", new String[]{"java.lang.String", "java.lang.String", "java.lang.String"}, IMPACT_ACTION); defineOperation("addWebApplications", new String[]{"java.lang.String", "java.lang.String"}, IMPACT_ACTION); _jettyServer=(Server)getManagedResource(); } /* ------------------------------------------------------------ */ /** * @param ok */ public void postRegister(Boolean ok) { super.postRegister(ok); if (ok.booleanValue()) { if (_configuration!=null) { try { _jettyServer.configure(_configuration); _jettyServer.start(); } catch(Exception e) { log.warn(LogSupport.EXCEPTION,e); } } } } /* ------------------------------------------------------------ */ public void postDeregister() { _configuration=null; try { if (null!=_jettyServer) _jettyServer.stop(); } catch(Exception e) { log.warn(e); } finally { super.postDeregister(); } } }