![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.ignite.internal.rest.configuration.AbstractConfigurationController Maven / Gradle / Ivy
The newest version!
/*
* 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.ignite.internal.rest.configuration;
import static org.apache.ignite.lang.ErrorGroups.Common.INTERNAL_ERR;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import org.apache.ignite.configuration.validation.ConfigurationValidationException;
import org.apache.ignite.internal.configuration.presentation.ConfigurationPresentation;
import org.apache.ignite.internal.rest.ResourceHolder;
import org.apache.ignite.lang.IgniteException;
/**
* Base configuration controller.
*/
public abstract class AbstractConfigurationController implements ResourceHolder {
/** Presentation of the configuration. */
private ConfigurationPresentation cfgPresentation;
public AbstractConfigurationController(ConfigurationPresentation cfgPresentation) {
this.cfgPresentation = cfgPresentation;
}
/**
* Returns configuration.
*
* @return the presentation of configuration.
*/
public String getConfiguration() {
return cfgPresentation.represent();
}
/**
* Returns configuration represented by path.
*
* @param path to represent a configuration.
* @return system configuration represented by given path.
*/
public String getConfigurationByPath(String path) {
try {
return cfgPresentation.representByPath(path);
} catch (IllegalArgumentException ex) {
throw new IgniteException(INTERNAL_ERR, ex);
}
}
/**
* Updates configuration.
*
* @param updatedConfiguration the configuration to update.
*/
public CompletableFuture updateConfiguration(String updatedConfiguration) {
return cfgPresentation.update(updatedConfiguration)
.exceptionally(ex -> {
if (ex instanceof CompletionException) {
var cause = ex.getCause();
if (cause instanceof IllegalArgumentException
|| cause instanceof ConfigurationValidationException) {
throw new IgniteException(INTERNAL_ERR, cause);
}
}
throw new IgniteException(INTERNAL_ERR, ex);
});
}
@Override
public void cleanResources() {
cfgPresentation = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy