blob: cc52204c86ef4d58a4e7cbc6aea3f27f4ef330a0 [file] [log] [blame]
samuel7a5691a2015-05-23 00:36:32 +08001/*
2 * Copyright 2014-2015 Open Networking Laboratory
3 *
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 */
jccde3e92e2015-03-28 01:40:44 -070016package 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.DeviceId;
Brian O'Connor6de2e202015-05-21 14:30:41 -070022import org.onosproject.incubator.net.resource.label.DefaultLabelResource;
23import org.onosproject.incubator.net.resource.label.LabelResource;
24import org.onosproject.incubator.net.resource.label.LabelResourceId;
25import org.onosproject.incubator.net.resource.label.LabelResourceService;
jccde3e92e2015-03-28 01:40:44 -070026
27import com.google.common.collect.ArrayListMultimap;
28import com.google.common.collect.Multimap;
29
samuel7a5691a2015-05-23 00:36:32 +080030@Command(scope = "onos", name = "label-release",
jccde3e92e2015-03-28 01:40:44 -070031description = "Releases label ids to label resource pool by a specific device id")
samuel7a5691a2015-05-23 00:36:32 +080032public class LabelReleaseCommand extends AbstractShellCommand {
jccde3e92e2015-03-28 01:40:44 -070033 @Argument(index = 0, name = "deviceId",
34 description = "Device identity",
35 required = true, multiValued = false)
36 String deviceId = null;
37 @Argument(index = 1, name = "releaseLabelIds",
38 description = "Represents for the label ids that are released. They are splited by dot symbol",
39 required = true, multiValued = false)
40 String releaseLabelIds = null;
41
42 @Override
43 protected void execute() {
44 LabelResourceService lrs = get(LabelResourceService.class);
45 Multimap<DeviceId, LabelResource> map = ArrayListMultimap
46 .create();
47 String[] labelIds = releaseLabelIds.split(",");
48 DefaultLabelResource resource = null;
49 for (int i = 0; i < labelIds.length; i++) {
50 resource = new DefaultLabelResource(
51 DeviceId.deviceId(deviceId),
52 LabelResourceId.labelResourceId(Long
53 .parseLong(labelIds[i])));
54 map.put(DeviceId.deviceId(deviceId), resource);
55 }
56 lrs.releaseToDevicePool(map);
57 }
58
59}