blob: 6a6244bb3956521c1272b9052b3af34c2a16ab6b [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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 */
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070016package org.onlab.onos.mastership;
tomca90c462014-09-22 11:40:58 -070017
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070018import java.util.Set;
19
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070020import org.onlab.onos.cluster.NodeId;
Ayaka Koshibeabedb092014-10-20 17:01:31 -070021import org.onlab.onos.cluster.RoleInfo;
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070022import org.onlab.onos.net.DeviceId;
23import org.onlab.onos.net.MastershipRole;
24
tomca90c462014-09-22 11:40:58 -070025/**
26 * Service responsible for determining the controller instance mastership of
27 * a device in a clustered environment. This is the central authority for
28 * determining mastership, but is not responsible for actually applying it
29 * to the devices; this falls on the device service.
30 */
31public interface MastershipService {
32
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070033 /**
tomb41d1ac2014-09-24 01:51:24 -070034 * Returns the role of the local node for the specified device, without
35 * triggering master selection.
36 *
Yuta HIGUCHI2d48ced2014-10-04 21:35:03 -070037 * @param deviceId the the identifier of the device
tomb41d1ac2014-09-24 01:51:24 -070038 * @return role of the current node
39 */
40 MastershipRole getLocalRole(DeviceId deviceId);
41
42 /**
43 * Returns the mastership status of the local controller for a given
44 * device forcing master selection if necessary.
45 *
46 * @param deviceId the the identifier of the device
47 * @return the role of this controller instance
48 */
49 MastershipRole requestRoleFor(DeviceId deviceId);
50
51 /**
52 * Abandons mastership of the specified device on the local node thus
53 * forcing selection of a new master. If the local node is not a master
Ayaka Koshibec4047702014-10-07 14:43:52 -070054 * for this device, no master selection will occur.
tomb41d1ac2014-09-24 01:51:24 -070055 *
56 * @param deviceId the identifier of the device
57 */
58 void relinquishMastership(DeviceId deviceId);
59
60 /**
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070061 * Returns the current master for a given device.
62 *
63 * @param deviceId the identifier of the device
64 * @return the ID of the master controller for the device
65 */
tome4729872014-09-23 00:37:37 -070066 NodeId getMasterFor(DeviceId deviceId);
tomca90c462014-09-22 11:40:58 -070067
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070068 /**
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070069 * Returns controllers connected to a given device, in order of
70 * preference. The first entry in the list is the current master.
71 *
72 * @param deviceId the identifier of the device
73 * @return a list of controller IDs
74 */
Ayaka Koshibeabedb092014-10-20 17:01:31 -070075 RoleInfo getNodesFor(DeviceId deviceId);
Ayaka Koshibe45503ce2014-10-14 11:26:45 -070076
77 /**
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070078 * Returns the devices for which a controller is master.
79 *
tome4729872014-09-23 00:37:37 -070080 * @param nodeId the ID of the controller
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070081 * @return a set of device IDs
82 */
tome4729872014-09-23 00:37:37 -070083 Set<DeviceId> getDevicesOf(NodeId nodeId);
tomca90c462014-09-22 11:40:58 -070084
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070085 /**
tomfc9a4ff2014-09-22 18:22:47 -070086 * Adds the specified mastership change listener.
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070087 *
88 * @param listener the mastership listener
89 */
90 void addListener(MastershipListener listener);
91
92 /**
tomfc9a4ff2014-09-22 18:22:47 -070093 * Removes the specified mastership change listener.
Ayaka Koshibe8b3270f2014-09-22 13:44:42 -070094 *
95 * @param listener the mastership listener
96 */
Ayaka Koshibe8d504a92014-09-22 17:07:36 -070097 void removeListener(MastershipListener listener);
tomca90c462014-09-22 11:40:58 -070098
99}