blob: a39c9567dfd41ed57c4a28dea7d7caebe4d0208a [file] [log] [blame]
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -07001/*
Charles Chan72f556a2015-10-05 17:50:33 -07002 * Copyright 2014-2015 Open Networking Laboratory
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -07003 *
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 */
Charles Chan319d1a22015-11-03 10:42:14 -080016package org.onosproject.segmentrouting.config;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070017
18import java.util.List;
Charles Chan77277672015-10-20 16:24:19 -070019import java.util.Map;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070020
Charles Chan319d1a22015-11-03 10:42:14 -080021import org.onlab.packet.Ip4Address;
Charles Chan77277672015-10-20 16:24:19 -070022import org.onlab.packet.Ip4Prefix;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070023import org.onlab.packet.MacAddress;
24import org.onosproject.net.DeviceId;
Charles Chan77277672015-10-20 16:24:19 -070025import org.onosproject.net.PortNumber;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070026
27/**
28 * Mechanism through which group handler module retrieves
29 * the device specific attributes such as segment ID,
30 * Mac address...etc from group handler applications.
31 */
32public interface DeviceProperties {
33 /**
Charles Chan319d1a22015-11-03 10:42:14 -080034 * Checks if the device is configured.
35 *
36 * @param deviceId device identifier
37 * @return true if the device is configured
38 */
39 boolean isConfigured(DeviceId deviceId);
40
41 /**
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070042 * Returns the segment id of a device to be used in group creation.
43 *
44 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080045 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070046 * @return segment id of a device
47 */
Charles Chan319d1a22015-11-03 10:42:14 -080048 int getSegmentId(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070049
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070050 /**
51 * Returns the Mac address of a device to be used in group creation.
52 *
53 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080054 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070055 * @return mac address of a device
56 */
Charles Chan319d1a22015-11-03 10:42:14 -080057 MacAddress getDeviceMac(DeviceId deviceId) throws DeviceConfigNotFoundException;
58
59 /**
60 * Returns the router ip address of a segment router.
61 *
62 * @param deviceId device identifier
63 * @throws DeviceConfigNotFoundException if the device configuration is not found
64 * @return router ip address
65 */
66 Ip4Address getRouterIp(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070067
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070068 /**
69 * Indicates whether a device is edge device or transit/core device.
70 *
71 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080072 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070073 * @return boolean
74 */
Charles Chan319d1a22015-11-03 10:42:14 -080075 boolean isEdgeDevice(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070076
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070077 /**
78 * Returns all segment IDs to be considered in building auto
79 *
80 * created groups.
81 * @return list of segment IDs
82 */
83 List<Integer> getAllDeviceSegmentIds();
Charles Chan77277672015-10-20 16:24:19 -070084
85 /**
86 * Returns subnet-to-ports mapping of given device.
87 *
88 * For each entry of the map
89 * Key: a subnet
90 * Value: a list of ports, which are bound to the subnet
91 *
92 * @param deviceId device identifier
93 * @return a map that contains all subnet-to-ports mapping of given device
94 */
95 Map<Ip4Prefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId);
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070096}