org.apache.tomcat.jdbc.pool.jmx.JmxUtil Maven / Gradle / Ivy
/*
* 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.tomcat.jdbc.pool.jmx;
import java.lang.management.ManagementFactory;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import org.apache.juli.logging.Log;
import org.apache.juli.logging.LogFactory;
public class JmxUtil {
private static final Log log = LogFactory.getLog(JmxUtil.class);
public static ObjectName registerJmx(ObjectName base, String keyprop, Object obj) {
ObjectName oname = null;
try {
oname = getObjectName(base, keyprop);
if (oname != null) {
ManagementFactory.getPlatformMBeanServer().registerMBean(obj, oname);
}
} catch (Exception e) {
log.error("Jmx registration failed.",e);
}
return oname;
}
public static void unregisterJmx(ObjectName oname) {
if (oname ==null) {
return;
}
try {
ManagementFactory.getPlatformMBeanServer().unregisterMBean(oname);
} catch (Exception e) {
log.error("Jmx unregistration failed.",e);
}
}
private static ObjectName getObjectName(ObjectName base, String keyprop)
throws MalformedObjectNameException {
if (base == null) {
return null;
}
StringBuilder OnameStr = new StringBuilder(base.toString());
if (keyprop != null) {
OnameStr.append(keyprop);
}
ObjectName oname = new ObjectName(OnameStr.toString());
return oname;
}
}