blob: dfe0b23500b9113836ea89e22725bf9f6745af5d [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cluster;
tome4729872014-09-23 00:37:37 -070017
Madan Jampani7d2fab22015-03-18 17:21:57 -070018import org.joda.time.DateTime;
19import org.onlab.packet.IpAddress;
Jordan Haltermanf70bf462017-07-29 13:12:00 -070020import org.onosproject.core.Version;
Madan Jampani7d2fab22015-03-18 17:21:57 -070021import org.onosproject.store.Store;
22
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -070023import java.time.Instant;
24import java.util.Optional;
Thomas Vachuskade563cf2015-04-01 00:28:50 -070025import java.util.Set;
26
tome4729872014-09-23 00:37:37 -070027/**
28 * Manages inventory of controller cluster nodes; not intended for direct use.
29 */
tom0755a362014-09-24 11:54:43 -070030public interface ClusterStore extends Store<ClusterEvent, ClusterStoreDelegate> {
tome4729872014-09-23 00:37:37 -070031
32 /**
tomb41d1ac2014-09-24 01:51:24 -070033 * Returns the local controller node.
tome4729872014-09-23 00:37:37 -070034 *
35 * @return local controller instance
36 */
37 ControllerNode getLocalNode();
38
39 /**
40 * Returns the set of current cluster members.
41 *
42 * @return set of cluster members
43 */
44 Set<ControllerNode> getNodes();
45
46 /**
tomb41d1ac2014-09-24 01:51:24 -070047 * Returns the specified controller node.
tome4729872014-09-23 00:37:37 -070048 *
49 * @param nodeId controller instance identifier
50 * @return controller instance
51 */
52 ControllerNode getNode(NodeId nodeId);
53
54 /**
tomb41d1ac2014-09-24 01:51:24 -070055 * Returns the availability state of the specified controller node.
tome4729872014-09-23 00:37:37 -070056 *
57 * @param nodeId controller instance identifier
58 * @return availability state
59 */
60 ControllerNode.State getState(NodeId nodeId);
61
tomb41d1ac2014-09-24 01:51:24 -070062 /**
Jordan Haltermanf70bf462017-07-29 13:12:00 -070063 * Returns the version of the specified controller node.
64 *
65 * @param nodeId controller instance identifier
66 * @return controller version
67 */
68 Version getVersion(NodeId nodeId);
69
70 /**
Thomas Vachuska7a8de842016-03-07 20:56:35 -080071 * Marks the current node as fully started.
72 *
73 * @param started true indicates all components have been started
74 */
75 void markFullyStarted(boolean started);
76
77 /**
Madan Jampani7d2fab22015-03-18 17:21:57 -070078 * Returns the system when the availability state was last updated.
79 *
80 * @param nodeId controller node identifier
81 * @return system time when the availability state was last updated.
82 */
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -070083 default Instant getLastUpdatedInstant(NodeId nodeId) {
84 return Optional.ofNullable(getLastUpdated(nodeId))
85 .map(DateTime::getMillis)
86 .map(Instant::ofEpochMilli)
87 .orElse(null);
88 }
89
90 /**
91 * Returns the system when the availability state was last updated.
92 *
93 * @param nodeId controller node identifier
94 * @return system time when the availability state was last updated.
95 *
96 * @deprecated in 1.12.0
97 */
98 @Deprecated
99 default DateTime getLastUpdated(NodeId nodeId) {
100 return Optional.ofNullable(getLastUpdatedInstant(nodeId))
101 .map(Instant::toEpochMilli)
102 .map(DateTime::new)
103 .orElse(null);
104 }
Madan Jampani7d2fab22015-03-18 17:21:57 -0700105
106 /**
tomee49c372014-09-26 15:14:50 -0700107 * Adds a new controller node to the cluster.
108 *
109 * @param nodeId controller node identifier
110 * @param ip node IP listen address
111 * @param tcpPort tcp listen port
112 * @return newly added node
113 */
Pavlin Radoslavov444b5192014-10-28 10:45:19 -0700114 ControllerNode addNode(NodeId nodeId, IpAddress ip, int tcpPort);
tomee49c372014-09-26 15:14:50 -0700115
116 /**
tomb41d1ac2014-09-24 01:51:24 -0700117 * Removes the specified node from the inventory of cluster nodes.
118 *
119 * @param nodeId controller instance identifier
120 */
121 void removeNode(NodeId nodeId);
122
tome4729872014-09-23 00:37:37 -0700123}