-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsubflow_switching_freq.py
executable file
·127 lines (109 loc) · 4.93 KB
/
subflow_switching_freq.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
#! /usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2015 Quentin De Coninck
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# To install on this machine: matplotlib, numpy
from __future__ import print_function
import argparse
import common as co
import common_graph as cog
import matplotlib
# Do not use any X11 backend
matplotlib.use('Agg')
matplotlib.rcParams['pdf.fonttype'] = 42
matplotlib.rcParams['ps.fonttype'] = 42
import matplotlib.pyplot as plt
import mptcp
import numpy as np
import os
import sys
import tcp
##################################################
## ARGUMENTS ##
##################################################
parser = argparse.ArgumentParser(
description="Summarize stat files generated by analyze")
parser.add_argument("-s",
"--stat", help="directory where the stat files are stored", default=co.DEF_STAT_DIR + '_' + co.DEF_IFACE)
parser.add_argument('-S',
"--sums", help="directory where the summary graphs will be stored", default=co.DEF_SUMS_DIR + '_' + co.DEF_IFACE)
parser.add_argument("-d",
"--dirs", help="list of directories to aggregate", nargs="+")
args = parser.parse_args()
stat_dir_exp = os.path.abspath(os.path.expanduser(args.stat))
sums_dir_exp = os.path.abspath(os.path.expanduser(args.sums))
co.check_directory_exists(sums_dir_exp)
##################################################
## GET THE DATA ##
##################################################
connections = cog.fetch_valid_data(stat_dir_exp, args)
multiflow_connections, singleflow_connections = cog.get_multiflow_connections(connections)
##################################################
## PLOTTING RESULTS ##
##################################################
def plot(connections, multiflow_connections, sums_dir_exp):
log_file = sys.stdout
bursts_sec = {co.C2S: [], co.S2C: []}
color = 'red'
graph_fname_sec = "merge_bursts_sec_log"
base_graph_path_sec = os.path.join(sums_dir_exp, graph_fname_sec)
min_bytes = 1000000
min_duration = 0.1
for fname, conns in multiflow_connections.iteritems():
for conn_id, conn in conns.iteritems():
# We never know, still check
if isinstance(conn, mptcp.MPTCPConnection):
count_established = 0
for flow_id, flow in conn.flows.iteritems():
if flow.attr.get(co.DURATION, 0.0) > 0.0:
count_established += 1
if count_established < 2:
continue
for direction in co.DIRECTIONS:
if conn.attr[direction].get(co.BYTES_MPTCPTRACE, 0) < min_bytes or conn.attr.get(co.DURATION, 0.0) <= min_duration:
continue
if co.BURSTS in conn.attr[direction] and len(conn.attr[direction][co.BURSTS]) > 0:
bursts_sec[direction].append((len(conn.attr[direction][co.BURSTS]) - 1.0) / conn.attr[co.DURATION])
# Plot
for direction in co.DIRECTIONS:
sample = np.array(sorted(bursts_sec[direction]))
sorted_array = np.sort(sample)
yvals = np.arange(len(sorted_array)) / float(len(sorted_array))
if len(sorted_array) > 0:
# Add a last point
sorted_array = np.append(sorted_array, sorted_array[-1])
yvals = np.append(yvals, 1.0)
# Log plot
plt.figure()
plt.clf()
fig, ax = plt.subplots()
ax.plot(sorted_array, yvals, color=color, linewidth=2, label="Burstiness")
# Shrink current axis's height by 10% on the top
# box = ax.get_position()
# ax.set_position([box.x0, box.y0,
# box.width, box.height * 0.9])
ax.set_xscale('log')
# Put a legend above current axis
# ax.legend(loc='lower center', bbox_to_anchor=(0.5, 1.05), fancybox=True, shadow=True, ncol=ncol)
ax.legend(loc='lower right')
plt.xlabel('# switches / second', fontsize=24)
plt.ylabel("CDF", fontsize=24)
plt.savefig(base_graph_path_sec + "_" + direction + "_log.pdf")
plt.close('all')
plot(connections, multiflow_connections, sums_dir_exp)