blob: fdab18ed4856551aa5d742aee2160d53a2e96c5c [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'Connor66630c82014-10-02 21:08:19 -070016package org.onlab.onos.net.intent.impl;
17
Brian O'Connor66630c82014-10-02 21:08:19 -070018import org.apache.felix.scr.annotations.Activate;
19import org.apache.felix.scr.annotations.Component;
20import org.apache.felix.scr.annotations.Deactivate;
21import org.apache.felix.scr.annotations.Reference;
22import org.apache.felix.scr.annotations.ReferenceCardinality;
tomf5c9d922014-10-03 15:22:03 -070023import org.onlab.onos.net.Host;
Brian O'Connor66630c82014-10-02 21:08:19 -070024import org.onlab.onos.net.Path;
tomf5c9d922014-10-03 15:22:03 -070025import org.onlab.onos.net.flow.TrafficSelector;
26import org.onlab.onos.net.host.HostService;
Brian O'Connor66630c82014-10-02 21:08:19 -070027import org.onlab.onos.net.intent.HostToHostIntent;
Brian O'Connor66630c82014-10-02 21:08:19 -070028import org.onlab.onos.net.intent.Intent;
Brian O'Connor66630c82014-10-02 21:08:19 -070029import org.onlab.onos.net.intent.PathIntent;
Brian O'Connorfa81eae2014-10-30 13:20:05 -070030import org.onlab.onos.net.resource.LinkResourceAllocations;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080031
32import java.util.Arrays;
33import java.util.List;
Brian O'Connorfa81eae2014-10-30 13:20:05 -070034import java.util.Set;
Brian O'Connor66630c82014-10-02 21:08:19 -070035
tomf5c9d922014-10-03 15:22:03 -070036import static org.onlab.onos.net.flow.DefaultTrafficSelector.builder;
37
Brian O'Connor66630c82014-10-02 21:08:19 -070038/**
39 * A intent compiler for {@link HostToHostIntent}.
40 */
41@Component(immediate = true)
42public class HostToHostIntentCompiler
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080043 extends ConnectivityIntentCompiler<HostToHostIntent> {
Brian O'Connor66630c82014-10-02 21:08:19 -070044
tomf5c9d922014-10-03 15:22:03 -070045 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
46 protected HostService hostService;
47
Brian O'Connor66630c82014-10-02 21:08:19 -070048 @Activate
49 public void activate() {
Brian O'Connor66630c82014-10-02 21:08:19 -070050 intentManager.registerCompiler(HostToHostIntent.class, this);
51 }
52
53 @Deactivate
54 public void deactivate() {
55 intentManager.unregisterCompiler(HostToHostIntent.class);
56 }
57
58 @Override
Brian O'Connorfa81eae2014-10-30 13:20:05 -070059 public List<Intent> compile(HostToHostIntent intent, List<Intent> installable,
60 Set<LinkResourceAllocations> resources) {
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080061 Path pathOne = getPath(intent, intent.one(), intent.two());
62 Path pathTwo = getPath(intent, intent.two(), intent.one());
Brian O'Connor66630c82014-10-02 21:08:19 -070063
tomf5c9d922014-10-03 15:22:03 -070064 Host one = hostService.getHost(intent.one());
65 Host two = hostService.getHost(intent.two());
66
67 return Arrays.asList(createPathIntent(pathOne, one, two, intent),
68 createPathIntent(pathTwo, two, one, intent));
69 }
70
71 // Creates a path intent from the specified path and original connectivity intent.
72 private Intent createPathIntent(Path path, Host src, Host dst,
73 HostToHostIntent intent) {
tom85258ee2014-10-07 00:10:02 -070074 TrafficSelector selector = builder(intent.selector())
tomf5c9d922014-10-03 15:22:03 -070075 .matchEthSrc(src.mac()).matchEthDst(dst.mac()).build();
Ray Milkey460f4022014-11-05 15:41:43 -080076 return new PathIntent(intent.appId(), selector, intent.treatment(),
77 path, intent.constraints());
tomf5c9d922014-10-03 15:22:03 -070078 }
79
Brian O'Connor66630c82014-10-02 21:08:19 -070080}