/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.cluster.datastore.config; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.opendaylight.controller.cluster.access.concepts.MemberName; import org.opendaylight.controller.cluster.datastore.shardstrategy.ShardStrategy; import org.opendaylight.controller.cluster.datastore.shardstrategy.ShardStrategyFactory; public class ConfigurationImpl implements Configuration { private volatile Map moduleConfigMap; // Look up maps to speed things up private volatile Map namespaceToModuleName; private volatile Set allShardNames; public ConfigurationImpl(final String moduleShardsConfigPath, final String modulesConfigPath) { this(new FileModuleShardConfigProvider(moduleShardsConfigPath, modulesConfigPath)); } public ConfigurationImpl(final ModuleShardConfigProvider provider) { ImmutableMap.Builder mapBuilder = ImmutableMap.builder(); for(Map.Entry e: provider.retrieveModuleConfigs(this).entrySet()) { mapBuilder.put(e.getKey(), e.getValue().build()); } this.moduleConfigMap = mapBuilder.build(); this.allShardNames = createAllShardNames(moduleConfigMap.values()); this.namespaceToModuleName = createNamespaceToModuleName(moduleConfigMap.values()); } private static Set createAllShardNames(Iterable moduleConfigs) { final ImmutableSet.Builder builder = ImmutableSet.builder(); for(ModuleConfig moduleConfig : moduleConfigs) { builder.addAll(moduleConfig.getShardNames()); } return builder.build(); } private static Map createNamespaceToModuleName(Iterable moduleConfigs) { final ImmutableMap.Builder builder = ImmutableMap.builder(); for(ModuleConfig moduleConfig : moduleConfigs) { if(moduleConfig.getNameSpace() != null) { builder.put(moduleConfig.getNameSpace(), moduleConfig.getName()); } } return builder.build(); } @Override public Collection getMemberShardNames(final MemberName memberName){ Preconditions.checkNotNull(memberName, "memberName should not be null"); List shards = new ArrayList<>(); for (ModuleConfig moduleConfig: moduleConfigMap.values()) { for (ShardConfig shardConfig: moduleConfig.getShardConfigs()) { if(shardConfig.getReplicas().contains(memberName)) { shards.add(shardConfig.getName()); } } } return shards; } @Override public String getModuleNameFromNameSpace(final String nameSpace) { Preconditions.checkNotNull(nameSpace, "nameSpace should not be null"); return namespaceToModuleName.get(nameSpace); } @Override public ShardStrategy getStrategyForModule(String moduleName) { Preconditions.checkNotNull(moduleName, "moduleName should not be null"); ModuleConfig moduleConfig = moduleConfigMap.get(moduleName); return moduleConfig != null ? moduleConfig.getShardStrategy(): null; } @Override public String getShardNameForModule(final String moduleName) { Preconditions.checkNotNull(moduleName, "moduleName should not be null"); ModuleConfig moduleConfig = moduleConfigMap.get(moduleName); Collection shardConfigs = moduleConfig != null ? moduleConfig.getShardConfigs() : Collections.emptySet(); return !shardConfigs.isEmpty() ? shardConfigs.iterator().next().getName(): null; } @Override public Collection getMembersFromShardName(final String shardName) { Preconditions.checkNotNull(shardName, "shardName should not be null"); for(ModuleConfig moduleConfig: moduleConfigMap.values()) { ShardConfig shardConfig = moduleConfig.getShardConfig(shardName); if(shardConfig != null) { return shardConfig.getReplicas(); } } return Collections.emptyList(); } @Override public Set getAllShardNames() { return allShardNames; } @Override public Collection getUniqueMemberNamesForAllShards() { Set allNames = new HashSet<>(); for(String shardName: getAllShardNames()) { allNames.addAll(getMembersFromShardName(shardName)); } return allNames; } @Override public synchronized void addModuleShardConfiguration(ModuleShardConfiguration config) { Preconditions.checkNotNull(config, "ModuleShardConfiguration should not be null"); ModuleConfig moduleConfig = ModuleConfig.builder(config.getModuleName()). nameSpace(config.getNamespace().toASCIIString()). shardStrategy(createShardStrategy(config.getModuleName(), config.getShardStrategyName())). shardConfig(config.getShardName(), config.getShardMemberNames()).build(); updateModuleConfigMap(moduleConfig); namespaceToModuleName = ImmutableMap.builder().putAll(namespaceToModuleName). put(moduleConfig.getNameSpace(), moduleConfig.getName()).build(); allShardNames = ImmutableSet.builder().addAll(allShardNames).add(config.getShardName()).build(); } private ShardStrategy createShardStrategy(String moduleName, String shardStrategyName) { return ShardStrategyFactory.newShardStrategyInstance(moduleName, shardStrategyName, this); } @Override public boolean isShardConfigured(String shardName) { Preconditions.checkNotNull(shardName, "shardName should not be null"); return allShardNames.contains(shardName); } @Override public void addMemberReplicaForShard (String shardName, MemberName newMemberName) { Preconditions.checkNotNull(shardName, "shardName should not be null"); Preconditions.checkNotNull(newMemberName, "MemberName should not be null"); for(ModuleConfig moduleConfig: moduleConfigMap.values()) { ShardConfig shardConfig = moduleConfig.getShardConfig(shardName); if(shardConfig != null) { Set replicas = new HashSet<>(shardConfig.getReplicas()); replicas.add(newMemberName); updateModuleConfigMap(ModuleConfig.builder(moduleConfig).shardConfig(shardName, replicas).build()); return; } } } @Override public void removeMemberReplicaForShard (String shardName, MemberName newMemberName) { Preconditions.checkNotNull(shardName, "shardName should not be null"); Preconditions.checkNotNull(newMemberName, "MemberName should not be null"); for(ModuleConfig moduleConfig: moduleConfigMap.values()) { ShardConfig shardConfig = moduleConfig.getShardConfig(shardName); if(shardConfig != null) { Set replicas = new HashSet<>(shardConfig.getReplicas()); replicas.remove(newMemberName); updateModuleConfigMap(ModuleConfig.builder(moduleConfig).shardConfig(shardName, replicas).build()); return; } } } private void updateModuleConfigMap(ModuleConfig moduleConfig) { Map newModuleConfigMap = new HashMap<>(moduleConfigMap); newModuleConfigMap.put(moduleConfig.getName(), moduleConfig); moduleConfigMap = ImmutableMap.copyOf(newModuleConfigMap); } }