blob: 825dc57b3cb7f9338153d9b356755022f28ee061 [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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent.impl;
Ray Milkey0742ec92014-10-13 08:39:55 -070017
Jonathan Hartf5e35802014-12-01 20:45:18 -080018import java.util.Arrays;
Pavlin Radoslavov1b787232015-02-23 15:07:31 -080019import java.util.Collections;
Jonathan Hartf5e35802014-12-01 20:45:18 -080020import java.util.HashMap;
21import java.util.List;
22import java.util.Map;
23import java.util.Set;
24
Ray Milkey0742ec92014-10-13 08:39:55 -070025import org.apache.felix.scr.annotations.Activate;
26import org.apache.felix.scr.annotations.Component;
27import org.apache.felix.scr.annotations.Deactivate;
28import org.apache.felix.scr.annotations.Reference;
29import org.apache.felix.scr.annotations.ReferenceCardinality;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.ConnectPoint;
31import org.onosproject.net.DeviceId;
32import org.onosproject.net.Link;
33import org.onosproject.net.Path;
34import org.onosproject.net.intent.Intent;
35import org.onosproject.net.intent.IntentCompiler;
36import org.onosproject.net.intent.IntentExtensionService;
37import org.onosproject.net.intent.LinkCollectionIntent;
38import org.onosproject.net.intent.MultiPointToSinglePointIntent;
39import org.onosproject.net.intent.PointToPointIntent;
40import org.onosproject.net.resource.LinkResourceAllocations;
41import org.onosproject.net.topology.PathService;
Ray Milkey0742ec92014-10-13 08:39:55 -070042
Pavlin Radoslavov1b787232015-02-23 15:07:31 -080043import com.google.common.collect.ImmutableSet;
Jonathan Hartf5e35802014-12-01 20:45:18 -080044import com.google.common.collect.Sets;
Thomas Vachuskab97cf282014-10-20 23:31:12 -070045
Ray Milkey0742ec92014-10-13 08:39:55 -070046/**
47 * An intent compiler for
Brian O'Connorabafb502014-12-02 22:26:20 -080048 * {@link org.onosproject.net.intent.MultiPointToSinglePointIntent}.
Ray Milkey0742ec92014-10-13 08:39:55 -070049 */
50@Component(immediate = true)
51public class MultiPointToSinglePointIntentCompiler
52 implements IntentCompiler<MultiPointToSinglePointIntent> {
53
54 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
55 protected IntentExtensionService intentManager;
56
57 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
58 protected PathService pathService;
59
Ray Milkey0742ec92014-10-13 08:39:55 -070060 @Activate
61 public void activate() {
Ray Milkey0742ec92014-10-13 08:39:55 -070062 intentManager.registerCompiler(MultiPointToSinglePointIntent.class, this);
63 }
64
65 @Deactivate
66 public void deactivate() {
67 intentManager.unregisterCompiler(PointToPointIntent.class);
68 }
69
70 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -070071 public List<Intent> compile(MultiPointToSinglePointIntent intent, List<Intent> installable,
72 Set<LinkResourceAllocations> resources) {
Jonathan Hartf5e35802014-12-01 20:45:18 -080073 Map<DeviceId, Link> links = new HashMap<>();
Ray Milkey0742ec92014-10-13 08:39:55 -070074
75 for (ConnectPoint ingressPoint : intent.ingressPoints()) {
76 Path path = getPath(ingressPoint, intent.egressPoint());
Jonathan Hartf5e35802014-12-01 20:45:18 -080077 for (Link link : path.links()) {
78 if (links.containsKey(link.src().deviceId())) {
79 // We've already reached the existing tree with the first
Pavlin Radoslavov1b787232015-02-23 15:07:31 -080080 // part of this path. Add the merging point with differen
81 // incoming port, but don't add the remainder of the path
Jonathan Hartf5e35802014-12-01 20:45:18 -080082 // in case it differs from the path we already have.
Pavlin Radoslavov1b787232015-02-23 15:07:31 -080083 links.put(link.src().deviceId(), link);
Jonathan Hartf5e35802014-12-01 20:45:18 -080084 break;
85 }
86
87 links.put(link.src().deviceId(), link);
88 }
Ray Milkey0742ec92014-10-13 08:39:55 -070089 }
90
Thomas Vachuskab97cf282014-10-20 23:31:12 -070091 Intent result = new LinkCollectionIntent(intent.appId(),
92 intent.selector(), intent.treatment(),
Pavlin Radoslavov1b787232015-02-23 15:07:31 -080093 Sets.newHashSet(links.values()),
94 intent.ingressPoints(),
95 ImmutableSet.of(intent.egressPoint()),
96 Collections.emptyList());
Ray Milkey0742ec92014-10-13 08:39:55 -070097 return Arrays.asList(result);
98 }
99
100 /**
101 * Computes a path between two ConnectPoints.
102 *
103 * @param one start of the path
104 * @param two end of the path
105 * @return Path between the two
Brian O'Connorabafb502014-12-02 22:26:20 -0800106 * @throws org.onosproject.net.intent.impl.PathNotFoundException if a path cannot be found
Ray Milkey0742ec92014-10-13 08:39:55 -0700107 */
108 private Path getPath(ConnectPoint one, ConnectPoint two) {
109 Set<Path> paths = pathService.getPaths(one.deviceId(), two.deviceId());
110 if (paths.isEmpty()) {
111 throw new PathNotFoundException("No path from " + one + " to " + two);
112 }
113 // TODO: let's be more intelligent about this eventually
114 return paths.iterator().next();
115 }
116}