blob: bb86aac8b6f5361254291fad301d18dda850ba09 [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 /**
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -070069 *
70 * @param deviceId device identifier
71 * @throws DeviceConfigNotFoundException if the device configuration is not found
72 * @return the pseudowire routing label for a leaf node
73 */
74 int getPWRoutingLabel(DeviceId deviceId) throws DeviceConfigNotFoundException;
75
76 /**
Pier Ventreadb4ae62016-11-23 09:57:42 -080077 * Returns the router ipv4 address of a segment router.
Charles Chan319d1a22015-11-03 10:42:14 -080078 *
79 * @param deviceId device identifier
80 * @throws DeviceConfigNotFoundException if the device configuration is not found
81 * @return router ip address
82 */
Pier Ventreadb4ae62016-11-23 09:57:42 -080083 IpAddress getRouterIpv4(DeviceId deviceId) throws DeviceConfigNotFoundException;
84
85 /**
86 * Returns the router ipv6 address of a segment router.
87 *
88 * @param deviceId device identifier
89 * @throws DeviceConfigNotFoundException if the device configuration is not found
90 * @return router ip address
91 */
92 IpAddress getRouterIpv6(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070093
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070094 /**
95 * Indicates whether a device is edge device or transit/core device.
96 *
97 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080098 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070099 * @return boolean
100 */
Charles Chan319d1a22015-11-03 10:42:14 -0800101 boolean isEdgeDevice(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -0700102
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -0700103 /**
pierventre30368ab2021-02-24 23:23:22 +0100104 * Returns a list of edge devices.
105 *
106 * @return list of the edge device ids
107 */
108 List<DeviceId> getEdgeDeviceIds();
109
110 /**
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -0700111 * Returns all segment IDs to be considered in building auto
112 *
113 * created groups.
114 * @return list of segment IDs
115 */
116 List<Integer> getAllDeviceSegmentIds();
Charles Chan77277672015-10-20 16:24:19 -0700117
118 /**
119 * Returns subnet-to-ports mapping of given device.
120 *
121 * For each entry of the map
122 * Key: a subnet
123 * Value: a list of ports, which are bound to the subnet
124 *
125 * @param deviceId device identifier
Ray Milkey2aa93382016-04-05 17:39:44 -0700126 * @throws DeviceConfigNotFoundException if the device configuration is not found
Charles Chan77277672015-10-20 16:24:19 -0700127 * @return a map that contains all subnet-to-ports mapping of given device
128 */
Pier Ventreb6a7f342016-11-26 21:05:22 -0800129 Map<IpPrefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId)
Saurav Das52d4ed72016-03-28 19:00:18 -0700130 throws DeviceConfigNotFoundException;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -0700131}