Files
lzf1/src/main.rs

295 lines
10 KiB
Rust
Raw Normal View History

2024-05-09 09:52:52 -10:00
use std::collections::HashMap;
use std::cmp::Ordering;
use std::cmp::min;
use rand::prelude::*;
use rand::rngs::StdRng;
2024-05-18 14:28:12 -04:00
use finum::FiNum;
2024-05-09 09:52:52 -10:00
2024-05-15 06:59:09 -04:00
#[derive(Debug, Clone)]
struct Trader {
name: String,
id: i32,
2024-05-18 14:28:12 -04:00
balances: HashMap<i32,FiNum>, // Maps Currency to Amount
2024-05-15 06:59:09 -04:00
}
impl Trader {
fn new(name:&str,id:i32) -> Self {
Trader {
2024-05-18 23:59:58 -04:00
name: String::from(name),
id: id,
balances: HashMap::new()
}
2024-05-15 06:59:09 -04:00
}
2024-05-18 14:28:12 -04:00
fn add_balance(&mut self, cur:i32, delta:FiNum) {
2024-05-18 23:59:58 -04:00
self.balances.entry(cur).and_modify(|ent| *ent+=delta ).or_insert_with(|| delta);
}
2024-05-18 14:28:12 -04:00
fn sub_balance(&mut self, cur:i32, delta:FiNum) {
2024-05-18 23:59:58 -04:00
self.balances.entry(cur).and_modify(|ent| *ent-=delta );
}
2024-05-18 14:28:12 -04:00
fn get_balance(&self, cur:i32) -> FiNum {
*self.balances.get(&cur).map(|bal| bal).unwrap_or(&FiNum::new(0u64))
2024-05-18 23:59:58 -04:00
}
2024-05-15 06:59:09 -04:00
}
2024-05-09 09:52:52 -10:00
#[derive(Debug, Clone)]
struct Offer {
2024-05-18 14:28:12 -04:00
sell_qty: FiNum,
sell_remain: FiNum,
buy_qty: FiNum,
2024-05-15 06:59:09 -04:00
owner: i32,
}
2024-05-09 09:52:52 -10:00
trait Dumpable {
fn dump(&self);
}
impl Dumpable for Offer {
fn dump(&self) {
2024-05-18 14:28:12 -04:00
println!("Giving {}/{} to get {}",self.sell_remain,self.sell_qty,self.buy_qty);
2024-05-09 09:52:52 -10:00
}
}
struct Market {
2024-05-15 06:59:09 -04:00
asset_name2num: HashMap<String,i32>,
asset_num2name: HashMap<i32,String>,
asset_count:i32,
2024-05-18 14:28:12 -04:00
money_supply: HashMap<i32,FiNum>,
2024-05-15 06:59:09 -04:00
offers: HashMap<(i32,i32),PQueue<Offer>>,
traders: Vec<Trader>,
2024-05-16 15:50:37 -04:00
trader_name2num: HashMap<String,i32>,
2024-05-15 06:59:09 -04:00
}
2024-05-09 09:52:52 -10:00
impl Market {
fn new() -> Self {
Market {
asset_name2num: HashMap::new(),
asset_num2name: HashMap::new(),
asset_count:0,
2024-05-16 17:11:09 -04:00
money_supply: HashMap::new(),
2024-05-15 06:59:09 -04:00
offers: HashMap::new(),
2024-05-18 23:59:58 -04:00
traders: Vec::new(),
2024-05-16 15:50:37 -04:00
trader_name2num: HashMap::new(),
2024-05-09 09:52:52 -10:00
}
}
2024-05-16 17:11:09 -04:00
fn sanity_check(&self) {
println!("Sanity Checking Market...");
for (cur,amt) in self.money_supply.iter() {
2024-05-18 14:28:12 -04:00
println!("Money Supply {}: {}",self.number_to_name(*cur),*amt);
let mut acc_offers=FiNum::new(0);
2024-05-16 17:11:09 -04:00
for (ac,pq) in &self.offers { if ac.0==*cur {
for off in &*pq.v { acc_offers+=off.sell_remain; }
} }
2024-05-18 14:28:12 -04:00
let mut acc_traders=FiNum::new(0);
2024-05-16 17:11:09 -04:00
for t in &self.traders { acc_traders+=t.get_balance(*cur); }
let acc=acc_offers+acc_traders;
2024-05-18 14:28:12 -04:00
println!(" {}: Offers {} Traders {} Total {} Should Be {}",self.number_to_name(*cur),acc_offers,acc_traders,acc,*amt);
2024-05-16 17:11:09 -04:00
}
}
2024-05-16 15:50:37 -04:00
fn register_trader(&mut self, name:&str) -> i32 { // Add error checking for inserting a trader twice
2024-05-16 10:30:09 -04:00
let rval=self.traders.len() as i32;
2024-05-16 15:50:37 -04:00
self.trader_name2num.insert(String::from(name),self.traders.len() as i32);
2024-05-18 23:59:58 -04:00
self.traders.push(Trader::new(name,rval));
2024-05-16 17:11:09 -04:00
rval
2024-05-18 23:59:58 -04:00
}
2024-05-16 17:11:09 -04:00
// These are the only ways to get money into or out of the market.
2024-05-18 14:28:12 -04:00
fn add_trader_balance(&mut self, who:i32, cur:i32, delta: FiNum) {
2024-05-16 15:50:37 -04:00
self.traders[who as usize].add_balance(cur,delta);
2024-05-16 17:11:09 -04:00
*self.money_supply.get_mut(&cur).unwrap()+=delta;
2024-05-16 15:50:37 -04:00
}
2024-05-18 14:28:12 -04:00
fn sub_trader_balance(&mut self, who:i32, cur:i32, delta: FiNum) {
2024-05-16 15:50:37 -04:00
self.traders[who as usize].sub_balance(cur,delta);
2024-05-16 17:11:09 -04:00
*self.money_supply.get_mut(&cur).unwrap()-=delta;
2024-05-16 15:50:37 -04:00
}
2024-05-09 09:52:52 -10:00
fn register_asset(&mut self, name:&str) -> i32 {
self.asset_count+=1;
self.asset_name2num.insert(String::from(name),self.asset_count);
self.asset_num2name.insert(self.asset_count,String::from(name));
2024-05-18 14:28:12 -04:00
self.money_supply.insert(self.asset_count,FiNum::new(0));
2024-05-09 09:52:52 -10:00
self.asset_count
}
fn name_to_number(&self, name:&str) -> i32 {
*self.asset_name2num.get(name).unwrap()
}
fn number_to_name(&self, num:i32) -> &str {
&*self.asset_num2name.get(&num).unwrap()
}
fn dump(&self) {
println!("Dumping Market:");
2024-05-16 15:50:37 -04:00
for t in &self.traders {
println!(" Trader {}: {}",t.id,t.name);
for (cur,bal) in t.balances.iter() {
2024-05-18 14:28:12 -04:00
println!(" {}: {}",self.number_to_name(*cur),*bal)
2024-05-16 15:50:37 -04:00
}
}
for (ap,pq) in &self.offers {
println!("Offers selling {} to buy {}:",self.number_to_name(ap.0),self.number_to_name(ap.1));
let mut sorted=pq.v.clone();
sorted.sort_by(|a,b| (a.sell_qty/a.buy_qty).cmp(&(b.sell_qty/b.buy_qty)));
for off in sorted.iter() {
println!(" {} @ {} ({})",
2024-05-19 11:24:59 -04:00
off.buy_qty*off.sell_remain/off.sell_qty,
off.sell_qty/off.buy_qty,
self.traders[off.owner as usize].name);
}
//value.dump();
2024-05-09 09:52:52 -10:00
}
}
2024-05-18 23:59:58 -04:00
fn make_offer(&mut self, owner:i32, sell_type:i32, buy_type:i32, sell_qty_initial:FiNum, buy_qty_initial:FiNum) -> bool // Dollars, Bitcoin, 64000, 1
{
if self.traders[owner as usize].get_balance(sell_type)<sell_qty_initial { return false; }
let mut buy_qty=buy_qty_initial;
2024-05-09 09:52:52 -10:00
let ap=(buy_type,sell_type);
2024-05-18 23:59:58 -04:00
while buy_qty>FiNum::new(0) && self.offers.contains_key(&ap) && self.offers.get(&ap).unwrap().v.len()>0 {
let elt=&mut self.offers.get_mut(&ap).unwrap().v[0];
if sell_qty_initial/buy_qty_initial>=elt.buy_qty/elt.sell_qty { // Transact at ask_rate
2024-05-19 13:15:58 -04:00
println!("Transacting at {}/{}, not at {}/{}",elt.buy_qty,elt.sell_qty,sell_qty_initial,buy_qty_initial);
2024-05-18 23:59:58 -04:00
let qty=std::cmp::min(elt.sell_remain,buy_qty);
elt.sell_remain-=qty;
buy_qty-=qty;
let pay_qty=qty*elt.buy_qty/elt.sell_qty;
self.traders[owner as usize].sub_balance(sell_type,pay_qty);
self.traders[owner as usize].add_balance(buy_type ,qty);
self.traders[elt.owner as usize].add_balance(sell_type,pay_qty);
if elt.sell_remain==0.into() { self.offers.get_mut(&ap).unwrap().pop(); }
2024-05-19 11:24:59 -04:00
} else { break; }
2024-05-18 23:59:58 -04:00
}
if buy_qty>0.into() {
2024-05-09 09:52:52 -10:00
let ap=(sell_type,buy_type);
if let None=self.offers.get_mut(&ap) { self.offers.insert(ap,PQueue::new()); }
2024-05-18 23:59:58 -04:00
let bids=self.offers.get_mut(&ap).unwrap();
let sell_qty_remain=sell_qty_initial*buy_qty/buy_qty_initial;
2024-05-19 11:24:59 -04:00
if sell_qty_remain>0.into() {
bids.insert(Offer { owner:owner, sell_qty:sell_qty_remain, sell_remain:sell_qty_remain, buy_qty:buy_qty } );
self.traders[owner as usize].sub_balance(sell_type,sell_qty_remain);
}
2024-05-18 23:59:58 -04:00
}
true
2024-05-13 12:03:03 -04:00
}
}
2024-05-09 09:52:52 -10:00
impl PartialOrd for Offer {
fn partial_cmp(&self, other:&Self) -> Option<Ordering> {
2024-05-09 12:08:26 -10:00
let ord0=self .sell_qty/self .buy_qty;
let ord1=other.buy_qty /other.sell_qty;
2024-05-09 09:52:52 -10:00
if ord0<ord1 { Some(Ordering::Less) }
else if ord0>ord1 { Some(Ordering::Greater) }
else { Some(Ordering::Equal) }
}
}
impl PartialEq for Offer {
fn eq(&self, other:&Self) -> bool {
2024-05-13 12:03:03 -04:00
let ord0=self .sell_qty/self .buy_qty;
let ord1=other.sell_qty/other.buy_qty;
2024-05-09 09:52:52 -10:00
ord0==ord1
}
}
2024-05-09 12:08:26 -10:00
2024-05-09 09:52:52 -10:00
struct PQueue<T: Dumpable> {
v: Vec<T>,
}
impl<T: Dumpable + std::cmp::PartialOrd + std::fmt::Debug> PQueue<T> {
fn new()->Self {
PQueue {
v: Vec::new()
}
}
fn peek(&self) -> &T {
&self.v[0]
}
fn bubble_up(&mut self, pos: usize) {
if pos>0 {
let parent=(pos-1)/2;
2024-05-19 13:15:58 -04:00
if self.v[parent]>self.v[pos] {
2024-05-09 09:52:52 -10:00
self.v.swap(parent,pos);
self.bubble_up(parent);
}
}
}
fn trickle_down(&mut self, pos: usize) {
let mut pivot=pos;
let child0=pos*2+1;
let child1=pos*2+2;
if child0<self.v.len() {
2024-05-19 13:15:58 -04:00
if self.v[pos]>self.v[child0] { pivot=child0; }
2024-05-09 09:52:52 -10:00
if child1<self.v.len() {
2024-05-19 13:15:58 -04:00
if self.v[pivot]>self.v[child1] { pivot=child1; }
2024-05-09 09:52:52 -10:00
}
if pivot!=pos {
self.v.swap(pivot,pos);
self.trickle_down(pivot);
}
}
}
fn insert(&mut self, item: T) {
self.v.push(item);
self.bubble_up(self.v.len()-1);
}
fn pop(&mut self) -> Option<T> {
if self.v.len()==0 { None }
else {
let end=self.v.len()-1;
self.v.swap(0,end);
let rval=self.v.pop();
self.trickle_down(0);
rval
}
}
fn dump(&self) {
for index in 0..self.v.len() {
self.v[index].dump();
}
}
}
2024-05-13 12:03:03 -04:00
2024-05-09 09:52:52 -10:00
fn main() {
2024-05-19 13:15:58 -04:00
let mut pq:PQueue<Offer>=PQueue::new();
pq.insert(Offer { owner:1, sell_qty:12.into(), sell_remain:12.into(), buy_qty:4.into() } );
pq.insert(Offer { owner:1, sell_qty:12.into(), sell_remain:12.into(), buy_qty:2.into() } );
pq.insert(Offer { owner:1, sell_qty:12.into(), sell_remain:12.into(), buy_qty:3.into() } );
println!("Pop: {}",pq.pop().unwrap().buy_qty);
println!("Pop: {}",pq.pop().unwrap().buy_qty);
println!("Pop: {}",pq.pop().unwrap().buy_qty);
let mut rng: StdRng=StdRng::seed_from_u64(1u64);
2024-05-09 09:52:52 -10:00
let mut m=Market::new(); // USD type is 1, EUR type is 2, BTC type is 10, ETH type is 11, SOL type is 12
2024-05-16 15:50:37 -04:00
let teppy=m.register_trader("Teppy");
let luni =m.register_trader("Luni");
let usd =m.register_asset("USD");
let btc =m.register_asset("BTC");
m.add_trader_balance(teppy,btc,100.into());
m.add_trader_balance(luni ,usd,1000000.into());
2024-05-19 11:24:59 -04:00
for i in 1..=100 {
let seller=if rng.gen_bool(0.5) { teppy } else { luni };
let (buy_type,sell_type,buy_qty,sell_qty):(i32,i32,FiNum,FiNum);
if rng.gen_bool(0.5) {
sell_type=btc;
buy_type=usd;
2024-05-19 13:15:58 -04:00
sell_qty=1.into(); //rng.gen_range(2..=5).into();
buy_qty=sell_qty*rng.gen_range(60000..=70000).into();
} else {
sell_type=usd;
buy_type=btc;
2024-05-19 13:15:58 -04:00
buy_qty=1.into(); //rng.gen_range(2..=5).into();
sell_qty=buy_qty*rng.gen_range(60000..=70000).into();
}
2024-05-19 11:24:59 -04:00
println!("Index {} Sell {} {} to buy {} {} ({})",i,sell_qty,m.number_to_name(sell_type),buy_qty,m.number_to_name(buy_type),m.traders[seller as usize].name);
if i==3 {
println!("Fifty-two!");
m.dump();
}
m.make_offer(seller,sell_type,buy_type,sell_qty,buy_qty);
2024-05-19 11:24:59 -04:00
if i==3 {
println!("Fifty-two!");
m.dump();
}
}
2024-05-09 09:52:52 -10:00
m.dump();
2024-05-16 17:11:09 -04:00
m.sanity_check();
2024-05-09 09:52:52 -10:00
}