blob: f4100a661662814e9a7cc5bd4cfb9f0179fab78c [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;
Ray Milkeyd5435182018-10-11 16:18:51 -070020import org.apache.karaf.shell.api.action.Completion;
Ray Milkey7a2dee52018-09-28 10:58:28 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080022import org.onosproject.cli.AbstractShellCommand;
Ray Milkeyd5435182018-10-11 16:18:51 -070023import org.onosproject.cli.UpDownCompleter;
24import org.onosproject.cli.net.DeviceIdCompleter;
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080025import org.onosproject.net.DeviceId;
26import org.onosproject.provider.nil.NullProviders;
27
28import static org.onosproject.cli.UpDownCompleter.DOWN;
29import static org.onosproject.cli.UpDownCompleter.UP;
30
31/**
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020032 * Downs or repairs a simulated device.
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080033 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070034@Service
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080035@Command(scope = "onos", name = "null-device",
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020036 description = "Downs or repairs a simulated device")
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080037public class NullDeviceCommand extends AbstractShellCommand {
38
39 @Argument(index = 0, name = "id", description = "Device identifier",
40 required = true, multiValued = false)
Ray Milkeyd5435182018-10-11 16:18:51 -070041 @Completion(DeviceIdCompleter.class)
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080042 String id = null;
43
44 @Argument(index = 1, name = "cmd", description = "up/down",
45 required = true, multiValued = false)
Ray Milkeyd5435182018-10-11 16:18:51 -070046 @Completion(UpDownCompleter.class)
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080047 String cmd = null;
48
49
50 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070051 protected void doExecute() {
Thomas Vachuska8e038eb2016-02-23 23:28:23 -080052 NullProviders service = get(NullProviders.class);
53 DeviceId deviceId = DeviceId.deviceId(id);
54
55 if (cmd.equals(UP)) {
56 service.repairDevice(deviceId);
57 } else if (cmd.equals(DOWN)) {
58 service.failDevice(deviceId);
59 } else {
60 error("Illegal command %s; must be up or down", cmd);
61 }
62 }
63
64}