blob: dd47e0136439cfbb01f1913458d062712a147be9 [file] [log] [blame]
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -07001/*
Brian O'Connor0a4e6742016-09-15 23:03:10 -07002 * Copyright 2016-present Open Networking Laboratory
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -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
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
20import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.net.region.Region;
22import org.onosproject.net.region.RegionService;
23import org.onosproject.ui.UiTopoLayoutService;
24import org.onosproject.ui.model.topo.UiTopoLayout;
25import org.onosproject.ui.model.topo.UiTopoLayoutId;
26
27import static org.onosproject.net.region.RegionId.regionId;
28import static org.onosproject.ui.model.topo.UiTopoLayoutId.layoutId;
29
30/**
Simon Huntbc30e682017-02-15 18:39:23 -080031 * Add a new UI layout.
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070032 */
33@Command(scope = "onos", name = "layout-add",
Simon Huntbc30e682017-02-15 18:39:23 -080034 description = "Adds a new UI layout.")
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070035public class LayoutAddCommand extends AbstractShellCommand {
36
Simon Huntbc30e682017-02-15 18:39:23 -080037 private static final char CODE_GEO = '@';
38 private static final char CODE_GRID = '+';
Simon Hunte9717e62017-02-16 16:54:43 -080039 private static final String ROOT = "root";
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070040
41 @Argument(index = 0, name = "id", description = "Layout ID",
42 required = true, multiValued = false)
43 String id = null;
44
Simon Huntbc30e682017-02-15 18:39:23 -080045 @Argument(index = 1, name = "bgref", description = "Background Ref",
46 required = true, multiValued = false)
47 String backgroundRef = null;
48
49 @Argument(index = 2, name = "rid", description = "Region ID (optional)",
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070050 required = false, multiValued = false)
51 String regionId = null;
52
Simon Huntbc30e682017-02-15 18:39:23 -080053 @Argument(index = 3, name = "plid", description = "Parent layout ID (optional)",
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070054 required = false, multiValued = false)
55 String parentId = null;
56
57 private RegionService regionService;
58
59 @Override
60 protected void execute() {
61 UiTopoLayoutService service = get(UiTopoLayoutService.class);
62 RegionService regionService = get(RegionService.class);
63
Simon Hunte9717e62017-02-16 16:54:43 -080064 if (ROOT.equals(id)) {
65 // set the background for the root layout
66 setAppropriateBackground(service.getRootLayout(), backgroundRef);
67 return;
68 }
69
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070070 Region region = regionId == null ? null : regionService.getRegion(regionId(regionId));
71 UiTopoLayoutId pid = parentId == null ? UiTopoLayoutId.DEFAULT_ID : layoutId(parentId);
72
Simon Huntd0fa2842016-10-24 18:04:05 -070073 UiTopoLayout layout = new UiTopoLayout(layoutId(id)).region(region).parent(pid);
Simon Huntbc30e682017-02-15 18:39:23 -080074 setAppropriateBackground(layout, backgroundRef);
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070075 service.addLayout(layout);
76 }
Simon Huntbc30e682017-02-15 18:39:23 -080077
78 private void setAppropriateBackground(UiTopoLayout layout, String bgRef) {
79 /*
80 * A note about the format of bgref.. it should be one of:
81 * "." - signifies no background
82 * "@{map-id}" - signifies geo background (map)
83 * "+{sprite-id}" - signifies grid background (sprite)
84 *
85 * For example, "!", "@bayareaGEO", "+segmentRouting"
86 */
87 char type = bgRef.charAt(0);
88
89 if (type == CODE_GEO) {
90 // GEO (map) reference
91 layout.geomap(bgRef.substring(1));
92
93 } else if (type == CODE_GRID) {
94 // Grid (sprite) reference
95 layout.sprites(bgRef.substring(1));
96 }
97 }
Thomas Vachuskaeb851cd2016-07-21 15:41:05 -070098}