blob: d625da7537296a1c46369878e976c30f5d2e0425 [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.net.device;
tom0eb04ca2014-08-25 14:34:51 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.net.DeviceId;
19import org.onosproject.net.MastershipRole;
Saurav Dasa2d37502016-03-25 17:50:40 -070020import org.onosproject.net.PortNumber;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.net.provider.Provider;
tom0eb04ca2014-08-25 14:34:51 -070022
pierventred7cae132022-02-03 21:34:04 +010023import java.util.concurrent.CompletableFuture;
24
tom0eb04ca2014-08-25 14:34:51 -070025/**
26 * Abstraction of a device information provider.
27 */
28public interface DeviceProvider extends Provider {
tome33cc1a2014-08-25 21:59:41 -070029
tome33cc1a2014-08-25 21:59:41 -070030 /**
31 * Triggers an asynchronous probe of the specified device, intended to
Ayaka Koshibee8708e32014-10-22 13:40:18 -070032 * determine whether the device is present or not. An indirect result of this
tome33cc1a2014-08-25 21:59:41 -070033 * should be invocation of
Brian O'Connorabafb502014-12-02 22:26:20 -080034 * {@link org.onosproject.net.device.DeviceProviderService#deviceConnected} )} or
35 * {@link org.onosproject.net.device.DeviceProviderService#deviceDisconnected}
tome33cc1a2014-08-25 21:59:41 -070036 * at some later point in time.
37 *
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -080038 * @param deviceId ID of device to be probed
tome33cc1a2014-08-25 21:59:41 -070039 */
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -080040 void triggerProbe(DeviceId deviceId);
tome33cc1a2014-08-25 21:59:41 -070041
42 /**
43 * Notifies the provider of a mastership role change for the specified
44 * device as decided by the core.
45 *
Carmelo Cascone3977ea42019-02-28 13:43:42 -080046 * @param deviceId device identifier
47 * @param newRole newly determined mastership role
tome33cc1a2014-08-25 21:59:41 -070048 */
Yuta HIGUCHI54815322014-10-31 23:17:08 -070049 void roleChanged(DeviceId deviceId, MastershipRole newRole);
tome33cc1a2014-08-25 21:59:41 -070050
Ayaka Koshibee60d4522014-10-28 15:07:00 -070051 /**
52 * Checks the reachability (connectivity) of a device from this provider.
Aaron Kruglikov8e0a08a2016-06-21 14:31:03 -070053 * Reachability, unlike availability, denotes whether THIS particular node
54 * can send messages and receive replies from the specified device.
Carmelo Cascone3977ea42019-02-28 13:43:42 -080055 * <p>
56 * Implementations are encouraged to check for reachability by using only
57 * internal provider state, i.e., without blocking execution.
Ayaka Koshibee60d4522014-10-28 15:07:00 -070058 *
Carmelo Cascone3977ea42019-02-28 13:43:42 -080059 * @param deviceId device identifier
Ayaka Koshibee60d4522014-10-28 15:07:00 -070060 * @return true if reachable, false otherwise
61 */
Yuta HIGUCHI54815322014-10-31 23:17:08 -070062 boolean isReachable(DeviceId deviceId);
Saurav Dasa2d37502016-03-25 17:50:40 -070063
64 /**
Carmelo Cascone3977ea42019-02-28 13:43:42 -080065 * Checks the availability of the device from the provider perspective.
66 * Availability denotes whether the device is reachable by
67 * this node and able to perform its functions as expected (e.g., forward
68 * traffic).
69 *
70 * <p>
71 * Implementations are encouraged to check for availability by using only
72 * internal provider state, i.e., without blocking execution.
Saurav Dasa2d37502016-03-25 17:50:40 -070073 *
74 * @param deviceId device identifier
Carmelo Cascone3977ea42019-02-28 13:43:42 -080075 * @return completable future eventually true if available, false otherwise
76 */
77 default boolean isAvailable(DeviceId deviceId) {
78 // For most implementations such as OpenFlow, reachability is equivalent
79 // to availability.
80 return isReachable(deviceId);
81 }
82
83 /**
84 * Administratively enables or disables a port.
85 *
86 * @param deviceId device identifier
sangyun-hanb885ed02016-10-13 15:49:43 +090087 * @param portNumber port number
Carmelo Cascone3977ea42019-02-28 13:43:42 -080088 * @param enable true if port is to be enabled, false to disable
Saurav Dasa2d37502016-03-25 17:50:40 -070089 */
90 void changePortState(DeviceId deviceId, PortNumber portNumber,
91 boolean enable);
Thomas Vachuska5b38dc02018-05-10 15:24:40 -070092
93
94 /**
95 * Administratively triggers 'disconnection' from the device. This is meant
96 * purely in logical sense and is intended to apply equally to implementations
97 * relying on connectionless control protocols.
98 *
99 * An indirect result of this should be invocation of
100 * {@link org.onosproject.net.device.DeviceProviderService#deviceDisconnected}
101 * if the device was presently 'connected' and
102 * {@link org.onosproject.net.device.DeviceProviderService#deviceConnected}
103 * at some later point in time if the device is available and continues to
104 * be permitted to reconnect or if the provider continues to discover it.
105 *
106 * @param deviceId device identifier
107 */
108 default void triggerDisconnect(DeviceId deviceId) {
109 throw new UnsupportedOperationException(id() + " does not implement this feature");
110 }
111
pierventred7cae132022-02-03 21:34:04 +0100112 /**
113 * Probe the reachability of the device from the provider perspective.
114 * <p>
115 * Implementations are encouraged to provide an async implementation.
116 * With the respect of triggerProbe, this method returns whether or
117 * not was possible to send a message to the device from this instance.
118 * Instead, isReachable asses only the capability to send a message from
119 * this node but does not imply sending a message to the device.
120 *
121 * @param deviceId device identifier
122 * @return completable future eventually true if reachable, false otherwise
123 */
124 default CompletableFuture<Boolean> probeReachability(DeviceId deviceId) {
125 return CompletableFuture.completedFuture(isReachable(deviceId));
126 }
127
pierventreeed482b2022-02-18 05:16:48 -0800128 /**
129 * Return the grace period of this provider in milliseconds. With some devices, it might be
130 * required more time to establish a working channel. This method returns a grace period
131 * that should be respected before checking the reachability with the device.
132 *
133 * @return the grace period of the device. 0 if the device is expected to be immediately functional
134 */
135 default int gracePeriod() {
136 return 0;
137 }
138
tom0eb04ca2014-08-25 14:34:51 -0700139}