blob: 51cd183c77c559fee3b9d5e6ac254deab8887c5d [file] [log] [blame]
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
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 Vachuska635c2d72015-05-08 14:32:13 -070025public interface DriverService extends DriverResolver {
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 Vachuskaa8f4e7d2015-01-08 17:31:55 -080043 * Returns the driver that matches the specified primordial device
44 * discovery information.
45 *
46 * @param mfr device manufacturer
47 * @param hw device hardware name/version
48 * @param sw device software version
49 * @return driver or null of no matching one is found
50 */
51 Driver getDriver(String mfr, String hw, String sw);
52
53 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070054 * Returns the driver for the specified device. If the device carries
55 * {@code driver} annotation, its value is used to look-up the driver.
56 * Otherwise, the device manufacturer, hardware and software version
57 * attributes are used to look-up the driver. First using their literal
58 * values and if no driver is found, using ERE matching against the
59 * driver manufacturer, hardware and software version fields.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080060 *
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070061 * @param deviceId device identifier
62 * @return driver or null of no matching one is found
63 * @throws org.onlab.util.ItemNotFoundException if device or driver for it
64 * are not found
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080065 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070066 Driver getDriver(DeviceId deviceId);
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080067
68 /**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070069 * Creates a new driver handler for interacting with the specified device.
70 * The driver is looked-up using the same semantics as
71 * {@link #getDriver(DeviceId)} method.
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080072 *
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080073 * @param deviceId device identifier
74 * @param credentials optional login credentials in string form
75 * @return driver handler
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070076 * @throws org.onlab.util.ItemNotFoundException if device or driver for it
77 * are not found
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080078 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070079 DriverHandler createHandler(DeviceId deviceId, String... credentials);
80
81 // TODO: Devise a mechanism for retaining DriverData for devices
Thomas Vachuskaa8f4e7d2015-01-08 17:31:55 -080082
83}