blob: dc1ff9258be2c069e7cb0d1ec5905988b3954e78 [file] [log] [blame]
Thomas Vachuska5c6ed222016-06-29 11:02:22 +02001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Thomas Vachuska5c6ed222016-06-29 11:02:22 +02003 *
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.provider.nil.cli;
17
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
Thomas Vachuska84b4fcc2018-03-22 14:29:06 -070020import org.onlab.util.Tools;
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020021import org.onosproject.net.Device;
22import org.onosproject.net.DeviceId;
23import org.onosproject.net.config.NetworkConfigService;
24import org.onosproject.net.config.basics.BasicDeviceConfig;
25import org.onosproject.provider.nil.CustomTopologySimulator;
26import org.onosproject.provider.nil.NullProviders;
27import org.onosproject.provider.nil.TopologySimulator;
28
29/**
30 * Adds a simulated device to the custom topology simulation.
31 */
32@Command(scope = "onos", name = "null-create-device",
33 description = "Adds a simulated device to the custom topology simulation")
Thomas Vachuskab1906d22018-02-14 16:50:16 -080034public class CreateNullDevice extends CreateNullEntity {
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020035
36 @Argument(index = 0, name = "type", description = "Device type, e.g. switch, roadm",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080037 required = true)
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020038 String type = null;
39
40 @Argument(index = 1, name = "name", description = "Device name",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080041 required = true)
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020042 String name = null;
43
44 @Argument(index = 2, name = "portCount", description = "Port count",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080045 required = true)
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020046 Integer portCount = null;
47
Simon Hunteb3cf542017-02-10 13:18:41 -080048 @Argument(index = 3, name = "latOrY",
49 description = "Geo latitude / Grid y-coord",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080050 required = false)
Simon Hunteb3cf542017-02-10 13:18:41 -080051 Double latOrY = null;
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020052
Simon Hunteb3cf542017-02-10 13:18:41 -080053 @Argument(index = 4, name = "longOrX",
54 description = "Geo longitude / Grid x-coord",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080055 required = false)
Simon Hunteb3cf542017-02-10 13:18:41 -080056 Double longOrX = null;
57
58 @Argument(index = 5, name = "locType", description = "Location type {geo|grid}",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080059 required = false)
Simon Hunteb3cf542017-02-10 13:18:41 -080060 String locType = GEO;
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020061
62 @Override
63 protected void execute() {
64 NullProviders service = get(NullProviders.class);
65 NetworkConfigService cfgService = get(NetworkConfigService.class);
66
67 TopologySimulator simulator = service.currentSimulator();
Thomas Vachuskab1906d22018-02-14 16:50:16 -080068 if (!validateSimulator(simulator) || !validateLocType(locType)) {
Simon Hunteb3cf542017-02-10 13:18:41 -080069 return;
70 }
71
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020072 CustomTopologySimulator sim = (CustomTopologySimulator) simulator;
73 DeviceId deviceId = sim.nextDeviceId();
74 BasicDeviceConfig cfg = cfgService.addConfig(deviceId, BasicDeviceConfig.class);
Thomas Vachuskab1906d22018-02-14 16:50:16 -080075 cfg.name(name);
76 setUiCoordinates(cfg, locType, latOrY, longOrX);
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020077
Thomas Vachuska84b4fcc2018-03-22 14:29:06 -070078 Tools.delay(10);
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020079 sim.createDevice(deviceId, name, Device.Type.valueOf(type.toUpperCase()), portCount);
80 }
81
82}