blob: b674c069ef0a02edbfeaec810f72547ef5bffcb1 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present 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
Ray Milkeyebc5d222015-03-18 15:45:36 -070018import java.util.List;
19
Brian O'Connor9476fa12015-06-25 15:17:17 -040020import com.google.common.annotations.Beta;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.core.ApplicationId;
22import org.onosproject.net.Link;
23import org.onosproject.net.Path;
24import org.onosproject.net.flow.TrafficSelector;
25import org.onosproject.net.flow.TrafficTreatment;
Brian O'Connorb876bf12014-10-02 14:59:37 -070026
Ray Milkeyebc5d222015-03-18 15:45:36 -070027import com.google.common.base.MoreObjects;
Ray Milkeyebc5d222015-03-18 15:45:36 -070028import com.google.common.collect.Iterables;
Jonathan Hart23b5a762015-01-26 14:47:33 -080029
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080030import static com.google.common.base.Preconditions.checkArgument;
31
Brian O'Connorb876bf12014-10-02 14:59:37 -070032/**
33 * Abstraction of explicitly path specified connectivity intent.
34 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040035@Beta
Thomas Vachuskac96058a2014-10-20 23:00:16 -070036public class PathIntent extends ConnectivityIntent {
Brian O'Connorb876bf12014-10-02 14:59:37 -070037
38 private final Path path;
39
40 /**
41 * Creates a new point-to-point intent with the supplied ingress/egress
42 * ports and using the specified explicit path.
43 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -070044 * @param appId application identifier
ilhem fajjarib0a06842015-11-02 18:59:02 +010045 * @param key intent key
Thomas Vachuskac96058a2014-10-20 23:00:16 -070046 * @param selector traffic selector
47 * @param treatment treatment
48 * @param path traversed links
Ray Milkey460f4022014-11-05 15:41:43 -080049 * @param constraints optional list of constraints
Ray Milkeyc24cde32015-03-10 18:20:18 -070050 * @param priority priority to use for the generated flows
Ray Milkey460f4022014-11-05 15:41:43 -080051 * @throws NullPointerException {@code path} is null
52 */
Ray Milkeyebc5d222015-03-18 15:45:36 -070053 protected PathIntent(ApplicationId appId,
ilhem fajjarib0a06842015-11-02 18:59:02 +010054 Key key,
Ray Milkeyebc5d222015-03-18 15:45:36 -070055 TrafficSelector selector,
56 TrafficTreatment treatment,
57 Path path,
58 List<Constraint> constraints,
59 int priority) {
ilhem fajjarib0a06842015-11-02 18:59:02 +010060 super(appId, key, resources(path.links()), selector, treatment, constraints,
Ray Milkeyc24cde32015-03-10 18:20:18 -070061 priority);
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080062 PathIntent.validate(path.links());
Ray Milkey460f4022014-11-05 15:41:43 -080063 this.path = path;
64 }
65
66 /**
Thomas Vachuskac96058a2014-10-20 23:00:16 -070067 * Constructor for serializer.
68 */
Brian O'Connorb876bf12014-10-02 14:59:37 -070069 protected PathIntent() {
70 super();
71 this.path = null;
72 }
73
Ray Milkeyebc5d222015-03-18 15:45:36 -070074 /**
75 * Returns a new host to host intent builder.
76 *
77 * @return host to host intent builder
78 */
79 public static Builder builder() {
80 return new Builder();
81 }
82
83 /**
84 * Builder of a host to host intent.
85 */
86 public static class Builder extends ConnectivityIntent.Builder {
87 Path path;
88
89 protected Builder() {
90 // Hide default constructor
91 }
92
93 @Override
94 public Builder appId(ApplicationId appId) {
95 return (Builder) super.appId(appId);
96 }
97
98 @Override
99 public Builder key(Key key) {
100 return (Builder) super.key(key);
101 }
102
103 @Override
104 public Builder selector(TrafficSelector selector) {
105 return (Builder) super.selector(selector);
106 }
107
108 @Override
109 public Builder treatment(TrafficTreatment treatment) {
110 return (Builder) super.treatment(treatment);
111 }
112
113 @Override
114 public Builder constraints(List<Constraint> constraints) {
115 return (Builder) super.constraints(constraints);
116 }
117
118 @Override
119 public Builder priority(int priority) {
120 return (Builder) super.priority(priority);
121 }
122
123 /**
124 * Sets the path of the intent that will be built.
125 *
126 * @param path path for the intent
127 * @return this builder
128 */
129 public Builder path(Path path) {
130 this.path = path;
131 return this;
132 }
133
134 /**
135 * Builds a path intent from the accumulated parameters.
136 *
137 * @return point to point intent
138 */
139 public PathIntent build() {
140
141 return new PathIntent(
142 appId,
ilhem fajjarib0a06842015-11-02 18:59:02 +0100143 key,
Ray Milkeyebc5d222015-03-18 15:45:36 -0700144 selector,
145 treatment,
146 path,
147 constraints,
148 priority
149 );
150 }
151 }
152
153
154
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800155 // NOTE: This methods takes linear time with the number of links.
156 /**
157 * Validates that source element ID and destination element ID of a link are
158 * different for the specified all links and that destination element ID of a link and source
159 * element ID of the next adjacent source element ID are same for the specified all links.
160 *
Sho SHIMIZU7338ccc2014-11-21 15:00:53 -0800161 * @param links links to be validated
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800162 */
163 public static void validate(List<Link> links) {
Sho SHIMIZU74626412015-09-11 11:46:27 -0700164 checkArgument(Iterables.all(links, link -> !link.src().elementId().equals(link.dst().elementId())),
165 "element of src and dst in a link must be different: {}", links);
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800166
167 boolean adjacentSame = true;
168 for (int i = 0; i < links.size() - 1; i++) {
169 if (!links.get(i).dst().elementId().equals(links.get(i + 1).src().elementId())) {
170 adjacentSame = false;
171 break;
172 }
173 }
174 checkArgument(adjacentSame, "adjacent links must share the same element: {}", links);
175 }
176
Brian O'Connorb876bf12014-10-02 14:59:37 -0700177 /**
178 * Returns the links which the traffic goes along.
179 *
180 * @return traversed links
181 */
tom85258ee2014-10-07 00:10:02 -0700182 public Path path() {
Brian O'Connorb876bf12014-10-02 14:59:37 -0700183 return path;
184 }
185
186 @Override
Brian O'Connorb876bf12014-10-02 14:59:37 -0700187 public String toString() {
188 return MoreObjects.toStringHelper(getClass())
tom85258ee2014-10-07 00:10:02 -0700189 .add("id", id())
ilhem fajjarib0a06842015-11-02 18:59:02 +0100190 .add("key", key())
Thomas Vachuskae291c842014-10-21 02:52:38 -0700191 .add("appId", appId())
Ray Milkeyc24cde32015-03-10 18:20:18 -0700192 .add("priority", priority())
Jonathan Hart23b5a762015-01-26 14:47:33 -0800193 .add("resources", resources())
Thomas Vachuskae291c842014-10-21 02:52:38 -0700194 .add("selector", selector())
195 .add("treatment", treatment())
Ray Milkey460f4022014-11-05 15:41:43 -0800196 .add("constraints", constraints())
Brian O'Connorb876bf12014-10-02 14:59:37 -0700197 .add("path", path)
198 .toString();
199 }
tom95329eb2014-10-06 08:40:06 -0700200
Brian O'Connorb876bf12014-10-02 14:59:37 -0700201}