-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
223 lines (158 loc) · 6.52 KB
/
client.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
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
214
215
216
217
218
219
220
221
222
223
#!/usr/bin/python3
# Copyright (c) 2024 Cloudflare, Inc.
# Licensed under the Apache 2.0 license found in the LICENSE file or at https://www.apache.org/licenses/LICENSE-2.0
import multiprocessing
import time
import queue
import socket
import data_sender_thread
import data_udp_ping_sender_thread
import data_receiver_thread
import control_receiver_thread
import util
import calibration
import const
import output
import graph
from tcp_control_connection_class import TcpControlConnectionClass
def client_mainline(args):
if args.verbosity:
print("args: {}".format(args))
server_ip = args.client
server_port = args.port
data_conn_verification_str = "d" + const.SOFT_SECRET + " "
# create control connection
if args.verbosity:
print("creating control connection")
control_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
control_sock.connect((server_ip, server_port))
control_conn = TcpControlConnectionClass(control_sock)
control_conn.set_args(args)
control_conn.send_validation_string()
if args.verbosity:
print("created control connection")
if args.verbosity:
print("sending args to server {}".format(vars(args)))
control_conn.send_args_to_server(args)
if args.verbosity:
print("sent args to server")
# create data connection
if args.verbosity:
print("creating data connection")
if args.udp:
data_sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
data_sock.settimeout(const.SOCKET_TIMEOUT_SEC)
else:
data_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
data_sock.connect((server_ip, server_port))
data_sock.settimeout(const.SOCKET_TIMEOUT_SEC)
# send verification string
num_bytes_sent = data_sock.send(data_conn_verification_str.encode())
if num_bytes_sent != len(data_conn_verification_str):
raise Exception("ERROR: send failed")
server_addr = (server_ip, server_port)
if args.verbosity:
print("created data connection ({})".format("udp" if args.udp else "tcp"))
# run test
if args.verbosity:
print("test running")
calibration.start()
if not args.reverse:
# up direction
control_receiver_stdout_queue = multiprocessing.Queue()
control_receiver_results_queue = multiprocessing.Queue()
control_receiver_process = multiprocessing.Process(
name = "controlreceiver",
target = control_receiver_thread.run_recv_term_queue,
args = (args, control_receiver_stdout_queue, control_conn, control_receiver_results_queue),
daemon = True)
control_receiver_process.start()
data_sender_stdout_queue = multiprocessing.Queue()
data_sender_process = multiprocessing.Process(
name = "datasender",
target = data_sender_thread.run,
args = (args, data_sender_stdout_queue, data_sock, server_addr),
daemon = True)
# test starts here
data_sender_process.start()
thread_list = []
thread_list.append(control_receiver_process)
thread_list.append(data_sender_process)
queue_list = []
queue_list.append([control_receiver_results_queue, output.print_output])
queue_list.append([control_receiver_stdout_queue, print])
queue_list.append([data_sender_stdout_queue, print])
if args.reverse:
# down direction
# udp pinger
if args.udp:
data_udp_ping_sender_stdout_queue = multiprocessing.Queue()
data_udp_ping_sender_process = multiprocessing.Process(
name = "dataudppingsender",
target = data_udp_ping_sender_thread.run,
args = (args, data_udp_ping_sender_stdout_queue, data_sock, server_addr),
daemon = True)
data_udp_ping_sender_process.start()
# yield to let the first ping fly
time.sleep(0.005)
data_receiver_stdout_queue = multiprocessing.Queue()
data_receiver_process = multiprocessing.Process(
name = "datareceiver",
target = data_receiver_thread.run,
args = (args, data_receiver_stdout_queue, control_conn, data_sock, server_addr),
daemon = True)
data_receiver_process.start()
control_receiver_stdout_queue = multiprocessing.Queue()
control_receiver_results_queue = multiprocessing.Queue()
control_receiver_process = multiprocessing.Process(
name = "controlreceiver",
target = control_receiver_thread.run_recv_queue,
args = (args, control_receiver_stdout_queue, control_conn, control_receiver_results_queue),
daemon = True)
control_receiver_process.start()
# test starts here
control_conn.send_start_message_to_server()
thread_list = []
thread_list.append(data_receiver_process)
thread_list.append(control_receiver_process)
if args.udp:
thread_list.append(data_udp_ping_sender_process)
queue_list = []
if args.udp:
queue_list.append([data_udp_ping_sender_stdout_queue, print])
queue_list.append([data_receiver_stdout_queue, print])
queue_list.append([control_receiver_stdout_queue, print])
queue_list.append([control_receiver_results_queue, output.print_output])
# output loop
output.init(args)
while True:
queue_was_processed = False
for queue_to_read, function_to_call in queue_list:
try:
s1 = queue_to_read.get_nowait()
queue_was_processed = True
function_to_call(s1)
except queue.Empty:
pass
if queue_was_processed:
# immediately loop again
continue
if util.threads_are_running(thread_list):
# nothing in queues, but test is still running
time.sleep(0.01)
continue
# exit program
break
output.term()
util.done_with_socket(data_sock)
control_conn.close()
graphdatafilename = output.get_graph_data_file_name()
rawdatafilename = output.get_raw_data_file_name()
if args.graph:
graph.create_graph(args, graphdatafilename)
print("created graph: {}".format(graphdatafilename + ".png"))
if args.keep:
print("keeping graph data file: {}".format(graphdatafilename))
print("keeping raw data file: {}".format(rawdatafilename))
else:
output.delete_data_files()