blob: 9ebcf4b35a415d59d24e835307ed1915073c55e8 [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;
Ray Milkey7a2dee52018-09-28 10:58:28 -070020import org.apache.karaf.shell.api.action.lifecycle.Service;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070021import org.onosproject.cfg.ComponentConfigService;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.provider.nil.NullProviders;
Simon Huntb3567282017-04-07 22:59:28 -070024import org.onosproject.provider.nil.TopologySimulator;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070025
26import static org.onosproject.cli.StartStopCompleter.START;
27
28/**
29 * Starts or stops topology simulation.
30 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070031@Service
Thomas Vachuskac40d4632015-04-09 16:55:03 -070032@Command(scope = "onos", name = "null-simulation",
33 description = "Starts or stops topology simulation")
34public class NullControlCommand extends AbstractShellCommand {
35
36 @Argument(index = 0, name = "cmd", description = "Control command: start/stop",
Thomas Vachuskacab29d22018-02-21 15:47:29 -080037 required = true)
Thomas Vachuskac40d4632015-04-09 16:55:03 -070038 String cmd = null;
39
40 @Argument(index = 1, name = "topoShape",
Simon Huntb3567282017-04-07 22:59:28 -070041 description = "Topology shape: e.g. configured, linear, reroute, " +
Thomas Vachuskacab29d22018-02-21 15:47:29 -080042 "centipede, tree, spineleaf, mesh, fattree, custom")
Thomas Vachuskac40d4632015-04-09 16:55:03 -070043 String topoShape = null;
44
45 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070046 protected void doExecute() {
Thomas Vachuskac40d4632015-04-09 16:55:03 -070047 ComponentConfigService service = get(ComponentConfigService.class);
Thomas Vachuskacab29d22018-02-21 15:47:29 -080048 // If there is an existing topology; make sure it's stopped before restarting
49 if (cmd.equals(START)) {
50 NullProviders npService = get(NullProviders.class);
51 TopologySimulator simulator = npService.currentSimulator();
52 if (simulator != null) {
53 simulator.tearDownTopology();
54 }
55 }
56
Thomas Vachuskac40d4632015-04-09 16:55:03 -070057 if (topoShape != null) {
58 service.setProperty(NullProviders.class.getName(), "topoShape", topoShape);
59 }
60 service.setProperty(NullProviders.class.getName(), "enabled",
61 cmd.equals(START) ? "true" : "false");
Thomas Vachuskac40d4632015-04-09 16:55:03 -070062 }
63
64}