blob: 1996fef00135496ef322cae6a1b59c49786c3505 [file] [log] [blame]
Akihiro Yamanouchi38a38672016-07-20 20:05:57 +09001/*
2 * Copyright 2016-present 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.drivers.fujitsu.cli;
17
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
20import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.drivers.fujitsu.behaviour.VoltFwdlConfig;
22import org.onosproject.net.DeviceId;
23import org.onosproject.net.driver.DriverHandler;
24import org.onosproject.net.driver.DriverService;
25
26/**
27 * Requests manual firmware upgrade on a list of ONUs in vOLT.
28 */
29@Command(scope = "onos", name = "volt-ondemandfwdl",
30 description = "Requests manual firmware upgrade on a list of ONUs in vOLT")
31public class VoltOndemandFwdlCommand extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "uri", description = "Device ID",
34 required = true, multiValued = false)
35 String uri = null;
36
37 @Argument(index = 1, name = "target",
38 description = "image name:PON link ID-ONU ID[,PON link ID-ONU ID,..:reboot-mode]",
39 required = true, multiValued = false)
40 String target = null;
41
42 private DeviceId deviceId;
43
44 @Override
45 protected void execute() {
46 DriverService service = get(DriverService.class);
47 deviceId = DeviceId.deviceId(uri);
48 DriverHandler h = service.createHandler(deviceId);
49 VoltFwdlConfig volt = h.behaviour(VoltFwdlConfig.class);
50 String reply = volt.upgradeFirmwareOndemand(target);
51 if (reply != null) {
52 print("%s", reply);
53 } else {
54 print("ONU firmware-upgrade failure %s", deviceId.toString());
55 }
56 }
57}