StoreConfigLifecycleListener.java
/*
* 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>.
* <p>
* This listener must only be nested within {@link Server} elements.
*/
public class StoreConfigLifecycleListener implements LifecycleListener {
private static Log log = LogFactory.getLog(StoreConfigLifecycleListener.class);
private static StringManager sm = StringManager.getManager(StoreConfigLifecycleListener.class);
/**
* 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", event.getLifecycle().getClass().getSimpleName()));
}
} 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 <code>Catalina:type=StoreConfig</code>.
*
* @param server The Server instance
*/
protected void createMBean(Server server) {
StoreLoader loader = new StoreLoader();
try {
Class<?> clazz = Class.forName(getStoreConfigClass(), true, this.getClass().getClassLoader());
storeConfig = (IStoreConfig) clazz.getConstructor().newInstance();
loader.load(getStoreRegistry());
// use the loader Registry
storeConfig.setRegistry(loader.getRegistry());
storeConfig.setServer(server);
} catch (Exception e) {
log.error(sm.getString("storeConfigListener.loadError"), 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(sm.getString("storeConfigListener.registerError"), ex);
}
}
/**
* Create a ManagedBean (StoreConfig).
*
* @param object The object to manage
*
* @return an MBean wrapping the object
*
* @throws Exception if an error occurred
*/
protected DynamicMBean getManagedBean(Object object) throws Exception {
ManagedBean managedBean = registry.findManagedBean("StoreConfig");
return managedBean.createMBean(object);
}
/**
* @return the store config instance
*/
public IStoreConfig getStoreConfig() {
return storeConfig;
}
/**
* @param storeConfig The storeConfig to set.
*/
public void setStoreConfig(IStoreConfig storeConfig) {
this.storeConfig = storeConfig;
}
/**
* @return the main store config class name
*/
public String getStoreConfigClass() {
return storeConfigClass;
}
/**
* @param storeConfigClass The storeConfigClass to set.
*/
public void setStoreConfigClass(String storeConfigClass) {
this.storeConfigClass = storeConfigClass;
}
/**
* @return the store registry
*/
public String getStoreRegistry() {
return storeRegistry;
}
/**
* @param storeRegistry The storeRegistry to set.
*/
public void setStoreRegistry(String storeRegistry) {
this.storeRegistry = storeRegistry;
}
}