blob: 6f88be85525f25f8ac62460e47940d5b8d6077de [file] [log] [blame]
Thomas Vachuska8e038eb2016-02-23 23:28:23 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Thomas Vachuska8e038eb2016-02-23 23:28:23 -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 */
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 Vachuska8e038eb2016-02-23 23:28:23 -080020import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.net.DeviceId;
22import org.onosproject.provider.nil.NullProviders;
23
24import static org.onosproject.cli.UpDownCompleter.DOWN;
25import static org.onosproject.cli.UpDownCompleter.UP;
26
27/**
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020028 * Downs or repairs a simulated device.
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080029 */
30@Command(scope = "onos", name = "null-device",
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020031 description = "Downs or repairs a simulated device")
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080032public class NullDeviceCommand extends AbstractShellCommand {
33
34 @Argument(index = 0, name = "id", description = "Device identifier",
35 required = true, multiValued = false)
36 String id = null;
37
38 @Argument(index = 1, name = "cmd", description = "up/down",
39 required = true, multiValued = false)
40 String cmd = null;
41
42
43 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070044 protected void doExecute() {
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080045 NullProviders service = get(NullProviders.class);
46 DeviceId deviceId = DeviceId.deviceId(id);
47
48 if (cmd.equals(UP)) {
49 service.repairDevice(deviceId);
50 } else if (cmd.equals(DOWN)) {
51 service.failDevice(deviceId);
52 } else {
53 error("Illegal command %s; must be up or down", cmd);
54 }
55 }
56
57}