blob: e5c92492b31caba9ba084590cbb321d45baa5f46 [file] [log] [blame]
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -08001/*
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 */
16package org.onlab.onos.gui;
17
18import org.onlab.onos.net.ConnectPoint;
19import org.onlab.onos.net.Device;
20import org.onlab.onos.net.DeviceId;
21import org.onlab.onos.net.Host;
22import org.onlab.onos.net.HostId;
23import org.onlab.onos.net.Link;
24import org.onlab.onos.net.device.DeviceService;
25import org.onlab.onos.net.host.HostService;
26import org.onlab.onos.net.intent.HostToHostIntent;
27import org.onlab.onos.net.intent.Intent;
28import org.onlab.onos.net.intent.IntentService;
29import org.onlab.onos.net.intent.LinkCollectionIntent;
30import org.onlab.onos.net.intent.MultiPointToSinglePointIntent;
31import org.onlab.onos.net.intent.OpticalConnectivityIntent;
32import org.onlab.onos.net.intent.PathIntent;
33import org.onlab.onos.net.intent.PointToPointIntent;
34import org.onlab.onos.net.link.LinkService;
35
Thomas Vachuska164fa5c2014-12-02 21:59:41 -080036import java.util.ArrayList;
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -080037import java.util.HashSet;
38import java.util.List;
39import java.util.Set;
40
41import static org.onlab.onos.net.intent.IntentState.INSTALLED;
42
43/**
44 * Auxiliary facility to query the intent service based on the specified
45 * set of end-station hosts, edge points or infrastructure devices.
46 */
47public class TopologyViewIntentFilter {
48
49 private final IntentService intentService;
50 private final DeviceService deviceService;
51 private final HostService hostService;
52 private final LinkService linkService;
53
54 /**
55 * Crreates an intent filter.
56 *
57 * @param intentService intent service reference
58 * @param deviceService device service reference
59 * @param hostService host service reference
60 * @param linkService link service reference
61 */
62 TopologyViewIntentFilter(IntentService intentService,
63 DeviceService deviceService,
64 HostService hostService, LinkService linkService) {
65 this.intentService = intentService;
66 this.deviceService = deviceService;
67 this.hostService = hostService;
68 this.linkService = linkService;
69 }
70
71 /**
72 * Finds all path (host-to-host or point-to-point) intents that pertains
73 * to the given hosts.
74 *
Thomas Vachuska164fa5c2014-12-02 21:59:41 -080075 * @param hosts set of hosts to query by
76 * @param devices set of devices to query by
77 * @param sourceIntents collection of intents to search
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -080078 * @return set of intents that 'match' all hosts and devices given
79 */
Thomas Vachuska164fa5c2014-12-02 21:59:41 -080080 List<Intent> findPathIntents(Set<Host> hosts, Set<Device> devices,
81 Iterable<Intent> sourceIntents) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -080082 // Derive from this the set of edge connect points.
83 Set<ConnectPoint> edgePoints = getEdgePoints(hosts);
84
85 // Iterate over all intents and produce a set that contains only those
86 // intents that target all selected hosts or derived edge connect points.
Thomas Vachuska164fa5c2014-12-02 21:59:41 -080087 return getIntents(hosts, devices, edgePoints, sourceIntents);
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -080088 }
89
90
91 // Produces a set of edge points from the specified set of hosts.
92 private Set<ConnectPoint> getEdgePoints(Set<Host> hosts) {
93 Set<ConnectPoint> edgePoints = new HashSet<>();
94 for (Host host : hosts) {
95 edgePoints.add(host.location());
96 }
97 return edgePoints;
98 }
99
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800100 // Produces a list of intents that target all selected hosts, devices or connect points.
101 private List<Intent> getIntents(Set<Host> hosts, Set<Device> devices,
102 Set<ConnectPoint> edgePoints,
103 Iterable<Intent> sourceIntents) {
104 List<Intent> intents = new ArrayList<>();
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800105 if (hosts.isEmpty() && devices.isEmpty()) {
106 return intents;
107 }
108
109 Set<OpticalConnectivityIntent> opticalIntents = new HashSet<>();
110
111 // Search through all intents and see if they are relevant to our search.
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800112 for (Intent intent : sourceIntents) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800113 if (intentService.getIntentState(intent.id()) == INSTALLED) {
114 boolean isRelevant = false;
115 if (intent instanceof HostToHostIntent) {
116 isRelevant = isIntentRelevantToHosts((HostToHostIntent) intent, hosts) &&
117 isIntentRelevantToDevices(intent, devices);
118 } else if (intent instanceof PointToPointIntent) {
119 isRelevant = isIntentRelevant((PointToPointIntent) intent, edgePoints) &&
120 isIntentRelevantToDevices(intent, devices);
121 } else if (intent instanceof MultiPointToSinglePointIntent) {
122 isRelevant = isIntentRelevant((MultiPointToSinglePointIntent) intent, edgePoints) &&
123 isIntentRelevantToDevices(intent, devices);
124 } else if (intent instanceof OpticalConnectivityIntent) {
125 opticalIntents.add((OpticalConnectivityIntent) intent);
126 }
127 // TODO: add other intents, e.g. SinglePointToMultiPointIntent
128
129 if (isRelevant) {
130 intents.add(intent);
131 }
132 }
133 }
134
135 // As a second pass, try to link up any optical intents with the
136 // packet-level ones.
137 for (OpticalConnectivityIntent intent : opticalIntents) {
138 if (isIntentRelevant(intent, intents) &&
139 isIntentRelevantToDevices(intent, devices)) {
140 intents.add(intent);
141 }
142 }
143 return intents;
144 }
145
146 // Indicates whether the specified intent involves all of the given hosts.
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800147 private boolean isIntentRelevantToHosts(HostToHostIntent intent, Iterable<Host> hosts) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800148 for (Host host : hosts) {
149 HostId id = host.id();
150 // Bail if intent does not involve this host.
151 if (!id.equals(intent.one()) && !id.equals(intent.two())) {
152 return false;
153 }
154 }
155 return true;
156 }
157
158 // Indicates whether the specified intent involves all of the given devices.
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800159 private boolean isIntentRelevantToDevices(Intent intent, Iterable<Device> devices) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800160 List<Intent> installables = intentService.getInstallableIntents(intent.id());
161 for (Device device : devices) {
162 if (!isIntentRelevantToDevice(installables, device)) {
163 return false;
164 }
165 }
166 return true;
167 }
168
169 // Indicates whether the specified intent involves the given device.
170 private boolean isIntentRelevantToDevice(List<Intent> installables, Device device) {
Thomas Vachuska4731f122014-11-20 04:56:19 -0800171 if (installables != null) {
172 for (Intent installable : installables) {
173 if (installable instanceof PathIntent) {
174 PathIntent pathIntent = (PathIntent) installable;
175 if (pathContainsDevice(pathIntent.path().links(), device.id())) {
176 return true;
177 }
178 } else if (installable instanceof LinkCollectionIntent) {
179 LinkCollectionIntent linksIntent = (LinkCollectionIntent) installable;
180 if (pathContainsDevice(linksIntent.links(), device.id())) {
181 return true;
182 }
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800183 }
184 }
185 }
186 return false;
187 }
188
189 // Indicates whether the specified intent involves the given device.
190 private boolean pathContainsDevice(Iterable<Link> links, DeviceId id) {
191 for (Link link : links) {
192 if (link.src().elementId().equals(id) || link.dst().elementId().equals(id)) {
193 return true;
194 }
195 }
196 return false;
197 }
198
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800199 private boolean isIntentRelevant(PointToPointIntent intent,
200 Iterable<ConnectPoint> edgePoints) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800201 for (ConnectPoint point : edgePoints) {
202 // Bail if intent does not involve this edge point.
203 if (!point.equals(intent.egressPoint()) &&
204 !point.equals(intent.ingressPoint())) {
205 return false;
206 }
207 }
208 return true;
209 }
210
211 // Indicates whether the specified intent involves all of the given edge points.
212 private boolean isIntentRelevant(MultiPointToSinglePointIntent intent,
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800213 Iterable<ConnectPoint> edgePoints) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800214 for (ConnectPoint point : edgePoints) {
215 // Bail if intent does not involve this edge point.
216 if (!point.equals(intent.egressPoint()) &&
217 !intent.ingressPoints().contains(point)) {
218 return false;
219 }
220 }
221 return true;
222 }
223
224 // Indicates whether the specified intent involves all of the given edge points.
225 private boolean isIntentRelevant(OpticalConnectivityIntent opticalIntent,
Thomas Vachuska164fa5c2014-12-02 21:59:41 -0800226 Iterable<Intent> intents) {
Thomas Vachuska5fedb7a2014-11-20 00:55:08 -0800227 Link ccSrc = getFirstLink(opticalIntent.getSrc(), false);
228 Link ccDst = getFirstLink(opticalIntent.getDst(), true);
229
230 for (Intent intent : intents) {
231 List<Intent> installables = intentService.getInstallableIntents(intent.id());
232 for (Intent installable : installables) {
233 if (installable instanceof PathIntent) {
234 List<Link> links = ((PathIntent) installable).path().links();
235 if (links.size() == 3) {
236 Link tunnel = links.get(1);
237 if (tunnel.src().equals(ccSrc.src()) &&
238 tunnel.dst().equals(ccDst.dst())) {
239 return true;
240 }
241 }
242 }
243 }
244 }
245 return false;
246 }
247
248 private Link getFirstLink(ConnectPoint point, boolean ingress) {
249 for (Link link : linkService.getLinks(point)) {
250 if (point.equals(ingress ? link.src() : link.dst())) {
251 return link;
252 }
253 }
254 return null;
255 }
256
257}