blob: 48b3fbf6f1795279de67c16b3b3decb306e98bd8 [file] [log] [blame]
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16package org.onosproject.net.flow.criteria;
17
18import java.util.Objects;
19
20import static com.google.common.base.MoreObjects.toStringHelper;
21
22/**
23 * Implementation of IP ECN (Explicit Congestion Notification) criterion
24 * (2 bits).
25 */
26public final class IPEcnCriterion implements Criterion {
27 private static final byte MASK = 0x3;
28 private final byte ipEcn; // IP ECN value: 2 bits
29
30 /**
31 * Constructor.
32 *
33 * @param ipEcn the IP ECN value to match (2 bits)
34 */
35 IPEcnCriterion(byte ipEcn) {
36 this.ipEcn = (byte) (ipEcn & MASK);
37 }
38
39 @Override
40 public Type type() {
41 return Type.IP_ECN;
42 }
43
44 /**
45 * Gets the IP ECN value to match.
46 *
47 * @return the IP ECN value to match (2 bits)
48 */
49 public byte ipEcn() {
50 return ipEcn;
51 }
52
53 @Override
54 public String toString() {
55 return toStringHelper(type().toString())
56 .add("ipEcn", Long.toHexString(ipEcn)).toString();
57 }
58
59 @Override
60 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -070061 return Objects.hash(type().ordinal(), ipEcn);
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070062 }
63
64 @Override
65 public boolean equals(Object obj) {
66 if (this == obj) {
67 return true;
68 }
69 if (obj instanceof IPEcnCriterion) {
70 IPEcnCriterion that = (IPEcnCriterion) obj;
71 return Objects.equals(ipEcn, that.ipEcn) &&
72 Objects.equals(this.type(), that.type());
73 }
74 return false;
75 }
76}