blob: 72a604054d9d4d6ebd62d57cce61ec030a01752f [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
20import java.util.Set;
21
22/**
23 * Service for obtaining drivers and driver behaviour implementations.
24 */
Thomas Vachuska11b99fc2017-04-27 12:51:04 -070025public interface DriverService extends DriverRegistry {
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080026
27 /**
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070028 * Returns the overall set of drivers being provided.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080029 *
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080030 * @return provided drivers
31 */
Thomas Vachuska5c2f8132015-04-08 23:09:08 -070032 Set<Driver> getDrivers();
33
34 /**
35 * Returns the set of drivers which support the specified behaviour.
36 *
37 * @param withBehaviour behaviour class to query by
38 * @return provided drivers
39 */
40 Set<Driver> getDrivers(Class<? extends Behaviour> withBehaviour);
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080041
42 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070043 * Returns the driver for the specified device. If the device carries
44 * {@code driver} annotation, its value is used to look-up the driver.
45 * Otherwise, the device manufacturer, hardware and software version
46 * attributes are used to look-up the driver. First using their literal
47 * values and if no driver is found, using ERE matching against the
48 * driver manufacturer, hardware and software version fields.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080049 *
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070050 * @param deviceId device identifier
51 * @return driver or null of no matching one is found
52 * @throws org.onlab.util.ItemNotFoundException if device or driver for it
53 * are not found
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080054 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070055 Driver getDriver(DeviceId deviceId);
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080056
57 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070058 * Creates a new driver handler for interacting with the specified device.
59 * The driver is looked-up using the same semantics as
60 * {@link #getDriver(DeviceId)} method.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080061 *
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080062 * @param deviceId device identifier
63 * @param credentials optional login credentials in string form
64 * @return driver handler
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070065 * @throws org.onlab.util.ItemNotFoundException if device or driver for it
66 * are not found
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080067 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070068 DriverHandler createHandler(DeviceId deviceId, String... credentials);
69
70 // TODO: Devise a mechanism for retaining DriverData for devices
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080071
72}