blob: c3f46ef7bc955113b8a3efab63c1d8bbfb02bddf [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -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 */
Sho SHIMIZU6c28f832015-02-20 16:12:19 -080016package org.onosproject.net.intent.impl.compiler;
Brian O'Connor66630c82014-10-02 21:08:19 -070017
Thomas Vachuskaab753e12016-06-13 19:41:05 -070018import com.google.common.collect.ImmutableList;
Brian O'Connor66630c82014-10-02 21:08:19 -070019import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Deactivate;
22import org.apache.felix.scr.annotations.Reference;
23import org.apache.felix.scr.annotations.ReferenceCardinality;
Brian O'Connorabafb502014-12-02 22:26:20 -080024import org.onosproject.net.DefaultLink;
25import org.onosproject.net.DefaultPath;
26import org.onosproject.net.Host;
27import org.onosproject.net.Link;
28import org.onosproject.net.Path;
29import org.onosproject.net.flow.TrafficSelector;
30import org.onosproject.net.host.HostService;
31import org.onosproject.net.intent.HostToHostIntent;
32import org.onosproject.net.intent.Intent;
33import org.onosproject.net.intent.PathIntent;
34import org.onosproject.net.intent.constraint.AsymmetricPathConstraint;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080035
Thomas Vachuska5dd52f72014-11-28 19:27:45 -080036import java.util.ArrayList;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080037import java.util.Arrays;
38import java.util.List;
Thomas Vachuskaab753e12016-06-13 19:41:05 -070039import java.util.Objects;
Brian O'Connor66630c82014-10-02 21:08:19 -070040
Brian O'Connorabafb502014-12-02 22:26:20 -080041import static org.onosproject.net.flow.DefaultTrafficSelector.builder;
tomf5c9d922014-10-03 15:22:03 -070042
Brian O'Connor66630c82014-10-02 21:08:19 -070043/**
44 * A intent compiler for {@link HostToHostIntent}.
45 */
46@Component(immediate = true)
47public class HostToHostIntentCompiler
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080048 extends ConnectivityIntentCompiler<HostToHostIntent> {
Brian O'Connor66630c82014-10-02 21:08:19 -070049
tomf5c9d922014-10-03 15:22:03 -070050 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
51 protected HostService hostService;
52
Brian O'Connor66630c82014-10-02 21:08:19 -070053 @Activate
54 public void activate() {
Brian O'Connor66630c82014-10-02 21:08:19 -070055 intentManager.registerCompiler(HostToHostIntent.class, this);
56 }
57
58 @Deactivate
59 public void deactivate() {
60 intentManager.unregisterCompiler(HostToHostIntent.class);
61 }
62
63 @Override
Sho SHIMIZUec07ffd2016-02-22 20:45:21 -080064 public List<Intent> compile(HostToHostIntent intent, List<Intent> installable) {
Thomas Vachuskaab753e12016-06-13 19:41:05 -070065 // If source and destination are the same, there are never any installables.
66 if (Objects.equals(intent.one(), intent.two())) {
67 return ImmutableList.of();
68 }
69
Thomas Vachuska5dd52f72014-11-28 19:27:45 -080070 boolean isAsymmetric = intent.constraints().contains(new AsymmetricPathConstraint());
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080071 Path pathOne = getPath(intent, intent.one(), intent.two());
Thomas Vachuska5dd52f72014-11-28 19:27:45 -080072 Path pathTwo = isAsymmetric ?
73 getPath(intent, intent.two(), intent.one()) : invertPath(pathOne);
Brian O'Connor66630c82014-10-02 21:08:19 -070074
tomf5c9d922014-10-03 15:22:03 -070075 Host one = hostService.getHost(intent.one());
76 Host two = hostService.getHost(intent.two());
77
78 return Arrays.asList(createPathIntent(pathOne, one, two, intent),
79 createPathIntent(pathTwo, two, one, intent));
80 }
81
Thomas Vachuska5dd52f72014-11-28 19:27:45 -080082 // Inverts the specified path. This makes an assumption that each link in
83 // the path has a reverse link available. Under most circumstances, this
84 // assumption will hold.
85 private Path invertPath(Path path) {
86 List<Link> reverseLinks = new ArrayList<>(path.links().size());
87 for (Link link : path.links()) {
88 reverseLinks.add(0, reverseLink(link));
89 }
90 return new DefaultPath(path.providerId(), reverseLinks, path.cost());
91 }
92
93 // Produces a reverse variant of the specified link.
94 private Link reverseLink(Link link) {
Ray Milkey2693bda2016-01-22 16:08:14 -080095 return DefaultLink.builder().providerId(link.providerId())
96 .src(link.dst())
97 .dst(link.src())
98 .type(link.type())
99 .state(link.state())
100 .isExpected(link.isExpected())
101 .build();
Thomas Vachuska5dd52f72014-11-28 19:27:45 -0800102 }
103
tomf5c9d922014-10-03 15:22:03 -0700104 // Creates a path intent from the specified path and original connectivity intent.
105 private Intent createPathIntent(Path path, Host src, Host dst,
106 HostToHostIntent intent) {
tom85258ee2014-10-07 00:10:02 -0700107 TrafficSelector selector = builder(intent.selector())
tomf5c9d922014-10-03 15:22:03 -0700108 .matchEthSrc(src.mac()).matchEthDst(dst.mac()).build();
Ray Milkeyebc5d222015-03-18 15:45:36 -0700109 return PathIntent.builder()
110 .appId(intent.appId())
111 .selector(selector)
112 .treatment(intent.treatment())
113 .path(path)
114 .constraints(intent.constraints())
115 .priority(intent.priority())
116 .build();
tomf5c9d922014-10-03 15:22:03 -0700117 }
118
Brian O'Connor66630c82014-10-02 21:08:19 -0700119}