blob: f48543c868a62879d3a8bf3eee4c2a47609d38d9 [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 */
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;
20import org.onosproject.net.provider.ProviderService;
tom0eb04ca2014-08-25 14:34:51 -070021
22import java.util.List;
23
24/**
25 * Service through which device providers can inject device information into
26 * the core.
27 */
tomd7356722014-08-26 01:07:39 -070028public interface DeviceProviderService extends ProviderService<DeviceProvider> {
tom0eb04ca2014-08-25 14:34:51 -070029
30 // TODO: define suspend and remove actions on the mezzanine administrative API
31
32 /**
33 * Signals the core that a device has connected or has been detected somehow.
34 *
Yuta HIGUCHI5c947272014-11-03 21:39:21 -080035 * @param deviceId device identifier
tom0eb04ca2014-08-25 14:34:51 -070036 * @param deviceDescription information about network device
37 */
tomd1c06492014-09-03 11:07:58 -070038 void deviceConnected(DeviceId deviceId, DeviceDescription deviceDescription);
tom0eb04ca2014-08-25 14:34:51 -070039
40 /**
41 * Signals the core that a device has disconnected or is no longer reachable.
42 *
tomd3097b02014-08-26 10:40:29 -070043 * @param deviceId identity of the device to be removed
tom0eb04ca2014-08-25 14:34:51 -070044 */
tomd3097b02014-08-26 10:40:29 -070045 void deviceDisconnected(DeviceId deviceId);
tom0eb04ca2014-08-25 14:34:51 -070046
47 /**
48 * Sends information about all ports of a device. It is up to the core to
49 * determine what has changed.
50 *
tom32f66842014-08-27 19:27:47 -070051 * @param deviceId identity of the device
52 * @param portDescriptions list of device ports
tom0eb04ca2014-08-25 14:34:51 -070053 */
tom32f66842014-08-27 19:27:47 -070054 void updatePorts(DeviceId deviceId, List<PortDescription> portDescriptions);
tom0eb04ca2014-08-25 14:34:51 -070055
56 /**
57 * Used to notify the core about port status change of a single port.
58 *
tom32f66842014-08-27 19:27:47 -070059 * @param deviceId identity of the device
60 * @param portDescription description of the port that changed
tom0eb04ca2014-08-25 14:34:51 -070061 */
tom32f66842014-08-27 19:27:47 -070062 void portStatusChanged(DeviceId deviceId, PortDescription portDescription);
tom0eb04ca2014-08-25 14:34:51 -070063
tom3f2bbd72014-09-24 12:07:58 -070064 /**
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -070065 * Notifies the core about the result of a RoleRequest sent to a device.
tom3f2bbd72014-09-24 12:07:58 -070066 *
67 * @param deviceId identity of the device
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -070068 * @param requested mastership role that was requested by the node
Yuta HIGUCHI5c947272014-11-03 21:39:21 -080069 * @param response mastership role the switch accepted
tom3f2bbd72014-09-24 12:07:58 -070070 */
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -070071 void receivedRoleReply(DeviceId deviceId, MastershipRole requested, MastershipRole response);
tom3f2bbd72014-09-24 12:07:58 -070072
tom0eb04ca2014-08-25 14:34:51 -070073}