blob: ec996143e5bd91aad975e0ee6712ce5666219f04 [file] [log] [blame]
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -08001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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.onlab.onos.cli.net;
17
18import org.apache.karaf.shell.commands.Command;
19import org.onlab.onos.cli.AbstractShellCommand;
20import org.onlab.onos.cluster.Leadership;
21import org.onlab.onos.cluster.LeadershipService;
22
23import java.util.Map;
24
25/**
26 * Prints the leader for every topic.
27 */
28@Command(scope = "onos", name = "leaders",
29 description = "Finds the leader for particular topic.")
30public class LeaderCommand extends AbstractShellCommand {
31
Brian O'Connora0d31002014-12-01 13:43:18 -080032 private static final String FMT = "%-20s: %15s";
33
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080034 @Override
35 protected void execute() {
36 LeadershipService leaderService = get(LeadershipService.class);
37 Map<String, Leadership> leaderBoard = leaderService.getLeaderBoard();
Brian O'Connora0d31002014-12-01 13:43:18 -080038 print(FMT, "Topic", "Leader");
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080039 for (String topic : leaderBoard.keySet()) {
Madan Jampani8d21c792014-12-01 16:31:07 -080040 print(FMT, topic, leaderBoard.get(topic).leader());
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080041 }
42 }
43
44}