blob: 2e1f45146ad1fee6f2f8c7820d19041407f43995 [file] [log] [blame]
Jonathan Hart26a8d952015-12-02 15:16:35 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Jonathan Hart26a8d952015-12-02 15:16:35 -08003 *
4 * 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
7 *
8 * 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.
15 */
16
17package org.onosproject.net.flow.criteria;
18
19import com.google.common.annotations.Beta;
20import com.google.common.base.MoreObjects;
21
22import java.util.Objects;
23
24/**
25 * Type of selector extensions.
26 */
27@Beta
28public class ExtensionSelectorType {
29
30 /**
31 * A list of well-known named extension selector type codes.
32 * These numbers have no impact on the actual OF type id.
33 */
34 public enum ExtensionSelectorTypes {
Phaneendra Mandaefb38752015-12-04 00:43:38 +053035 NICIRA_MATCH_NSH_SPI(0),
36 NICIRA_MATCH_NSH_SI(1),
37 NICIRA_MATCH_NSH_CH1(2),
38 NICIRA_MATCH_NSH_CH2(3),
39 NICIRA_MATCH_NSH_CH3(4),
Charles Chan14967c22015-12-07 11:11:50 -080040 NICIRA_MATCH_NSH_CH4(5),
Phaneendra Manda8db7d092016-06-04 00:17:24 +053041 NICIRA_MATCH_ENCAP_ETH_TYPE(6),
Frank Wang5733c382017-03-28 10:15:18 +080042 NICIRA_MATCH_CONNTRACK_STATE(7),
43 NICIRA_MATCH_CONNTRACK_ZONE(8),
44 NICIRA_MATCH_CONNTRACK_MARK(9),
45 NICIRA_MATCH_CONNTRACK_LABEL(10),
Carmelo Cascone2ea177b2016-02-25 18:38:42 -080046 OFDPA_MATCH_VLAN_VID(16),
Pier Ventre6f630052016-10-18 09:58:41 -070047 OFDPA_MATCH_OVID(17),
Pier Ventre9cf536b2016-10-21 13:30:18 -070048 OFDPA_MATCH_MPLS_L2_PORT(18),
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +053049 EXT_MATCH_FLOW_TYPE(20),
Andreas Pantelopoulosfdcfe532018-04-02 10:59:23 -070050 OFDPA_MATCH_ACTSET_OUTPUT(19),
51 OFDPA_MATCH_ALLOW_VLAN_TRANSLATION(21),
Frank Wang72c5e432016-09-23 17:20:49 +080052
53 UNRESOLVED_TYPE(200);
Jonathan Hart26a8d952015-12-02 15:16:35 -080054
55 private ExtensionSelectorType type;
56
57 /**
58 * Creates a new named extension selector type.
59 *
60 * @param type type code
61 */
62 ExtensionSelectorTypes(int type) {
63 this.type = new ExtensionSelectorType(type);
64 }
65
66 /**
67 * Gets the extension type object for this named type code.
68 *
69 * @return extension type object
70 */
71 public ExtensionSelectorType type() {
72 return type;
73 }
74 }
75
76 private final int type;
77
78 /**
79 * Creates an extension type with the given int type code.
80 *
81 * @param type type code
82 */
83 public ExtensionSelectorType(int type) {
84 this.type = type;
85 }
86
Carmelo Cascone17972822016-05-11 17:48:56 -070087 /**
88 * Returns the integer value associated with this type.
89 *
90 * @return an integer value
91 */
92 public int toInt() {
93 return this.type;
94 }
95
Jonathan Hart26a8d952015-12-02 15:16:35 -080096 @Override
97 public int hashCode() {
98 return Objects.hash(type);
99 }
100
101 @Override
102 public boolean equals(Object obj) {
103 if (this == obj) {
104 return true;
105 }
106 if (obj instanceof ExtensionSelectorType) {
107 final ExtensionSelectorType that = (ExtensionSelectorType) obj;
108 return this.type == that.type;
109 }
110 return false;
111 }
112
113 @Override
114 public String toString() {
115 return MoreObjects.toStringHelper(ExtensionSelectorType.class)
116 .add("type", type)
117 .toString();
118 }
119}