-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcsv_convert.py
More file actions
executable file
·213 lines (171 loc) · 7.18 KB
/
csv_convert.py
File metadata and controls
executable file
·213 lines (171 loc) · 7.18 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#!/usr/bin/env python3
"""
This program is used to read in a LANforge Dataplane CSV file and output
a csv file that works with a customer's RvRvO visualization tool.
Example use case:
Read in ~/text-csv-0-candela.csv, output is stored at outfile.csv
./py-scripts/csv_convert.py -i ~/text-csv-0-candela.csv
Output is csv file with mixxed columns, top part:
Test Run,Position [Deg],Attenuation 1 [dB], Pal Stats Endpoint 1 Control Rssi [dBm], Pal Stats Endpoint 1 Data Rssi [dBm]
Second part:
Step Index,Position [Deg],Attenuation [dB],Traffic Pair 1 Throughput [Mbps]
"""
import sys
import os
import argparse
import traceback
if sys.version_info[0] != 3:
print("This script requires Python 3")
exit(1)
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
class CSVParser:
def __init__(self, csv_infile=None, csv_infile2=None, csv_outfile=None):
i_atten = -1
i_rotation = -1
i_rxbps = -1
i_beacon_rssi = -1
i_data_rssi = -1
i_rx_mcs = -1
i_tx_mcs = -1
# rate_with_units = False
fpo = open(csv_outfile, "w")
fp = open(csv_infile)
fp2 = None
if csv_infile2:
fp2 = open(csv_infile2)
if True:
line = fp.readline()
if not line:
exit(1)
# Concat lines so we can read data from both csv files.
if fp2:
l2 = fp2.readline()
if l2:
line = "%s,%s" % (line, l2)
# Read in initial line, this is the CSV headers. Parse it to find the column indices for
# the columns we care about.
x = line.split(",")
cni = 0
for cn in x:
# print("cn: " + cn)
# This works with the 'brief' csv output.
if cn == "Attenuation [dB]":
i_atten = cni
if cn == "Position [Deg]":
i_rotation = cni
if cn == "Throughput [Mbps]":
i_rxbps = cni
if cn == "Beacon RSSI [dBm]":
i_beacon_rssi = cni
if cn == "Data RSSI [dBm]":
i_data_rssi = cni
# This is for parsing the more complete csv output.
if cn == "Atten":
i_atten = cni
if cn == "Rotation":
i_rotation = cni
if cn == "Rx-Bps":
# rate_with_units = True
i_rxbps = cni
# NOTE: Beacon RSSI does not exist in the 'full' csv
if cn == "RSSI":
i_data_rssi = cni
if cn == "Tx-Rate":
i_tx_mcs = cni
if cn == "Rx-Rate":
i_rx_mcs = cni
cni += 1
# Write out out header for the new file.
fpo.write("Test Run,Position [Deg],Attenuation 1 [dB],Pal Stats Endpoint 1 Control Rssi [dBm],Pal Stats Endpoint 1 Data Rssi [dBm] Mean,Pal Stats Endpoint 1 RX rate [Mbps] Mode,Pal Stats Endpoint 1 TX rate [Mbps] Mode\n") # noqa: E501
# Read rest of the input lines, processing one at a time. Covert the columns as
# needed, and write out new data to the output file.
line = fp.readline()
# Concat lines so we can read data from both csv files.
if fp2:
l2 = fp2.readline()
if l2:
line = "%s,%s" % (line, l2)
bottom_half = "Step Index,Position [Deg],Attenuation [dB],Traffic Pair 1 Throughput [Mbps]\n"
test_run = "1"
step_i = 0
while line:
x = line.split(",")
beacon_rssi = "0"
if (i_beacon_rssi >= 0):
beacon_rssi = x[i_beacon_rssi]
tx_rate = "0"
rx_rate = "0"
if (i_tx_mcs >= 0):
tx_rate = self.convert_to_mbps(x[i_tx_mcs])
if (i_rx_mcs >= 0):
rx_rate = self.convert_to_mbps(x[i_rx_mcs])
fpo.write("%s,%s,%s,%s,%s,%s,%s\n" % (test_run, x[i_rotation], x[i_atten], beacon_rssi, x[i_data_rssi], tx_rate, rx_rate))
bottom_half += ("%s,%s,%s,%s\n" % (step_i, x[i_rotation], x[i_atten], self.convert_to_mbps(x[i_rxbps])))
line = fp.readline()
# Concat lines so we can read data from both csv files.
if fp2:
l2 = fp2.readline()
if l2:
line = "%s,%s" % (line, l2)
step_i += 1
# First half is written out now, and second half is stored...
fpo.write("\n\n# RvRvO Data\n\n")
fpo.write(bottom_half)
def convert_to_mbps(self, val):
tokens = val.split(" ")
rv = float(tokens[0])
try:
units = tokens[1]
if units == "Gbps":
rv = rv * 1000.0
if units == "Kbps":
rv = rv / 1000.0
return int(rv)
except Exception as x:
traceback.print_exception(Exception, x, x.__traceback__, chain=True)
# Assume no units and that it is already mbps
return int(rv)
def main():
parser = argparse.ArgumentParser(
prog='csv_convert.py',
formatter_class=argparse.RawTextHelpFormatter,
epilog='''\
Useful Information:
''',
description='''
csv_convert.py:
converts the candela brief csv and/or more complete csv into the data for specific customer.
Both csv files need to be passed in order to have beacon rssi and phy rates since neither
csv file contains all of that data.
Example:
./csv_convert.py -i ~/dataplane-2022-02-08-12-18-45/text-csv-2.csv -I ~/dataplane-2022-02-08-12-18-45/text-csv-0.csv
''')
parser.add_argument('-i', '--infile', help="input file of csv data")
parser.add_argument('-I', '--infile2', help="secondary input file of csv data")
parser.add_argument('-o', '--outfile', help="output file in .csv format", default='outfile.csv')
parser.add_argument('--help_summary', action="store_true", help='Show summary of what this script does')
help_summary = '''\
csv_convert.py converts the candela brief csv and/or more complete csv into the data for specific customer.
Both csv files need to be passed in order to have beacon rssi and phy rates since neither
csv file contains all of that data.
'''
args = parser.parse_args()
if args.help_summary:
print(help_summary)
exit(0)
if not args.infile or not args.infile2:
print("error: the following arguments are required: -i/--infile, -I/--infile2")
exit(1)
csv_outfile_name = None
csv_infile_name = None
csv_infile_name2 = None
if args.infile:
csv_infile_name = args.infile
if args.infile2:
csv_infile_name2 = args.infile2
if args.outfile:
csv_outfile_name = args.outfile
print("infile: %s infile2: %s outfile: %s" % (csv_infile_name, csv_infile_name2, csv_outfile_name))
CSVParser(csv_infile_name, csv_infile_name2, csv_outfile_name)
if __name__ == "__main__":
main()