blob: 58b01bf78dda4cceb48f790c8a53f914a8d5a2a0 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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 */
tomedf06bb2014-08-27 16:22:15 -070016package org.onlab.onos.net.link;
17
alshabibb5522ff2014-09-29 19:20:00 -070018import java.util.Set;
19
tomeadbb462014-09-07 16:10:19 -070020import org.onlab.onos.net.ConnectPoint;
tomedf06bb2014-08-27 16:22:15 -070021import org.onlab.onos.net.DeviceId;
22import org.onlab.onos.net.Link;
23
tomedf06bb2014-08-27 16:22:15 -070024/**
25 * Service for interacting with the inventory of infrastructure links.
26 */
27public interface LinkService {
28
29 /**
tomeadbb462014-09-07 16:10:19 -070030 * Returns the count of all known infrastructure links.
31 *
32 * @return number of infrastructure links
33 */
34 int getLinkCount();
35
36 /**
tomedf06bb2014-08-27 16:22:15 -070037 * Returns a collection of all known infrastructure links.
38 *
39 * @return all infrastructure links
40 */
41 Iterable<Link> getLinks();
42
43 /**
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -080044 * Returns a collection of all active infrastructure links.
45 *
46 * @return all infrastructure links
47 */
48 Iterable<Link> getActiveLinks();
49
50 /**
tomedf06bb2014-08-27 16:22:15 -070051 * Returns set of all infrastructure links leading to and from the
52 * specified device.
53 *
54 * @param deviceId device identifier
55 * @return set of device links
56 */
57 Set<Link> getDeviceLinks(DeviceId deviceId);
58
59 /**
60 * Returns set of all infrastructure links leading from the specified device.
61 *
62 * @param deviceId device identifier
63 * @return set of device egress links
64 */
65 Set<Link> getDeviceEgressLinks(DeviceId deviceId);
66
67 /**
68 * Returns set of all infrastructure links leading to the specified device.
69 *
70 * @param deviceId device identifier
71 * @return set of device ingress links
72 */
tomd176fc42014-09-08 00:12:30 -070073 Set<Link> getDeviceIngressLinks(DeviceId deviceId);
tomedf06bb2014-08-27 16:22:15 -070074
75 /**
tomeadbb462014-09-07 16:10:19 -070076 * Returns set of all infrastructure links leading to and from the
77 * specified connection point.
78 *
79 * @param connectPoint connection point
80 * @return set of links
81 */
82 Set<Link> getLinks(ConnectPoint connectPoint);
83
84 /**
85 * Returns set of all infrastructure links leading from the specified
86 * connection point.
87 *
88 * @param connectPoint connection point
89 * @return set of device egress links
90 */
91 Set<Link> getEgressLinks(ConnectPoint connectPoint);
92
93 /**
94 * Returns set of all infrastructure links leading to the specified
95 * connection point.
96 *
97 * @param connectPoint connection point
98 * @return set of device ingress links
99 */
tomd176fc42014-09-08 00:12:30 -0700100 Set<Link> getIngressLinks(ConnectPoint connectPoint);
tomeadbb462014-09-07 16:10:19 -0700101
Thomas Vachuskaca60f2b2014-11-06 01:34:28 -0800102 // FIXME: I don't think this makes sense; discuss and remove or adjust return
103 // to be a Set<Link> or add Link.Type parameter
tomeadbb462014-09-07 16:10:19 -0700104 /**
tomd176fc42014-09-08 00:12:30 -0700105 * Returns the infrastructure links between the specified source
tomeadbb462014-09-07 16:10:19 -0700106 * and destination connection points.
107 *
108 * @param src source connection point
109 * @param dst destination connection point
tomd176fc42014-09-08 00:12:30 -0700110 * @return link from source to destination; null if none found
tomeadbb462014-09-07 16:10:19 -0700111 */
tomd176fc42014-09-08 00:12:30 -0700112 Link getLink(ConnectPoint src, ConnectPoint dst);
tomeadbb462014-09-07 16:10:19 -0700113
114 /**
tomedf06bb2014-08-27 16:22:15 -0700115 * Adds the specified link listener.
116 *
117 * @param listener link listener
118 */
119 void addListener(LinkListener listener);
120
121 /**
122 * Removes the specified link listener.
123 *
124 * @param listener link listener
125 */
126 void removeListener(LinkListener listener);
127
128}