blob: ce3dc59fe802600f635c8187194acb0c88a5df3d [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
tom13cb4852014-09-11 12:44:17 -070019package org.onlab.onos.cli.net;
20
tom32085cf2014-10-16 00:04:33 -070021import com.fasterxml.jackson.databind.ObjectMapper;
tom13cb4852014-09-11 12:44:17 -070022import org.apache.karaf.shell.commands.Command;
23import org.onlab.onos.cli.AbstractShellCommand;
24import org.onlab.onos.net.topology.Topology;
25import org.onlab.onos.net.topology.TopologyService;
26
27/**
28 * Lists summary of the current topology.
29 */
30@Command(scope = "onos", name = "topology",
31 description = "Lists summary of the current topology")
32public class TopologyCommand extends AbstractShellCommand {
33
tom613d8142014-09-11 15:09:37 -070034 // TODO: format the time-stamp
tom13cb4852014-09-11 12:44:17 -070035 private static final String FMT =
36 "time=%s, devices=%d, links=%d, clusters=%d, paths=%d";
37
38 protected TopologyService service;
39 protected Topology topology;
40
41 /**
42 * Initializes the context for all cluster commands.
43 */
44 protected void init() {
tomcaf3bf72014-09-23 13:20:53 -070045 service = get(TopologyService.class);
tom13cb4852014-09-11 12:44:17 -070046 topology = service.currentTopology();
47 }
48
49 @Override
tom0872a172014-09-23 11:24:26 -070050 protected void execute() {
tom13cb4852014-09-11 12:44:17 -070051 init();
tom32085cf2014-10-16 00:04:33 -070052 if (outputJson()) {
53 print("%s", new ObjectMapper().createObjectNode()
54 .put("time", topology.time())
55 .put("deviceCount", topology.deviceCount())
56 .put("linkCount", topology.linkCount())
57 .put("clusterCount", topology.clusterCount())
58 .put("pathCount", topology.pathCount()));
59 } else {
60 print(FMT, topology.time(), topology.deviceCount(), topology.linkCount(),
61 topology.clusterCount(), topology.pathCount());
62 }
tom13cb4852014-09-11 12:44:17 -070063 }
64
65}