-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample_client.cpp
266 lines (224 loc) · 8.72 KB
/
sample_client.cpp
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
#include <netdb.h>
#include <latch>
#include <chrono>
#include <memory>
#include <stdexcept>
#include <algorithm>
#include <thread>
#include "fix_engine.h"
#include "msg_logon.h"
#include "msg_massquote.h"
// #define GO_TRADER
namespace config {
#ifdef GO_TRADER
static const char *TARGET_COMP_ID = "GOX"; // GOX to talk with go-trader, or SERVER to talk with sample_server
static const int PORT = 5001; // 5001 to talk with go-trader, or 9000 to talk with sample_server
#else
static const char *TARGET_COMP_ID = "SERVER"; // GOX to talk with go-trader, or SERVER to talk with sample_server
static const int PORT = 9000; // 5001 to talk with go-trader, or 9000 to talk with sample_server
#endif
}
static std::atomic<long> quoteCount = 0;
class MyClient : public Initiator<> {
static const int N_QUOTES = 10000;
FixBuilder fix;
F bidPrice = 100.0;
F askPrice = 101.0;
F bidQty = 10;
F askQty = 10;
std::string symbol;
std::chrono::time_point<std::chrono::system_clock> start;
std::latch& latch;
public:
MyClient(const sockaddr_in &server,std::string symbol,DefaultSessionConfig sessionConfig,std::latch& latch,Poller* poller=nullptr) : Initiator(server, sessionConfig, poller), symbol(symbol), latch(latch) {};
void onConnected() override {
std::cout << "client connected!, sending logon\n";
Logon::build(fix);
sendMessage(Logon::msgType, fix);
}
void onMessage(Session<> &session, const FixMessage &msg) override {
if (msg.msgType() == MassQuoteAck::msgType) {
double adjust = rand() % 2 == 0 ? 0.01 : -0.01;
if (bidPrice <= 25) adjust = 0.01;
if (bidPrice >= 225) adjust = -0.01;
bidPrice = bidPrice + adjust;
askPrice = askPrice + adjust;
MassQuote::build(fix, "MyQuote", "MyQuoteEntry",symbol, bidPrice, bidQty, askPrice, askQty);
sendMessage(MassQuote::msgType, fix);
quoteCount+=1;
}
}
bool validateLogon(const FixMessage &logon) override { return true; }
void onLoggedOn(const Session<> &session) override {
std::cout << "client logged in!\n";
start = std::chrono::system_clock::now();
MassQuote::build(fix, "MyQuote","MyQuoteEntry",symbol, bidPrice, bidQty, askPrice, askQty);
sendMessage(MassQuote::msgType, fix);
}
void onLoggedOut(const Session<> &session, const std::string_view &text) override {
std::cout << "client logged out " << text << "\n";
}
void onDisconnected(const Session<>& session) override {
latch.count_down();
Initiator::onDisconnected(session);
}
};
void usage() {
std::cout << "usage: sample_client <hostname> ( <symbol> | -bench <count> ) [-fibers]\n";
exit(0);
}
void doFibers(struct sockaddr_in server, int benchCount,std::string symbol) {
std::cout << "using fibers\n";
Poller poller;
std::thread pollerThread([&poller]() {
while (true) {
try {
poller.poll();
} catch(const std::runtime_error& err) {
std::cerr << "poller error: " << err.what() << "\n";
return;
}
}
});
std::vector<MyClient*> clients;
int workerThreads = std::max(int(std::thread::hardware_concurrency()) / 2,1);
std::vector<std::thread> workers;
boost::fibers::use_scheduling_algorithm<boost::fibers::algo::round_robin>();
typedef boost::fibers::buffered_channel<std::string> channel_t;
channel_t chan{2};
// benchCount is 0 if a single symbol is being quoted
std::latch latch(std::max(benchCount,1));
for(int i=0;i<workerThreads;i++) {
workers.push_back(
std::thread([&chan,&server,&poller,&latch,workerThreads]() {
boost::fibers::use_scheduling_algorithm<boost::fibers::algo::work_stealing>(workerThreads,true);
while(true) {
std::string symbol;
if(chan.pop(symbol)!=boost::fibers::channel_op_status::success) {
return;
}
struct DefaultSessionConfig sessionConfig("CLIENT_"+symbol, config::TARGET_COMP_ID);
auto client = new MyClient(server,symbol,sessionConfig,latch,&poller);
client->connect();
if(client->isConnected()) {
std::cout << "client connected\n";
client->handle();
}
}
}));
}
auto reporter = boost::fibers::fiber(
[&latch]() {
while(!latch.try_wait()) {
auto start = std::chrono::system_clock::now();
long startCount = quoteCount;
boost::this_fiber::sleep_for(std::chrono::seconds(5));
auto end = std::chrono::system_clock::now();
long nQuotes = quoteCount-startCount;
auto duration =
std::chrono::duration_cast<std::chrono::microseconds>(end - start);
std::cout << "round-trip " << nQuotes << " quotes, usec per quote "
<< (duration.count() / (double)(nQuotes)) << ", quotes per sec "
<< (int)(((nQuotes) / (duration.count() / 1000000.0))) << "\n";
}
});
if(!benchCount) {
chan.push(symbol);
} else {
for(int i=0;i<benchCount;i++) {
auto symbol = std::string("S")+std::to_string(i);
chan.push(symbol);
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
}
while(!latch.try_wait()) {
boost::this_fiber::sleep_for(std::chrono::milliseconds(1000));
}
chan.close();
reporter.join();
poller.close();
pollerThread.join();
for(auto& worker : workers) worker.join();
for(auto client : clients) delete client;
std::cout << "all clients disconnected\n";
}
void doThreads(struct sockaddr_in server,int benchCount,std::string symbol) {
int nThreads = std::max(benchCount,1);
std::cout << "using " << nThreads << " threads\n";
std::latch latch(nThreads);
auto reporter = std::thread([&latch,symbol,benchCount]() {
while(!latch.try_wait()) {
auto start = std::chrono::system_clock::now();
long startCount = quoteCount;
std::this_thread::sleep_for(std::chrono::seconds(5));
auto end = std::chrono::system_clock::now();
long nQuotes = quoteCount-startCount;
auto duration =
std::chrono::duration_cast<std::chrono::microseconds>(end - start);
auto symbolStr = benchCount == 0 ? " on "+symbol : "";
std::cout << "round-trip " << nQuotes << " quotes" << symbolStr <<", usec per quote "
<< (duration.count() / (double)(nQuotes)) << ", quotes per sec "
<< (int)(((nQuotes) / (duration.count() / 1000000.0))) << "\n";
}
});
for(int i=0;i<nThreads;i++) {
std::string _symbol = benchCount==0 ? symbol : std::string("S")+std::to_string(i);
auto thread = std::thread([&latch,_symbol,&server]() {
struct DefaultSessionConfig sessionConfig("CLIENT_"+_symbol, config::TARGET_COMP_ID);
MyClient client(server,_symbol,sessionConfig,latch);
client.connect();
if(client.isConnected()) {
std::cout << "client connected\n";
client.handle();
}
});
thread.detach();
// delay between connection requests otherwise backlog exceeded
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
while(!latch.try_wait()) {
std::this_thread::sleep_for(std::chrono::seconds(5));
}
reporter.join();
std::cout << "----------- all clients disconnected\n";
}
int main(int argc, char *argv[]) {
struct hostent *he;
struct sockaddr_in server;
std::string symbol = "IBM";
int benchCount = 0;
bool fibers = false;
if(argc < 2 || strcmp(argv[1],"-h")==0) {
usage();
}
int n = 1;
char *hostname = argv[n++];
if(argc > 2) {
if(strcmp("-bench",argv[n++])==0) {
benchCount = atoi(argv[n++]);
} else {
symbol = argv[n++];
}
}
if(n<argc) {
if(strcmp("-fibers",argv[n++])==0) {
fibers = true;
} else {
usage();
}
}
if(n!=argc) usage();
/* resolve hostname */
if ((he = gethostbyname(hostname)) == NULL) {
std::cerr << "gethostbyname failed" << hostname << "\n";
exit(1); /* error */
}
memcpy(&server.sin_addr, he->h_addr_list[0], he->h_length);
server.sin_port = htons(config::PORT);
server.sin_family = AF_INET;
if(fibers) {
doFibers(server,benchCount,symbol);
} else {
doThreads(server,benchCount,symbol);
}
}