blob: 9f0b03a89c3cf9642ce43b133d0f0012c7e2cb62 [file] [log] [blame]
sivachidambaram subramanianf773b652017-05-09 14:40:04 +05301import concurrent.futures
2import requests, json
3from optparse import OptionParser
4
5def run(url, request):
6 data = json.dumps(request)
You Wang6176cd02018-07-27 11:48:17 -07007 r = requests.post(url, data, auth=("onos", "rocks"))
sivachidambaram subramanianf773b652017-05-09 14:40:04 +05308 return r
9
10def runTasks(flowObjPerDevice, typeObj, neighbours, url, servers, doJson, remove):
11 # We can use a with statement to ensure threads are cleaned up promptly
12 with concurrent.futures.ThreadPoolExecutor(max_workers=2) as executor:
13 # Start the load operations and mark each future with its URL
14 request = { "flowObjPerDevice" : flowObjPerDevice, "typeObj" : typeObj, "neighbours" : neighbours, "remove" : remove }
15 future_to_url = {executor.submit(run, url % (server), request) for server in servers}
16 for f in concurrent.futures.as_completed(future_to_url):
17 try:
18 response = f.result()
19 server = response.url.split('//')[1].split(':')[0]
20 if (doJson):
21 print (json.dumps({ "server" : server, "elapsed" : response.json()['elapsed'] }))
22 else:
23 print ("%s -> %sms" % (server, response.json()['elapsed']))
24 except Exception as exc:
25 print("Execution failed -> %s" % exc)
26
27if __name__ == "__main__":
28 parser = OptionParser()
29 parser.add_option("-u", "--url", dest="url", help="set the url for the request",
30 default="http://%s:8181/onos/demo/intents/flowObjTest")
31 parser.add_option("-f", "--flowObj", dest="flowObj", help="Number of flow objectives to install per device",
32 default=100, type="int")
33 parser.add_option("-n", "--neighbours", dest="neighs", help="Number of neighbours to communicate to",
34 default=0, type="int")
35 parser.add_option("-s", "--servers", dest="servers", help="List of servers to hit",
36 default=[], action="append")
37 parser.add_option("-r", "--remove", dest="remove", help="Whether to remove flow objectives after installation",
38 default=True, action="store_false")
39 parser.add_option("-j", "--json", dest="doJson", help="Print results in json",
40 default=False, action="store_true")
41 parser.add_option("-t", "--typeObj", dest="typeObj", help="Type of Objective to install",
42 default="forward", type="string")
43
44 (options, args) = parser.parse_args()
45 if (len(options.servers) == 0):
46 options.servers.append("localhost")
47 runTasks(options.flowObj, options.typeObj, options.neighs, options.url, options.servers, options.doJson, options.remove)
48