blob: f1667dba7887dd0c54d1ed295ff3fe3d5dac4584 [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 */
tom0eb04ca2014-08-25 14:34:51 -070016package org.onlab.onos.net.device;
17
tomd3097b02014-08-26 10:40:29 -070018import org.onlab.onos.net.DeviceId;
tom3f2bbd72014-09-24 12:07:58 -070019import org.onlab.onos.net.MastershipRole;
tomc1a38d32014-08-25 23:01:32 -070020import org.onlab.onos.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 *
35 * @param deviceDescription information about network device
36 */
tomd1c06492014-09-03 11:07:58 -070037 void deviceConnected(DeviceId deviceId, DeviceDescription deviceDescription);
tom0eb04ca2014-08-25 14:34:51 -070038
39 /**
40 * Signals the core that a device has disconnected or is no longer reachable.
41 *
tomd3097b02014-08-26 10:40:29 -070042 * @param deviceId identity of the device to be removed
tom0eb04ca2014-08-25 14:34:51 -070043 */
tomd3097b02014-08-26 10:40:29 -070044 void deviceDisconnected(DeviceId deviceId);
tom0eb04ca2014-08-25 14:34:51 -070045
46 /**
47 * Sends information about all ports of a device. It is up to the core to
48 * determine what has changed.
49 *
tom32f66842014-08-27 19:27:47 -070050 * @param deviceId identity of the device
51 * @param portDescriptions list of device ports
tom0eb04ca2014-08-25 14:34:51 -070052 */
tom32f66842014-08-27 19:27:47 -070053 void updatePorts(DeviceId deviceId, List<PortDescription> portDescriptions);
tom0eb04ca2014-08-25 14:34:51 -070054
55 /**
56 * Used to notify the core about port status change of a single port.
57 *
tom32f66842014-08-27 19:27:47 -070058 * @param deviceId identity of the device
59 * @param portDescription description of the port that changed
tom0eb04ca2014-08-25 14:34:51 -070060 */
tom32f66842014-08-27 19:27:47 -070061 void portStatusChanged(DeviceId deviceId, PortDescription portDescription);
tom0eb04ca2014-08-25 14:34:51 -070062
tom3f2bbd72014-09-24 12:07:58 -070063 /**
64 * Notifies the core about the providers inability to assert the specified
65 * mastership role on the device.
66 *
67 * @param deviceId identity of the device
Ayaka Koshibeee1c4672014-09-25 12:31:52 -070068 * @param role mastership role that was asserted but failed
tom3f2bbd72014-09-24 12:07:58 -070069 */
70 void unableToAssertRole(DeviceId deviceId, MastershipRole role);
71
tom0eb04ca2014-08-25 14:34:51 -070072}