blob: bbe1e13179b22a0c628d97feae0cbcd7ffa5c22d [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
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Ray Milkey7a2dee52018-09-28 10:58:28 -070020import org.apache.karaf.shell.api.action.lifecycle.Service;
Thomas Vachuska84b4fcc2018-03-22 14:29:06 -070021import org.onlab.util.Tools;
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020022import org.onosproject.net.Device;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.config.NetworkConfigService;
25import org.onosproject.net.config.basics.BasicDeviceConfig;
26import org.onosproject.provider.nil.CustomTopologySimulator;
27import org.onosproject.provider.nil.NullProviders;
28import org.onosproject.provider.nil.TopologySimulator;
29
30/**
31 * Adds a simulated device to the custom topology simulation.
32 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070033@Service
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020034@Command(scope = "onos", name = "null-create-device",
35 description = "Adds a simulated device to the custom topology simulation")
Thomas Vachuskab1906d22018-02-14 16:50:16 -080036public class CreateNullDevice extends CreateNullEntity {
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020037
38 @Argument(index = 0, name = "type", description = "Device type, e.g. switch, roadm",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080039 required = true)
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020040 String type = null;
41
42 @Argument(index = 1, name = "name", description = "Device name",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080043 required = true)
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020044 String name = null;
45
46 @Argument(index = 2, name = "portCount", description = "Port count",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080047 required = true)
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020048 Integer portCount = null;
49
Simon Hunteb3cf542017-02-10 13:18:41 -080050 @Argument(index = 3, name = "latOrY",
51 description = "Geo latitude / Grid y-coord",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080052 required = false)
Simon Hunteb3cf542017-02-10 13:18:41 -080053 Double latOrY = null;
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020054
Simon Hunteb3cf542017-02-10 13:18:41 -080055 @Argument(index = 4, name = "longOrX",
56 description = "Geo longitude / Grid x-coord",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080057 required = false)
Simon Hunteb3cf542017-02-10 13:18:41 -080058 Double longOrX = null;
59
60 @Argument(index = 5, name = "locType", description = "Location type {geo|grid}",
Thomas Vachuskab1906d22018-02-14 16:50:16 -080061 required = false)
Simon Hunteb3cf542017-02-10 13:18:41 -080062 String locType = GEO;
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020063
64 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070065 protected void doExecute() {
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020066 NullProviders service = get(NullProviders.class);
67 NetworkConfigService cfgService = get(NetworkConfigService.class);
68
69 TopologySimulator simulator = service.currentSimulator();
Thomas Vachuskab1906d22018-02-14 16:50:16 -080070 if (!validateSimulator(simulator) || !validateLocType(locType)) {
Simon Hunteb3cf542017-02-10 13:18:41 -080071 return;
72 }
73
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020074 CustomTopologySimulator sim = (CustomTopologySimulator) simulator;
75 DeviceId deviceId = sim.nextDeviceId();
76 BasicDeviceConfig cfg = cfgService.addConfig(deviceId, BasicDeviceConfig.class);
Thomas Vachuskab1906d22018-02-14 16:50:16 -080077 cfg.name(name);
78 setUiCoordinates(cfg, locType, latOrY, longOrX);
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020079
Thomas Vachuska84b4fcc2018-03-22 14:29:06 -070080 Tools.delay(10);
Thomas Vachuska5c6ed222016-06-29 11:02:22 +020081 sim.createDevice(deviceId, name, Device.Type.valueOf(type.toUpperCase()), portCount);
82 }
83
84}