blob: 080094271400d159da8ce1583823c4fc7945c4e1 [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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli.net;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080017
18import org.apache.karaf.shell.commands.Command;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.cli.AbstractShellCommand;
20import org.onosproject.cluster.Leadership;
21import org.onosproject.cluster.LeadershipService;
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080022
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
Jonathan Hart82b9fec2015-02-03 16:18:54 -080032 private static final String FMT = "%-20s: %15s %5s";
Brian O'Connora0d31002014-12-01 13:43:18 -080033
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();
Jonathan Hart82b9fec2015-02-03 16:18:54 -080038 print(FMT, "Topic", "Leader", "Epoch");
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080039 for (String topic : leaderBoard.keySet()) {
Jonathan Hart82b9fec2015-02-03 16:18:54 -080040 Leadership leadership = leaderBoard.get(topic);
41 print(FMT, topic, leadership.leader(), leadership.epoch());
Yuta HIGUCHIc2bf3d82014-11-28 18:50:41 -080042 }
43 }
44
45}