blob: 3ac2c44d528a5f68e188d11f34deb75398fc67d7 [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 */
tom8bb16062014-09-12 14:47:46 -070016package org.onlab.onos.net.flow;
17
18import java.util.List;
19
alshabib010c31d2014-09-26 10:01:12 -070020import org.onlab.onos.net.PortNumber;
alshabib55a55d92014-09-16 11:59:31 -070021import org.onlab.onos.net.flow.instructions.Instruction;
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070022import org.onlab.packet.IpAddress;
alshabib010c31d2014-09-26 10:01:12 -070023import org.onlab.packet.MacAddress;
24import org.onlab.packet.VlanId;
alshabib55a55d92014-09-16 11:59:31 -070025
tom8bb16062014-09-12 14:47:46 -070026/**
27 * Abstraction of network traffic treatment.
28 */
29public interface TrafficTreatment {
30
31 /**
32 * Returns list of instructions on how to treat traffic.
33 *
34 * @return list of treatment instructions
35 */
36 List<Instruction> instructions();
37
38 /**
39 * Builder of traffic treatment entities.
40 */
41 public interface Builder {
42
43 /**
alshabib010c31d2014-09-26 10:01:12 -070044 * Adds an instruction to the builder.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080045 *
alshabib010c31d2014-09-26 10:01:12 -070046 * @param instruction an instruction
47 * @return a treatment builder
tom8bb16062014-09-12 14:47:46 -070048 */
alshabib369d2942014-09-12 17:59:35 -070049 Builder add(Instruction instruction);
tom8bb16062014-09-12 14:47:46 -070050
51 /**
alshabib010c31d2014-09-26 10:01:12 -070052 * Adds a drop instruction and does not return a builder.
53 */
54 public void drop();
55
56 /**
57 * Set the output port.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080058 *
alshabib010c31d2014-09-26 10:01:12 -070059 * @param number the out port
60 * @return a treatment builder
61 */
62 public Builder setOutput(PortNumber number);
63
64 /**
65 * Sets the src l2 address.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080066 *
alshabib010c31d2014-09-26 10:01:12 -070067 * @param addr a macaddress
68 * @return a treatment builder
69 */
70 public Builder setEthSrc(MacAddress addr);
71
72 /**
73 * Sets the dst l2 address.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080074 *
alshabib010c31d2014-09-26 10:01:12 -070075 * @param addr a macaddress
76 * @return a treatment builder
77 */
78 public Builder setEthDst(MacAddress addr);
79
80 /**
81 * Sets the vlan id.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080082 *
alshabib010c31d2014-09-26 10:01:12 -070083 * @param id a vlanid
84 * @return a treatment builder
85 */
86 public Builder setVlanId(VlanId id);
87
88 /**
89 * Sets the vlan priority.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080090 *
alshabib010c31d2014-09-26 10:01:12 -070091 * @param pcp a vlan priority
92 * @return a treatment builder
93 */
94 public Builder setVlanPcp(Byte pcp);
95
96 /**
97 * Sets the src l3 address.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -080098 *
alshabib010c31d2014-09-26 10:01:12 -070099 * @param addr an ip
100 * @return a treatment builder
101 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700102 public Builder setIpSrc(IpAddress addr);
alshabib010c31d2014-09-26 10:01:12 -0700103
104 /**
105 * Sets the dst l3 address.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -0800106 *
alshabib010c31d2014-09-26 10:01:12 -0700107 * @param addr an ip
108 * @return a treatment builder
109 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700110 public Builder setIpDst(IpAddress addr);
alshabib010c31d2014-09-26 10:01:12 -0700111
112 /**
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800113 * Push MPLS ether type.
114 * @return a treatment builder.
115 */
116 public Builder pushMpls();
117
118 /**
119 * Pops MPLS ether type.
120 * @return a treatment builder.
121 */
122 public Builder popMpls();
123
124 /**
125 * Sets the mpls label.
126 * @param mplsLabel MPLS label.
127 * @return a treatment builder.
128 */
129 public Builder setMpls(Integer mplsLabel);
130
131 /**
Marc De Leenheer49087752014-10-23 13:54:09 -0700132 * Sets the optical channel ID or lambda.
Sho SHIMIZUbdaea832014-11-12 11:29:38 -0800133 *
Marc De Leenheer49087752014-10-23 13:54:09 -0700134 * @param lambda optical channel ID
135 * @return a treatment builder
136 */
137 public Builder setLambda(short lambda);
138
139 /**
tom8bb16062014-09-12 14:47:46 -0700140 * Builds an immutable traffic treatment descriptor.
141 *
142 * @return traffic treatment
143 */
144 TrafficTreatment build();
145 }
146
147}