blob: 9e76e59991c158168fd76d194ae7d63ba4e9aa8b [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2013, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.rj.servi;
import java.lang.management.ManagementFactory;
import javax.management.JMException;
import javax.management.ObjectName;
import javax.management.OperationsException;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.jcommons.lang.Nullable;
import org.eclipse.statet.rj.servi.jmx.PoolConfigMXBean;
import org.eclipse.statet.rj.servi.pool.PoolConfig;
import org.eclipse.statet.rj.servi.pool.PoolServer;
@NonNullByDefault
public class MXPoolConfig extends PoolConfig implements PoolConfigMXBean {
private final PoolServer server;
private @Nullable ObjectName jmName;
public MXPoolConfig(final PoolServer server) throws JMException {
if (server == null) {
throw new NullPointerException("server");
}
this.server= server;
}
public void initJM() throws JMException {
final ObjectName jmName= new ObjectName(this.server.getJMBaseName() + "type=Server.PoolConfig");
this.jmName= jmName;
ManagementFactory.getPlatformMBeanServer().registerMBean(this, jmName);
}
public void disposeJM() throws JMException {
final ObjectName jmName= this.jmName;
if (jmName != null) {
this.jmName= null;
ManagementFactory.getPlatformMBeanServer().unregisterMBean(jmName);
}
}
@Override
public void apply() throws OperationsException {
synchronized (this) {
MXUtils.validate(this);
this.server.setPoolConfig(this);
}
}
@Override
public void loadActual() throws OperationsException {
this.server.getPoolConfig(this);
}
@Override
public void loadDefault() throws OperationsException {
load(new PoolConfig());
}
@Override
public void loadSaved() throws OperationsException {
MXUtils.load(this, this.server.getRJContext());
}
@Override
public void save() throws OperationsException {
MXUtils.save(this, this.server.getRJContext());
}
}