mirror of https://github.com/apache/nifi.git
NIFI-259 Removing StateProviderScope and refactoring to use Scope in its place.
This commit is contained in:
parent
f2c366cf9c
commit
257eca9c46
|
@ -29,6 +29,7 @@ import javax.xml.parsers.DocumentBuilder;
|
||||||
import javax.xml.parsers.DocumentBuilderFactory;
|
import javax.xml.parsers.DocumentBuilderFactory;
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
|
||||||
|
import org.apache.nifi.components.state.Scope;
|
||||||
import org.apache.nifi.controller.state.ConfigParseException;
|
import org.apache.nifi.controller.state.ConfigParseException;
|
||||||
import org.apache.nifi.util.DomUtils;
|
import org.apache.nifi.util.DomUtils;
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
|
@ -50,7 +51,7 @@ public class StateManagerConfiguration {
|
||||||
return providers.get(providerId);
|
return providers.get(providerId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<StateProviderConfiguration> getStateProviderConfigurations(final StateProviderScope scope) {
|
public List<StateProviderConfiguration> getStateProviderConfigurations(final Scope scope) {
|
||||||
final List<StateProviderConfiguration> configs = new ArrayList<>();
|
final List<StateProviderConfiguration> configs = new ArrayList<>();
|
||||||
for (final StateProviderConfiguration config : providers.values()) {
|
for (final StateProviderConfiguration config : providers.values()) {
|
||||||
if (config.getScope() == scope) {
|
if (config.getScope() == scope) {
|
||||||
|
@ -83,7 +84,7 @@ public class StateManagerConfiguration {
|
||||||
|
|
||||||
final Map<String, StateProviderConfiguration> configs = new HashMap<>();
|
final Map<String, StateProviderConfiguration> configs = new HashMap<>();
|
||||||
for (final Element localProviderElement : localProviderElements) {
|
for (final Element localProviderElement : localProviderElements) {
|
||||||
final StateProviderConfiguration providerConfig = parseProviderConfiguration(localProviderElement, StateProviderScope.LOCAL, configFile);
|
final StateProviderConfiguration providerConfig = parseProviderConfiguration(localProviderElement, Scope.LOCAL, configFile);
|
||||||
if (configs.containsKey(providerConfig.getId())) {
|
if (configs.containsKey(providerConfig.getId())) {
|
||||||
throw new ConfigParseException("State Management config file " + configFile + " is not a valid configuration file, "
|
throw new ConfigParseException("State Management config file " + configFile + " is not a valid configuration file, "
|
||||||
+ "as it contains multiple providers with the \"id\" of \"" + providerConfig.getId() + "\"");
|
+ "as it contains multiple providers with the \"id\" of \"" + providerConfig.getId() + "\"");
|
||||||
|
@ -94,7 +95,7 @@ public class StateManagerConfiguration {
|
||||||
|
|
||||||
final List<Element> clusterProviderElements = DomUtils.getChildElementsByTagName(rootElement, "cluster-provider");
|
final List<Element> clusterProviderElements = DomUtils.getChildElementsByTagName(rootElement, "cluster-provider");
|
||||||
for (final Element clusterProviderElement : clusterProviderElements) {
|
for (final Element clusterProviderElement : clusterProviderElements) {
|
||||||
final StateProviderConfiguration providerConfig = parseProviderConfiguration(clusterProviderElement, StateProviderScope.CLUSTER, configFile);
|
final StateProviderConfiguration providerConfig = parseProviderConfiguration(clusterProviderElement, Scope.CLUSTER, configFile);
|
||||||
if (configs.containsKey(providerConfig.getId())) {
|
if (configs.containsKey(providerConfig.getId())) {
|
||||||
throw new ConfigParseException("State Management config file " + configFile + " is not a valid configuration file, "
|
throw new ConfigParseException("State Management config file " + configFile + " is not a valid configuration file, "
|
||||||
+ "as it contains multiple providers with the \"id\" of \"" + providerConfig.getId() + "\"");
|
+ "as it contains multiple providers with the \"id\" of \"" + providerConfig.getId() + "\"");
|
||||||
|
@ -106,7 +107,7 @@ public class StateManagerConfiguration {
|
||||||
return new StateManagerConfiguration(configs);
|
return new StateManagerConfiguration(configs);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static StateProviderConfiguration parseProviderConfiguration(final Element providerElement, final StateProviderScope scope, final File configFile) throws ConfigParseException {
|
private static StateProviderConfiguration parseProviderConfiguration(final Element providerElement, final Scope scope, final File configFile) throws ConfigParseException {
|
||||||
final String elementName = providerElement.getNodeName();
|
final String elementName = providerElement.getNodeName();
|
||||||
|
|
||||||
final String id = DomUtils.getChildText(providerElement, "id");
|
final String id = DomUtils.getChildText(providerElement, "id");
|
||||||
|
|
|
@ -17,16 +17,18 @@
|
||||||
|
|
||||||
package org.apache.nifi.controller.state.config;
|
package org.apache.nifi.controller.state.config;
|
||||||
|
|
||||||
|
import org.apache.nifi.components.state.Scope;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public class StateProviderConfiguration {
|
public class StateProviderConfiguration {
|
||||||
private final String id;
|
private final String id;
|
||||||
private final StateProviderScope scope;
|
private final Scope scope;
|
||||||
private final String className;
|
private final String className;
|
||||||
private final Map<String, String> properties;
|
private final Map<String, String> properties;
|
||||||
|
|
||||||
public StateProviderConfiguration(final String id, final String className, final StateProviderScope scope, final Map<String, String> properties) {
|
public StateProviderConfiguration(final String id, final String className, final Scope scope, final Map<String, String> properties) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.className = className;
|
this.className = className;
|
||||||
this.scope = scope;
|
this.scope = scope;
|
||||||
|
@ -45,7 +47,7 @@ public class StateProviderConfiguration {
|
||||||
return properties;
|
return properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StateProviderScope getScope() {
|
public Scope getScope() {
|
||||||
return scope;
|
return scope;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
/*
|
|
||||||
* 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.nifi.controller.state.config;
|
|
||||||
|
|
||||||
public enum StateProviderScope {
|
|
||||||
/**
|
|
||||||
* Provider is a Local State Provider
|
|
||||||
*/
|
|
||||||
LOCAL,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provider is a Cluster State Provider
|
|
||||||
*/
|
|
||||||
CLUSTER;
|
|
||||||
}
|
|
|
@ -42,7 +42,6 @@ import org.apache.nifi.controller.state.StandardStateManager;
|
||||||
import org.apache.nifi.controller.state.StandardStateProviderInitializationContext;
|
import org.apache.nifi.controller.state.StandardStateProviderInitializationContext;
|
||||||
import org.apache.nifi.controller.state.config.StateManagerConfiguration;
|
import org.apache.nifi.controller.state.config.StateManagerConfiguration;
|
||||||
import org.apache.nifi.controller.state.config.StateProviderConfiguration;
|
import org.apache.nifi.controller.state.config.StateProviderConfiguration;
|
||||||
import org.apache.nifi.controller.state.config.StateProviderScope;
|
|
||||||
import org.apache.nifi.framework.security.util.SslContextFactory;
|
import org.apache.nifi.framework.security.util.SslContextFactory;
|
||||||
import org.apache.nifi.nar.ExtensionManager;
|
import org.apache.nifi.nar.ExtensionManager;
|
||||||
import org.apache.nifi.processor.StandardValidationContext;
|
import org.apache.nifi.processor.StandardValidationContext;
|
||||||
|
@ -77,17 +76,17 @@ public class StandardStateManagerProvider implements StateManagerProvider {
|
||||||
|
|
||||||
private static StateProvider createLocalStateProvider(final NiFiProperties properties) throws IOException, ConfigParseException {
|
private static StateProvider createLocalStateProvider(final NiFiProperties properties) throws IOException, ConfigParseException {
|
||||||
final File configFile = properties.getStateManagementConfigFile();
|
final File configFile = properties.getStateManagementConfigFile();
|
||||||
return createStateProvider(configFile, StateProviderScope.LOCAL, properties);
|
return createStateProvider(configFile, Scope.LOCAL, properties);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static StateProvider createClusteredStateProvider(final NiFiProperties properties) throws IOException, ConfigParseException {
|
private static StateProvider createClusteredStateProvider(final NiFiProperties properties) throws IOException, ConfigParseException {
|
||||||
final File configFile = properties.getStateManagementConfigFile();
|
final File configFile = properties.getStateManagementConfigFile();
|
||||||
return createStateProvider(configFile, StateProviderScope.CLUSTER, properties);
|
return createStateProvider(configFile, Scope.CLUSTER, properties);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static StateProvider createStateProvider(final File configFile, final StateProviderScope scope, final NiFiProperties properties) throws ConfigParseException, IOException {
|
private static StateProvider createStateProvider(final File configFile, final Scope scope, final NiFiProperties properties) throws ConfigParseException, IOException {
|
||||||
final String providerId;
|
final String providerId;
|
||||||
final String providerIdPropertyName;
|
final String providerIdPropertyName;
|
||||||
final String providerDescription;
|
final String providerDescription;
|
||||||
|
@ -121,7 +120,7 @@ public class StandardStateManagerProvider implements StateManagerProvider {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (providerId == null) {
|
if (providerId == null) {
|
||||||
if (scope == StateProviderScope.CLUSTER) {
|
if (scope == Scope.CLUSTER) {
|
||||||
throw new IllegalStateException("Cannot create Cluster State Provider because the '" + providerIdPropertyName
|
throw new IllegalStateException("Cannot create Cluster State Provider because the '" + providerIdPropertyName
|
||||||
+ "' property is missing from the NiFi Properties file. In order to run NiFi in a cluster, the " + providerIdPropertyName
|
+ "' property is missing from the NiFi Properties file. In order to run NiFi in a cluster, the " + providerIdPropertyName
|
||||||
+ " property must be configured in nifi.properties");
|
+ " property must be configured in nifi.properties");
|
||||||
|
|
Loading…
Reference in New Issue