-
Notifications
You must be signed in to change notification settings - Fork 6
/
run.py
executable file
·134 lines (110 loc) · 4.58 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env python
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
from subprocess import call
from sys import argv
import os
import subprocess
import workerpool
import multiprocessing
import argparse
######################################################################
######################################################################
######################################################################
parser = argparse.ArgumentParser(description='Simulation runner')
parser.add_argument('scenarios', metavar='scenario', type=str, nargs='*',
help='Scenario to run')
parser.add_argument('-l', '--list', dest="list", action='store_true', default=False,
help='Get list of available scenarios')
parser.add_argument('-s', '--simulate', dest="simulate", action='store_true', default=False,
help='Run simulation and postprocessing (false by default)')
parser.add_argument('-g', '--no-graph', dest="graph", action='store_false', default=True,
help='Do not build a graph for the scenario (builds a graph by default)')
args = parser.parse_args()
if not args.list and len(args.scenarios)==0:
print "ERROR: at least one scenario need to be specified"
parser.print_help()
exit (1)
if args.list:
print "Available scenarios: "
else:
if args.simulate:
print "Simulating the following scenarios: " + ",".join (args.scenarios)
if args.graph:
print "Building graphs for the following scenarios: " + ",".join (args.scenarios)
######################################################################
######################################################################
######################################################################
class SimulationJob (workerpool.Job):
"Job to simulate things"
def __init__ (self, cmdline):
self.cmdline = cmdline
def run (self):
print (" ".join (self.cmdline))
subprocess.call (self.cmdline)
pool = workerpool.WorkerPool(size = multiprocessing.cpu_count())
class Processor:
def run (self):
if args.list:
print " " + self.name
return
if "all" not in args.scenarios and self.name not in args.scenarios:
return
if args.list:
pass
else:
if args.simulate:
self.simulate ()
pool.join ()
self.postprocess ()
if args.graph:
self.graph ()
def graph (self):
subprocess.call ("./graphs/%s.R" % self.name, shell=True)
class ConvertTopologies (Processor):
def __init__ (self, name, runs, topologies, buildGraph = False):
self.name = name
self.runs = runs
self.topologies = topologies
self.buildGraph = buildGraph
for run in runs:
try:
os.mkdir ("topologies/bw-delay-rand-%d" % run)
except:
pass # ignore the error
def simulate (self):
for topology in self.topologies:
for run in self.runs:
cmdline = ["./build/rocketfuel-maps-cch-to-annotaded",
"--topology=topologies/rocketfuel_maps_cch/%s.cch" % topology,
"--run=%d" % run,
"--output=topologies/bw-delay-rand-%d/%s" % (run, topology),
"--buildGraph=%d" % self.buildGraph,
"--keepLargestComponent=1",
"--connectBackbones=1",
"--clients=3",
]
job = SimulationJob (cmdline)
pool.put (job)
def postprocess (self):
# any postprocessing, if any
pass
def graph (self):
pass
try:
conversion = ConvertTopologies (name="convert-topologies",
runs=[1],
topologies=["1221.r0",
"1239.r0",
"1755.r0",
"2914.r0",
"3257.r0",
"3356.r0",
"3967.r0",
"4755.r0",
"6461.r0",
"7018.r0",],
buildGraph = True)
conversion.run ()
finally:
pool.join ()
pool.shutdown ()