blob: 2b7930b79f5aedd27c56ef1c4533e93aa3b7b808 [file] [log] [blame]
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -08003 *
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 */
16package org.onosproject.net.driver;
17
18import org.onosproject.net.DeviceId;
19
Seyeon Jeong1e249102020-03-10 17:41:14 -070020import java.util.Map;
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080021import java.util.Set;
22
23/**
24 * Service for obtaining drivers and driver behaviour implementations.
25 */
Thomas Vachuska11b99fc2017-04-27 12:51:04 -070026public interface DriverService extends DriverRegistry {
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080027
28 /**
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070029 * Returns the overall set of drivers being provided.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080030 *
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080031 * @return provided drivers
32 */
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070033 Set<Driver> getDrivers();
34
35 /**
36 * Returns the set of drivers which support the specified behaviour.
37 *
38 * @param withBehaviour behaviour class to query by
39 * @return provided drivers
40 */
41 Set<Driver> getDrivers(Class<? extends Behaviour> withBehaviour);
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080042
43 /**
Thomas Vachuska164ecf62018-05-08 17:29:55 -070044 * Returns the driver for the specified device. If the network configuration
45 * for the specified device carries the {@code driver} property or if the
46 * device carries the {@code driver} annotation, they will be used to look-up
47 * the driver, in respective order.
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070048 * Otherwise, the device manufacturer, hardware and software version
49 * attributes are used to look-up the driver. First using their literal
50 * values and if no driver is found, using ERE matching against the
51 * driver manufacturer, hardware and software version fields.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080052 *
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070053 * @param deviceId device identifier
54 * @return driver or null of no matching one is found
55 * @throws org.onlab.util.ItemNotFoundException if device or driver for it
56 * are not found
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080057 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070058 Driver getDriver(DeviceId deviceId);
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080059
60 /**
Seyeon Jeong1e249102020-03-10 17:41:14 -070061 * Returns a map between all devices and their driver names.
62 *
63 * @return map of (device id, driver name)
64 */
65 Map<DeviceId, String> getDeviceDrivers();
66
67 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070068 * Creates a new driver handler for interacting with the specified device.
69 * The driver is looked-up using the same semantics as
70 * {@link #getDriver(DeviceId)} method.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080071 *
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080072 * @param deviceId device identifier
73 * @param credentials optional login credentials in string form
74 * @return driver handler
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070075 * @throws org.onlab.util.ItemNotFoundException if device or driver for it
76 * are not found
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080077 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070078 DriverHandler createHandler(DeviceId deviceId, String... credentials);
79
80 // TODO: Devise a mechanism for retaining DriverData for devices
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080081
82}