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
|
--
-- Copyright (c) 2010-2017 Intel Corporation
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
function get_client_bundles(bundles)
local client_bundles = {};
for i,b in ipairs(bundles) do
client_bundles[i] = {bundle = b, imix_fraction = 1}
end
return client_bundles;
end
function get_server_streams(bundles)
local server_streams = {}
n_listen = 0
for i, bundle in ipairs(bundles) do
for j, stream in ipairs(bundle) do
n_listen = n_listen + 1
server_streams[n_listen] = stream
end
end
return server_streams;
end
function setup_bundles(first_ip_byte, speed_scaling)
bundles = dofile("cfg.lua")
local client_bundles = get_client_bundles(bundles);
local server_streams = get_server_streams(bundles);
for i,e in ipairs(client_bundles) do
for j,stream in ipairs(e.bundle) do
stream.clients.ip[1] = first_ip_byte
stream.clients.port_mask = 0xffff
end
end
for i,stream in ipairs(server_streams) do
stream.servers.ip[1] = first_ip_byte
end
local highest_bps = 0;
for i,e in ipairs(client_bundles) do
for j,s in ipairs(e.bundle) do
if (s.up_bps ~= 1250000000 and s.dn_bps ~= 1250000000) then
if (highest_bps < s.up_bps) then
highest_bps = s.up_bps
end
if (highest_bps < s.dn_bps) then
highest_bps = s.dn_bps
end
end
end
end
if (highest_bps == 0) then
highest_bps = 1250000000
end
max_ss = 1250000000/highest_bps
if (max_ss_and_quit == not nil and max_ss_and_quit == true) then
print("max ss=" .. max_ss .. "")
os.exit(0);
end
if (speed_scaling > max_ss) then
error("Scaling too high (maximum scaling is " .. max_ss .. ")")
end
for i,e in ipairs(client_bundles) do
for j,s in ipairs(e.bundle) do
if (s.up_bps ~= 1250000000 and s.dn_bps ~= 1250000000) then
s.up_bps = s.up_bps * speed_scaling;
s.dn_bps = s.dn_bps * speed_scaling;
end
end
end
return client_bundles, server_streams
end
|