blob: 8406aed7b20145308625eb3b716f1a3e10d92b8e [file] [log] [blame]
Carmelo Cascone1022a4e2017-05-25 00:16:18 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Cascone1022a4e2017-05-25 00:16:18 -04003 *
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.pi.runtime;
18
19import com.google.common.annotations.Beta;
20import com.google.common.base.Objects;
21import org.onlab.util.ImmutableByteSequence;
Carmelo Cascone87892e22017-11-13 16:01:29 -080022import org.onosproject.net.pi.model.PiMatchFieldId;
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040023import org.onosproject.net.pi.model.PiMatchType;
24
25import static com.google.common.base.Preconditions.checkArgument;
26import static com.google.common.base.Preconditions.checkNotNull;
27
28/**
Carmelo Cascone87892e22017-11-13 16:01:29 -080029 * Instance of a ternary field match in a protocol-independent pipeline.
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040030 */
31@Beta
32public final class PiTernaryFieldMatch extends PiFieldMatch {
33
34 private final ImmutableByteSequence value;
35 private final ImmutableByteSequence mask;
36
37 /**
38 * Creates a new ternary field match.
39 *
40 * @param fieldId field identifier
Carmelo Cascone87892e22017-11-13 16:01:29 -080041 * @param value value
42 * @param mask mask
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040043 */
Carmelo Cascone87892e22017-11-13 16:01:29 -080044 public PiTernaryFieldMatch(PiMatchFieldId fieldId, ImmutableByteSequence value,
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040045 ImmutableByteSequence mask) {
46 super(fieldId);
47 this.value = checkNotNull(value);
48 this.mask = checkNotNull(mask);
49 checkArgument(value.size() == mask.size() && value.size() > 0,
50 "Value and mask must have same non-zero size");
51 }
52
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040053 /**
54 * Returns the value matched by this field.
55 *
56 * @return an immutable byte sequence
57 */
58 public ImmutableByteSequence value() {
59 return value;
60 }
61
62 /**
63 * Returns the mask used to match this field.
64 *
65 * @return an immutable byte sequence
66 */
67 public ImmutableByteSequence mask() {
68 return mask;
69 }
70
71 @Override
Carmelo Cascone87892e22017-11-13 16:01:29 -080072 public PiMatchType type() {
73 return PiMatchType.TERNARY;
74 }
75
76 @Override
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040077 public boolean equals(Object o) {
78 if (this == o) {
79 return true;
80 }
81 if (o == null || getClass() != o.getClass()) {
82 return false;
83 }
84 PiTernaryFieldMatch that = (PiTernaryFieldMatch) o;
85 return Objects.equal(this.fieldId(), that.fieldId()) &&
86 Objects.equal(value, that.value) &&
87 Objects.equal(mask, that.mask);
88 }
89
90 @Override
91 public int hashCode() {
92 return Objects.hashCode(this.fieldId(), value, mask);
93 }
94
95 @Override
96 public String toString() {
97 return this.fieldId().toString() + '=' + value.toString() + "&&&" + mask.toString();
98 }
99}