use log::info;
use rusteron_media_driver::*;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Flag to indicate when the application should stop (set on Ctrl+C)
let running = Arc::new(AtomicBool::new(true));
let running_clone = Arc::clone(&running);
// Register signal handler for SIGINT (Ctrl+C)
ctrlc::set_handler(move || {
running_clone.store(false, Ordering::SeqCst);
})?;
// Create Aeron context
let aeron_context = AeronDriverContext::new()?;
// Create Aeron driver
let aeron_driver = AeronDriver::new(&aeron_context)?;
aeron_driver.start(true)?;
// Start the Aeron driver
info!("Aeron media driver started successfully. Press Ctrl+C to stop.");
aeron_driver.conductor().context().print_configuration();
aeron_driver.main_do_work()?;
info!("aeron dir: {:?}", aeron_context.get_dir());
// Poll for work until Ctrl+C is pressed
while running.load(Ordering::Acquire) {
aeron_driver.main_idle_strategy(aeron_driver.main_do_work()?);
}
info!("Received signal to stop the media driver.");
info!("Aeron media driver stopped successfully.");
Ok(())
}