blob: f50ef1a596cb3a845359a6c9d87745191d9546a6 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Ray Milkeyc7477292016-03-11 10:53:43 -08002 * Copyright 2014-2016 Open Networking Laboratory
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska7d693f52014-10-21 19:17:57 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070015 */
Ray Milkeyc7477292016-03-11 10:53:43 -080016package org.onosproject.utils;
tom1380eee2014-09-24 09:22:02 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.cluster.ControllerNode;
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080019import org.onosproject.core.Application;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.core.ApplicationId;
Jonathan Harteb8c9472015-08-05 07:43:13 -070021import org.onosproject.incubator.net.intf.Interface;
Claudine Chiu31ad5272016-02-17 20:56:24 +000022import org.onosproject.net.key.DeviceKey;
Brian O'Connorabafb502014-12-02 22:26:20 -080023import org.onosproject.net.ConnectPoint;
24import org.onosproject.net.Element;
25import org.onosproject.net.ElementId;
26import org.onosproject.net.Port;
27import org.onosproject.net.flow.FlowRule;
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070028import org.onosproject.net.group.Group;
Jian Licf744442016-02-25 17:32:42 +090029import org.onosproject.net.region.Region;
ssyoon90a98825a2015-08-26 00:48:15 +090030import org.onosproject.net.statistic.TypedFlowEntryWithLoad;
Brian O'Connorabafb502014-12-02 22:26:20 -080031import org.onosproject.net.topology.TopologyCluster;
tom1380eee2014-09-24 09:22:02 -070032
Jonathan Harteb8c9472015-08-05 07:43:13 -070033import java.util.Comparator;
34
tom1380eee2014-09-24 09:22:02 -070035/**
36 * Various comparators.
37 */
38public final class Comparators {
39
40 // Ban construction
41 private Comparators() {
42 }
43
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070044 public static final Comparator<ApplicationId> APP_ID_COMPARATOR = new Comparator<ApplicationId>() {
45 @Override
46 public int compare(ApplicationId id1, ApplicationId id2) {
47 return id1.id() - id2.id();
48 }
49 };
50
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080051 public static final Comparator<Application> APP_COMPARATOR = new Comparator<Application>() {
52 @Override
53 public int compare(Application app1, Application app2) {
54 return app1.id().id() - app2.id().id();
55 }
56 };
57
tom1380eee2014-09-24 09:22:02 -070058 public static final Comparator<ElementId> ELEMENT_ID_COMPARATOR = new Comparator<ElementId>() {
59 @Override
60 public int compare(ElementId id1, ElementId id2) {
tom545708e2014-10-09 17:10:02 -070061 return id1.toString().compareTo(id2.toString());
tom1380eee2014-09-24 09:22:02 -070062 }
63 };
64
65 public static final Comparator<Element> ELEMENT_COMPARATOR = new Comparator<Element>() {
66 @Override
67 public int compare(Element e1, Element e2) {
tom545708e2014-10-09 17:10:02 -070068 return e1.id().toString().compareTo(e2.id().toString());
tom1380eee2014-09-24 09:22:02 -070069 }
70 };
71
72 public static final Comparator<FlowRule> FLOW_RULE_COMPARATOR = new Comparator<FlowRule>() {
73 @Override
74 public int compare(FlowRule f1, FlowRule f2) {
Jonathan Hartc7840bd2016-01-21 23:26:29 -080075 // Compare table IDs in ascending order
76 int tableCompare = f1.tableId() - f2.tableId();
77 if (tableCompare != 0) {
78 return tableCompare;
79 }
80 // Compare priorities in descending order
81 int priorityCompare = f2.priority() - f1.priority();
82 return (priorityCompare == 0)
Saurav Das554f5e72015-10-27 10:28:19 -070083 ? Long.valueOf(f1.id().value()).compareTo(f2.id().value())
Jonathan Hartc7840bd2016-01-21 23:26:29 -080084 : priorityCompare;
tom1380eee2014-09-24 09:22:02 -070085 }
86 };
87
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070088 public static final Comparator<Group> GROUP_COMPARATOR = new Comparator<Group>() {
89 @Override
90 public int compare(Group g1, Group g2) {
91 return Long.valueOf(g1.id().id()).compareTo(Long.valueOf(g2.id().id()));
92 }
93 };
94
tom1380eee2014-09-24 09:22:02 -070095 public static final Comparator<Port> PORT_COMPARATOR = new Comparator<Port>() {
96 @Override
97 public int compare(Port p1, Port p2) {
98 long delta = p1.number().toLong() - p2.number().toLong();
99 return delta == 0 ? 0 : (delta < 0 ? -1 : +1);
100 }
101 };
102
103 public static final Comparator<TopologyCluster> CLUSTER_COMPARATOR = new Comparator<TopologyCluster>() {
104 @Override
105 public int compare(TopologyCluster c1, TopologyCluster c2) {
106 return c1.id().index() - c2.id().index();
107 }
108 };
109
110 public static final Comparator<ControllerNode> NODE_COMPARATOR = new Comparator<ControllerNode>() {
111 @Override
112 public int compare(ControllerNode ci1, ControllerNode ci2) {
113 return ci1.id().toString().compareTo(ci2.id().toString());
114 }
115 };
116
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700117 public static final Comparator<ConnectPoint> CONNECT_POINT_COMPARATOR = new Comparator<ConnectPoint>() {
118 @Override
119 public int compare(ConnectPoint o1, ConnectPoint o2) {
120 int compareId = ELEMENT_ID_COMPARATOR.compare(o1.elementId(), o2.elementId());
121 return (compareId != 0) ?
Brian Stankee312fc72016-02-16 15:07:13 -0500122 compareId :
123 Long.signum(o1.port().toLong() - o2.port().toLong());
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700124 }
125 };
126
Jonathan Harteb8c9472015-08-05 07:43:13 -0700127 public static final Comparator<Interface> INTERFACES_COMPARATOR = (intf1, intf2) ->
128 CONNECT_POINT_COMPARATOR.compare(intf1.connectPoint(), intf2.connectPoint());
129
ssyoon90a98825a2015-08-26 00:48:15 +0900130 public static final Comparator<TypedFlowEntryWithLoad> TYPEFLOWENTRY_WITHLOAD_COMPARATOR =
131 new Comparator<TypedFlowEntryWithLoad>() {
132 @Override
133 public int compare(TypedFlowEntryWithLoad fe1, TypedFlowEntryWithLoad fe2) {
Brian Stankee312fc72016-02-16 15:07:13 -0500134 long delta = fe1.load().rate() - fe2.load().rate();
ssyoon90a98825a2015-08-26 00:48:15 +0900135 return delta == 0 ? 0 : (delta > 0 ? -1 : +1);
136 }
137 };
Brian Stankee312fc72016-02-16 15:07:13 -0500138
139 public static final Comparator<DeviceKey> DEVICE_KEY_COMPARATOR = new Comparator<DeviceKey>() {
140 @Override
141 public int compare(DeviceKey deviceKey1, DeviceKey deviceKey2) {
142 return deviceKey1.deviceKeyId().id().toString().compareTo(deviceKey2.deviceKeyId().id().toString());
143 }
144 };
Jian Licf744442016-02-25 17:32:42 +0900145
146 public static final Comparator<Region> REGION_COMPARATOR = new Comparator<Region>() {
147 @Override
148 public int compare(Region region1, Region region2) {
149 return region1.id().toString().compareTo(region2.id().toString());
150 }
151 };
tom1380eee2014-09-24 09:22:02 -0700152}