blob: 03d25ceefcbc72a24ed385637682fc687d1c750f [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli;
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;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.net.ConnectPoint;
23import org.onosproject.net.Element;
24import org.onosproject.net.ElementId;
25import org.onosproject.net.Port;
26import org.onosproject.net.flow.FlowRule;
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070027import org.onosproject.net.group.Group;
ssyoon90a98825a2015-08-26 00:48:15 +090028
29import org.onosproject.net.statistic.TypedFlowEntryWithLoad;
Brian O'Connorabafb502014-12-02 22:26:20 -080030import org.onosproject.net.topology.TopologyCluster;
tom1380eee2014-09-24 09:22:02 -070031
Jonathan Harteb8c9472015-08-05 07:43:13 -070032import java.util.Comparator;
33
tom1380eee2014-09-24 09:22:02 -070034/**
35 * Various comparators.
36 */
37public final class Comparators {
38
39 // Ban construction
40 private Comparators() {
41 }
42
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070043 public static final Comparator<ApplicationId> APP_ID_COMPARATOR = new Comparator<ApplicationId>() {
44 @Override
45 public int compare(ApplicationId id1, ApplicationId id2) {
46 return id1.id() - id2.id();
47 }
48 };
49
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080050 public static final Comparator<Application> APP_COMPARATOR = new Comparator<Application>() {
51 @Override
52 public int compare(Application app1, Application app2) {
53 return app1.id().id() - app2.id().id();
54 }
55 };
56
tom1380eee2014-09-24 09:22:02 -070057 public static final Comparator<ElementId> ELEMENT_ID_COMPARATOR = new Comparator<ElementId>() {
58 @Override
59 public int compare(ElementId id1, ElementId id2) {
tom545708e2014-10-09 17:10:02 -070060 return id1.toString().compareTo(id2.toString());
tom1380eee2014-09-24 09:22:02 -070061 }
62 };
63
64 public static final Comparator<Element> ELEMENT_COMPARATOR = new Comparator<Element>() {
65 @Override
66 public int compare(Element e1, Element e2) {
tom545708e2014-10-09 17:10:02 -070067 return e1.id().toString().compareTo(e2.id().toString());
tom1380eee2014-09-24 09:22:02 -070068 }
69 };
70
71 public static final Comparator<FlowRule> FLOW_RULE_COMPARATOR = new Comparator<FlowRule>() {
72 @Override
73 public int compare(FlowRule f1, FlowRule f2) {
Saurav Das554f5e72015-10-27 10:28:19 -070074 int tableCompare = Integer.valueOf(f1.tableId()).compareTo(f2.tableId());
75 return (tableCompare == 0)
76 ? Long.valueOf(f1.id().value()).compareTo(f2.id().value())
77 : tableCompare;
tom1380eee2014-09-24 09:22:02 -070078 }
79 };
80
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070081 public static final Comparator<Group> GROUP_COMPARATOR = new Comparator<Group>() {
82 @Override
83 public int compare(Group g1, Group g2) {
84 return Long.valueOf(g1.id().id()).compareTo(Long.valueOf(g2.id().id()));
85 }
86 };
87
tom1380eee2014-09-24 09:22:02 -070088 public static final Comparator<Port> PORT_COMPARATOR = new Comparator<Port>() {
89 @Override
90 public int compare(Port p1, Port p2) {
91 long delta = p1.number().toLong() - p2.number().toLong();
92 return delta == 0 ? 0 : (delta < 0 ? -1 : +1);
93 }
94 };
95
96 public static final Comparator<TopologyCluster> CLUSTER_COMPARATOR = new Comparator<TopologyCluster>() {
97 @Override
98 public int compare(TopologyCluster c1, TopologyCluster c2) {
99 return c1.id().index() - c2.id().index();
100 }
101 };
102
103 public static final Comparator<ControllerNode> NODE_COMPARATOR = new Comparator<ControllerNode>() {
104 @Override
105 public int compare(ControllerNode ci1, ControllerNode ci2) {
106 return ci1.id().toString().compareTo(ci2.id().toString());
107 }
108 };
109
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700110 public static final Comparator<ConnectPoint> CONNECT_POINT_COMPARATOR = new Comparator<ConnectPoint>() {
111 @Override
112 public int compare(ConnectPoint o1, ConnectPoint o2) {
113 int compareId = ELEMENT_ID_COMPARATOR.compare(o1.elementId(), o2.elementId());
114 return (compareId != 0) ?
115 compareId :
116 Long.signum(o1.port().toLong() - o2.port().toLong());
117 }
118 };
119
Jonathan Harteb8c9472015-08-05 07:43:13 -0700120 public static final Comparator<Interface> INTERFACES_COMPARATOR = (intf1, intf2) ->
121 CONNECT_POINT_COMPARATOR.compare(intf1.connectPoint(), intf2.connectPoint());
122
ssyoon90a98825a2015-08-26 00:48:15 +0900123 public static final Comparator<TypedFlowEntryWithLoad> TYPEFLOWENTRY_WITHLOAD_COMPARATOR =
124 new Comparator<TypedFlowEntryWithLoad>() {
125 @Override
126 public int compare(TypedFlowEntryWithLoad fe1, TypedFlowEntryWithLoad fe2) {
127 long delta = fe1.load().rate() - fe2.load().rate();
128 return delta == 0 ? 0 : (delta > 0 ? -1 : +1);
129 }
130 };
tom1380eee2014-09-24 09:22:02 -0700131}