blob: 4bc17a5310826feda36ea16e367b4c7d4fbd54ab [file] [log] [blame]
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +09003 *
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.drivers.fujitsu.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;
20import org.apache.karaf.shell.api.action.lifecycle.Service;
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +090021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.drivers.fujitsu.behaviour.VoltFwdlConfig;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.driver.DriverHandler;
25import org.onosproject.net.driver.DriverService;
26
27/**
28 * Requests manual firmware upgrade on a list of ONUs in vOLT.
29 */
Ray Milkey86ad7bb2018-09-27 12:32:28 -070030@Service
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +090031@Command(scope = "onos", name = "volt-ondemandfwdl",
32 description = "Requests manual firmware upgrade on a list of ONUs in vOLT")
33public class VoltOndemandFwdlCommand extends AbstractShellCommand {
34
35 @Argument(index = 0, name = "uri", description = "Device ID",
36 required = true, multiValued = false)
37 String uri = null;
38
39 @Argument(index = 1, name = "target",
40 description = "image name:PON link ID-ONU ID[,PON link ID-ONU ID,..:reboot-mode]",
41 required = true, multiValued = false)
42 String target = null;
43
44 private DeviceId deviceId;
45
46 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070047 protected void doExecute() {
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +090048 DriverService service = get(DriverService.class);
49 deviceId = DeviceId.deviceId(uri);
50 DriverHandler h = service.createHandler(deviceId);
51 VoltFwdlConfig volt = h.behaviour(VoltFwdlConfig.class);
52 String reply = volt.upgradeFirmwareOndemand(target);
53 if (reply != null) {
54 print("%s", reply);
55 } else {
56 print("ONU firmware-upgrade failure %s", deviceId.toString());
57 }
58 }
59}