blob: c911132a70ba0d23cf0d9d8a53b0927ccff11c0d [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -07001package org.projectfloodlight.openflow.protocol.match;
2
3import org.projectfloodlight.openflow.types.ArpOpcode;
Rich Laneeb21c4f2013-10-28 17:34:41 -07004import org.projectfloodlight.openflow.types.ClassId;
Yotam Harcholf3f11152013-09-05 16:47:16 -07005import org.projectfloodlight.openflow.types.EthType;
6import org.projectfloodlight.openflow.types.ICMPv4Code;
7import org.projectfloodlight.openflow.types.ICMPv4Type;
Yotam Harchola289d552013-09-16 10:10:40 -07008import org.projectfloodlight.openflow.types.IPv4Address;
9import org.projectfloodlight.openflow.types.IPv6Address;
Yotam Harcholf3f11152013-09-05 16:47:16 -070010import org.projectfloodlight.openflow.types.IPv6FlowLabel;
11import org.projectfloodlight.openflow.types.IpDscp;
12import org.projectfloodlight.openflow.types.IpEcn;
13import org.projectfloodlight.openflow.types.IpProtocol;
Rich Lane376cafe2013-10-27 21:49:14 -070014import org.projectfloodlight.openflow.types.LagId;
Yotam Harcholf3f11152013-09-05 16:47:16 -070015import org.projectfloodlight.openflow.types.MacAddress;
Andreas Wundsam520c8802013-10-08 22:05:23 -070016import org.projectfloodlight.openflow.types.OFBitMask128;
Sovietaced25021ec2014-12-31 15:44:21 -050017import org.projectfloodlight.openflow.types.OFBitMask512;
Rich Lane9c27b5d2013-10-30 17:14:32 -070018import org.projectfloodlight.openflow.types.OFBooleanValue;
Yotam Harcholf3f11152013-09-05 16:47:16 -070019import org.projectfloodlight.openflow.types.OFMetadata;
20import org.projectfloodlight.openflow.types.OFPort;
21import org.projectfloodlight.openflow.types.OFValueType;
Andreas Wundsam98a18632013-11-05 11:34:24 -080022import org.projectfloodlight.openflow.types.OFVlanVidMatch;
Yotam Harcholf3f11152013-09-05 16:47:16 -070023import org.projectfloodlight.openflow.types.TransportPort;
Rich Lane9b178072014-05-19 15:31:55 -070024import org.projectfloodlight.openflow.types.U16;
Yotam Harchola86e4252013-09-06 15:36:28 -070025import org.projectfloodlight.openflow.types.U32;
Sovietacedfbb87082015-07-21 17:55:59 -040026import org.projectfloodlight.openflow.types.U64;
Yotam Harchola86e4252013-09-06 15:36:28 -070027import org.projectfloodlight.openflow.types.U8;
Rich Lane53ddf5c2014-03-20 15:24:08 -070028import org.projectfloodlight.openflow.types.UDF;
Rich Laneeb21c4f2013-10-28 17:34:41 -070029import org.projectfloodlight.openflow.types.VRF;
Andreas Wundsam98a18632013-11-05 11:34:24 -080030import org.projectfloodlight.openflow.types.VlanPcp;
Praseed Balakrishnan2ed6da02014-09-18 17:02:48 -070031import org.projectfloodlight.openflow.types.CircuitSignalID;
Yafit Hadarf8caac02015-08-25 10:21:44 +030032import org.projectfloodlight.openflow.types.OduSignalID;
Yotam Harcholf3f11152013-09-05 16:47:16 -070033
Yotam Harcholf3f11152013-09-05 16:47:16 -070034public class MatchField<F extends OFValueType<F>> {
35 private final String name;
36 public final MatchFields id;
37 private final Prerequisite<?>[] prerequisites;
38
39 private MatchField(final String name, final MatchFields id, Prerequisite<?>... prerequisites) {
40 this.name = name;
41 this.id = id;
42 this.prerequisites = prerequisites;
43 }
44
45 public final static MatchField<OFPort> IN_PORT =
46 new MatchField<OFPort>("in_port", MatchFields.IN_PORT);
47
48 public final static MatchField<OFPort> IN_PHY_PORT =
49 new MatchField<OFPort>("in_phy_port", MatchFields.IN_PHY_PORT,
50 new Prerequisite<OFPort>(MatchField.IN_PORT));
51
52 public final static MatchField<OFMetadata> METADATA =
53 new MatchField<OFMetadata>("metadata", MatchFields.METADATA);
54
55 public final static MatchField<MacAddress> ETH_DST =
56 new MatchField<MacAddress>("eth_dst", MatchFields.ETH_DST);
57
58 public final static MatchField<MacAddress> ETH_SRC =
59 new MatchField<MacAddress>("eth_src", MatchFields.ETH_SRC);
60
61 public final static MatchField<EthType> ETH_TYPE =
62 new MatchField<EthType>("eth_type", MatchFields.ETH_TYPE);
63
Andreas Wundsam98a18632013-11-05 11:34:24 -080064 public final static MatchField<OFVlanVidMatch> VLAN_VID =
65 new MatchField<OFVlanVidMatch>("vlan_vid", MatchFields.VLAN_VID);
Yotam Harcholf3f11152013-09-05 16:47:16 -070066
67 public final static MatchField<VlanPcp> VLAN_PCP =
68 new MatchField<VlanPcp>("vlan_pcp", MatchFields.VLAN_PCP,
Andreas Wundsam98a18632013-11-05 11:34:24 -080069 new Prerequisite<OFVlanVidMatch>(MatchField.VLAN_VID));
Yotam Harcholf3f11152013-09-05 16:47:16 -070070
71 public final static MatchField<IpDscp> IP_DSCP =
72 new MatchField<IpDscp>("ip_dscp", MatchFields.IP_DSCP,
Andreas Wundsamb70b0442013-09-23 14:44:43 -070073 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4, EthType.IPv6));
Yotam Harcholf3f11152013-09-05 16:47:16 -070074
75 public final static MatchField<IpEcn> IP_ECN =
Ronald Li8083dfa2013-11-20 15:00:05 -080076 new MatchField<IpEcn>("ip_ecn", MatchFields.IP_ECN,
Andreas Wundsamb70b0442013-09-23 14:44:43 -070077 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4, EthType.IPv6));
Yotam Harcholf3f11152013-09-05 16:47:16 -070078
79 public final static MatchField<IpProtocol> IP_PROTO =
80 new MatchField<IpProtocol>("ip_proto", MatchFields.IP_PROTO,
Andreas Wundsamb70b0442013-09-23 14:44:43 -070081 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4, EthType.IPv6));
Yotam Harcholf3f11152013-09-05 16:47:16 -070082
Yotam Harchola289d552013-09-16 10:10:40 -070083 public final static MatchField<IPv4Address> IPV4_SRC =
84 new MatchField<IPv4Address>("ipv4_src", MatchFields.IPV4_SRC,
Andreas Wundsamb70b0442013-09-23 14:44:43 -070085 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4));
Yotam Harcholf3f11152013-09-05 16:47:16 -070086
Yotam Harchola289d552013-09-16 10:10:40 -070087 public final static MatchField<IPv4Address> IPV4_DST =
88 new MatchField<IPv4Address>("ipv4_dst", MatchFields.IPV4_DST,
Andreas Wundsamb70b0442013-09-23 14:44:43 -070089 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4));
Yotam Harcholf3f11152013-09-05 16:47:16 -070090
91 public final static MatchField<TransportPort> TCP_SRC = new MatchField<TransportPort>(
92 "tcp_src", MatchFields.TCP_SRC,
Andreas Wundsam520c8802013-10-08 22:05:23 -070093 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.TCP));
Yotam Harcholf3f11152013-09-05 16:47:16 -070094
95 public final static MatchField<TransportPort> TCP_DST = new MatchField<TransportPort>(
96 "tcp_dst", MatchFields.TCP_DST,
Andreas Wundsam520c8802013-10-08 22:05:23 -070097 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.TCP));
Yotam Harcholf3f11152013-09-05 16:47:16 -070098
99 public final static MatchField<TransportPort> UDP_SRC = new MatchField<TransportPort>(
100 "udp_src", MatchFields.UDP_SRC,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700101 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.UDP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700102
103 public final static MatchField<TransportPort> UDP_DST = new MatchField<TransportPort>(
104 "udp_dst", MatchFields.UDP_DST,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700105 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.UDP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700106
107 public final static MatchField<TransportPort> SCTP_SRC = new MatchField<TransportPort>(
108 "sctp_src", MatchFields.SCTP_SRC,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700109 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.SCTP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700110
111 public final static MatchField<TransportPort> SCTP_DST = new MatchField<TransportPort>(
112 "sctp_dst", MatchFields.SCTP_DST,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700113 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.SCTP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700114
115 public final static MatchField<ICMPv4Type> ICMPV4_TYPE = new MatchField<ICMPv4Type>(
Ronald Lid7a63f02013-11-20 15:49:33 -0800116 "icmpv4_type", MatchFields.ICMPV4_TYPE,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700117 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.ICMP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700118
119 public final static MatchField<ICMPv4Code> ICMPV4_CODE = new MatchField<ICMPv4Code>(
Ronald Lid7a63f02013-11-20 15:49:33 -0800120 "icmpv4_code", MatchFields.ICMPV4_CODE,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700121 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.ICMP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700122
123 public final static MatchField<ArpOpcode> ARP_OP = new MatchField<ArpOpcode>(
124 "arp_op", MatchFields.ARP_OP,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700125 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.ARP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700126
Yotam Harchola289d552013-09-16 10:10:40 -0700127 public final static MatchField<IPv4Address> ARP_SPA =
128 new MatchField<IPv4Address>("arp_spa", MatchFields.ARP_SPA,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700129 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.ARP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700130
Yotam Harchola289d552013-09-16 10:10:40 -0700131 public final static MatchField<IPv4Address> ARP_TPA =
132 new MatchField<IPv4Address>("arp_tpa", MatchFields.ARP_TPA,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700133 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.ARP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700134
135 public final static MatchField<MacAddress> ARP_SHA =
136 new MatchField<MacAddress>("arp_sha", MatchFields.ARP_SHA,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700137 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.ARP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700138
139 public final static MatchField<MacAddress> ARP_THA =
140 new MatchField<MacAddress>("arp_tha", MatchFields.ARP_THA,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700141 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.ARP));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700142
Yotam Harchola289d552013-09-16 10:10:40 -0700143 public final static MatchField<IPv6Address> IPV6_SRC =
144 new MatchField<IPv6Address>("ipv6_src", MatchFields.IPV6_SRC,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700145 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv6));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700146
Yotam Harchola289d552013-09-16 10:10:40 -0700147 public final static MatchField<IPv6Address> IPV6_DST =
148 new MatchField<IPv6Address>("ipv6_dst", MatchFields.IPV6_DST,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700149 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv6));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700150
151 public final static MatchField<IPv6FlowLabel> IPV6_FLABEL =
152 new MatchField<IPv6FlowLabel>("ipv6_flabel", MatchFields.IPV6_FLABEL,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700153 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv6));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700154
Yotam Harchola86e4252013-09-06 15:36:28 -0700155 public final static MatchField<U8> ICMPV6_TYPE =
156 new MatchField<U8>("icmpv6_type", MatchFields.ICMPV6_TYPE,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700157 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.IPv6_ICMP));
Yotam Harchola86e4252013-09-06 15:36:28 -0700158
159 public final static MatchField<U8> ICMPV6_CODE =
160 new MatchField<U8>("icmpv6_code", MatchFields.ICMPV6_CODE,
Andreas Wundsam520c8802013-10-08 22:05:23 -0700161 new Prerequisite<IpProtocol>(MatchField.IP_PROTO, IpProtocol.IPv6_ICMP));
Yotam Harchola86e4252013-09-06 15:36:28 -0700162
Yotam Harchola289d552013-09-16 10:10:40 -0700163 public final static MatchField<IPv6Address> IPV6_ND_TARGET =
164 new MatchField<IPv6Address>("ipv6_nd_target", MatchFields.IPV6_ND_TARGET,
Yotam Harchola86e4252013-09-06 15:36:28 -0700165 new Prerequisite<U8>(MatchField.ICMPV6_TYPE, U8.of((short)135), U8.of((short)136)));
166
167 public final static MatchField<MacAddress> IPV6_ND_SLL =
168 new MatchField<MacAddress>("ipv6_nd_sll", MatchFields.IPV6_ND_SLL,
169 new Prerequisite<U8>(MatchField.ICMPV6_TYPE, U8.of((short)135)));
170
171 public final static MatchField<MacAddress> IPV6_ND_TLL =
172 new MatchField<MacAddress>("ipv6_nd_tll", MatchFields.IPV6_ND_TLL,
173 new Prerequisite<U8>(MatchField.ICMPV6_TYPE, U8.of((short)136)));
174
175 public final static MatchField<U32> MPLS_LABEL =
176 new MatchField<U32>("mpls_label", MatchFields.MPLS_LABEL,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700177 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.MPLS_UNICAST, EthType.MPLS_MULTICAST));
Yotam Harchola86e4252013-09-06 15:36:28 -0700178
179 public final static MatchField<U8> MPLS_TC =
180 new MatchField<U8>("mpls_tc", MatchFields.MPLS_TC,
Andreas Wundsamb70b0442013-09-23 14:44:43 -0700181 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.MPLS_UNICAST, EthType.MPLS_MULTICAST));
Yotam Harchola86e4252013-09-06 15:36:28 -0700182
Saurav Dasbc266742014-10-09 16:45:27 -0700183 public final static MatchField<OFBooleanValue> MPLS_BOS =
184 new MatchField<OFBooleanValue>("mpls_bos", MatchFields.MPLS_BOS,
185 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.MPLS_UNICAST, EthType.MPLS_MULTICAST));
186
Sovietaced25021ec2014-12-31 15:44:21 -0500187 public final static MatchField<U64> TUNNEL_ID =
Byungjoon Leeb4c38b82014-04-23 14:24:59 +0900188 new MatchField<U64>("tunnel_id", MatchFields.TUNNEL_ID);
189
Rich Lane9f595042014-10-31 15:56:34 -0700190 public final static MatchField<U16> IPV6_EXTHDR =
191 new MatchField<U16>("ipv6_exthdr", MatchFields.IPV6_EXTHDR);
192
193 public final static MatchField<OFBooleanValue> PBB_UCA =
194 new MatchField<OFBooleanValue>("pbb_uca", MatchFields.PBB_UCA);
Sovietaced25021ec2014-12-31 15:44:21 -0500195
Ryan Izard712c4a12014-12-01 08:42:29 -0500196 public final static MatchField<IPv4Address> TUNNEL_IPV4_SRC =
197 new MatchField<IPv4Address>("tunnel_ipv4_src", MatchFields.TUNNEL_IPV4_SRC,
198 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4));
199
200 public final static MatchField<IPv4Address> TUNNEL_IPV4_DST =
201 new MatchField<IPv4Address>("tunnel_ipv4_dst", MatchFields.TUNNEL_IPV4_DST,
202 new Prerequisite<EthType>(MatchField.ETH_TYPE, EthType.IPv4));
Rich Lane9f595042014-10-31 15:56:34 -0700203
Yotam Harchol2c535582013-10-01 15:50:20 -0700204 public final static MatchField<OFBitMask128> BSN_IN_PORTS_128 =
Ronald Lia07b2572013-11-18 13:54:08 -0800205 new MatchField<OFBitMask128>("bsn_in_ports_128", MatchFields.BSN_IN_PORTS_128);
Yotam Harchola11f38b2013-09-26 15:38:17 -0700206
Sovietaced25021ec2014-12-31 15:44:21 -0500207 public final static MatchField<OFBitMask512> BSN_IN_PORTS_512 =
208 new MatchField<OFBitMask512>("bsn_in_ports_512", MatchFields.BSN_IN_PORTS_512);
209
Rich Lane376cafe2013-10-27 21:49:14 -0700210 public final static MatchField<LagId> BSN_LAG_ID =
211 new MatchField<LagId>("bsn_lag_id", MatchFields.BSN_LAG_ID);
Rich Lane1424d0b2013-10-24 17:16:24 -0700212
Rich Laneeb21c4f2013-10-28 17:34:41 -0700213 public final static MatchField<VRF> BSN_VRF =
214 new MatchField<VRF>("bsn_vrf", MatchFields.BSN_VRF);
215
Rich Lane9c27b5d2013-10-30 17:14:32 -0700216 public final static MatchField<OFBooleanValue> BSN_GLOBAL_VRF_ALLOWED =
217 new MatchField<OFBooleanValue>("bsn_global_vrf_allowed", MatchFields.BSN_GLOBAL_VRF_ALLOWED);
Rich Laneeb21c4f2013-10-28 17:34:41 -0700218
219 public final static MatchField<ClassId> BSN_L3_INTERFACE_CLASS_ID =
220 new MatchField<ClassId>("bsn_l3_interface_class_id", MatchFields.BSN_L3_INTERFACE_CLASS_ID);
221
222 public final static MatchField<ClassId> BSN_L3_SRC_CLASS_ID =
223 new MatchField<ClassId>("bsn_l3_src_class_id", MatchFields.BSN_L3_SRC_CLASS_ID);
224
225 public final static MatchField<ClassId> BSN_L3_DST_CLASS_ID =
226 new MatchField<ClassId>("bsn_l3_dst_class_id", MatchFields.BSN_L3_DST_CLASS_ID);
227
Rich Lane917bb9a2014-03-11 17:49:56 -0700228 public final static MatchField<ClassId> BSN_EGR_PORT_GROUP_ID =
229 new MatchField<ClassId>("bsn_egr_port_group_id", MatchFields.BSN_EGR_PORT_GROUP_ID);
230
Rich Lane75d235a2015-02-03 17:40:10 -0800231 public final static MatchField<ClassId> BSN_INGRESS_PORT_GROUP_ID =
232 new MatchField<ClassId>("bsn_ingress_port_group_id", MatchFields.BSN_INGRESS_PORT_GROUP_ID);
233
Rich Lane53ddf5c2014-03-20 15:24:08 -0700234 public final static MatchField<UDF> BSN_UDF0 =
235 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF0);
236
237 public final static MatchField<UDF> BSN_UDF1 =
238 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF1);
239
240 public final static MatchField<UDF> BSN_UDF2 =
241 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF2);
242
243 public final static MatchField<UDF> BSN_UDF3 =
244 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF3);
245
246 public final static MatchField<UDF> BSN_UDF4 =
247 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF4);
248
249 public final static MatchField<UDF> BSN_UDF5 =
250 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF5);
251
252 public final static MatchField<UDF> BSN_UDF6 =
253 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF6);
254
255 public final static MatchField<UDF> BSN_UDF7 =
256 new MatchField<UDF>("bsn_udf", MatchFields.BSN_UDF7);
257
Rich Lane9b178072014-05-19 15:31:55 -0700258 public final static MatchField<U16> BSN_TCP_FLAGS =
259 new MatchField<U16>("bsn_tcp_flags", MatchFields.BSN_TCP_FLAGS);
260
Rich Lanea5eeae32014-06-26 19:59:04 -0700261 public final static MatchField<ClassId> BSN_VLAN_XLATE_PORT_GROUP_ID =
262 new MatchField<ClassId>("bsn_vlan_xlate_port_group_id", MatchFields.BSN_VLAN_XLATE_PORT_GROUP_ID);
263
Praseed Balakrishnan2ed6da02014-09-18 17:02:48 -0700264 public final static MatchField<U8> OCH_SIGTYPE =
265 new MatchField<U8>("och_sigtype",
Praseed Balakrishnanf78068b2014-09-04 10:30:40 -0700266 MatchFields.OCH_SIGTYPE);
267
Praseed Balakrishnan2ed6da02014-09-18 17:02:48 -0700268 public final static MatchField<U8> OCH_SIGTYPE_BASIC =
269 new MatchField<U8>("och_sigtype_basic",
270 MatchFields.OCH_SIGTYPE_BASIC);
Praseed Balakrishnandb949d42014-12-02 14:28:20 -0800271
Praseed Balakrishnandb949d42014-12-02 14:28:20 -0800272 public final static MatchField<CircuitSignalID> OCH_SIGID =
273 new MatchField<CircuitSignalID>("och_sigid",
274 MatchFields.OCH_SIGID);
275
276 public final static MatchField<CircuitSignalID> OCH_SIGID_BASIC =
277 new MatchField<CircuitSignalID>("och_sigid_basic",
278 MatchFields.OCH_SIGID);
BitOhenry83b53232015-11-18 17:26:55 +0800279
Wilson Ng15efef92014-11-05 14:27:35 -0800280 public final static MatchField<OFBooleanValue> BSN_L2_CACHE_HIT =
281 new MatchField<OFBooleanValue>("bsn_l2_cache_hit", MatchFields.BSN_L2_CACHE_HIT);
Wilson Nga3483d62014-11-05 13:50:37 -0800282
Ken Chiang8df4a112015-05-12 10:15:44 -0700283 public final static MatchField<U32> BSN_VXLAN_NETWORK_ID =
284 new MatchField<U32>("bsn_vxlan_network_id", MatchFields.BSN_VXLAN_NETWORK_ID);
285
286 public final static MatchField<MacAddress> BSN_INNER_ETH_DST =
287 new MatchField<MacAddress>("bsn_inner_eth_dst", MatchFields.BSN_INNER_ETH_DST);
288
289 public final static MatchField<MacAddress> BSN_INNER_ETH_SRC =
290 new MatchField<MacAddress>("bsn_inner_eth_src", MatchFields.BSN_INNER_ETH_SRC);
291
Wilson Ng95afd512015-07-13 14:31:00 -0700292 public final static MatchField<OFVlanVidMatch> BSN_INNER_VLAN_VID =
293 new MatchField<OFVlanVidMatch>("bsn_inner_vlan_vid", MatchFields.BSN_INNER_VLAN_VID);
294
Yafit Hadarf8caac02015-08-25 10:21:44 +0300295 public final static MatchField<OduSignalID> EXP_ODU_SIG_ID =
296 new MatchField<OduSignalID>("exp_odu_sig_id", MatchFields.EXP_ODU_SIG_ID);
BitOhenry83b53232015-11-18 17:26:55 +0800297
Yafit Hadarf8caac02015-08-25 10:21:44 +0300298 public final static MatchField<U8> EXP_ODU_SIGTYPE =
299 new MatchField<U8>("exp_odu_sigtype", MatchFields.EXP_ODU_SIGTYPE);
BitOhenry83b53232015-11-18 17:26:55 +0800300
Yafit Hadarf8caac02015-08-25 10:21:44 +0300301 public final static MatchField<CircuitSignalID> EXP_OCH_SIG_ID =
302 new MatchField<CircuitSignalID>("exp_och_sig_id", MatchFields.EXP_OCH_SIG_ID);
BitOhenry83b53232015-11-18 17:26:55 +0800303
Yafit Hadarf8caac02015-08-25 10:21:44 +0300304 public final static MatchField<U8> EXP_OCH_SIGTYPE =
305 new MatchField<U8>("exp_och_sigtype", MatchFields.EXP_OCH_SIGTYPE);
306
BitOhenry83b53232015-11-18 17:26:55 +0800307 public final static MatchField<U32> REG0 =
308 new MatchField<U32>("reg0", MatchFields.REG0);
309
310 public final static MatchField<U32> REG1 =
311 new MatchField<U32>("reg1", MatchFields.REG1);
312
313 public final static MatchField<U32> REG2 =
314 new MatchField<U32>("reg2", MatchFields.REG2);
315
316 public final static MatchField<U32> REG3 =
317 new MatchField<U32>("reg3", MatchFields.REG3);
318
319 public final static MatchField<U32> REG4 =
320 new MatchField<U32>("reg4", MatchFields.REG4);
321
322 public final static MatchField<U32> REG5 =
323 new MatchField<U32>("reg5", MatchFields.REG5);
324
325 public final static MatchField<U32> REG6 =
326 new MatchField<U32>("reg6", MatchFields.REG6);
327
328 public final static MatchField<U32> REG7 =
329 new MatchField<U32>("reg7", MatchFields.REG7);
330
Yotam Harcholf3f11152013-09-05 16:47:16 -0700331 public String getName() {
332 return name;
333 }
334
335 public boolean arePrerequisitesOK(Match match) {
336 for (Prerequisite<?> p : this.prerequisites) {
337 if (!p.isSatisfied(match)) {
338 return false;
339 }
340 }
341 return true;
342 }
343
344}