From 128c6d51ec8c70e230dc86b100cb887ba3f0378d Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Thu, 20 Jan 2022 07:00:50 +0000
Subject: [PATCH] Secrets to macros and c string concat at compile time

---
 book.cpp |   28 +++++++++-------------------
 1 files changed, 9 insertions(+), 19 deletions(-)

diff --git a/book.cpp b/book.cpp
index 7d74c6b..5a3fb9d 100644
--- a/book.cpp
+++ b/book.cpp
@@ -86,46 +86,36 @@
            double pasFee, double broFee)
 	: bidSide{}, askSide{}, productType{productType}, product(product),
 	  stationId(stationId), unit(unit), expiry(expiry), aggFee(aggFee),
-	  pasFee(pasFee), broFee(broFee)
+	  pasFee(pasFee), broFee(broFee), bomPrice(0)
 {
 }
 
 void Book::ask(Order& order)
 {
-    auto a = 
-    this->askSide.emplace(order.id, order);
-    if (!a.second) {
-        std::cout << order.id << "already exists" << std::endl;
-    }
+	Level a(order);
+	auto b = std::lower_bound(this->askSide.begin(), this->askSide.end(), a);
+	this->askSide.insert(b, a);
 }
 
 void Book::bid(Order& order)
 {
-    auto a =
-    this->bidSide.emplace(order.id, order);
-    if (!a.second) {
-        std::cout << order.id << "already exists" << std::endl;
-    }
+	Level a(order);
+	auto b = std::upper_bound(this->bidSide.begin(), this->bidSide.end(), a);
+	this->bidSide.insert(b, a);
 }
 
 void Book::printBook(std::size_t numOrders)
 {
 	std::cout << "Sell side: " << this->askSide.size() << std::endl;
-	std::vector<Level> askCopy;
-    for (auto i : this->askSide) askCopy.push_back(i.second);
 	std::size_t count = 0;
-	std::sort(askCopy.begin(), askCopy.end());
-	for (auto i = askCopy.rbegin(); i != askCopy.rend(); i++) {
+	for (auto i = this->askSide.rbegin(); i != this->askSide.rend(); i++) {
 		std::cout << *i << std::endl;
 		count++;
 		if (count > numOrders) break;
 	}
 	std::cout << "Buy side: " << this->bidSide.size() << std::endl;
-	std::vector<Level> bidCopy;
-    for (auto i : this->bidSide) bidCopy.push_back(i.second);
 	count = 0;
-	std::sort(bidCopy.begin(), bidCopy.end());
-	for (auto i = bidCopy.rbegin(); i != bidCopy.rend(); i++) {
+	for (auto i = this->bidSide.rbegin(); i != bidSide.rend(); i++) {
 		std::cout << *i << std::endl;
 		count++;
 		if (count > numOrders) break;

--
Gitblit v1.9.3