blob: d030dc786614fd71bb658841a9f6d6bcd1ea5aa3 [file] [log] [blame]
use aos_configuration as config;
use aos_events_event_loop_runtime::{EventLoopRuntime, Sender, Watcher};
use aos_events_shm_event_loop::ShmEventLoop;
use aos_init::WithCppFlags;
use clap::Parser;
use futures::never::Never;
use std::{borrow::Borrow, path::Path};
use ping_rust_fbs::aos::examples as ping;
use pong_rust_fbs::aos::examples as pong;
/// Pong portion of a ping/pong system.
#[derive(Parser, Debug)]
#[command(name = "pong")]
struct App {}
fn main() {
let _app = App::parse_with_cpp_flags();
aos_init::init();
let config = config::read_config_from(Path::new("pingpong_config.json")).unwrap();
ShmEventLoop::new(&config).run_with(|runtime| {
let task = pong(runtime);
runtime.set_realtime_priority(5);
runtime.spawn(task);
});
}
/// Responds to ping messages with an equivalent pong.
async fn pong(event_loop: &EventLoopRuntime<'_>) -> Never {
// The watcher gives us incoming ping messages.
let mut ping_watcher: Watcher<ping::Ping> = event_loop.make_watcher("/test").unwrap();
// The sender is used to send messages back to the pong channel.
let mut pong_sender: Sender<pong::Pong> = event_loop.make_sender("/test").unwrap();
let on_run = event_loop.on_run();
on_run.borrow().await;
loop {
let ping = dbg!(ping_watcher.next().await);
let mut builder = pong_sender.make_builder();
let mut pong = pong::PongBuilder::new(builder.fbb());
pong.add_value(ping.message().unwrap().value());
pong.add_initial_send_time(event_loop.monotonic_now().into());
let pong = pong.finish();
builder.send(pong).expect("Can't send pong reponse");
}
}