blob: 632eeecf64a78024055a6dc2093902c2b9e1ba4f [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;
Charles Chanb7f75ac2016-01-11 18:28:54 -080024import org.onlab.packet.VlanId;
25import org.onosproject.net.ConnectPoint;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070026import org.onosproject.net.DeviceId;
Charles Chan77277672015-10-20 16:24:19 -070027import org.onosproject.net.PortNumber;
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070028
29/**
30 * Mechanism through which group handler module retrieves
31 * the device specific attributes such as segment ID,
32 * Mac address...etc from group handler applications.
33 */
34public interface DeviceProperties {
35 /**
Charles Chan319d1a22015-11-03 10:42:14 -080036 * Checks if the device is configured.
37 *
38 * @param deviceId device identifier
39 * @return true if the device is configured
40 */
41 boolean isConfigured(DeviceId deviceId);
42
43 /**
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070044 * Returns the segment id of a device to be used in group creation.
45 *
46 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080047 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070048 * @return segment id of a device
49 */
Charles Chan319d1a22015-11-03 10:42:14 -080050 int getSegmentId(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070051
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070052 /**
53 * Returns the Mac address of a device to be used in group creation.
54 *
55 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080056 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070057 * @return mac address of a device
58 */
Charles Chan319d1a22015-11-03 10:42:14 -080059 MacAddress getDeviceMac(DeviceId deviceId) throws DeviceConfigNotFoundException;
60
61 /**
62 * Returns the router ip address of a segment router.
63 *
64 * @param deviceId device identifier
65 * @throws DeviceConfigNotFoundException if the device configuration is not found
66 * @return router ip address
67 */
68 Ip4Address getRouterIp(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070069
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070070 /**
71 * Indicates whether a device is edge device or transit/core device.
72 *
73 * @param deviceId device identifier
Charles Chan319d1a22015-11-03 10:42:14 -080074 * @throws DeviceConfigNotFoundException if the device configuration is not found
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070075 * @return boolean
76 */
Charles Chan319d1a22015-11-03 10:42:14 -080077 boolean isEdgeDevice(DeviceId deviceId) throws DeviceConfigNotFoundException;
Charles Chan77277672015-10-20 16:24:19 -070078
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -070079 /**
80 * Returns all segment IDs to be considered in building auto
81 *
82 * created groups.
83 * @return list of segment IDs
84 */
85 List<Integer> getAllDeviceSegmentIds();
Charles Chan77277672015-10-20 16:24:19 -070086
87 /**
88 * Returns subnet-to-ports mapping of given device.
89 *
90 * For each entry of the map
91 * Key: a subnet
92 * Value: a list of ports, which are bound to the subnet
93 *
94 * @param deviceId device identifier
95 * @return a map that contains all subnet-to-ports mapping of given device
Saurav Das52d4ed72016-03-28 19:00:18 -070096 * @throws DeviceConfigNotFoundException
Charles Chan77277672015-10-20 16:24:19 -070097 */
Saurav Das52d4ed72016-03-28 19:00:18 -070098 Map<Ip4Prefix, List<PortNumber>> getSubnetPortsMap(DeviceId deviceId)
99 throws DeviceConfigNotFoundException;
Charles Chanb7f75ac2016-01-11 18:28:54 -0800100
101 /**
102 * Returns the VLAN cross-connect configuration.
103 *
104 * @return A map of that maps VLAN ID to a list of cross-connect endpoints
105 */
106 Map<VlanId, List<ConnectPoint>> getXConnects();
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -0700107}