blob: 2a4aaebe8208ac587724c1fe7c2e3e956dbdce4c [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorb876bf12014-10-02 14:59:37 -070016package org.onlab.onos.net.intent;
17
Thomas Vachuskac96058a2014-10-20 23:00:16 -070018import com.google.common.collect.ImmutableSet;
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070019import org.onlab.onos.core.ApplicationId;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070020import org.onlab.onos.net.Link;
21import org.onlab.onos.net.NetworkResource;
Brian O'Connorb876bf12014-10-02 14:59:37 -070022import org.onlab.onos.net.flow.TrafficSelector;
23import org.onlab.onos.net.flow.TrafficTreatment;
24
Thomas Vachuskac96058a2014-10-20 23:00:16 -070025import java.util.Collection;
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -080026import java.util.Collections;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080027import java.util.List;
Thomas Vachuskac96058a2014-10-20 23:00:16 -070028
toma1d16b62014-10-02 23:45:11 -070029import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connorb876bf12014-10-02 14:59:37 -070030
31/**
32 * Abstraction of connectivity intent for traffic matching some criteria.
33 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070034public abstract class ConnectivityIntent extends Intent {
Brian O'Connorb876bf12014-10-02 14:59:37 -070035
36 // TODO: other forms of intents should be considered for this family:
37 // point-to-point with constraints (waypoints/obstacles)
38 // multi-to-single point with constraints (waypoints/obstacles)
39 // single-to-multi point with constraints (waypoints/obstacles)
40 // concrete path (with alternate)
41 // ...
42
43 private final TrafficSelector selector;
Brian O'Connorb876bf12014-10-02 14:59:37 -070044 private final TrafficTreatment treatment;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080045 private final List<Constraint> constraints;
Brian O'Connorb876bf12014-10-02 14:59:37 -070046
47 /**
Thomas Vachuskac96058a2014-10-20 23:00:16 -070048 * Creates a connectivity intent that matches on the specified selector
49 * and applies the specified treatment.
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080050 * <p>
51 * Path will be chosen without any constraints.
52 * </p>
Brian O'Connorb876bf12014-10-02 14:59:37 -070053 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -070054 * @param id intent identifier
55 * @param appId application identifier
56 * @param resources required network resources (optional)
57 * @param selector traffic selector
58 * @param treatment treatment
toma1d16b62014-10-02 23:45:11 -070059 * @throws NullPointerException if the selector or treatement is null
Brian O'Connorb876bf12014-10-02 14:59:37 -070060 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070061 protected ConnectivityIntent(IntentId id, ApplicationId appId,
62 Collection<NetworkResource> resources,
63 TrafficSelector selector,
64 TrafficTreatment treatment) {
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -080065 this(id, appId, resources, selector, treatment, Collections.emptyList());
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080066 }
67
68 /**
69 * Creates a connectivity intent that matches on the specified selector
70 * and applies the specified treatment.
71 * <p>
72 * Path will be optimized based on the first constraint if one is given.
73 * </p>
74 *
75 * @param id intent identifier
76 * @param appId application identifier
77 * @param resources required network resources (optional)
78 * @param selector traffic selector
79 * @param treatment treatment
80 * @param constraints optional prioritized list of constraints
81 * @throws NullPointerException if the selector or treatement is null
82 */
83 protected ConnectivityIntent(IntentId id, ApplicationId appId,
84 Collection<NetworkResource> resources,
85 TrafficSelector selector,
86 TrafficTreatment treatment,
87 List<Constraint> constraints) {
Thomas Vachuskac96058a2014-10-20 23:00:16 -070088 super(id, appId, resources);
toma1d16b62014-10-02 23:45:11 -070089 this.selector = checkNotNull(selector);
Thomas Vachuskac96058a2014-10-20 23:00:16 -070090 this.treatment = checkNotNull(treatment);
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -080091 this.constraints = checkNotNull(constraints);
Brian O'Connorb876bf12014-10-02 14:59:37 -070092 }
93
94 /**
95 * Constructor for serializer.
96 */
97 protected ConnectivityIntent() {
98 super();
99 this.selector = null;
100 this.treatment = null;
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -0800101 this.constraints = Collections.emptyList();
Brian O'Connorb876bf12014-10-02 14:59:37 -0700102 }
103
104 /**
105 * Returns the match specifying the type of traffic.
106 *
107 * @return traffic match
108 */
tom85258ee2014-10-07 00:10:02 -0700109 public TrafficSelector selector() {
Brian O'Connorb876bf12014-10-02 14:59:37 -0700110 return selector;
111 }
112
113 /**
114 * Returns the action applied to the traffic.
115 *
116 * @return applied action
117 */
tom85258ee2014-10-07 00:10:02 -0700118 public TrafficTreatment treatment() {
Brian O'Connorb876bf12014-10-02 14:59:37 -0700119 return treatment;
120 }
121
Thomas Vachuskae291c842014-10-21 02:52:38 -0700122 /**
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800123 * Returns the set of connectivity constraints.
124 *
125 * @return list of intent constraints
126 */
127 public List<Constraint> constraints() {
128 return constraints;
129 }
130
131 /**
Thomas Vachuskae291c842014-10-21 02:52:38 -0700132 * Produces a collection of network resources from the given links.
133 *
134 * @param links collection of links
135 * @return collection of link resources
136 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700137 protected static Collection<NetworkResource> resources(Collection<Link> links) {
Sho SHIMIZUf4dbc7262014-11-04 18:49:02 -0800138 return ImmutableSet.copyOf(links);
Brian O'Connorb876bf12014-10-02 14:59:37 -0700139 }
140
141}