blob: 2a2f4a8de0553fd7479d9995fe8a1c0ccae95339 [file] [log] [blame]
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
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;
Satish K2eb5d842017-04-04 16:28:37 +053030import org.onosproject.pce.pceservice.constraint.PceBandwidthConstraint;
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)
Priyanka B3fdb9dd2016-08-08 10:47:24 +053050 Integer cost = null;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053051
52 @Option(name = "-b", aliases = "--bandwidth", description = "The bandwidth attribute of path. "
53 + "Data rate unit is in Bps.", required = false, multiValued = false)
Priyanka B844ee052016-08-16 12:12:19 +053054 Double bandwidth = null;
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053055
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.
Priyanka B844ee052016-08-16 12:12:19 +053064 if (bandwidth != null) {
Satish K2eb5d842017-04-04 16:28:37 +053065 constrntList.add(PceBandwidthConstraint.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
Priyanka B3fdb9dd2016-08-08 10:47:24 +053069 if (cost != null) {
Priyanka B9ea8ecb2016-07-26 09:53:22 +053070 if ((cost < 1) || (cost > 2)) {
71 error("The cost attribute value is either IGP cost(1) or TE cost(2).");
72 return;
73 }
74 CostConstraint.Type costType = CostConstraint.Type.values()[cost - 1];
75 constrntList.add(CostConstraint.of(costType));
Mahesh Poojary S33536202016-05-30 07:22:36 +053076 }
77
78 if (!service.updatePath(TunnelId.valueOf(id), constrntList)) {
79 error("Path updation failed.");
80 return;
81 }
Mahesh Poojary Sd7a36922016-04-01 16:11:14 +053082 }
83}