blob: 0ab6845f3fbc3de3ba2f19e6d7ff46a8a05b8d36 [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;
Brian O'Connorabafb502014-12-02 22:26:20 -080028import org.onosproject.net.host.PortAddresses;
29import org.onosproject.net.topology.TopologyCluster;
tom1380eee2014-09-24 09:22:02 -070030
Jonathan Harteb8c9472015-08-05 07:43:13 -070031import java.util.Comparator;
32
tom1380eee2014-09-24 09:22:02 -070033/**
34 * Various comparators.
35 */
36public final class Comparators {
37
38 // Ban construction
39 private Comparators() {
40 }
41
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070042 public static final Comparator<ApplicationId> APP_ID_COMPARATOR = new Comparator<ApplicationId>() {
43 @Override
44 public int compare(ApplicationId id1, ApplicationId id2) {
45 return id1.id() - id2.id();
46 }
47 };
48
Thomas Vachuskaebf5e542015-02-03 19:38:13 -080049 public static final Comparator<Application> APP_COMPARATOR = new Comparator<Application>() {
50 @Override
51 public int compare(Application app1, Application app2) {
52 return app1.id().id() - app2.id().id();
53 }
54 };
55
tom1380eee2014-09-24 09:22:02 -070056 public static final Comparator<ElementId> ELEMENT_ID_COMPARATOR = new Comparator<ElementId>() {
57 @Override
58 public int compare(ElementId id1, ElementId id2) {
tom545708e2014-10-09 17:10:02 -070059 return id1.toString().compareTo(id2.toString());
tom1380eee2014-09-24 09:22:02 -070060 }
61 };
62
63 public static final Comparator<Element> ELEMENT_COMPARATOR = new Comparator<Element>() {
64 @Override
65 public int compare(Element e1, Element e2) {
tom545708e2014-10-09 17:10:02 -070066 return e1.id().toString().compareTo(e2.id().toString());
tom1380eee2014-09-24 09:22:02 -070067 }
68 };
69
70 public static final Comparator<FlowRule> FLOW_RULE_COMPARATOR = new Comparator<FlowRule>() {
71 @Override
72 public int compare(FlowRule f1, FlowRule f2) {
73 return Long.valueOf(f1.id().value()).compareTo(f2.id().value());
74 }
75 };
76
Srikanth Vavilapalli10e75cd2015-04-13 16:21:24 -070077 public static final Comparator<Group> GROUP_COMPARATOR = new Comparator<Group>() {
78 @Override
79 public int compare(Group g1, Group g2) {
80 return Long.valueOf(g1.id().id()).compareTo(Long.valueOf(g2.id().id()));
81 }
82 };
83
tom1380eee2014-09-24 09:22:02 -070084 public static final Comparator<Port> PORT_COMPARATOR = new Comparator<Port>() {
85 @Override
86 public int compare(Port p1, Port p2) {
87 long delta = p1.number().toLong() - p2.number().toLong();
88 return delta == 0 ? 0 : (delta < 0 ? -1 : +1);
89 }
90 };
91
92 public static final Comparator<TopologyCluster> CLUSTER_COMPARATOR = new Comparator<TopologyCluster>() {
93 @Override
94 public int compare(TopologyCluster c1, TopologyCluster c2) {
95 return c1.id().index() - c2.id().index();
96 }
97 };
98
99 public static final Comparator<ControllerNode> NODE_COMPARATOR = new Comparator<ControllerNode>() {
100 @Override
101 public int compare(ControllerNode ci1, ControllerNode ci2) {
102 return ci1.id().toString().compareTo(ci2.id().toString());
103 }
104 };
105
Jonathan Hart61d4ebc2014-10-29 11:08:26 -0700106 public static final Comparator<ConnectPoint> CONNECT_POINT_COMPARATOR = new Comparator<ConnectPoint>() {
107 @Override
108 public int compare(ConnectPoint o1, ConnectPoint o2) {
109 int compareId = ELEMENT_ID_COMPARATOR.compare(o1.elementId(), o2.elementId());
110 return (compareId != 0) ?
111 compareId :
112 Long.signum(o1.port().toLong() - o2.port().toLong());
113 }
114 };
115
116 public static final Comparator<PortAddresses> ADDRESSES_COMPARATOR = new Comparator<PortAddresses>() {
117 @Override
118 public int compare(PortAddresses arg0, PortAddresses arg1) {
119 return CONNECT_POINT_COMPARATOR.compare(arg0.connectPoint(), arg1.connectPoint());
120 }
121 };
122
Jonathan Harteb8c9472015-08-05 07:43:13 -0700123 public static final Comparator<Interface> INTERFACES_COMPARATOR = (intf1, intf2) ->
124 CONNECT_POINT_COMPARATOR.compare(intf1.connectPoint(), intf2.connectPoint());
125
tom1380eee2014-09-24 09:22:02 -0700126}