blob: 30b8f12283481d5b024ce8d1154e0b801d2a4ef0 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
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.mastership;
tomca90c462014-09-22 11:40:58 -070017
Madan Jampani565a66a2015-07-25 17:01:13 -070018import static org.onosproject.net.MastershipRole.MASTER;
19
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070020import java.util.Set;
Madan Jampanide003d92015-05-11 17:14:20 -070021import java.util.concurrent.CompletableFuture;
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070022
Brian O'Connorabafb502014-12-02 22:26:20 -080023import org.onosproject.cluster.NodeId;
24import org.onosproject.cluster.RoleInfo;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070025import org.onosproject.event.ListenerService;
Brian O'Connorabafb502014-12-02 22:26:20 -080026import org.onosproject.net.DeviceId;
27import org.onosproject.net.MastershipRole;
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070028
tomca90c462014-09-22 11:40:58 -070029/**
30 * Service responsible for determining the controller instance mastership of
31 * a device in a clustered environment. This is the central authority for
32 * determining mastership, but is not responsible for actually applying it
33 * to the devices; this falls on the device service.
34 */
Thomas Vachuska42e8cce2015-07-29 19:25:18 -070035public interface MastershipService
36 extends ListenerService<MastershipEvent, MastershipListener> {
tomca90c462014-09-22 11:40:58 -070037
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070038 /**
tomb41d1ac2014-09-24 01:51:24 -070039 * Returns the role of the local node for the specified device, without
40 * triggering master selection.
41 *
Yuta HIGUCHI2d48ced2014-10-04 21:35:03 -070042 * @param deviceId the the identifier of the device
tomb41d1ac2014-09-24 01:51:24 -070043 * @return role of the current node
44 */
45 MastershipRole getLocalRole(DeviceId deviceId);
46
47 /**
Madan Jampani565a66a2015-07-25 17:01:13 -070048 * Returns true if the local controller is the Master for the specified deviceId.
49 *
50 * @param deviceId the the identifier of the device
51 * @return true if local node is master; false otherwise
52 */
53 default boolean isLocalMaster(DeviceId deviceId) {
54 return getLocalRole(deviceId) == MASTER;
55 }
56
57 /**
tomb41d1ac2014-09-24 01:51:24 -070058 * Returns the mastership status of the local controller for a given
59 * device forcing master selection if necessary.
60 *
61 * @param deviceId the the identifier of the device
62 * @return the role of this controller instance
63 */
Madan Jampanide003d92015-05-11 17:14:20 -070064 CompletableFuture<MastershipRole> requestRoleFor(DeviceId deviceId);
tomb41d1ac2014-09-24 01:51:24 -070065
66 /**
67 * Abandons mastership of the specified device on the local node thus
68 * forcing selection of a new master. If the local node is not a master
Ayaka Koshibec4047702014-10-07 14:43:52 -070069 * for this device, no master selection will occur.
tomb41d1ac2014-09-24 01:51:24 -070070 *
71 * @param deviceId the identifier of the device
Madan Jampanic6e574f2015-05-29 13:41:52 -070072 * @return future that is completed when relinquish is complete
tomb41d1ac2014-09-24 01:51:24 -070073 */
Madan Jampanic6e574f2015-05-29 13:41:52 -070074 CompletableFuture<Void> relinquishMastership(DeviceId deviceId);
tomb41d1ac2014-09-24 01:51:24 -070075
76 /**
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070077 * Returns the current master for a given device.
78 *
79 * @param deviceId the identifier of the device
80 * @return the ID of the master controller for the device
81 */
tome4729872014-09-23 00:37:37 -070082 NodeId getMasterFor(DeviceId deviceId);
tomca90c462014-09-22 11:40:58 -070083
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070084 /**
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070085 * Returns controllers connected to a given device, in order of
86 * preference. The first entry in the list is the current master.
87 *
88 * @param deviceId the identifier of the device
89 * @return a list of controller IDs
90 */
Ayaka Koshibeabedb092014-10-20 17:01:31 -070091 RoleInfo getNodesFor(DeviceId deviceId);
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070092
93 /**
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070094 * Returns the devices for which a controller is master.
95 *
tome4729872014-09-23 00:37:37 -070096 * @param nodeId the ID of the controller
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070097 * @return a set of device IDs
98 */
tome4729872014-09-23 00:37:37 -070099 Set<DeviceId> getDevicesOf(NodeId nodeId);
tomca90c462014-09-22 11:40:58 -0700100
tomca90c462014-09-22 11:40:58 -0700101}