-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
428 lines (347 loc) · 11 KB
/
Copy pathmain.cpp
File metadata and controls
428 lines (347 loc) · 11 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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#include <iostream>
#include <cstdlib>
#include <string>
#include <cstdint>
#include <limits>
#include <cctype>
#include <vector>
#include "ExchangeEngine.hpp"
#include "Utils.hpp"
#define RST "\033[0m"
#define BOLD "\033[1m"
#define DIM "\033[2m"
#define GRN "\033[32m"
#define RED "\033[31m"
#define CYN "\033[36m"
#define YLW "\033[33m"
#define MGT "\033[35m"
void ClearScreen()
{
#ifdef _WIN32
system("cls");
#else
system("clear");
#endif
}
void Pause()
{
std::cout << "\n" DIM " Press Enter to continue..." RST;
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
std::cin.get();
}
int ReadInt(const std::string &prompt)
{
int value;
while (true)
{
std::cout << prompt;
if (std::cin >> value)
{
return value;
}
std::cout << RED " Invalid input. Please enter a number.\n" RST;
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
}
std::uint64_t ReadUInt64(const std::string &prompt)
{
std::uint64_t value;
while (true)
{
std::cout << prompt;
if (std::cin >> value)
{
return value;
}
std::cout << RED " Invalid input. Please enter a valid order ID.\n" RST;
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
}
std::string ReadSymbol()
{
std::string symbol;
std::cout << BOLD "\n Symbol > " RST;
std::cin >> symbol;
return symbol;
}
bool IsDigitsOnly(const std::string &value)
{
if (value.empty())
{
return false;
}
for (char ch : value)
{
if (!std::isdigit(static_cast<unsigned char>(ch)))
{
return false;
}
}
return true;
}
bool TryParsePriceToTicks(const std::string &priceInput, std::uint64_t &priceTicks)
{
std::string dollarsPart;
std::string centsPart;
size_t pointPosition = priceInput.find('.');
if (pointPosition == std::string::npos)
{
dollarsPart = priceInput;
centsPart = "00";
}
else
{
if (priceInput.find('.', pointPosition + 1) != std::string::npos)
{
return false;
}
dollarsPart = priceInput.substr(0, pointPosition);
centsPart = priceInput.substr(pointPosition + 1);
}
if (dollarsPart.empty())
{
dollarsPart = "0";
}
if (centsPart.empty())
{
centsPart = "00";
}
else if (centsPart.length() == 1)
{
centsPart += "0";
}
else if (centsPart.length() > 2)
{
return false;
}
if (!IsDigitsOnly(dollarsPart) || !IsDigitsOnly(centsPart))
{
return false;
}
std::uint64_t dollars = std::stoull(dollarsPart);
std::uint64_t cents = std::stoull(centsPart);
if (cents > 99)
{
return false;
}
priceTicks = (dollars * 100) + cents;
return true;
}
void PrintBanner()
{
std::cout << "\n";
std::cout << BOLD CYN " +--------------------------------------------------+\n" RST;
std::cout << BOLD CYN " | |\n" RST;
std::cout << BOLD CYN " | AXIS EXCHANGE |\n" RST;
std::cout << BOLD CYN " | C++ Exchange Simulator |\n" RST;
std::cout << BOLD CYN " | |\n" RST;
std::cout << BOLD CYN " +--------------------------------------------------+\n" RST;
std::cout << "\n";
}
void PrintMenu()
{
std::cout << BOLD " +--------------------------------------------------+\n" RST;
std::cout << BOLD " | " GRN "1" RST BOLD " Place Order |\n" RST;
std::cout << BOLD " | " CYN "2" RST BOLD " View Order Book |\n" RST;
std::cout << BOLD " | " YLW "3" RST BOLD " View Book Trade History |\n" RST;
std::cout << BOLD " | " MGT "4" RST BOLD " Cancel Order |\n" RST;
std::cout << BOLD " | " GRN "5" RST BOLD " Modify Order |\n" RST;
std::cout << BOLD " | " CYN "6" RST BOLD " View All Books |\n" RST;
std::cout << BOLD " | " YLW "7" RST BOLD " View Exchange Trade History |\n" RST;
std::cout << BOLD " | " RED "8" RST BOLD " Exit |\n" RST;
std::cout << BOLD " +--------------------------------------------------+\n" RST;
std::cout << "\n";
}
void PrintSectionHeader(const std::string &title)
{
std::cout << "\n" BOLD CYN " ===== " RST BOLD << title << BOLD CYN " =====\n" RST;
std::cout << "\n";
}
void PrintError(const std::string &msg)
{
std::cout << "\n" BOLD RED " [ERROR] " RST << msg << "\n";
}
void PrintCancelHeader(const std::string &symbol, std::uint64_t orderId)
{
std::cout << "\n";
std::cout << BOLD MGT " +--------------------------------------------------+\n" RST;
std::cout << BOLD MGT " | CANCEL ORDER |\n" RST;
std::cout << BOLD MGT " +--------------------------------------------------+\n" RST;
std::cout << " " DIM "Symbol : " RST BOLD << symbol << RST "\n";
std::cout << " " DIM "Order ID : " RST BOLD << orderId << RST "\n";
std::cout << BOLD MGT " +--------------------------------------------------+\n" RST;
std::cout << "\n";
}
void PrintModifyHeader(const std::string &symbol, std::uint64_t orderId, std::uint64_t newPriceTicks, int newQuantity)
{
std::cout << "\n";
std::cout << BOLD GRN " +--------------------------------------------------+\n" RST;
std::cout << BOLD GRN " | MODIFY ORDER |\n" RST;
std::cout << BOLD GRN " +--------------------------------------------------+\n" RST;
std::cout << " " DIM "Symbol : " RST BOLD << symbol << RST "\n";
std::cout << " " DIM "Order ID : " RST BOLD << orderId << RST "\n";
std::cout << " " DIM "New Price : " RST BOLD << FormatPrice(newPriceTicks) << RST "\n";
std::cout << " " DIM "New Quantity : " RST BOLD << newQuantity << RST "\n";
std::cout << BOLD GRN " +--------------------------------------------------+\n" RST;
std::cout << "\n";
}
void LoadGseBooks(ExchangeEngine &engine)
{
std::vector<std::string> symbols = {
"BTI",
"DTC",
"DBL",
"RDL",
"SPL"};
for (const std::string &symbol : symbols)
{
engine.AddBook(symbol);
}
}
int main()
{
ExchangeEngine engine;
LoadGseBooks(engine);
bool running = true;
ClearScreen();
PrintBanner();
while (running)
{
PrintMenu();
int menuChoice = ReadInt(BOLD " > " RST);
switch (menuChoice)
{
case 1:
{
PrintSectionHeader("PLACE ORDER");
std::string symbol = ReadSymbol();
std::cout << BOLD "\n Side\n" RST;
std::cout << " 1. Buy\n";
std::cout << " 2. Sell\n";
int sideChoice = ReadInt(BOLD " Side > " RST);
if (sideChoice != 1 && sideChoice != 2)
{
PrintError("Invalid side selected.");
Pause();
break;
}
OrderSide side = (sideChoice == 1) ? OrderSide::Buy : OrderSide::Sell;
std::cout << BOLD "\n Type\n" RST;
std::cout << " 1. Limit\n";
std::cout << " 2. Market\n";
int typeChoice = ReadInt(BOLD " Type > " RST);
if (typeChoice != 1 && typeChoice != 2)
{
PrintError("Invalid order type selected.");
Pause();
break;
}
OrderType type = (typeChoice == 1) ? OrderType::Limit : OrderType::Market;
std::uint64_t priceTicks = 0;
if (type == OrderType::Limit)
{
std::string priceInput;
std::cout << BOLD "\n Price > " RST;
std::cin >> priceInput;
if (!TryParsePriceToTicks(priceInput, priceTicks))
{
PrintError("Invalid price format.");
Pause();
break;
}
}
int quantity = ReadInt(BOLD " Quantity > " RST);
engine.SubmitOrder(symbol, side, type, priceTicks, quantity);
engine.PrintBook(symbol);
engine.PrintBookTradeHistory(symbol);
Pause();
break;
}
case 2:
{
PrintSectionHeader("VIEW ORDER BOOK");
std::string symbol = ReadSymbol();
engine.PrintBook(symbol);
Pause();
break;
}
case 3:
{
PrintSectionHeader("VIEW BOOK TRADE HISTORY");
std::string symbol = ReadSymbol();
engine.PrintBookTradeHistory(symbol);
Pause();
break;
}
case 4:
{
PrintSectionHeader("CANCEL ORDER");
std::string symbol = ReadSymbol();
std::uint64_t orderId = ReadUInt64(BOLD " Order ID > " RST);
PrintCancelHeader(symbol, orderId);
engine.CancelOrder(symbol, orderId);
engine.PrintBook(symbol);
engine.PrintBookTradeHistory(symbol);
Pause();
break;
}
case 5:
{
PrintSectionHeader("MODIFY ORDER");
std::string symbol = ReadSymbol();
std::uint64_t orderId = ReadUInt64(BOLD " Order ID > " RST);
std::string priceInput;
std::uint64_t newPriceTicks = 0;
std::cout << BOLD " New Price > " RST;
std::cin >> priceInput;
if (!TryParsePriceToTicks(priceInput, newPriceTicks))
{
PrintError("Invalid price format.");
Pause();
break;
}
int newQuantity = ReadInt(BOLD " New Quantity > " RST);
PrintModifyHeader(symbol, orderId, newPriceTicks, newQuantity);
engine.ModifyOrder(symbol, orderId, newPriceTicks, newQuantity);
engine.PrintBook(symbol);
engine.PrintBookTradeHistory(symbol);
Pause();
break;
}
case 6:
{
PrintSectionHeader("VIEW ALL BOOKS");
engine.PrintAllBooks();
Pause();
break;
}
case 7:
{
PrintSectionHeader("VIEW EXCHANGE TRADE HISTORY");
engine.PrintExchangeTradeHistory();
Pause();
break;
}
case 8:
{
running = false;
break;
}
default:
{
PrintError("Invalid menu option.");
Pause();
break;
}
}
if (running)
{
ClearScreen();
PrintBanner();
}
}
std::cout << "\n" BOLD CYN " Goodbye.\n" RST;
return 0;
}