Print sync_response instead of crashing

This commit is contained in:
2023-10-31 18:47:19 +01:00
parent f9ea62b654
commit a024e9ef45
2 changed files with 33 additions and 21 deletions

View File

@ -30,6 +30,7 @@ hostname = "0.3.1"
json5 = "0.4.1" json5 = "0.4.1"
serde = { version = "1.0.188", features = ["derive"] } serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107" serde_json = "1.0.107"
# TODO: switch to toml_edit to preserve (and write) doc comments
# Error handling # Error handling
better-panic = "0.3.0" better-panic = "0.3.0"

View File

@ -122,9 +122,11 @@ impl App {
let sync_clients = self.clients.clone(); let sync_clients = self.clients.clone();
let mut sync_results = FuturesUnordered::new(); let mut sync_results = FuturesUnordered::new();
for client in sync_clients.iter() { for client in sync_clients.iter() {
client.add_event_handler(|ev: matrix_sdk::ruma::events::room::message::SyncRoomMessageEvent| async move { client.add_event_handler(
println!("Received a message {:?}", ev); |ev: matrix_sdk::ruma::events::room::message::SyncRoomMessageEvent| async move {
}); println!("Received a message {:?}", ev);
},
);
let server_name = client.user_id().expect("missing user id").server_name(); let server_name = client.user_id().expect("missing user id").server_name();
let mut sync_settings = matrix_sdk::config::SyncSettings::default(); let mut sync_settings = matrix_sdk::config::SyncSettings::default();
if server_name == "matrix.org" { if server_name == "matrix.org" {
@ -132,38 +134,37 @@ impl App {
// let's quadruple the default // let's quadruple the default
sync_settings = sync_settings.timeout(std::time::Duration::from_secs(120)); sync_settings = sync_settings.timeout(std::time::Duration::from_secs(120));
} }
sync_results.push(client.sync_with_result_callback( sync_results.push(client.sync_with_result_callback(sync_settings, |res| {
sync_settings, let client2 = client.clone();
|res| { async {
let client2 = client.clone(); let sync_response = res.expect("Failed sync");
async { sync_responses_tx
let sync_response = res.expect("Failed sync"); .send((client2, sync_response))
println!("sync response {:?}", sync_response); .expect("could not send sync response");
sync_responses_tx.send((client2, sync_response)).expect("could not send sync response"); if self.should_quit.load(Ordering::Acquire) {
if self.should_quit.load(Ordering::Acquire) { Ok(matrix_sdk::LoopCtrl::Break)
Ok(matrix_sdk::LoopCtrl::Break) } else {
} else { Ok(matrix_sdk::LoopCtrl::Continue)
Ok(matrix_sdk::LoopCtrl::Continue)
}
} }
}, }
)); }));
} }
loop { loop {
tokio::select! { tokio::select! {
e = tui.next() => { e = tui.next() => {
if let Some(e) = e { if let Some(e) = e {
self.handle_tui_event(&action_tx, e.clone())?; self.handle_tui_event(&action_tx, e.clone()).context("Error while handling TUI event")?;
for component in self.components.iter_mut() { for component in self.components.iter_mut() {
if let Some(action) = component.handle_events(Some(e.clone()))? { if let Some(action) = component.handle_events(Some(e.clone()))? {
action_tx.send(action)?; action_tx.send(action).context("Error while sending action from component")?;
} }
} }
} }
} }
sync_response = sync_responses_rx.recv() => { sync_response = sync_responses_rx.recv() => {
todo!("handle {:?}", sync_response); let (client, sync_response) = sync_response.expect("sync_responses_rx unexpectedly closed");
self.handle_sync_response(&action_tx, client, sync_response).await.context("Error while handling sync response")?;
} }
sync_result = sync_results.next() => { sync_result = sync_results.next() => {
if !self.should_quit.load(Ordering::Acquire) { if !self.should_quit.load(Ordering::Acquire) {
@ -268,4 +269,14 @@ impl App {
Ok(()) Ok(())
} }
async fn handle_sync_response(
&self,
action_tx: &mpsc::UnboundedSender<Action>,
client: matrix_sdk::Client,
sync_response: matrix_sdk::deserialized_responses::SyncResponse,
) -> Result<()> {
println!("{:?}", sync_response);
Ok(())
}
} }