blob: f311acf47ad1fbbd0df224b189106370e4a20760 [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.p4runtime.model;
import org.onosproject.net.pi.model.PiMatchFieldId;
import org.onosproject.net.pi.model.PiMatchFieldModel;
import org.onosproject.net.pi.model.PiMatchType;
import java.util.Objects;
import static com.google.common.base.MoreObjects.toStringHelper;
/**
* Implementation of PiMatchFieldModel for P4Runtime.
*/
final class P4MatchFieldModel implements PiMatchFieldModel {
private final PiMatchFieldId id;
private final int bitWidth;
private final PiMatchType matchType;
P4MatchFieldModel(PiMatchFieldId id, int bitWidth, PiMatchType matchType) {
this.id = id;
this.bitWidth = bitWidth;
this.matchType = matchType;
}
@Override
public PiMatchFieldId id() {
return id;
}
@Override
public int bitWidth() {
return bitWidth;
}
@Override
public PiMatchType matchType() {
return matchType;
}
@Override
public int hashCode() {
return Objects.hash(id, bitWidth, matchType);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
final P4MatchFieldModel other = (P4MatchFieldModel) obj;
return Objects.equals(this.id, other.id)
&& Objects.equals(this.bitWidth, other.bitWidth)
&& Objects.equals(this.matchType, other.matchType);
}
@Override
public String toString() {
return toStringHelper(this)
.add("id", id)
.add("bitWidth", bitWidth)
.add("matchType", matchType)
.toString();
}
}