From 46635956f43ec42af674e61c67a1ead2c5da1074 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Tue, 18 Oct 2022 12:18:49 +0200 Subject: [PATCH] Emit `Frame` event when new frames are generated for a remote track --- crates/call/src/participant.rs | 2 +- crates/call/src/room.rs | 11 +++++--- .../src/project_shared_notification.rs | 1 + crates/workspace/src/workspace.rs | 25 +++++++++++++------ 4 files changed, 27 insertions(+), 12 deletions(-) diff --git a/crates/call/src/participant.rs b/crates/call/src/participant.rs index 09174df793..f335689050 100644 --- a/crates/call/src/participant.rs +++ b/crates/call/src/participant.rs @@ -41,7 +41,7 @@ pub struct RemoteParticipant { pub user: Arc, pub projects: Vec, pub location: ParticipantLocation, - pub tracks: HashMap, + pub tracks: HashMap, } #[derive(Clone)] diff --git a/crates/call/src/room.rs b/crates/call/src/room.rs index 6787a072f3..909fe4d977 100644 --- a/crates/call/src/room.rs +++ b/crates/call/src/room.rs @@ -15,6 +15,10 @@ use util::ResultExt; #[derive(Clone, Debug, PartialEq, Eq)] pub enum Event { + Frame { + participant_id: PeerId, + track_id: live_kit_client::Sid, + }, RemoteProjectShared { owner: Arc, project_id: u64, @@ -390,7 +394,6 @@ impl Room { ) -> Result<()> { match change { RemoteVideoTrackUpdate::Subscribed(track) => { - dbg!(track.publisher_id(), track.sid()); let peer_id = PeerId(track.publisher_id().parse()?); let track_id = track.sid().to_string(); let participant = self @@ -413,14 +416,16 @@ impl Room { }; let done = this.update(&mut cx, |this, cx| { - // TODO: replace this with an emit. - cx.notify(); if let Some(track) = this.remote_participants.get_mut(&peer_id).and_then( |participant| participant.tracks.get_mut(&track_id), ) { track.frame = frame; + cx.emit(Event::Frame { + participant_id: peer_id, + track_id: track_id.clone(), + }); false } else { true diff --git a/crates/collab_ui/src/project_shared_notification.rs b/crates/collab_ui/src/project_shared_notification.rs index a17e11b079..e5ded819af 100644 --- a/crates/collab_ui/src/project_shared_notification.rs +++ b/crates/collab_ui/src/project_shared_notification.rs @@ -62,6 +62,7 @@ pub fn init(cx: &mut MutableAppContext) { cx.remove_window(window_id); } } + _ => {} }) .detach(); } diff --git a/crates/workspace/src/workspace.rs b/crates/workspace/src/workspace.rs index ece8cedfb1..5ec76f5130 100644 --- a/crates/workspace/src/workspace.rs +++ b/crates/workspace/src/workspace.rs @@ -980,9 +980,8 @@ pub struct Workspace { follower_states_by_leader: FollowerStatesByLeader, last_leaders_by_pane: HashMap, PeerId>, window_edited: bool, - active_call: Option>, + active_call: Option<(ModelHandle, Vec)>, _observe_current_user: Task<()>, - _active_call_observation: Option, } #[derive(Default)] @@ -1092,11 +1091,18 @@ impl Workspace { }); let mut active_call = None; - let mut active_call_observation = None; if cx.has_global::>() { let call = cx.global::>().clone(); - active_call_observation = Some(cx.observe(&call, |_, _, cx| cx.notify())); - active_call = Some(call); + let mut subscriptions = Vec::new(); + subscriptions.push(cx.observe(&call, |_, _, cx| cx.notify())); + subscriptions.push(cx.subscribe(&call, |this, _, event, cx| { + if let call::room::Event::Frame { participant_id, .. } = event { + if this.follower_states_by_leader.contains_key(&participant_id) { + cx.notify(); + } + } + })); + active_call = Some((call, subscriptions)); } let mut this = Workspace { @@ -1127,7 +1133,6 @@ impl Workspace { window_edited: false, active_call, _observe_current_user, - _active_call_observation: active_call_observation, }; this.project_remote_id_changed(this.project.read(cx).remote_id(), cx); cx.defer(|this, cx| this.update_window_title(cx)); @@ -1262,7 +1267,7 @@ impl Workspace { quitting: bool, cx: &mut ViewContext, ) -> Task> { - let active_call = self.active_call.clone(); + let active_call = self.active_call().cloned(); let window_id = cx.window_id(); let workspace_count = cx .window_ids() @@ -2549,6 +2554,10 @@ impl Workspace { } } } + + fn active_call(&self) -> Option<&ModelHandle> { + self.active_call.as_ref().map(|(call, _)| call) + } } impl Entity for Workspace { @@ -2590,7 +2599,7 @@ impl View for Workspace { &project, &theme, &self.follower_states_by_leader, - self.active_call.as_ref(), + self.active_call(), cx, )) .flex(1., true)