blob: 01d2c1edba77087b04bf82fd9d6c5bc65d28b192 [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.instructions;
alshabib55a55d92014-09-16 11:59:31 -070017
Steffen Gebertba2d3b72015-10-22 11:14:31 +020018import com.google.common.base.MoreObjects;
alshabib7b808c52015-06-26 14:22:24 -070019import org.onlab.packet.EthType;
Jonathan Hart54b406b2015-03-06 16:24:14 -080020import org.onlab.packet.IpAddress;
21import org.onlab.packet.MacAddress;
22import org.onlab.packet.MplsLabel;
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070023import org.onlab.packet.TpPort;
Jonathan Hart54b406b2015-03-06 16:24:14 -080024import org.onlab.packet.VlanId;
sangho8995ac52015-02-04 11:29:03 -080025import org.onosproject.core.GroupId;
Jonathan Hart3c259162015-10-21 21:31:19 -070026import org.onosproject.net.DeviceId;
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070027import org.onosproject.net.Lambda;
Sho SHIMIZUe9e12752015-05-05 14:45:40 -070028import org.onosproject.net.OchSignal;
Yafit Hadar52d81552015-10-07 12:26:52 +030029import org.onosproject.net.OduSignalId;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.PortNumber;
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -070031import org.onosproject.net.flow.instructions.L0ModificationInstruction.ModOchSignalInstruction;
Yafit Hadar52d81552015-10-07 12:26:52 +030032import org.onosproject.net.flow.instructions.L1ModificationInstruction.ModOduSignalIdInstruction;
Brian O'Connorabafb502014-12-02 22:26:20 -080033import org.onosproject.net.flow.instructions.L3ModificationInstruction.L3SubType;
34import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModIPInstruction;
lishuai3cce60b2015-12-01 19:35:16 +080035import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModArpIPInstruction;
36import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModArpEthInstruction;
37import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModArpOpInstruction;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -080038import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModIPv6FlowLabelInstruction;
sangho3f97a17d2015-01-29 22:56:29 -080039import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModTtlInstruction;
Hyunsun Moonc8bd97c2015-07-18 22:47:33 -070040import org.onosproject.net.flow.instructions.L4ModificationInstruction.L4SubType;
41import org.onosproject.net.flow.instructions.L4ModificationInstruction.ModTransportPortInstruction;
alshabib10c810b2015-08-18 16:59:04 -070042import org.onosproject.net.meter.MeterId;
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -080043
Jonathan Hart54b406b2015-03-06 16:24:14 -080044import java.util.Objects;
45
46import static com.google.common.base.MoreObjects.toStringHelper;
47import static com.google.common.base.Preconditions.checkNotNull;
alshabib64231f62014-09-16 17:58:36 -070048
alshabib55a55d92014-09-16 11:59:31 -070049/**
50 * Factory class for creating various traffic treatment instructions.
51 */
52public final class Instructions {
53
Jonathan Hartc7840bd2016-01-21 23:26:29 -080054 private static final String SEPARATOR = ":";
55
alshabib55a55d92014-09-16 11:59:31 -070056 // Ban construction
57 private Instructions() {}
58
59 /**
60 * Creates an output instruction using the specified port number. This can
61 * include logical ports such as CONTROLLER, FLOOD, etc.
62 *
63 * @param number port number
64 * @return output instruction
65 */
66 public static OutputInstruction createOutput(final PortNumber number) {
67 checkNotNull(number, "PortNumber cannot be null");
68 return new OutputInstruction(number);
69 }
70
71 /**
Charles Chan7efabeb2015-09-28 15:12:19 -070072 * Creates a no action instruction.
73 *
74 * @return no action instruction
75 */
76 public static NoActionInstruction createNoAction() {
77 return new NoActionInstruction();
78 }
79
80 /**
sangho8995ac52015-02-04 11:29:03 -080081 * Creates a group instruction.
82 *
83 * @param groupId Group Id
84 * @return group instruction
85 */
86 public static GroupInstruction createGroup(final GroupId groupId) {
87 checkNotNull(groupId, "GroupId cannot be null");
88 return new GroupInstruction(groupId);
89 }
90
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +020091 /**
92 * Creates a set-queue instruction.
93 *
94 * @param queueId Queue Id
Steffen Gebertba2d3b72015-10-22 11:14:31 +020095 * @param port Port number
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +020096 * @return set-queue instruction
97 */
Steffen Gebertba2d3b72015-10-22 11:14:31 +020098 public static SetQueueInstruction setQueue(final long queueId, final PortNumber port) {
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +020099 checkNotNull(queueId, "queue ID cannot be null");
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200100 return new SetQueueInstruction(queueId, port);
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200101 }
102
Jian Li1ef82db2016-03-03 14:43:21 -0800103 /**
104 * Creates a meter instruction.
105 *
106 * @param meterId Meter Id
107 * @return meter instruction
108 */
alshabib10c810b2015-08-18 16:59:04 -0700109 public static MeterInstruction meterTraffic(final MeterId meterId) {
110 checkNotNull(meterId, "meter id cannot be null");
111 return new MeterInstruction(meterId);
112 }
113
sangho8995ac52015-02-04 11:29:03 -0800114 /**
Sho SHIMIZUe9e12752015-05-05 14:45:40 -0700115 * Creates an L0 modification with the specified OCh signal.
116 *
117 * @param lambda OCh signal
118 * @return an L0 modification
119 */
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -0700120 public static L0ModificationInstruction modL0Lambda(Lambda lambda) {
Sho SHIMIZUe9e12752015-05-05 14:45:40 -0700121 checkNotNull(lambda, "L0 OCh signal cannot be null");
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -0700122
Sho SHIMIZUa114d892016-03-11 16:48:19 -0800123 if (lambda instanceof OchSignal) {
Sho SHIMIZU2e7ac842015-05-05 15:45:38 -0700124 return new ModOchSignalInstruction((OchSignal) lambda);
125 } else {
126 throw new UnsupportedOperationException(String.format("Unsupported type: %s", lambda));
127 }
Sho SHIMIZUe9e12752015-05-05 14:45:40 -0700128 }
129
130 /**
Yafit Hadar52d81552015-10-07 12:26:52 +0300131 * Creates an L1 modification with the specified ODU signal Id.
132 *
133 * @param oduSignalId ODU Signal Id
134 * @return a L1 modification
135 */
136 public static L1ModificationInstruction modL1OduSignalId(OduSignalId oduSignalId) {
137 checkNotNull(oduSignalId, "L1 ODU signal ID cannot be null");
138 return new ModOduSignalIdInstruction(oduSignalId);
139 }
140 /**
alshabib55a55d92014-09-16 11:59:31 -0700141 * Creates a l2 src modification.
Jonathan Hart54b406b2015-03-06 16:24:14 -0800142 *
143 * @param addr the mac address to modify to
alshabib55a55d92014-09-16 11:59:31 -0700144 * @return a l2 modification
145 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700146 public static L2ModificationInstruction modL2Src(MacAddress addr) {
alshabib55a55d92014-09-16 11:59:31 -0700147 checkNotNull(addr, "Src l2 address cannot be null");
alshabibd17abc22015-04-21 18:26:35 -0700148 return new L2ModificationInstruction.ModEtherInstruction(
149 L2ModificationInstruction.L2SubType.ETH_SRC, addr);
alshabib55a55d92014-09-16 11:59:31 -0700150 }
151
152 /**
153 * Creates a L2 dst modification.
Jonathan Hart54b406b2015-03-06 16:24:14 -0800154 *
155 * @param addr the mac address to modify to
alshabib55a55d92014-09-16 11:59:31 -0700156 * @return a L2 modification
157 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700158 public static L2ModificationInstruction modL2Dst(MacAddress addr) {
alshabib55a55d92014-09-16 11:59:31 -0700159 checkNotNull(addr, "Dst l2 address cannot be null");
alshabibd17abc22015-04-21 18:26:35 -0700160 return new L2ModificationInstruction.ModEtherInstruction(
161 L2ModificationInstruction.L2SubType.ETH_DST, addr);
alshabib55a55d92014-09-16 11:59:31 -0700162 }
163
164 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800165 * Creates a VLAN ID modification.
166 *
167 * @param vlanId the VLAN ID to modify to
alshabib7410fea2014-09-16 13:48:39 -0700168 * @return a L2 modification
169 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700170 public static L2ModificationInstruction modVlanId(VlanId vlanId) {
alshabib55a55d92014-09-16 11:59:31 -0700171 checkNotNull(vlanId, "VLAN id cannot be null");
alshabibd17abc22015-04-21 18:26:35 -0700172 return new L2ModificationInstruction.ModVlanIdInstruction(vlanId);
alshabib55a55d92014-09-16 11:59:31 -0700173 }
174
alshabib7410fea2014-09-16 13:48:39 -0700175 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800176 * Creates a VLAN PCP modification.
177 *
178 * @param vlanPcp the PCP to modify to
alshabib7410fea2014-09-16 13:48:39 -0700179 * @return a L2 modification
180 */
181 public static L2ModificationInstruction modVlanPcp(Byte vlanPcp) {
182 checkNotNull(vlanPcp, "VLAN Pcp cannot be null");
alshabibd17abc22015-04-21 18:26:35 -0700183 return new L2ModificationInstruction.ModVlanPcpInstruction(vlanPcp);
alshabib7410fea2014-09-16 13:48:39 -0700184 }
185
186 /**
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800187 * Creates a MPLS label modification.
Jonathan Hart54b406b2015-03-06 16:24:14 -0800188 *
189 * @param mplsLabel MPLS label to set
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800190 * @return a L2 Modification
191 */
Michele Santuari4b6019e2014-12-19 11:31:45 +0100192 public static L2ModificationInstruction modMplsLabel(MplsLabel mplsLabel) {
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800193 checkNotNull(mplsLabel, "MPLS label cannot be null");
alshabibd17abc22015-04-21 18:26:35 -0700194 return new L2ModificationInstruction.ModMplsLabelInstruction(mplsLabel);
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800195 }
sangho3f97a17d2015-01-29 22:56:29 -0800196
197 /**
Saurav Das73a7dd42015-08-19 22:20:31 -0700198 * Creates a MPLS BOS bit modification.
199 *
200 * @param mplsBos MPLS BOS bit to set (true) or unset (false)
201 * @return a L2 Modification
202 */
203 public static L2ModificationInstruction modMplsBos(boolean mplsBos) {
204 return new L2ModificationInstruction.ModMplsBosInstruction(mplsBos);
205 }
206
207 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800208 * Creates a MPLS decrement TTL modification.
sangho3f97a17d2015-01-29 22:56:29 -0800209 *
210 * @return a L2 Modification
211 */
212 public static L2ModificationInstruction decMplsTtl() {
alshabibd17abc22015-04-21 18:26:35 -0700213 return new L2ModificationInstruction.ModMplsTtlInstruction();
sangho3f97a17d2015-01-29 22:56:29 -0800214 }
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800215
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800216 /**
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800217 * Creates a L3 IPv4 src modification.
218 *
219 * @param addr the IPv4 address to modify to
alshabib7410fea2014-09-16 13:48:39 -0700220 * @return a L3 modification
221 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700222 public static L3ModificationInstruction modL3Src(IpAddress addr) {
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800223 checkNotNull(addr, "Src l3 IPv4 address cannot be null");
224 return new ModIPInstruction(L3SubType.IPV4_SRC, addr);
alshabib7410fea2014-09-16 13:48:39 -0700225 }
226
227 /**
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800228 * Creates a L3 IPv4 dst modification.
229 *
230 * @param addr the IPv4 address to modify to
alshabib7410fea2014-09-16 13:48:39 -0700231 * @return a L3 modification
232 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700233 public static L3ModificationInstruction modL3Dst(IpAddress addr) {
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800234 checkNotNull(addr, "Dst l3 IPv4 address cannot be null");
235 return new ModIPInstruction(L3SubType.IPV4_DST, addr);
236 }
237
238 /**
239 * Creates a L3 IPv6 src modification.
240 *
241 * @param addr the IPv6 address to modify to
242 * @return a L3 modification
243 */
244 public static L3ModificationInstruction modL3IPv6Src(IpAddress addr) {
245 checkNotNull(addr, "Src l3 IPv6 address cannot be null");
246 return new ModIPInstruction(L3SubType.IPV6_SRC, addr);
247 }
248
249 /**
250 * Creates a L3 IPv6 dst modification.
251 *
252 * @param addr the IPv6 address to modify to
253 * @return a L3 modification
254 */
255 public static L3ModificationInstruction modL3IPv6Dst(IpAddress addr) {
256 checkNotNull(addr, "Dst l3 IPv6 address cannot be null");
257 return new ModIPInstruction(L3SubType.IPV6_DST, addr);
258 }
259
260 /**
261 * Creates a L3 IPv6 Flow Label modification.
262 *
263 * @param flowLabel the IPv6 flow label to modify to (20 bits)
264 * @return a L3 modification
265 */
266 public static L3ModificationInstruction modL3IPv6FlowLabel(int flowLabel) {
267 return new ModIPv6FlowLabelInstruction(flowLabel);
alshabib7410fea2014-09-16 13:48:39 -0700268 }
269
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800270 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800271 * Creates a L3 decrement TTL modification.
272 *
sangho3f97a17d2015-01-29 22:56:29 -0800273 * @return a L3 modification
274 */
275 public static L3ModificationInstruction decNwTtl() {
276 return new ModTtlInstruction(L3SubType.DEC_TTL);
277 }
278
279 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800280 * Creates a L3 copy TTL to outer header modification.
281 *
sangho3f97a17d2015-01-29 22:56:29 -0800282 * @return a L3 modification
283 */
284 public static L3ModificationInstruction copyTtlOut() {
285 return new ModTtlInstruction(L3SubType.TTL_OUT);
286 }
287
288 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800289 * Creates a L3 copy TTL to inner header modification.
290 *
sangho3f97a17d2015-01-29 22:56:29 -0800291 * @return a L3 modification
292 */
293 public static L3ModificationInstruction copyTtlIn() {
294 return new ModTtlInstruction(L3SubType.TTL_IN);
295 }
296
297 /**
lishuai3cce60b2015-12-01 19:35:16 +0800298 * Creates a L3 ARP IP src modification.
299 *
300 * @param addr the ip address to modify to
301 * @return a L3 modification
302 */
303 public static L3ModificationInstruction modArpSpa(IpAddress addr) {
304 checkNotNull(addr, "Src l3 ARP IP address cannot be null");
305 return new ModArpIPInstruction(L3SubType.ARP_SPA, addr);
306 }
307
308 /**
309 * Creates a l3 ARP Ether src modification.
310 *
311 * @param addr the mac address to modify to
312 * @return a l3 modification
313 */
314 public static L3ModificationInstruction modArpSha(MacAddress addr) {
315 checkNotNull(addr, "Src l3 ARP address cannot be null");
316 return new ModArpEthInstruction(L3SubType.ARP_SHA, addr);
317 }
318
319 /**
320 * Creates a l3 ARP operation modification.
321 *
322 * @param op the ARP operation to modify to
323 * @return a l3 modification
324 */
325 public static L3ModificationInstruction modL3ArpOp(short op) {
326 checkNotNull(op, "Arp operation cannot be null");
327 return new ModArpOpInstruction(L3SubType.ARP_OP, op);
328 }
329
330 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800331 * Creates a push MPLS header instruction.
332 *
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800333 * @return a L2 modification.
334 */
335 public static Instruction pushMpls() {
Jian Li11260a02016-05-19 13:07:22 -0700336 return new L2ModificationInstruction.ModMplsHeaderInstruction(
alshabibd17abc22015-04-21 18:26:35 -0700337 L2ModificationInstruction.L2SubType.MPLS_PUSH,
alshabib7b808c52015-06-26 14:22:24 -0700338 EthType.EtherType.MPLS_UNICAST.ethType());
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800339 }
340
341 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800342 * Creates a pop MPLS header instruction.
343 *
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800344 * @return a L2 modification.
345 */
346 public static Instruction popMpls() {
Jian Li11260a02016-05-19 13:07:22 -0700347 return new L2ModificationInstruction.ModMplsHeaderInstruction(
alshabibd17abc22015-04-21 18:26:35 -0700348 L2ModificationInstruction.L2SubType.MPLS_POP,
alshabib7b808c52015-06-26 14:22:24 -0700349 EthType.EtherType.MPLS_UNICAST.ethType());
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800350 }
alshabib7410fea2014-09-16 13:48:39 -0700351
sangho3f97a17d2015-01-29 22:56:29 -0800352 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800353 * Creates a pop MPLS header instruction with a particular ethertype.
sangho3f97a17d2015-01-29 22:56:29 -0800354 *
355 * @param etherType Ethernet type to set
356 * @return a L2 modification.
alshabib7b808c52015-06-26 14:22:24 -0700357 */
358 public static Instruction popMpls(EthType etherType) {
359 checkNotNull(etherType, "Ethernet type cannot be null");
Jian Li11260a02016-05-19 13:07:22 -0700360 return new L2ModificationInstruction.ModMplsHeaderInstruction(
alshabibd17abc22015-04-21 18:26:35 -0700361 L2ModificationInstruction.L2SubType.MPLS_POP, etherType);
sangho3f97a17d2015-01-29 22:56:29 -0800362 }
363
Saurav Dasfbe25c52015-03-04 11:12:00 -0800364 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800365 * Creates a pop VLAN header instruction.
366 *
367 * @return a L2 modification
Saurav Dasfbe25c52015-03-04 11:12:00 -0800368 */
369 public static Instruction popVlan() {
Jian Li11260a02016-05-19 13:07:22 -0700370 return new L2ModificationInstruction.ModVlanHeaderInstruction(
alshabibd17abc22015-04-21 18:26:35 -0700371 L2ModificationInstruction.L2SubType.VLAN_POP);
Saurav Dasfbe25c52015-03-04 11:12:00 -0800372 }
373
374 /**
Jonathan Hart54b406b2015-03-06 16:24:14 -0800375 * Creates a push VLAN header instruction.
376 *
377 * @return a L2 modification
378 */
379 public static Instruction pushVlan() {
Jian Li11260a02016-05-19 13:07:22 -0700380 return new L2ModificationInstruction.ModVlanHeaderInstruction(
alshabib7b808c52015-06-26 14:22:24 -0700381 L2ModificationInstruction.L2SubType.VLAN_PUSH,
382 EthType.EtherType.VLAN.ethType());
Jonathan Hart54b406b2015-03-06 16:24:14 -0800383 }
384
385 /**
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -0500386 * Creates a push VLAN header instruction using the supplied Ethernet type.
387 *
388 * @param ethType the Ethernet type to use
389 * @return a L2 modification
390 */
391 public static Instruction pushVlan(EthType ethType) {
392 return new L2ModificationInstruction.ModVlanHeaderInstruction(
393 L2ModificationInstruction.L2SubType.VLAN_PUSH,
394 ethType);
395 }
396
397 /**
alshabibd17abc22015-04-21 18:26:35 -0700398 * Sends the packet to the table id.
Jonathan Hart54b406b2015-03-06 16:24:14 -0800399 *
alshabibd17abc22015-04-21 18:26:35 -0700400 * @param tableId flow rule table id
Thomas Vachuska3e2b6512015-03-05 09:25:03 -0800401 * @return table type transition instruction
Saurav Dasfbe25c52015-03-04 11:12:00 -0800402 */
alshabibd17abc22015-04-21 18:26:35 -0700403 public static Instruction transition(Integer tableId) {
404 checkNotNull(tableId, "Table id cannot be null");
405 return new TableTypeTransition(tableId);
alshabib9af70072015-02-09 14:34:16 -0800406 }
407
Yuta HIGUCHI6a479642015-02-08 01:28:50 -0800408 /**
Saurav Das86af8f12015-05-25 23:55:33 -0700409 * Writes metadata to associate with a packet.
410 *
411 * @param metadata the metadata value to write
412 * @param metadataMask the bits to mask for the metadata value
413 * @return metadata instruction
414 */
415 public static Instruction writeMetadata(long metadata, long metadataMask) {
416 return new MetadataInstruction(metadata, metadataMask);
417 }
418
419 /**
Hyunsun Moona08c5d02015-07-14 17:53:00 -0700420 * Creates a Tunnel ID modification.
421 *
422 * @param tunnelId the Tunnel ID to modify to
423 * @return a L2 modification
424 */
425 public static L2ModificationInstruction modTunnelId(long tunnelId) {
426 checkNotNull(tunnelId, "Tunnel id cannot be null");
427 return new L2ModificationInstruction.ModTunnelIdInstruction(tunnelId);
428 }
429
430 /**
Hyunsun Moonc8bd97c2015-07-18 22:47:33 -0700431 * Creates a TCP src modification.
432 *
433 * @param port the TCP port number to modify to
434 * @return a L4 modification
Hyunsun Mooncf732fb2015-08-22 21:04:23 -0700435 */
436 public static L4ModificationInstruction modTcpSrc(TpPort port) {
437 checkNotNull(port, "Src TCP port cannot be null");
Hyunsun Moonc8bd97c2015-07-18 22:47:33 -0700438 return new ModTransportPortInstruction(L4SubType.TCP_SRC, port);
439 }
440
441 /**
442 * Creates a TCP dst modification.
443 *
444 * @param port the TCP port number to modify to
445 * @return a L4 modification
Hyunsun Mooncf732fb2015-08-22 21:04:23 -0700446 */
447 public static L4ModificationInstruction modTcpDst(TpPort port) {
448 checkNotNull(port, "Dst TCP port cannot be null");
Hyunsun Moonc8bd97c2015-07-18 22:47:33 -0700449 return new ModTransportPortInstruction(L4SubType.TCP_DST, port);
450 }
451
452 /**
453 * Creates a UDP src modification.
454 *
455 * @param port the UDP port number to modify to
456 * @return a L4 modification
Hyunsun Mooncf732fb2015-08-22 21:04:23 -0700457 */
458 public static L4ModificationInstruction modUdpSrc(TpPort port) {
459 checkNotNull(port, "Src UDP port cannot be null");
Hyunsun Moonc8bd97c2015-07-18 22:47:33 -0700460 return new ModTransportPortInstruction(L4SubType.UDP_SRC, port);
461 }
462
463 /**
464 * Creates a UDP dst modification.
465 *
466 * @param port the UDP port number to modify to
467 * @return a L4 modification
Hyunsun Mooncf732fb2015-08-22 21:04:23 -0700468 */
469 public static L4ModificationInstruction modUdpDst(TpPort port) {
470 checkNotNull(port, "Dst UDP port cannot be null");
Hyunsun Moonc8bd97c2015-07-18 22:47:33 -0700471 return new ModTransportPortInstruction(L4SubType.UDP_DST, port);
472 }
473
474 /**
Jonathan Hart3c259162015-10-21 21:31:19 -0700475 * Creates an extension instruction.
476 *
477 * @param extension extension instruction
478 * @param deviceId device ID
479 * @return extension instruction
480 */
alshabib880b6442015-11-23 22:13:04 -0800481 public static ExtensionInstructionWrapper extension(ExtensionTreatment extension,
Jonathan Hart3c259162015-10-21 21:31:19 -0700482 DeviceId deviceId) {
483 checkNotNull(extension, "Extension instruction cannot be null");
484 checkNotNull(deviceId, "Device ID cannot be null");
485 return new ExtensionInstructionWrapper(extension, deviceId);
486 }
487
488 /**
Charles Chan7efabeb2015-09-28 15:12:19 -0700489 * No Action instruction.
490 */
491 public static final class NoActionInstruction implements Instruction {
492
493 private NoActionInstruction() {}
494
495 @Override
496 public Type type() {
497 return Type.NOACTION;
498 }
499
500 @Override
501 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800502 return type().toString();
Charles Chan7efabeb2015-09-28 15:12:19 -0700503 }
504
505 @Override
506 public int hashCode() {
HIGUCHI Yutaca9cc8e2015-10-29 23:26:51 -0700507 return type().ordinal();
Charles Chan7efabeb2015-09-28 15:12:19 -0700508 }
509
510 @Override
511 public boolean equals(Object obj) {
512 if (this == obj) {
513 return true;
514 }
515 if (obj instanceof NoActionInstruction) {
516 return true;
517 }
518 return false;
519 }
520 }
521
522 /**
Yuta HIGUCHI6a479642015-02-08 01:28:50 -0800523 * Output Instruction.
sangho8995ac52015-02-04 11:29:03 -0800524 */
alshabib55a55d92014-09-16 11:59:31 -0700525 public static final class OutputInstruction implements Instruction {
526 private final PortNumber port;
527
528 private OutputInstruction(PortNumber port) {
529 this.port = port;
530 }
531
532 public PortNumber port() {
533 return port;
534 }
535
536 @Override
537 public Type type() {
538 return Type.OUTPUT;
539 }
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800540
alshabib99b8fdc2014-09-25 14:30:22 -0700541 @Override
542 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800543 return type().toString() + SEPARATOR + port.toString();
alshabib99b8fdc2014-09-25 14:30:22 -0700544 }
alshabib8ca53902014-10-07 13:11:17 -0700545
546 @Override
547 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -0700548 return Objects.hash(type().ordinal(), port);
alshabib8ca53902014-10-07 13:11:17 -0700549 }
550
551 @Override
552 public boolean equals(Object obj) {
553 if (this == obj) {
554 return true;
555 }
556 if (obj instanceof OutputInstruction) {
557 OutputInstruction that = (OutputInstruction) obj;
Yuta HIGUCHI4ce65292014-11-01 12:09:55 -0700558 return Objects.equals(port, that.port);
alshabib8ca53902014-10-07 13:11:17 -0700559
560 }
561 return false;
562 }
alshabib55a55d92014-09-16 11:59:31 -0700563 }
564
Yuta HIGUCHI6a479642015-02-08 01:28:50 -0800565 /**
566 * Group Instruction.
sangho8995ac52015-02-04 11:29:03 -0800567 */
sangho8995ac52015-02-04 11:29:03 -0800568 public static final class GroupInstruction implements Instruction {
569 private final GroupId groupId;
570
571 private GroupInstruction(GroupId groupId) {
572 this.groupId = groupId;
573 }
574
575 public GroupId groupId() {
576 return groupId;
577 }
578
579 @Override
580 public Type type() {
581 return Type.GROUP;
582 }
alshabib9af70072015-02-09 14:34:16 -0800583
sangho8995ac52015-02-04 11:29:03 -0800584 @Override
585 public String toString() {
Saurav Das0fd79d92016-03-07 10:58:36 -0800586 return type().toString() + SEPARATOR + "0x" + Integer.toHexString(groupId.id());
sangho8995ac52015-02-04 11:29:03 -0800587 }
588
589 @Override
590 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -0700591 return Objects.hash(type().ordinal(), groupId);
sangho8995ac52015-02-04 11:29:03 -0800592 }
593
594 @Override
595 public boolean equals(Object obj) {
596 if (this == obj) {
597 return true;
598 }
599 if (obj instanceof GroupInstruction) {
600 GroupInstruction that = (GroupInstruction) obj;
601 return Objects.equals(groupId, that.groupId);
602
603 }
604 return false;
605 }
606 }
607
Saurav Das86af8f12015-05-25 23:55:33 -0700608 /**
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200609 * Set-Queue Instruction.
610 */
611 public static final class SetQueueInstruction implements Instruction {
612 private final long queueId;
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200613 private final PortNumber port;
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200614
615 private SetQueueInstruction(long queueId) {
616 this.queueId = queueId;
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200617 this.port = null;
618 }
619
620 private SetQueueInstruction(long queueId, PortNumber port) {
621 this.queueId = queueId;
622 this.port = port;
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200623 }
624
625 public long queueId() {
626 return queueId;
627 }
628
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200629 public PortNumber port() {
630 return port;
631 }
632
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200633 @Override
634 public Type type() {
635 return Type.QUEUE;
636 }
637
638 @Override
639 public String toString() {
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200640 MoreObjects.ToStringHelper toStringHelper = toStringHelper(type().toString());
641 toStringHelper.add("queueId", queueId);
642
643 if (port() != null) {
644 toStringHelper.add("port", port);
645 }
646 return toStringHelper.toString();
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200647 }
648
649 @Override
650 public int hashCode() {
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200651 return Objects.hash(type().ordinal(), queueId, port);
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200652 }
653
654 @Override
655 public boolean equals(Object obj) {
656 if (this == obj) {
657 return true;
658 }
659 if (obj instanceof SetQueueInstruction) {
660 SetQueueInstruction that = (SetQueueInstruction) obj;
Steffen Gebertba2d3b72015-10-22 11:14:31 +0200661 return Objects.equals(queueId, that.queueId) && Objects.equals(port, that.port);
Steffen Gebertbbfdaaa2015-09-29 11:01:46 +0200662
663 }
664 return false;
665 }
666 }
667
668 /**
alshabib10c810b2015-08-18 16:59:04 -0700669 * A meter instruction.
670 */
671 public static final class MeterInstruction implements Instruction {
672 private final MeterId meterId;
673
674 private MeterInstruction(MeterId meterId) {
675 this.meterId = meterId;
676 }
677
678 public MeterId meterId() {
679 return meterId;
680 }
681
682 @Override
683 public Type type() {
684 return Type.METER;
685 }
686
687 @Override
688 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800689 return type().toString() + SEPARATOR + meterId.id();
alshabib10c810b2015-08-18 16:59:04 -0700690 }
691
692 @Override
693 public int hashCode() {
694 return Objects.hash(type().ordinal(), meterId);
695 }
696
697 @Override
698 public boolean equals(Object obj) {
699 if (this == obj) {
700 return true;
701 }
702 if (obj instanceof MeterInstruction) {
703 MeterInstruction that = (MeterInstruction) obj;
704 return Objects.equals(meterId, that.meterId);
705
706 }
707 return false;
708 }
709 }
710
711 /**
Saurav Das86af8f12015-05-25 23:55:33 -0700712 * Transition instruction.
713 */
alshabibd17abc22015-04-21 18:26:35 -0700714 public static class TableTypeTransition implements Instruction {
715 private final Integer tableId;
716
717 TableTypeTransition(Integer tableId) {
718 this.tableId = tableId;
alshabib9af70072015-02-09 14:34:16 -0800719 }
720
721 @Override
722 public Type type() {
723 return Type.TABLE;
724 }
725
alshabibd17abc22015-04-21 18:26:35 -0700726 public Integer tableId() {
727 return this.tableId;
alshabib9af70072015-02-09 14:34:16 -0800728 }
729
730 @Override
731 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800732 return type().toString() + SEPARATOR + this.tableId;
alshabib9af70072015-02-09 14:34:16 -0800733 }
734
735 @Override
736 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -0700737 return Objects.hash(type().ordinal(), tableId);
alshabib9af70072015-02-09 14:34:16 -0800738 }
739
740 @Override
741 public boolean equals(Object obj) {
742 if (this == obj) {
743 return true;
744 }
745 if (obj instanceof TableTypeTransition) {
746 TableTypeTransition that = (TableTypeTransition) obj;
alshabibd17abc22015-04-21 18:26:35 -0700747 return Objects.equals(tableId, that.tableId);
alshabib9af70072015-02-09 14:34:16 -0800748
749 }
750 return false;
751 }
Saurav Das86af8f12015-05-25 23:55:33 -0700752 }
alshabib9af70072015-02-09 14:34:16 -0800753
Saurav Das86af8f12015-05-25 23:55:33 -0700754 /**
755 * Metadata instruction.
756 */
757 public static class MetadataInstruction implements Instruction {
758 private final long metadata;
759 private final long metadataMask;
760
761 MetadataInstruction(long metadata, long metadataMask) {
762 this.metadata = metadata;
763 this.metadataMask = metadataMask;
764 }
765
766 @Override
767 public Type type() {
768 return Type.METADATA;
769 }
770
771 public long metadata() {
772 return this.metadata;
773 }
774
775 public long metadataMask() {
776 return this.metadataMask;
777 }
778
779 @Override
780 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800781 return type().toString() + SEPARATOR +
782 Long.toHexString(this.metadata) + "/" +
783 Long.toHexString(this.metadataMask);
Saurav Das86af8f12015-05-25 23:55:33 -0700784 }
785
786 @Override
787 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -0700788 return Objects.hash(type().ordinal(), metadata, metadataMask);
Saurav Das86af8f12015-05-25 23:55:33 -0700789 }
790
791 @Override
792 public boolean equals(Object obj) {
793 if (this == obj) {
794 return true;
795 }
796 if (obj instanceof MetadataInstruction) {
797 MetadataInstruction that = (MetadataInstruction) obj;
798 return Objects.equals(metadata, that.metadata) &&
799 Objects.equals(metadataMask, that.metadataMask);
800
801 }
802 return false;
803 }
alshabib9af70072015-02-09 14:34:16 -0800804 }
Saurav Das73a7dd42015-08-19 22:20:31 -0700805
Jonathan Hart3c259162015-10-21 21:31:19 -0700806 /**
807 * Extension instruction.
808 */
809 public static class ExtensionInstructionWrapper implements Instruction {
alshabib880b6442015-11-23 22:13:04 -0800810 private final ExtensionTreatment extensionTreatment;
Jonathan Hart3c259162015-10-21 21:31:19 -0700811 private final DeviceId deviceId;
812
alshabib880b6442015-11-23 22:13:04 -0800813 ExtensionInstructionWrapper(ExtensionTreatment extension, DeviceId deviceId) {
814 extensionTreatment = extension;
Jonathan Hart3c259162015-10-21 21:31:19 -0700815 this.deviceId = deviceId;
816 }
817
alshabib880b6442015-11-23 22:13:04 -0800818 public ExtensionTreatment extensionInstruction() {
819 return extensionTreatment;
Jonathan Hart3c259162015-10-21 21:31:19 -0700820 }
821
822 public DeviceId deviceId() {
823 return deviceId;
824 }
825
826 @Override
827 public Type type() {
828 return Type.EXTENSION;
829 }
830
831 @Override
832 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -0800833 return type().toString() + SEPARATOR + deviceId + "/" + extensionTreatment;
Jonathan Hart3c259162015-10-21 21:31:19 -0700834 }
835
836 @Override
837 public int hashCode() {
alshabib880b6442015-11-23 22:13:04 -0800838 return Objects.hash(type().ordinal(), extensionTreatment, deviceId);
Jonathan Hart3c259162015-10-21 21:31:19 -0700839 }
840
841 @Override
842 public boolean equals(Object obj) {
843 if (this == obj) {
844 return true;
845 }
846 if (obj instanceof ExtensionInstructionWrapper) {
847 ExtensionInstructionWrapper that = (ExtensionInstructionWrapper) obj;
alshabib880b6442015-11-23 22:13:04 -0800848 return Objects.equals(extensionTreatment, that.extensionTreatment)
Jonathan Hart3c259162015-10-21 21:31:19 -0700849 && Objects.equals(deviceId, that.deviceId);
850
851 }
852 return false;
853 }
854 }
855
alshabib55a55d92014-09-16 11:59:31 -0700856}
alshabib8ca53902014-10-07 13:11:17 -0700857
858