blob: ea39249d8ff8aaa848897ff9212b5e43ecb5453b [file] [log] [blame]
andreaed976a42015-10-05 14:38:25 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
andreaed976a42015-10-05 14:38:25 -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.cli.net;
17
Ray Milkeyd84f89b2018-08-17 14:54:17 -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;
andreaed976a42015-10-05 14:38:25 -070021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.net.DeviceId;
23import org.onosproject.net.behaviour.ControllerConfig;
24import org.onosproject.net.driver.DriverHandler;
25import org.onosproject.net.driver.DriverService;
26
27/**
28 * Sets role of the controller node for the given infrastructure device.
29 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070030@Service
andreaed976a42015-10-05 14:38:25 -070031@Command(scope = "onos", name = "device-controllers",
32 description = "gets the list of controllers for the given infrastructure device")
33public class DeviceControllersCommand extends AbstractShellCommand {
34
35 @Argument(index = 0, name = "uri", description = "Device ID",
36 required = true, multiValued = false)
37 String uri = null;
38 private DeviceId deviceId;
39
40 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070041 protected void doExecute() {
andreaed976a42015-10-05 14:38:25 -070042 DriverService service = get(DriverService.class);
43 deviceId = DeviceId.deviceId(uri);
44 DriverHandler h = service.createHandler(deviceId);
45 ControllerConfig config = h.behaviour(ControllerConfig.class);
46 config.getControllers().forEach(c -> print(c.target()));
47 }
48
49}