blob: 277776f17af8cdff8526346b3133d4ad60f621af [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.servicemix.jms;
import org.apache.servicemix.common.management.MBeanServerHelper;
import javax.jbi.JBIException;
import javax.jbi.component.Bootstrap;
import javax.jbi.component.InstallationContext;
import javax.management.MBeanServer;
import javax.management.ObjectName;
public class JmsBootstrap implements Bootstrap {
protected InstallationContext context;
protected ObjectName mbeanName;
protected JmsConfiguration configuration;
public JmsBootstrap() {
}
public ObjectName getExtensionMBeanName() {
return mbeanName;
}
/* (non-Javadoc)
* @see org.apache.servicemix.common.BaseBootstrap#getExtensionMBean()
*/
protected Object getExtensionMBean() throws Exception {
return configuration;
}
protected ObjectName createExtensionMBeanName() throws Exception {
return this.context.getContext().getMBeanNames().createCustomComponentMBeanName("bootstrap");
}
/* (non-Javadoc)
* @see javax.jbi.component.Bootstrap#init(javax.jbi.component.InstallationContext)
*/
public void init(InstallationContext installContext) throws JBIException {
try {
this.context = installContext;
doInit();
} catch (JBIException e) {
throw e;
} catch (Exception e) {
throw new JBIException("Error calling init", e);
}
}
protected void doInit() throws Exception {
configuration = new JmsConfiguration();
configuration.setRootDir(this.context.getInstallRoot());
configuration.setComponentName(this.context.getComponentName());
configuration.load();
Object mbean = getExtensionMBean();
if (mbean != null) {
this.mbeanName = MBeanServerHelper.register(getMBeanServer(), createExtensionMBeanName(), mbean);
}
}
/* (non-Javadoc)
* @see javax.jbi.component.Bootstrap#cleanUp()
*/
public void cleanUp() throws JBIException {
try {
doCleanUp();
} catch (JBIException e) {
throw e;
} catch (Exception e) {
throw new JBIException("Error calling cleanUp", e);
}
}
protected void doCleanUp() throws Exception {
MBeanServerHelper.unregister(getMBeanServer(), mbeanName);
}
/* (non-Javadoc)
* @see javax.jbi.component.Bootstrap#onInstall()
*/
public void onInstall() throws JBIException {
try {
doOnInstall();
} catch (JBIException e) {
throw e;
} catch (Exception e) {
throw new JBIException("Error calling onInstall", e);
}
}
protected void doOnInstall() throws Exception {
}
/* (non-Javadoc)
* @see javax.jbi.component.Bootstrap#onUninstall()
*/
public void onUninstall() throws JBIException {
try {
doOnUninstall();
} catch (JBIException e) {
throw e;
} catch (Exception e) {
throw new JBIException("Error calling onUninstall", e);
}
}
protected void doOnUninstall() throws Exception {
}
/*
* Get the MBeanServer for the installation context
*/
private MBeanServer getMBeanServer() {
return this.context.getContext().getMBeanServer();
}
}