blob: 536eda8db299adb545f3b4f0d1bfba84aa93006e [file] [log] [blame]
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +05301/*
Mahesh Poojary S8e1670e2016-05-19 22:15:34 +05302 * Copyright 2016-present Open Networking Laboratory
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +05303 *
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.pce.cli;
17
18import static org.slf4j.LoggerFactory.getLogger;
19
20import java.util.List;
21import java.util.LinkedList;
22
23import org.apache.karaf.shell.commands.Argument;
24import org.apache.karaf.shell.commands.Command;
25import org.apache.karaf.shell.commands.Option;
26
Mahesh Poojary S33536202016-05-30 07:22:36 +053027import org.onlab.util.DataRateUnit;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053028import org.onosproject.cli.AbstractShellCommand;
Mahesh Poojary S33536202016-05-30 07:22:36 +053029import org.onosproject.incubator.net.tunnel.TunnelId;
30import org.onosproject.net.intent.constraint.BandwidthConstraint;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053031import org.onosproject.net.intent.Constraint;
Mahesh Poojary S33536202016-05-30 07:22:36 +053032import org.onosproject.pce.pceservice.constraint.CostConstraint;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053033import org.onosproject.pce.pceservice.api.PceService;
34
35import org.slf4j.Logger;
36
37/**
38 * Supports updating the PCE path.
39 */
40@Command(scope = "onos", name = "pce-update-path",
41 description = "Supports updating PCE path.")
42public class PceUpdatePathCommand extends AbstractShellCommand {
43 private final Logger log = getLogger(getClass());
44
45 @Argument(index = 0, name = "id", description = "Path Id.", required = true, multiValued = false)
46 String id = null;
47
48 @Option(name = "-c", aliases = "--cost", description = "The cost attribute IGP cost (1) or TE cost (2).",
49 required = false, multiValued = false)
50 int cost = 0;
51
52 @Option(name = "-b", aliases = "--bandwidth", description = "The bandwidth attribute of path. "
53 + "Data rate unit is in Bps.", required = false, multiValued = false)
54 double bandwidth = 0.0;
55
56 @Override
57 protected void execute() {
58 log.info("executing pce-update-path");
59
60 PceService service = get(PceService.class);
61
62 List<Constraint> constrntList = new LinkedList<>();
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053063 // Assign bandwidth. Data rate unit is in Bps.
64 if (bandwidth != 0.0) {
Mahesh Poojary S33536202016-05-30 07:22:36 +053065 constrntList.add(BandwidthConstraint.of(Double.valueOf(bandwidth), DataRateUnit.valueOf("BPS")));
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053066 }
67
Priyanka B4c3b4512016-07-22 11:41:49 +053068 // Cost validation
69 if ((cost < 1) || (cost > 2)) {
70 error("The cost attribute value is either IGP cost(1) or TE cost(2).");
71 return;
Mahesh Poojary S33536202016-05-30 07:22:36 +053072 }
Priyanka B4c3b4512016-07-22 11:41:49 +053073 CostConstraint.Type costType = CostConstraint.Type.values()[cost - 1];
74 constrntList.add(CostConstraint.of(costType));
Mahesh Poojary S33536202016-05-30 07:22:36 +053075
76 if (!service.updatePath(TunnelId.valueOf(id), constrntList)) {
77 error("Path updation failed.");
78 return;
79 }
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053080 }
81}