970f9f6ac62a55d3d5154332c889c1ccf0967f4f
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / config / Configuration.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.datastore.config;
10
11 import java.util.Collection;
12 import java.util.Set;
13 import javax.annotation.Nonnull;
14 import javax.annotation.Nullable;
15 import org.opendaylight.controller.cluster.access.concepts.MemberName;
16 import org.opendaylight.controller.cluster.datastore.shardstrategy.ShardStrategy;
17
18 public interface Configuration {
19
20     /**
21      * Returns all the shard names that belong on the member by the given name.
22      */
23     @Nonnull Collection<String> getMemberShardNames(@Nonnull MemberName memberName);
24
25     /**
26      * Returns the module name for the given namespace name or null if not found.
27      */
28     @Nullable String getModuleNameFromNameSpace(@Nonnull String nameSpace);
29
30     /**
31      * Returns the first shard name corresponding to the given module name or null if none is configured.
32      */
33     @Nullable String getShardNameForModule(@Nonnull String moduleName);
34
35     /**
36      * Returns the member replicas for the given shard name.
37      */
38     @Nonnull Collection<MemberName> getMembersFromShardName(@Nonnull String shardName);
39
40     /**
41      * Returns the ShardStrategy for the given module name or null if the module is not found.
42      */
43     @Nullable ShardStrategy getStrategyForModule(@Nonnull String moduleName);
44
45     /**
46      * Returns all the configured shard names.
47      */
48     Set<String> getAllShardNames();
49
50     /**
51      * Adds a new configuration for a module and shard.
52      */
53     void addModuleShardConfiguration(@Nonnull ModuleShardConfiguration config);
54
55     /**
56      * Returns a unique set of all member names configured for all shards.
57      */
58     Collection<MemberName> getUniqueMemberNamesForAllShards();
59
60     /*
61      * Verifies if the given module shard in available in the cluster
62      */
63     boolean isShardConfigured(String shardName);
64
65     /**
66      * Adds the given member as the new replica for the given shardName.
67      */
68     void addMemberReplicaForShard(String shardName, MemberName memberName);
69
70     /**
71      * Removes the given member as a replica for the given shardName.
72      */
73     void removeMemberReplicaForShard(String shardName, MemberName memberName);
74 }