blob: 24db94ef4d0fa6de45a586232620aa86eb2769c5 [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.flow;
tom8bb16062014-09-12 14:47:46 -070017
alshabibdb774072015-04-20 13:13:51 -070018import org.onosproject.core.ApplicationId;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.core.GroupId;
20import org.onosproject.net.DeviceId;
tom8bb16062014-09-12 14:47:46 -070021
tom8bb16062014-09-12 14:47:46 -070022/**
jcc3d4e14a2015-04-21 11:32:05 +080023 * Represents a generalized match & action pair to be applied to an
24 * infrastructure device.
tom8bb16062014-09-12 14:47:46 -070025 */
Sho SHIMIZU5e5d4aa2015-01-26 16:12:11 -080026public interface FlowRule {
tom8bb16062014-09-12 14:47:46 -070027
Sho SHIMIZUe2952e42015-09-11 17:11:21 -070028 int MAX_TIMEOUT = 60;
29 int MIN_PRIORITY = 0;
alshabiba7f7ca82014-09-22 11:41:23 -070030
sangho11c30ac2015-01-22 14:30:55 -080031 /**
Ayaka Koshibed4e53e12014-09-18 14:24:55 -070032 * Returns the ID of this flow.
33 *
34 * @return the flow ID
35 */
36 FlowId id();
alshabib369d2942014-09-12 17:59:35 -070037
tom8bb16062014-09-12 14:47:46 -070038 /**
alshabiba68eb962014-09-24 20:34:13 -070039 * Returns the application id of this flow.
40 *
41 * @return an applicationId
42 */
alshabib92c65ad2014-10-08 21:56:05 -070043 short appId();
alshabiba68eb962014-09-24 20:34:13 -070044
45 /**
alshabib28204e52014-11-12 18:29:45 -080046 * Returns the group id of this flow.
47 *
48 * @return an groupId
49 */
Sho SHIMIZU75a5bd92014-11-25 11:22:56 -080050 GroupId groupId();
alshabib28204e52014-11-12 18:29:45 -080051
52 /**
tom8bb16062014-09-12 14:47:46 -070053 * Returns the flow rule priority given in natural order; higher numbers
54 * mean higher priorities.
55 *
56 * @return flow rule priority
57 */
58 int priority();
59
60 /**
61 * Returns the identity of the device where this rule applies.
62 *
63 * @return device identifier
64 */
65 DeviceId deviceId();
66
67 /**
jcc3d4e14a2015-04-21 11:32:05 +080068 * Returns the traffic selector that identifies what traffic this rule
69 * should apply to.
tom8bb16062014-09-12 14:47:46 -070070 *
71 * @return traffic selector
72 */
73 TrafficSelector selector();
74
75 /**
76 * Returns the traffic treatment that applies to selected traffic.
77 *
78 * @return traffic treatment
79 */
alshabib369d2942014-09-12 17:59:35 -070080 TrafficTreatment treatment();
tom8bb16062014-09-12 14:47:46 -070081
Ayaka Koshibed4e53e12014-09-18 14:24:55 -070082 /**
alshabibba5ac482014-10-02 17:15:20 -070083 * Returns the timeout for this flow requested by an application.
Jonathan Hartbc4a7932014-10-21 11:46:00 -070084 *
alshabibba5ac482014-10-02 17:15:20 -070085 * @return integer value of the timeout
alshabib6eb438a2014-10-01 16:39:37 -070086 */
alshabibba5ac482014-10-02 17:15:20 -070087 int timeout();
alshabib6eb438a2014-10-01 16:39:37 -070088
Jonathan Hartbc4a7932014-10-21 11:46:00 -070089 /**
90 * Returns whether the flow is permanent i.e. does not time out.
91 *
92 * @return true if the flow is permanent, otherwise false
93 */
94 boolean isPermanent();
95
sangho11c30ac2015-01-22 14:30:55 -080096 /**
alshabibdb774072015-04-20 13:13:51 -070097 * Returns the table id for this rule.
98 *
99 * @return an integer.
100 */
101 int tableId();
102
103 /**
Jonathan Hartf44e42c2015-08-04 09:58:46 -0700104 * {@inheritDoc}
105 *
106 * Equality for flow rules only considers 'match equality'. This means that
107 * two flow rules with the same match conditions will be equal, regardless
108 * of the treatment or other characteristics of the flow.
109 *
110 * @param obj the reference object with which to compare.
111 * @return {@code true} if this object is the same as the obj
112 * argument; {@code false} otherwise.
113 */
114 boolean equals(Object obj);
115
116 /**
117 * Returns whether this flow rule is an exact match to the flow rule given
118 * in the argument.
119 * <p>
120 * Exact match means that deviceId, priority, selector,
121 * tableId, flowId and treatment are equal. Note that this differs from
122 * the notion of object equality for flow rules, which does not consider the
123 * flowId or treatment when testing equality.
124 * </p>
125 *
126 * @param rule other rule to match against
127 * @return true if the rules are an exact match, otherwise false
128 */
129 boolean exactMatch(FlowRule rule);
130
131 /**
alshabibdb774072015-04-20 13:13:51 -0700132 * A flowrule builder.
133 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -0700134 interface Builder {
alshabibdb774072015-04-20 13:13:51 -0700135
136 /**
137 * Assigns a cookie value to this flowrule. Mutually exclusive with the
138 * fromApp method. This method is intended to take a cookie value from
139 * the dataplane and not from the application.
140 *
141 * @param cookie a long value
142 * @return this
143 */
144 Builder withCookie(long cookie);
145
146 /**
147 * Assigns the application that built this flow rule to this object.
148 * The short value of the appId will be used as a basis for the
149 * cookie value computation. It is expected that application use this
150 * call to set their application id.
151 *
152 * @param appId an application id
153 * @return this
154 */
155 Builder fromApp(ApplicationId appId);
156
157 /**
158 * Sets the priority for this flow rule.
159 *
160 * @param priority an integer
161 * @return this
162 */
163 Builder withPriority(int priority);
164
165 /**
166 * Sets the deviceId for this flow rule.
167 *
168 * @param deviceId a device id
169 * @return this
170 */
171 Builder forDevice(DeviceId deviceId);
172
173 /**
174 * Sets the table id for this flow rule. Default value is 0.
175 *
176 * @param tableId an integer
177 * @return this
178 */
179 Builder forTable(int tableId);
180
181 /**
182 * Sets the selector (or match field) for this flow rule.
183 *
184 * @param selector a traffic selector
185 * @return this
186 */
187 Builder withSelector(TrafficSelector selector);
188
189 /**
190 * Sets the traffic treatment for this flow rule.
191 *
192 * @param treatment a traffic treatment
193 * @return this
194 */
195 Builder withTreatment(TrafficTreatment treatment);
196
197 /**
198 * Makes this rule permanent on the dataplane.
199 *
200 * @return this
201 */
202 Builder makePermanent();
203
204 /**
205 * Makes this rule temporary and timeout after the specified amount
206 * of time.
207 *
208 * @param timeout an integer
209 * @return this
210 */
211 Builder makeTemporary(int timeout);
212
213 /**
214 * Builds a flow rule object.
215 *
216 * @return a flow rule.
217 */
218 FlowRule build();
219
220 }
221
jcc3d4e14a2015-04-21 11:32:05 +0800222 /**
223 * Returns the third party original flow rule.
224 *
225 * @return FlowRuleExtPayLoad
226 */
227 FlowRuleExtPayLoad payLoad();
tom8bb16062014-09-12 14:47:46 -0700228}