blob: 261f46de75e2fdf3f770bf1ec5788dcfb2823d17 [file] [log] [blame]
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001/*
2 * Copyright 2015 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 */
16package org.onosproject.provider.nil.cli;
17
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
20import org.onosproject.cfg.ComponentConfigService;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.provider.nil.NullProviders;
23
24import static org.onosproject.cli.StartStopCompleter.START;
25
26/**
27 * Starts or stops topology simulation.
28 */
29@Command(scope = "onos", name = "null-simulation",
30 description = "Starts or stops topology simulation")
31public class NullControlCommand extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "cmd", description = "Control command: start/stop",
34 required = true, multiValued = false)
35 String cmd = null;
36
37 @Argument(index = 1, name = "topoShape",
38 description = "Topology shape: e.g. configured, linear, reroute, centipede, tree, spineleaf, mesh",
39 required = false, multiValued = false)
40 String topoShape = null;
41
42 @Override
43 protected void execute() {
44 ComponentConfigService service = get(ComponentConfigService.class);
45 if (topoShape != null) {
46 service.setProperty(NullProviders.class.getName(), "topoShape", topoShape);
47 }
48 service.setProperty(NullProviders.class.getName(), "enabled",
49 cmd.equals(START) ? "true" : "false");
50 }
51
52}