Initial commit (clean, no build artifacts)

This commit is contained in:
floor-licker
2025-07-24 20:29:10 -04:00
commit 0da466ae61
24 changed files with 10893 additions and 0 deletions
+227
View File
@@ -0,0 +1,227 @@
//! Benchmark for order book updates
//!
//! This benchmark measures the performance of order book operations
//! including delta application, price updates, and book maintenance.
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use polyfill_rs::{
book::OrderBook,
types::{OrderDelta, Side},
};
use rust_decimal::{Decimal, Decimal as RustDecimal};
use rust_decimal_macros::dec;
use std::time::Instant;
fn bench_book_creation(c: &mut Criterion) {
c.bench_function("book_creation", |b| {
b.iter(|| {
let _book = OrderBook::new(
black_box("test_token".to_string()),
black_box(100),
);
});
});
}
fn bench_delta_application(c: &mut Criterion) {
let mut book = OrderBook::new("test_token".to_string(), 100);
// Pre-populate with some levels
for i in 1..=10 {
let price = Decimal::from(50 + i) / Decimal::from(100);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: Side::BUY,
price,
size: dec!(100),
sequence: i,
};
book.apply_delta(delta).unwrap();
}
c.bench_function("delta_application", |b| {
b.iter(|| {
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: black_box(Side::SELL),
price: black_box(dec!(0.52)),
size: black_box(dec!(50)),
sequence: black_box(11),
};
book.apply_delta(delta).unwrap();
});
});
}
fn bench_best_price_lookup(c: &mut Criterion) {
let mut book = OrderBook::new("test_token".to_string(), 100);
// Pre-populate with levels
for i in 1..=20 {
let price = Decimal::from(50 + i) / Decimal::from(100);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size: dec!(100),
sequence: i,
};
book.apply_delta(delta).unwrap();
}
c.bench_function("best_price_lookup", |b| {
b.iter(|| {
let _bid = book.best_bid();
let _ask = book.best_ask();
let _spread = book.spread();
let _mid = book.mid_price();
});
});
}
fn bench_book_snapshot(c: &mut Criterion) {
let mut book = OrderBook::new("test_token".to_string(), 100);
// Pre-populate with levels
for i in 1..=50 {
let price = Decimal::from(50 + i) / Decimal::from(100);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size: dec!(100),
sequence: i,
};
book.apply_delta(delta).unwrap();
}
c.bench_function("book_snapshot", |b| {
b.iter(|| {
let _snapshot = book.snapshot();
});
});
}
fn bench_market_impact_calculation(c: &mut Criterion) {
let mut book = OrderBook::new("test_token".to_string(), 100);
// Pre-populate with levels
for i in 1..=30 {
let price = Decimal::from(50 + i) / Decimal::from(100);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size: dec!(100),
sequence: i,
};
book.apply_delta(delta).unwrap();
}
c.bench_function("market_impact_calculation", |b| {
b.iter(|| {
let _impact = book.calculate_market_impact(Side::BUY, dec!(50));
});
});
}
fn bench_high_frequency_updates(c: &mut Criterion) {
c.bench_function("high_frequency_updates", |b| {
b.iter(|| {
let mut book = OrderBook::new("test_token".to_string(), 100);
let start_time = Instant::now();
// Simulate high-frequency updates
for i in 1..=1000 {
let price = Decimal::from(500 + (i % 100)) / Decimal::from(1000);
let size = Decimal::from(10 + (i % 90));
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size,
sequence: i,
};
book.apply_delta(delta).unwrap();
// Check prices every 10 updates
if i % 10 == 0 {
let _bid = book.best_bid();
let _ask = book.best_ask();
}
}
let duration = start_time.elapsed();
black_box(duration);
});
});
}
fn bench_concurrent_access(c: &mut Criterion) {
use std::sync::Arc;
use tokio::sync::RwLock;
c.bench_function("concurrent_access", |b| {
b.iter(|| {
let book = Arc::new(RwLock::new(OrderBook::new("test_token".to_string(), 100)));
let book_clone = book.clone();
// Simulate concurrent reads and writes
let rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
let mut tasks = Vec::new();
// Spawn writer tasks
for i in 1..=10 {
let book = book.clone();
tasks.push(tokio::spawn(async move {
let price = Decimal::from(50 + i) / Decimal::from(100);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size: dec!(100),
sequence: i,
};
let mut book = book.write().await;
book.apply_delta(delta).unwrap();
}));
}
// Spawn reader tasks
for _ in 0..20 {
let book = book_clone.clone();
tasks.push(tokio::spawn(async move {
let book = book.read().await;
let _bid = book.best_bid();
let _ask = book.best_ask();
}));
}
// Wait for all tasks
for task in tasks {
let _ = task.await;
}
});
});
});
}
criterion_group!(
benches,
bench_book_creation,
bench_delta_application,
bench_best_price_lookup,
bench_book_snapshot,
bench_market_impact_calculation,
bench_high_frequency_updates,
bench_concurrent_access,
);
criterion_main!(benches);
+194
View File
@@ -0,0 +1,194 @@
//! Benchmark for fill processing
//!
//! This benchmark measures the performance of trade execution and
//! fill processing operations.
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use polyfill_rs::{
book::OrderBook,
fill::{FillEngine, FillProcessor},
types::{FillEvent, MarketOrderRequest, OrderDelta, Side},
};
use rust_decimal::{Decimal, Decimal as RustDecimal};
use rust_decimal_macros::dec;
use std::time::Instant;
fn bench_fill_engine_creation(c: &mut Criterion) {
c.bench_function("fill_engine_creation", |b| {
b.iter(|| {
let _engine = FillEngine::new(
black_box(dec!(1)),
black_box(dec!(5)),
black_box(10),
);
});
});
}
fn bench_market_order_execution(c: &mut Criterion) {
let mut engine = FillEngine::new(dec!(1), dec!(5), 10);
let mut book = OrderBook::new("test_token".to_string(), 100);
// Pre-populate book with levels
for i in 1..=20 {
let price = Decimal::from(50 + i) / Decimal::from(100);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size: dec!(100),
sequence: i,
};
book.apply_delta(delta).unwrap();
}
c.bench_function("market_order_execution", |b| {
b.iter(|| {
let request = MarketOrderRequest {
token_id: "test_token".to_string(),
side: black_box(Side::BUY),
amount: black_box(dec!(50)),
slippage_tolerance: Some(dec!(1.0)),
client_id: Some("bench_order".to_string()),
};
let _result = engine.execute_market_order(&request, &book);
});
});
}
fn bench_fill_processor(c: &mut Criterion) {
let mut processor = FillProcessor::new(1000);
c.bench_function("fill_processor", |b| {
b.iter(|| {
let fill = FillEvent {
id: "fill_1".to_string(),
order_id: "order_1".to_string(),
token_id: "test_token".to_string(),
side: black_box(Side::BUY),
price: black_box(dec!(0.5)),
size: black_box(dec!(100)),
timestamp: chrono::Utc::now(),
maker_address: alloy_primitives::Address::ZERO,
taker_address: alloy_primitives::Address::ZERO,
fee: black_box(dec!(0.1)),
};
processor.process_fill(fill).unwrap();
});
});
}
fn bench_market_impact_calculation(c: &mut Criterion) {
let mut book = OrderBook::new("test_token".to_string(), 100);
// Pre-populate with realistic order book
for i in 1..=30 {
let price = Decimal::from(50 + i) / Decimal::from(100);
let size = Decimal::from(100 + i * 10);
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size,
sequence: i,
};
book.apply_delta(delta).unwrap();
}
c.bench_function("market_impact_calculation", |b| {
b.iter(|| {
let _impact = book.calculate_market_impact(Side::BUY, dec!(50));
let _impact = book.calculate_market_impact(Side::SELL, dec!(50));
});
});
}
fn bench_high_frequency_fills(c: &mut Criterion) {
c.bench_function("high_frequency_fills", |b| {
b.iter(|| {
let mut engine = FillEngine::new(dec!(1), dec!(2), 5);
let mut book = OrderBook::new("test_token".to_string(), 100);
let start_time = Instant::now();
// Simulate high-frequency fill processing
for i in 1..=100 {
// Add some market depth
let price = Decimal::from(500 + (i % 10)) / Decimal::from(1000);
let size = Decimal::from(10 + (i % 90));
let delta = OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
price,
size,
sequence: i,
};
book.apply_delta(delta).unwrap();
// Execute market orders
if i % 5 == 0 {
let request = MarketOrderRequest {
token_id: "test_token".to_string(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
amount: dec!(10),
slippage_tolerance: Some(dec!(1.0)),
client_id: Some(format!("order_{}", i)),
};
let _result = engine.execute_market_order(&request, &book);
}
}
let duration = start_time.elapsed();
black_box(duration);
});
});
}
fn bench_fill_statistics(c: &mut Criterion) {
let mut engine = FillEngine::new(dec!(1), dec!(5), 10);
// Add some fills
for i in 1..=100 {
let request = MarketOrderRequest {
token_id: "test_token".to_string(),
side: if i % 2 == 0 { Side::BUY } else { Side::SELL },
amount: dec!(10),
slippage_tolerance: Some(dec!(1.0)),
client_id: Some(format!("order_{}", i)),
};
let mut book = OrderBook::new("test_token".to_string(), 100);
book.apply_delta(OrderDelta {
token_id: "test_token".to_string(),
timestamp: chrono::Utc::now(),
side: request.side.opposite(),
price: dec!(0.5),
size: dec!(100),
sequence: i,
}).unwrap();
let _result = engine.execute_market_order(&request, &book);
}
c.bench_function("fill_statistics", |b| {
b.iter(|| {
let _stats = engine.get_stats();
});
});
}
criterion_group!(
benches,
bench_fill_engine_creation,
bench_market_order_execution,
bench_fill_processor,
bench_market_impact_calculation,
bench_high_frequency_fills,
bench_fill_statistics,
);
criterion_main!(benches);