![JAR search and dependency download from the Maven repository](/logo.png)
org.datacleaner.user.MutableServerInformationCatalog Maven / Gradle / Ivy
/**
* DataCleaner (community edition)
* Copyright (C) 2014 Free Software Foundation, Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.datacleaner.user;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import org.datacleaner.configuration.DomConfigurationWriter;
import org.datacleaner.configuration.ServerInformation;
import org.datacleaner.configuration.ServerInformationCatalog;
import org.datacleaner.server.HadoopClusterInformation;
import org.datacleaner.util.StringUtils;
/**
* Mutable/modifyable implementation of the {@link ServerInformationCatalog} interface. Used to
* allow the user to change the catalog of ServerInformation at runtime. This server information
* catalog wraps an immutable instance, which typically represents what is
* configured in datacleaner's xml file.
*/
public class MutableServerInformationCatalog implements ServerInformationCatalog {
private static final long serialVersionUID = 1L;
private final DomConfigurationWriter _configurationWriter;
private final List _listeners = new LinkedList<>();
private final List _updatedServerInformationList;
public MutableServerInformationCatalog(final ServerInformationCatalog immutableDelegate,
final DomConfigurationWriter configurationWriter) {
_configurationWriter = configurationWriter;
_updatedServerInformationList = new ArrayList<>();
final String[] serverNames = immutableDelegate.getServerNames();
for (final String name : serverNames) {
addServerInformation(immutableDelegate.getServer(name), false);
}
}
public void removeServer(final ServerInformation ds) {
removeServer(ds, true);
}
private synchronized void removeServer(final ServerInformation serverInformation, final boolean externalize) {
if (_updatedServerInformationList.remove(serverInformation)) {
for (final ServerInformationChangeListener listener : _listeners) {
listener.onRemove(serverInformation);
}
}
if (externalize) {
if (serverInformation instanceof HadoopClusterInformation) {
_configurationWriter.removeHadoopClusterServerInformation(serverInformation.getName());
}
}
}
public void addServerInformation(final ServerInformation serverInformation) {
addServerInformation(serverInformation, true);
}
private synchronized void addServerInformation(final ServerInformation sI, final boolean externalize) {
final String name = sI.getName();
if (StringUtils.isNullOrEmpty(name)) {
throw new IllegalArgumentException("Server has no name!");
}
for (final ServerInformation serverInformation : _updatedServerInformationList) {
if (name.equals(serverInformation.getName())) {
throw new IllegalArgumentException("A server with the name '" + name + "' already exists!");
}
}
_updatedServerInformationList.add(sI);
for (final ServerInformationChangeListener listener : _listeners) {
listener.onAdd(sI);
}
if (externalize) {
if (_configurationWriter.isExternalizable(sI)) {
_configurationWriter.externalize(sI);
}
}
}
@Override
public String[] getServerNames() {
final String[] names = new String[_updatedServerInformationList.size()];
for (int i = 0; i < names.length; i++) {
names[i] = _updatedServerInformationList.get(i).getName();
}
return names;
}
@Override
public ServerInformation getServer(final String name) {
if (name == null) {
return null;
}
for (final ServerInformation serverInformation : _updatedServerInformationList) {
if (name.equals(serverInformation.getName())) {
return serverInformation;
}
}
return null;
}
public void addListener(final ServerInformationChangeListener listener) {
_listeners.add(listener);
}
public void removeListener(final ServerInformationChangeListener listener) {
_listeners.remove(listener);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy