blob: 2aedaa93dcf1143855dfcfe1b7dfdb578eb9df9d [file] [log] [blame]
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -07003 *
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.netconf.cli.impl;
17
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070018import static com.google.common.base.Preconditions.checkNotNull;
Yuta HIGUCHI89111d92017-05-04 11:29:17 -070019import static org.onosproject.netconf.DatastoreId.datastore;
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070020
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080021import java.util.concurrent.ExecutionException;
22import java.util.concurrent.TimeUnit;
23import java.util.concurrent.TimeoutException;
24
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070025import org.apache.karaf.shell.commands.Argument;
26import org.apache.karaf.shell.commands.Command;
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080027import org.apache.karaf.shell.commands.Option;
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070028import org.onosproject.cli.AbstractShellCommand;
29import org.onosproject.net.DeviceId;
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070030import org.onosproject.netconf.NetconfController;
31import org.onosproject.netconf.NetconfDevice;
Yuta HIGUCHI234eaf32017-09-06 13:45:05 -070032import org.onosproject.netconf.NetconfException;
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070033import org.onosproject.netconf.NetconfSession;
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070034
35/**
36 * Command that gets the configuration of the specified type from the specified
37 * device. If configuration cannot be retrieved it prints an error string.
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070038 */
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070039@Command(scope = "onos", name = "netconf-get-config",
40 description = "Gets the configuration of the specified type from the" +
41 "specified device.")
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080042public class NetconfGetConfigCommand extends AbstractShellCommand {
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070043
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080044 @Argument(index = 0, name = "deviceId", description = "Device ID",
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070045 required = true, multiValued = false)
46 String uri = null;
47
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080048 @Argument(index = 1, name = "datastore",
Yuta HIGUCHI89111d92017-05-04 11:29:17 -070049 description = "Configuration datastore name (running, etc.)",
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080050 required = false, multiValued = false)
51 String datastore = "running";
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070052
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080053 @Option(name = "--timeout",
54 description = "Timeout in seconds",
55 required = false)
56 long timeoutSec = 30;
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070057
58 private DeviceId deviceId;
59
60 @Override
61 protected void execute() {
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070062 deviceId = DeviceId.deviceId(uri);
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070063
64 NetconfController controller = get(NetconfController.class);
65 checkNotNull(controller, "Netconf controller is null");
66
67 NetconfDevice device = controller.getDevicesMap().get(deviceId);
68 if (device == null) {
69 print("Netconf device object not found for %s", deviceId);
70 return;
71 }
72
73 NetconfSession session = device.getSession();
74 if (session == null) {
75 print("Netconf session not found for %s", deviceId);
76 return;
77 }
78
79 try {
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080080 CharSequence res = session.asyncGetConfig(datastore(datastore.toLowerCase()))
81 .get(timeoutSec, TimeUnit.SECONDS);
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070082 print("%s", res);
Yuta HIGUCHI5ac34432018-02-13 16:29:15 -080083 } catch (NetconfException | InterruptedException | ExecutionException | TimeoutException e) {
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070084 log.error("Configuration could not be retrieved", e);
Frank Wangd8ab0962017-08-11 11:09:30 +080085 print("Error occurred retrieving configuration");
Yuta HIGUCHId31bc6e2017-05-03 17:23:34 -070086 }
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070087 }
88
89}