blob: c901a6a65421ae6d0951a56af9e0cfa342f61fa1 [file] [log] [blame]
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuskac40d4632015-04-09 16:55:03 -07003 *
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.onosproject.provider.nil.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070020import org.onosproject.cfg.ComponentConfigService;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.provider.nil.NullProviders;
Simon Huntb3567282017-04-07 22:59:28 -070023import org.onosproject.provider.nil.TopologySimulator;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070024
25import static org.onosproject.cli.StartStopCompleter.START;
26
27/**
28 * Starts or stops topology simulation.
29 */
30@Command(scope = "onos", name = "null-simulation",
31 description = "Starts or stops topology simulation")
32public class NullControlCommand extends AbstractShellCommand {
33
34 @Argument(index = 0, name = "cmd", description = "Control command: start/stop",
Thomas Vachuskacab29d22018-02-21 15:47:29 -080035 required = true)
Thomas Vachuskac40d4632015-04-09 16:55:03 -070036 String cmd = null;
37
38 @Argument(index = 1, name = "topoShape",
Simon Huntb3567282017-04-07 22:59:28 -070039 description = "Topology shape: e.g. configured, linear, reroute, " +
Thomas Vachuskacab29d22018-02-21 15:47:29 -080040 "centipede, tree, spineleaf, mesh, fattree, custom")
Thomas Vachuskac40d4632015-04-09 16:55:03 -070041 String topoShape = null;
42
43 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070044 protected void doExecute() {
Thomas Vachuskac40d4632015-04-09 16:55:03 -070045 ComponentConfigService service = get(ComponentConfigService.class);
Thomas Vachuskacab29d22018-02-21 15:47:29 -080046 // If there is an existing topology; make sure it's stopped before restarting
47 if (cmd.equals(START)) {
48 NullProviders npService = get(NullProviders.class);
49 TopologySimulator simulator = npService.currentSimulator();
50 if (simulator != null) {
51 simulator.tearDownTopology();
52 }
53 }
54
Thomas Vachuskac40d4632015-04-09 16:55:03 -070055 if (topoShape != null) {
56 service.setProperty(NullProviders.class.getName(), "topoShape", topoShape);
57 }
58 service.setProperty(NullProviders.class.getName(), "enabled",
59 cmd.equals(START) ? "true" : "false");
Thomas Vachuskac40d4632015-04-09 16:55:03 -070060 }
61
62}