blob: f794ae149ac83753137b25064f8f504d1a836f41 [file] [log] [blame]
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -07003 *
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
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070018import org.onlab.packet.TpPort;
19
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070020import java.util.Objects;
21
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070022/**
23 * Implementation of TCP port criterion (16 bits unsigned integer).
24 */
25public final class TcpPortCriterion implements Criterion {
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070026 private final TpPort tcpPort;
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070027 private final Type type;
28
29 /**
30 * Constructor.
31 *
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070032 * @param tcpPort the TCP port to match
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070033 * @param type the match type. Should be either Type.TCP_SRC or
34 * Type.TCP_DST
35 */
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070036 TcpPortCriterion(TpPort tcpPort, Type type) {
37 this.tcpPort = tcpPort;
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070038 this.type = type;
39 }
40
41 @Override
42 public Type type() {
43 return this.type;
44 }
45
46 /**
47 * Gets the TCP port to match.
48 *
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070049 * @return the TCP port to match
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070050 */
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070051 public TpPort tcpPort() {
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070052 return this.tcpPort;
53 }
54
55 @Override
56 public String toString() {
Jonathan Hartc7840bd2016-01-21 23:26:29 -080057 return type().toString() + SEPARATOR + tcpPort;
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070058 }
59
60 @Override
61 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -070062 return Objects.hash(type().ordinal(), tcpPort);
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070063 }
64
65 @Override
66 public boolean equals(Object obj) {
67 if (this == obj) {
68 return true;
69 }
70 if (obj instanceof TcpPortCriterion) {
71 TcpPortCriterion that = (TcpPortCriterion) obj;
72 return Objects.equals(tcpPort, that.tcpPort) &&
73 Objects.equals(type, that.type);
74 }
75 return false;
76 }
77}