blob: d99943122f8746cce46fc6c28f495ddadef4afcf [file] [log] [blame]
Jonathan Hart6b045582016-02-03 10:00:08 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Jonathan Hart6b045582016-02-03 10:00:08 -08003 *
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 */
16
17package org.onosproject.routing.fpm.cli;
18
Ray Milkey86ad7bb2018-09-27 12:32:28 -070019import org.apache.karaf.shell.api.action.Command;
Jonathan Hartdc7e76c2017-03-27 11:35:34 -070020import org.onlab.packet.IpAddress;
Jonathan Hart6b045582016-02-03 10:00:08 -080021import org.onlab.util.Tools;
22import org.onosproject.cli.AbstractShellCommand;
Jonathan Hartdc7e76c2017-03-27 11:35:34 -070023import org.onosproject.cluster.ClusterService;
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070024import org.onosproject.routing.fpm.FpmPeerInfo;
Jonathan Hart6b045582016-02-03 10:00:08 -080025import org.onosproject.routing.fpm.FpmInfoService;
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070026import org.onosproject.routing.fpm.FpmPeer;
Jonathan Hart6b045582016-02-03 10:00:08 -080027
Jonathan Hartdc7e76c2017-03-27 11:35:34 -070028import java.util.Comparator;
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070029import java.util.Map;
Jonathan Hartdc7e76c2017-03-27 11:35:34 -070030
Jonathan Hart6b045582016-02-03 10:00:08 -080031/**
32 * Displays the current FPM connections.
33 */
34@Command(scope = "onos", name = "fpm-connections",
35 description = "Displays the current FPM connections")
36public class FpmConnectionsList extends AbstractShellCommand {
37
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070038 private static final String FORMAT = "peer %s:%s connected to %s since %s %s (%d routes locally)";
Jonathan Hart6b045582016-02-03 10:00:08 -080039
40 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070041 protected void doExecute() {
Jonathan Hartdc7e76c2017-03-27 11:35:34 -070042 FpmInfoService fpmInfo = get(FpmInfoService.class);
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070043
Kalhee Kim40beb722018-01-16 20:32:04 +000044 print(String.format("PD Pushing is %s.", fpmInfo.isPdPushEnabled() ? "enabled" : "disabled"));
45
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070046 fpmInfo.peers().entrySet().stream()
47 .sorted(Comparator.<Map.Entry<FpmPeer, FpmPeerInfo>, IpAddress>comparing(e -> e.getKey().address())
48 .thenComparing(e -> e.getKey().port()))
49 .map(Map.Entry::getValue)
50 .forEach(this::print);
51 }
52
53 private void print(FpmPeerInfo info) {
Jonathan Hartdc7e76c2017-03-27 11:35:34 -070054 ClusterService clusterService = get(ClusterService.class);
Jonathan Hart6b045582016-02-03 10:00:08 -080055
Jonathan Hartf4b2ca12017-05-17 16:10:16 -070056 info.connections().forEach(cinfo ->
57 print(FORMAT, cinfo.peer().address(), cinfo.peer().port(),
58 cinfo.connectedTo(), Tools.timeAgo(cinfo.connectTime()),
59 cinfo.connectedTo().equals(clusterService.getLocalNode().id()) ? "*" : "",
60 info.routes())
61 );
Jonathan Hart6b045582016-02-03 10:00:08 -080062 }
63}