blob: 24f6b30aecbc01e2cebae410d2844a0806e3571c [file] [log] [blame]
/*
* 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.shardingsphere.infra.yaml.config.swapper.rule;
import org.apache.shardingsphere.infra.config.rule.RuleConfiguration;
import org.apache.shardingsphere.infra.spi.type.ordered.OrderedSPILoader;
import org.apache.shardingsphere.infra.util.yaml.datanode.RepositoryTuple;
import java.util.Collection;
import java.util.LinkedList;
import java.util.Map;
import java.util.Optional;
/**
* YAML data node global rule configuration swapper engine.
*/
public final class YamlDataNodeGlobalRuleConfigurationSwapperEngine {
/**
* Swap to YAML global rule configurations.
*
* @param ruleConfigs rule configurations
* @return YAML global rule configurations
*/
@SuppressWarnings("rawtypes")
public Map<RuleConfiguration, YamlDataNodeGlobalRuleConfigurationSwapper> swapToYamlRuleConfigurations(final Collection<RuleConfiguration> ruleConfigs) {
return OrderedSPILoader.getServices(YamlDataNodeGlobalRuleConfigurationSwapper.class, ruleConfigs);
}
/**
* Swap from YAML global rule configurations to rule configurations.
*
* @param repositoryTuples repository tuples
* @return global rule configurations
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public Collection<RuleConfiguration> swapToRuleConfigurations(final Collection<RepositoryTuple> repositoryTuples) {
Collection<RuleConfiguration> result = new LinkedList<>();
for (YamlDataNodeGlobalRuleConfigurationSwapper each : OrderedSPILoader.getServices(YamlDataNodeGlobalRuleConfigurationSwapper.class)) {
each.swapToObject(repositoryTuples).ifPresent(optional -> result.add((RuleConfiguration) optional));
}
return result;
}
/**
* Swap from single YAML global rule configuration to rule configurations.
*
* @param ruleName rule name
* @param repositoryTuples repository tuples
* @return global rule configuration
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public Optional<RuleConfiguration> swapSingleRuleToRuleConfiguration(final String ruleName, final Collection<RepositoryTuple> repositoryTuples) {
for (YamlDataNodeGlobalRuleConfigurationSwapper each : OrderedSPILoader.getServices(YamlDataNodeGlobalRuleConfigurationSwapper.class)) {
if (ruleName.equals(each.getRuleTagName().toLowerCase())) {
return each.swapToObject(repositoryTuples);
}
}
return Optional.empty();
}
}