blob: 305d103831f31bc4438af043b4f7c1a153582629 [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'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorb876bf12014-10-02 14:59:37 -070017
Thomas Vachuskac96058a2014-10-20 23:00:16 -070018import com.google.common.collect.ImmutableSet;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.core.ApplicationId;
20import org.onosproject.net.Link;
21import org.onosproject.net.NetworkResource;
22import org.onosproject.net.flow.TrafficSelector;
23import org.onosproject.net.flow.TrafficTreatment;
Brian O'Connorb876bf12014-10-02 14:59:37 -070024
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 appId application identifier
55 * @param resources required network resources (optional)
56 * @param selector traffic selector
57 * @param treatment treatment
Ray Milkeye1dfb502015-01-13 16:35:46 -080058 * @throws NullPointerException if the selector or treatment is null
Brian O'Connorb876bf12014-10-02 14:59:37 -070059 */
Brian O'Connor520c0522014-11-23 23:50:47 -080060 protected ConnectivityIntent(ApplicationId appId,
Thomas Vachuskac96058a2014-10-20 23:00:16 -070061 Collection<NetworkResource> resources,
62 TrafficSelector selector,
63 TrafficTreatment treatment) {
Ray Milkey5b3717e2015-02-05 11:44:08 -080064 this(appId, null, resources, selector, treatment, Collections.emptyList());
65 }
66
67 /**
68 * Creates a connectivity intent that matches on the specified selector
69 * and applies the specified treatment.
70 * <p>
71 * Path will be chosen without any constraints.
72 * </p>
73 *
74 * @param appId application identifier
75 * @param key intent key
76 * @param resources required network resources (optional)
77 * @param selector traffic selector
78 * @param treatment treatment
79 * @throws NullPointerException if the selector or treatment is null
80 */
81 protected ConnectivityIntent(ApplicationId appId,
82 Key key,
83 Collection<NetworkResource> resources,
84 TrafficSelector selector,
85 TrafficTreatment treatment) {
86 this(appId, key, resources, selector, treatment, Collections.emptyList());
87 }
88
89 /**
90 * Creates a connectivity intent that matches on the specified selector
91 * and applies the specified treatment.
92 * <p>
93 * Path will be optimized based on the first constraint if one is given.
94 * </p>
95 *
96 * @param appId application identifier
97 * @param key explicit key to use for intent
98 * @param resources required network resources (optional)
99 * @param selector traffic selector
100 * @param treatment treatment
101 * @param constraints optional prioritized list of constraints
102 * @throws NullPointerException if the selector or treatment is null
103 */
104
105 protected ConnectivityIntent(ApplicationId appId,
106 Key key,
107 Collection<NetworkResource> resources,
108 TrafficSelector selector,
109 TrafficTreatment treatment,
110 List<Constraint> constraints) {
111 super(appId, key, resources);
112 this.selector = checkNotNull(selector);
113 this.treatment = checkNotNull(treatment);
114 this.constraints = checkNotNull(constraints);
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800115 }
116
117 /**
118 * Creates a connectivity intent that matches on the specified selector
119 * and applies the specified treatment.
120 * <p>
121 * Path will be optimized based on the first constraint if one is given.
122 * </p>
123 *
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800124 * @param appId application identifier
125 * @param resources required network resources (optional)
126 * @param selector traffic selector
127 * @param treatment treatment
128 * @param constraints optional prioritized list of constraints
Ray Milkeye1dfb502015-01-13 16:35:46 -0800129 * @throws NullPointerException if the selector or treatment is null
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800130 */
Ray Milkey5b3717e2015-02-05 11:44:08 -0800131
Brian O'Connor520c0522014-11-23 23:50:47 -0800132 protected ConnectivityIntent(ApplicationId appId,
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800133 Collection<NetworkResource> resources,
134 TrafficSelector selector,
135 TrafficTreatment treatment,
136 List<Constraint> constraints) {
Ray Milkey5b3717e2015-02-05 11:44:08 -0800137 super(appId, null, resources);
toma1d16b62014-10-02 23:45:11 -0700138 this.selector = checkNotNull(selector);
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700139 this.treatment = checkNotNull(treatment);
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -0800140 this.constraints = checkNotNull(constraints);
Brian O'Connorb876bf12014-10-02 14:59:37 -0700141 }
142
143 /**
144 * Constructor for serializer.
145 */
146 protected ConnectivityIntent() {
147 super();
148 this.selector = null;
149 this.treatment = null;
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -0800150 this.constraints = Collections.emptyList();
Brian O'Connorb876bf12014-10-02 14:59:37 -0700151 }
152
153 /**
154 * Returns the match specifying the type of traffic.
155 *
156 * @return traffic match
157 */
tom85258ee2014-10-07 00:10:02 -0700158 public TrafficSelector selector() {
Brian O'Connorb876bf12014-10-02 14:59:37 -0700159 return selector;
160 }
161
162 /**
163 * Returns the action applied to the traffic.
164 *
165 * @return applied action
166 */
tom85258ee2014-10-07 00:10:02 -0700167 public TrafficTreatment treatment() {
Brian O'Connorb876bf12014-10-02 14:59:37 -0700168 return treatment;
169 }
170
Thomas Vachuskae291c842014-10-21 02:52:38 -0700171 /**
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800172 * Returns the set of connectivity constraints.
173 *
174 * @return list of intent constraints
175 */
176 public List<Constraint> constraints() {
177 return constraints;
178 }
179
180 /**
Thomas Vachuskae291c842014-10-21 02:52:38 -0700181 * Produces a collection of network resources from the given links.
182 *
183 * @param links collection of links
184 * @return collection of link resources
185 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700186 protected static Collection<NetworkResource> resources(Collection<Link> links) {
Sho SHIMIZUf4dbc7262014-11-04 18:49:02 -0800187 return ImmutableSet.copyOf(links);
Brian O'Connorb876bf12014-10-02 14:59:37 -0700188 }
189
190}