blob: 0cf30a7c2510321b2e8cf164aaf540bf72ca6d4b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.catalina.storeconfig;
import javax.management.DynamicMBean;
import javax.management.ObjectName;
import org.apache.catalina.Lifecycle;
import org.apache.catalina.LifecycleEvent;
import org.apache.catalina.LifecycleListener;
import org.apache.catalina.Server;
import org.apache.catalina.mbeans.MBeanUtils;
import org.apache.juli.logging.Log;
import org.apache.juli.logging.LogFactory;
import org.apache.tomcat.util.modeler.ManagedBean;
import org.apache.tomcat.util.modeler.Registry;
import org.apache.tomcat.util.res.StringManager;
/**
* Loads and registers a StoreConfig MBean with the name
* <i>Catalina:type=StoreConfig</i>. This listener should only be used with a
* {@link Server}.
*/
public class StoreConfigLifecycleListener implements LifecycleListener {
private static Log log = LogFactory.getLog(StoreConfigLifecycleListener.class);
private static StringManager sm =
StringManager.getManager(StoreConfigLifecycleListener.class.getName());
/**
* The configuration information registry for our managed beans.
*/
protected final Registry registry = MBeanUtils.createRegistry();
IStoreConfig storeConfig;
private String storeConfigClass = "org.apache.catalina.storeconfig.StoreConfig";
private String storeRegistry = null;
private ObjectName oname = null;
/*
* register StoreRegistry after Start the complete Server
*
* @see org.apache.catalina.LifecycleListener#lifecycleEvent(org.apache.catalina.LifecycleEvent)
*/
@Override
public void lifecycleEvent(LifecycleEvent event) {
if (Lifecycle.AFTER_START_EVENT.equals(event.getType())) {
if (event.getSource() instanceof Server) {
createMBean((Server) event.getSource());
} else {
log.warn(sm.getString("storeConfigListener.notServer"));
}
} else if (Lifecycle.AFTER_STOP_EVENT.equals(event.getType())) {
if (oname != null) {
registry.unregisterComponent(oname);
oname = null;
}
}
}
/**
* create StoreConfig MBean and load StoreRegistry MBeans name is
* <i>Catalina:type=StoreConfig </i>
*/
protected void createMBean(Server server) {
StoreLoader loader = new StoreLoader();
try {
Class<?> clazz = Class.forName(getStoreConfigClass(), true, this
.getClass().getClassLoader());
storeConfig = (IStoreConfig) clazz.newInstance();
if (null == getStoreRegistry())
// default Loading
loader.load();
else
// load a special file registry (url)
loader.load(getStoreRegistry());
// use the loader Registry
storeConfig.setRegistry(loader.getRegistry());
storeConfig.setServer(server);
} catch (Exception e) {
log.error("createMBean load", e);
return;
}
try {
// Note: Hard-coded domain used since this object is per Server/JVM
oname = new ObjectName("Catalina:type=StoreConfig" );
registry.registerComponent(storeConfig, oname, "StoreConfig");
} catch (Exception ex) {
log.error("createMBean register MBean", ex);
}
}
/**
* Create a ManagedBean (StoreConfig)
*
* @param object
* @return The bean
* @throws Exception
*/
protected DynamicMBean getManagedBean(Object object) throws Exception {
ManagedBean managedBean = registry.findManagedBean("StoreConfig");
return managedBean.createMBean(object);
}
/**
* @return Returns the storeConfig.
*/
public IStoreConfig getStoreConfig() {
return storeConfig;
}
/**
* @param storeConfig
* The storeConfig to set.
*/
public void setStoreConfig(IStoreConfig storeConfig) {
this.storeConfig = storeConfig;
}
/**
* @return Returns the storeConfigClass.
*/
public String getStoreConfigClass() {
return storeConfigClass;
}
/**
* @param storeConfigClass
* The storeConfigClass to set.
*/
public void setStoreConfigClass(String storeConfigClass) {
this.storeConfigClass = storeConfigClass;
}
/**
* @return Returns the storeRegistry.
*/
public String getStoreRegistry() {
return storeRegistry;
}
/**
* @param storeRegistry
* The storeRegistry to set.
*/
public void setStoreRegistry(String storeRegistry) {
this.storeRegistry = storeRegistry;
}
}