blob: cdb4b5374c707fbd06be2f6818c242c38f60e625 [file] [log] [blame]
alshabib3460da12014-10-30 17:26:49 +01001
alshabibab984662014-12-04 18:56:18 -08002/*
Ray Milkey34c95902015-04-15 09:47:53 -07003 * Copyright 2014-2015 Open Networking Laboratory
alshabibab984662014-12-04 18:56:18 -08004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Brian O'Connorabafb502014-12-02 22:26:20 -080017package org.onosproject.cli.net;
alshabib5afcbd72014-10-30 16:28:40 +010018
alshabib3460da12014-10-30 17:26:49 +010019import com.fasterxml.jackson.databind.ObjectMapper;
20import com.fasterxml.jackson.databind.node.ArrayNode;
21import com.fasterxml.jackson.databind.node.ObjectNode;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080022import com.google.common.base.Stopwatch;
alshabib3460da12014-10-30 17:26:49 +010023import com.google.common.collect.Lists;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080024import org.apache.commons.lang.math.RandomUtils;
alshabib5afcbd72014-10-30 16:28:40 +010025import org.apache.karaf.shell.commands.Argument;
26import org.apache.karaf.shell.commands.Command;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080027import org.onlab.packet.MacAddress;
Brian O'Connorabafb502014-12-02 22:26:20 -080028import org.onosproject.cli.AbstractShellCommand;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080029import org.onosproject.core.ApplicationId;
30import org.onosproject.core.CoreService;
Brian O'Connorabafb502014-12-02 22:26:20 -080031import org.onosproject.net.Device;
32import org.onosproject.net.PortNumber;
33import org.onosproject.net.device.DeviceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080034import org.onosproject.net.flow.DefaultFlowRule;
35import org.onosproject.net.flow.DefaultTrafficSelector;
36import org.onosproject.net.flow.DefaultTrafficTreatment;
Ray Milkeyd13a37b2015-06-12 11:55:17 -070037import org.onosproject.net.flow.FlowRule;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080038import org.onosproject.net.flow.FlowRuleOperations;
39import org.onosproject.net.flow.FlowRuleOperationsContext;
Brian O'Connorabafb502014-12-02 22:26:20 -080040import org.onosproject.net.flow.FlowRuleService;
41import org.onosproject.net.flow.TrafficSelector;
42import org.onosproject.net.flow.TrafficTreatment;
alshabib5afcbd72014-10-30 16:28:40 +010043
alshabib3460da12014-10-30 17:26:49 +010044import java.util.ArrayList;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080045import java.util.concurrent.CountDownLatch;
46import java.util.concurrent.TimeUnit;
alshabib5afcbd72014-10-30 16:28:40 +010047
48/**
Charles M.C. Chan6f5bdc62015-04-22 01:21:09 +080049 * Installs bulk flows.
alshabib5afcbd72014-10-30 16:28:40 +010050 */
51@Command(scope = "onos", name = "add-flows",
Ray Milkey82895d72015-01-22 17:06:00 -080052 description = "Installs a number of test flow rules - for testing only")
alshabib5afcbd72014-10-30 16:28:40 +010053public class AddFlowsCommand extends AbstractShellCommand {
54
Brian O'Connor72cb19a2015-01-16 16:14:41 -080055 private CountDownLatch latch;
56
alshabib5afcbd72014-10-30 16:28:40 +010057 @Argument(index = 0, name = "flowPerDevice", description = "Number of flows to add per device",
58 required = true, multiValued = false)
59 String flows = null;
60
alshabib3460da12014-10-30 17:26:49 +010061 @Argument(index = 1, name = "numOfRuns", description = "Number of iterations",
62 required = true, multiValued = false)
63 String numOfRuns = null;
alshabib5afcbd72014-10-30 16:28:40 +010064
65 @Override
66 protected void execute() {
alshabib5afcbd72014-10-30 16:28:40 +010067 FlowRuleService flowService = get(FlowRuleService.class);
68 DeviceService deviceService = get(DeviceService.class);
Brian O'Connor72cb19a2015-01-16 16:14:41 -080069 CoreService coreService = get(CoreService.class);
70
71 ApplicationId appId = coreService.registerApplication("onos.test.flow.installer");
alshabib5afcbd72014-10-30 16:28:40 +010072
73 int flowsPerDevice = Integer.parseInt(flows);
alshabib3460da12014-10-30 17:26:49 +010074 int num = Integer.parseInt(numOfRuns);
alshabib5afcbd72014-10-30 16:28:40 +010075
alshabib3460da12014-10-30 17:26:49 +010076 ArrayList<Long> results = Lists.newArrayList();
alshabib5afcbd72014-10-30 16:28:40 +010077 Iterable<Device> devices = deviceService.getDevices();
78 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
Brian O'Connor72cb19a2015-01-16 16:14:41 -080079 .setOutput(PortNumber.portNumber(RandomUtils.nextInt())).build();
alshabib5afcbd72014-10-30 16:28:40 +010080 TrafficSelector.Builder sbuilder;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080081 FlowRuleOperations.Builder rules = FlowRuleOperations.builder();
82 FlowRuleOperations.Builder remove = FlowRuleOperations.builder();
83
alshabib5afcbd72014-10-30 16:28:40 +010084 for (Device d : devices) {
85 for (int i = 0; i < flowsPerDevice; i++) {
86 sbuilder = DefaultTrafficSelector.builder();
Brian O'Connor72cb19a2015-01-16 16:14:41 -080087
88 sbuilder.matchEthSrc(MacAddress.valueOf(RandomUtils.nextInt() * i))
89 .matchEthDst(MacAddress.valueOf((Integer.MAX_VALUE - i) * RandomUtils.nextInt()));
90
91
92 int randomPriority = RandomUtils.nextInt();
Ray Milkeyd13a37b2015-06-12 11:55:17 -070093
94 FlowRule addRule = DefaultFlowRule.builder()
95 .forDevice(d.id())
96 .withSelector(sbuilder.build())
97 .withTreatment(treatment)
98 .withPriority(randomPriority)
99 .fromApp(appId)
100 .makeTemporary(10)
101 .build();
102 FlowRule removeRule = DefaultFlowRule.builder()
103 .forDevice(d.id())
104 .withSelector(sbuilder.build())
105 .withTreatment(treatment)
106 .withPriority(randomPriority)
107 .fromApp(appId)
108 .makeTemporary(10)
109 .build();
110
111 rules.add(addRule);
112 remove.remove(removeRule);
alshabib5afcbd72014-10-30 16:28:40 +0100113
114 }
115 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800116
alshabib3460da12014-10-30 17:26:49 +0100117 for (int i = 0; i < num; i++) {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800118 latch = new CountDownLatch(2);
119 flowService.apply(rules.build(new FlowRuleOperationsContext() {
120
121 private final Stopwatch timer = Stopwatch.createStarted();
122
123 @Override
124 public void onSuccess(FlowRuleOperations ops) {
125
126 timer.stop();
127 results.add(timer.elapsed(TimeUnit.MILLISECONDS));
128 if (results.size() == num) {
129 if (outputJson()) {
130 print("%s", json(new ObjectMapper(), true, results));
131 } else {
132 printTime(true, results);
133 }
134 }
135 latch.countDown();
136 }
137 }));
138
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800139 flowService.apply(remove.build(new FlowRuleOperationsContext() {
140 @Override
141 public void onSuccess(FlowRuleOperations ops) {
142 latch.countDown();
143 }
144 }));
alshabib3460da12014-10-30 17:26:49 +0100145 try {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800146 latch.await();
147 } catch (InterruptedException e) {
alshabib3460da12014-10-30 17:26:49 +0100148 e.printStackTrace();
149 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800150
alshabib5afcbd72014-10-30 16:28:40 +0100151 }
alshabib5afcbd72014-10-30 16:28:40 +0100152 }
153
alshabib3460da12014-10-30 17:26:49 +0100154 private Object json(ObjectMapper mapper, boolean isSuccess, ArrayList<Long> elapsed) {
155 ObjectNode result = mapper.createObjectNode();
156 result.put("Success", isSuccess);
157 ArrayNode node = result.putArray("elapsed-time");
158 for (Long v : elapsed) {
159 node.add(v);
160 }
161 return result;
162 }
163
164 private void printTime(boolean isSuccess, ArrayList<Long> elapsed) {
165 print("Run is %s.", isSuccess ? "success" : "failure");
166 for (int i = 0; i < elapsed.size(); i++) {
167 print(" Run %s : %s", i, elapsed.get(i));
168 }
169 }
alshabib5afcbd72014-10-30 16:28:40 +0100170}