blob: 9c4700c587b085fdc4e00ff66b27fc5bd8656f08 [file] [log] [blame]
alshabib3460da12014-10-30 17:26:49 +01001
alshabibab984662014-12-04 18:56:18 -08002/*
3 * Copyright 2014 Open Networking Laboratory
4 *
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;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080037import org.onosproject.net.flow.FlowRuleOperations;
38import org.onosproject.net.flow.FlowRuleOperationsContext;
Brian O'Connorabafb502014-12-02 22:26:20 -080039import org.onosproject.net.flow.FlowRuleService;
40import org.onosproject.net.flow.TrafficSelector;
41import org.onosproject.net.flow.TrafficTreatment;
alshabib5afcbd72014-10-30 16:28:40 +010042
alshabib3460da12014-10-30 17:26:49 +010043import java.util.ArrayList;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080044import java.util.concurrent.CountDownLatch;
45import java.util.concurrent.TimeUnit;
alshabib5afcbd72014-10-30 16:28:40 +010046
47/**
48 * Installs many many flows.
49 */
50@Command(scope = "onos", name = "add-flows",
Ray Milkey82895d72015-01-22 17:06:00 -080051 description = "Installs a number of test flow rules - for testing only")
alshabib5afcbd72014-10-30 16:28:40 +010052public class AddFlowsCommand extends AbstractShellCommand {
53
Brian O'Connor72cb19a2015-01-16 16:14:41 -080054 private CountDownLatch latch;
55
alshabib5afcbd72014-10-30 16:28:40 +010056 @Argument(index = 0, name = "flowPerDevice", description = "Number of flows to add per device",
57 required = true, multiValued = false)
58 String flows = null;
59
alshabib3460da12014-10-30 17:26:49 +010060 @Argument(index = 1, name = "numOfRuns", description = "Number of iterations",
61 required = true, multiValued = false)
62 String numOfRuns = null;
alshabib5afcbd72014-10-30 16:28:40 +010063
64 @Override
65 protected void execute() {
66
67 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();
93 rules.add(new DefaultFlowRule(d.id(), sbuilder.build(), treatment,
94 randomPriority, appId, 10, false));
95 remove.remove(new DefaultFlowRule(d.id(), sbuilder.build(), treatment,
96 randomPriority, appId, 10, false));
alshabib5afcbd72014-10-30 16:28:40 +010097
98 }
99 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800100
alshabib3460da12014-10-30 17:26:49 +0100101 for (int i = 0; i < num; i++) {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800102
103 latch = new CountDownLatch(2);
104 flowService.apply(rules.build(new FlowRuleOperationsContext() {
105
106 private final Stopwatch timer = Stopwatch.createStarted();
107
108 @Override
109 public void onSuccess(FlowRuleOperations ops) {
110
111 timer.stop();
112 results.add(timer.elapsed(TimeUnit.MILLISECONDS));
113 if (results.size() == num) {
114 if (outputJson()) {
115 print("%s", json(new ObjectMapper(), true, results));
116 } else {
117 printTime(true, results);
118 }
119 }
120 latch.countDown();
121 }
122 }));
123
124
125 flowService.apply(remove.build(new FlowRuleOperationsContext() {
126 @Override
127 public void onSuccess(FlowRuleOperations ops) {
128 latch.countDown();
129 }
130 }));
alshabib3460da12014-10-30 17:26:49 +0100131 try {
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800132 latch.await();
133 } catch (InterruptedException e) {
alshabib3460da12014-10-30 17:26:49 +0100134 e.printStackTrace();
135 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800136
alshabib5afcbd72014-10-30 16:28:40 +0100137 }
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800138
alshabib5afcbd72014-10-30 16:28:40 +0100139
alshabib3460da12014-10-30 17:26:49 +0100140
alshabib5afcbd72014-10-30 16:28:40 +0100141
142 }
143
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800144
145
alshabib3460da12014-10-30 17:26:49 +0100146 private Object json(ObjectMapper mapper, boolean isSuccess, ArrayList<Long> elapsed) {
147 ObjectNode result = mapper.createObjectNode();
148 result.put("Success", isSuccess);
149 ArrayNode node = result.putArray("elapsed-time");
150 for (Long v : elapsed) {
151 node.add(v);
152 }
153 return result;
154 }
155
156 private void printTime(boolean isSuccess, ArrayList<Long> elapsed) {
157 print("Run is %s.", isSuccess ? "success" : "failure");
158 for (int i = 0; i < elapsed.size(); i++) {
159 print(" Run %s : %s", i, elapsed.get(i));
160 }
161 }
162
163
alshabib5afcbd72014-10-30 16:28:40 +0100164}