blob: 64a2df76c6fc4a75a5792ee01a72d924b28f850b [file] [log] [blame]
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -07001/*
Brian O'Connor0947d7e2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
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
Pier Ventreadb4ae62016-11-23 09:57:42 -080018import org.onlab.packet.IpAddress;
Pier Ventreb6a7f342016-11-26 21:05:22 -080019import org.onlab.packet.IpPrefix;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070020import org.onlab.packet.MacAddress;
21import org.onosproject.net.DeviceId;
Charles Chan77277672015-10-20 16:24:19 -070022import org.onosproject.net.PortNumber;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070023
Pier Ventreadb4ae62016-11-23 09:57:42 -080024import java.util.List;
25import java.util.Map;
26
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070027/**
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 /**
Pier Ventreadb4ae62016-11-23 09:57:42 -080042 * Returns the IPv4 segment id of a device to be used in group creation.
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070043 *
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 */
Pier Ventreadb4ae62016-11-23 09:57:42 -080048 int getIPv4SegmentId(DeviceId deviceId) throws DeviceConfigNotFoundException;
49
50 /**
51 * Returns the IPv6 segment id of a device to be used in group creation.
52 *
53 * @param deviceId device identifier
54 * @throws DeviceConfigNotFoundException if the device configuration is not found
55 * @return segment id of a device
56 */
57 int getIPv6SegmentId(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070058
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070059 /**
60 * Returns the Mac address of a device to be used in group creation.
61 *
62 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080063 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070064 * @return mac address of a device
65 */
Charles Chan319d1a22015-11-03 10:42:14 -080066 MacAddress getDeviceMac(DeviceId deviceId) throws DeviceConfigNotFoundException;
67
68 /**
Pier Ventreadb4ae62016-11-23 09:57:42 -080069 * Returns the router ipv4 address of a segment router.
Charles Chan319d1a22015-11-03 10:42:14 -080070 *
71 * @param deviceId device identifier
72 * @throws DeviceConfigNotFoundException if the device configuration is not found
73 * @return router ip address
74 */
Pier Ventreadb4ae62016-11-23 09:57:42 -080075 IpAddress getRouterIpv4(DeviceId deviceId) throws DeviceConfigNotFoundException;
76
77 /**
78 * Returns the router ipv6 address of a segment router.
79 *
80 * @param deviceId device identifier
81 * @throws DeviceConfigNotFoundException if the device configuration is not found
82 * @return router ip address
83 */
84 IpAddress getRouterIpv6(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070085
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070086 /**
87 * Indicates whether a device is edge device or transit/core device.
88 *
89 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080090 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070091 * @return boolean
92 */
Charles Chan319d1a22015-11-03 10:42:14 -080093 boolean isEdgeDevice(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070094
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070095 /**
96 * Returns all segment IDs to be considered in building auto
97 *
98 * created groups.
99 * @return list of segment IDs
100 */
101 List<Integer> getAllDeviceSegmentIds();
Charles Chan77277672015-10-20 16:24:19 -0700102
103 /**
104 * Returns subnet-to-ports mapping of given device.
105 *
106 * For each entry of the map
107 * Key: a subnet
108 * Value: a list of ports, which are bound to the subnet
109 *
110 * @param deviceId device identifier
Ray Milkey2aa93382016-04-05 17:39:44 -0700111 * @throws DeviceConfigNotFoundException if the device configuration is not found
Charles Chan77277672015-10-20 16:24:19 -0700112 * @return a map that contains all subnet-to-ports mapping of given device
113 */
Pier Ventreb6a7f342016-11-26 21:05:22 -0800114 Map<IpPrefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId)
Saurav Das52d4ed72016-03-28 19:00:18 -0700115 throws DeviceConfigNotFoundException;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -0700116}