Revert "Merge "Bug 6235 - Cookie compare in FlowRegistryKeyFactory""
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / registry / flow / FlowRegistryKeyFactory.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowplugin.impl.registry.flow;
10
11 import com.google.common.base.MoreObjects;
12 import com.google.common.base.Preconditions;
13 import java.math.BigInteger;
14 import org.opendaylight.openflowplugin.api.OFConstants;
15 import org.opendaylight.openflowplugin.api.openflow.registry.flow.FlowRegistryKey;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.Flow;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.Match;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
19
20 /**
21  * Created by Martin Bobak <mbobak@cisco.com> on 8.4.2015.
22  */
23 public class FlowRegistryKeyFactory {
24
25
26     public FlowRegistryKeyFactory() {
27     }
28
29     public static FlowRegistryKey create(final Flow flow) {
30         return new FlowRegistryKeyDto(flow);
31     }
32
33     private static final class FlowRegistryKeyDto implements FlowRegistryKey {
34
35         private final short tableId;
36         private final int priority;
37         private final BigInteger cookie;
38         private final Match match;
39
40         public FlowRegistryKeyDto(final Flow flow) {
41             //TODO: mandatory flow input values (or default values) should be specified via yang model
42             tableId = Preconditions.checkNotNull(flow.getTableId(), "flow tableId must not be null");
43             priority = MoreObjects.firstNonNull(flow.getPriority(), OFConstants.DEFAULT_FLOW_PRIORITY);
44             match = flow.getMatch()==null? new MatchBuilder().build(): flow.getMatch();
45             cookie = MoreObjects.firstNonNull(flow.getCookie(), OFConstants.DEFAULT_FLOW_COOKIE).getValue();
46         }
47
48         @Override
49         public boolean equals(final Object o) {
50             if (this == o) {
51                 return true;
52             }
53
54             if (o == null || !(o instanceof FlowRegistryKey)) {
55                 return false;
56             }
57
58             final FlowRegistryKey that = (FlowRegistryKey) o;
59
60             return getPriority() == that.getPriority() &&
61                     getTableId() == that.getTableId() &&
62                     getMatch().equals(that.getMatch());
63         }
64
65         @Override
66         public int hashCode() {
67             int result = tableId;
68             result = 31 * result + priority;
69             result = 31 * result + match.hashCode();
70             return result;
71         }
72
73         @Override
74         public short getTableId() {
75             return tableId;
76         }
77
78         @Override
79         public int getPriority() {
80             return priority;
81         }
82
83         @Override
84         public BigInteger getCookie() {
85             return cookie;
86         }
87
88         @Override
89         public Match getMatch() {
90             return match;
91         }
92     }
93 }