blob: 0a25b37b7e8d6a36bd6efb2890e5c9c2590e7688 [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;
Ray Milkey0068fd02018-10-11 15:45:39 -070020import org.apache.karaf.shell.api.action.Completion;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
andreaed976a42015-10-05 14:38:25 -070022import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.behaviour.ControllerConfig;
25import org.onosproject.net.driver.DriverHandler;
26import org.onosproject.net.driver.DriverService;
27
28/**
29 * Sets role of the controller node for the given infrastructure device.
30 */
Ray Milkeyd84f89b2018-08-17 14:54:17 -070031@Service
andreaed976a42015-10-05 14:38:25 -070032@Command(scope = "onos", name = "device-controllers",
33 description = "gets the list of controllers for the given infrastructure device")
34public class DeviceControllersCommand extends AbstractShellCommand {
35
36 @Argument(index = 0, name = "uri", description = "Device ID",
37 required = true, multiValued = false)
Ray Milkey0068fd02018-10-11 15:45:39 -070038 @Completion(DeviceIdCompleter.class)
andreaed976a42015-10-05 14:38:25 -070039 String uri = null;
40 private DeviceId deviceId;
41
42 @Override
Ray Milkeyd84f89b2018-08-17 14:54:17 -070043 protected void doExecute() {
andreaed976a42015-10-05 14:38:25 -070044 DriverService service = get(DriverService.class);
45 deviceId = DeviceId.deviceId(uri);
46 DriverHandler h = service.createHandler(deviceId);
47 ControllerConfig config = h.behaviour(ControllerConfig.class);
48 config.getControllers().forEach(c -> print(c.target()));
49 }
50
51}