WIP: Start on sending view updates to followers

This commit is contained in:
Antonio Scandurra 2022-03-18 14:20:09 +01:00
parent f0b7bd6e17
commit 10e6d82c3e
5 changed files with 146 additions and 45 deletions

View File

@ -72,13 +72,34 @@ impl FollowedItem for Editor {
newest_selection: Some(language::proto::serialize_selection(&selection)), newest_selection: Some(language::proto::serialize_selection(&selection)),
}) })
} }
fn to_update_message(
&self,
event: &Self::Event,
cx: &AppContext,
) -> Option<proto::view_update::Variant> {
match event {
Event::SelectionsChanged => {
let selection = self.newest_anchor_selection();
let selection = Selection {
id: selection.id,
start: selection.start.text_anchor.clone(),
end: selection.end.text_anchor.clone(),
reversed: selection.reversed,
goal: Default::default(),
};
Some(proto::view_update::Variant::Editor(
proto::view_update::Editor {
newest_selection: Some(language::proto::serialize_selection(&selection)),
},
))
}
_ => None,
}
}
} }
impl Item for Editor { impl Item for Editor {
fn as_followed(&self) -> Option<&dyn FollowedItem> {
Some(self)
}
fn navigate(&mut self, data: Box<dyn std::any::Any>, cx: &mut ViewContext<Self>) { fn navigate(&mut self, data: Box<dyn std::any::Any>, cx: &mut ViewContext<Self>) {
if let Some(data) = data.downcast_ref::<NavigationData>() { if let Some(data) = data.downcast_ref::<NavigationData>() {
let buffer = self.buffer.read(cx).read(cx); let buffer = self.buffer.read(cx).read(cx);

View File

@ -2121,6 +2121,10 @@ impl AppContext {
&self.platform &self.platform
} }
pub fn has_global<T: 'static>(&self) -> bool {
self.globals.contains_key(&TypeId::of::<T>())
}
pub fn global<T: 'static>(&self) -> &T { pub fn global<T: 'static>(&self) -> &T {
self.globals self.globals
.get(&TypeId::of::<T>()) .get(&TypeId::of::<T>())
@ -3654,6 +3658,10 @@ impl AnyViewHandle {
view_type: self.view_type, view_type: self.view_type,
} }
} }
pub fn view_type(&self) -> TypeId {
self.view_type
}
} }
impl Clone for AnyViewHandle { impl Clone for AnyViewHandle {

View File

@ -4248,6 +4248,17 @@ mod tests {
.project_path(cx)), .project_path(cx)),
Some((worktree_id, "2.txt").into()) Some((worktree_id, "2.txt").into())
); );
// When client A activates a different editor, client B does so as well.
workspace_a.update(cx_a, |workspace, cx| {
workspace.activate_item(editor_a1.as_ref(), cx)
});
workspace_b
.condition(cx_b, |workspace, cx| {
let active_item = workspace.active_item(cx).unwrap();
active_item.project_path(cx) == Some((worktree_id, "1.txt").into())
})
.await;
} }
#[gpui::test(iterations = 100)] #[gpui::test(iterations = 100)]

View File

@ -288,7 +288,7 @@ impl Pane {
} }
} }
pub fn open_item( pub(crate) fn open_item(
&mut self, &mut self,
project_entry_id: ProjectEntryId, project_entry_id: ProjectEntryId,
cx: &mut ViewContext<Self>, cx: &mut ViewContext<Self>,

View File

@ -11,7 +11,7 @@ use client::{
proto, Authenticate, ChannelList, Client, PeerId, Subscription, TypedEnvelope, User, UserStore, proto, Authenticate, ChannelList, Client, PeerId, Subscription, TypedEnvelope, User, UserStore,
}; };
use clock::ReplicaId; use clock::ReplicaId;
use collections::HashMap; use collections::{HashMap, HashSet};
use gpui::{ use gpui::{
action, action,
color::Color, color::Color,
@ -49,13 +49,18 @@ type ProjectItemBuilders = HashMap<
fn(usize, ModelHandle<Project>, AnyModelHandle, &mut MutableAppContext) -> Box<dyn ItemHandle>, fn(usize, ModelHandle<Project>, AnyModelHandle, &mut MutableAppContext) -> Box<dyn ItemHandle>,
>; >;
type FollowedItemBuilders = Vec< type FollowedItemBuilder = fn(
fn( ViewHandle<Pane>,
ViewHandle<Pane>, ModelHandle<Project>,
ModelHandle<Project>, &mut Option<proto::view::Variant>,
&mut Option<proto::view::Variant>, &mut MutableAppContext,
&mut MutableAppContext, ) -> Option<Task<Result<Box<dyn ItemHandle>>>>;
) -> Option<Task<Result<Box<dyn ItemHandle>>>>, type FollowedItemBuilders = HashMap<
TypeId,
(
FollowedItemBuilder,
fn(AnyViewHandle) -> Box<dyn FollowedItemHandle>,
),
>; >;
action!(Open, Arc<AppState>); action!(Open, Arc<AppState>);
@ -124,9 +129,14 @@ pub fn register_project_item<I: ProjectItem>(cx: &mut MutableAppContext) {
}); });
} }
pub fn register_followed_item<I: FollowedItem + Item>(cx: &mut MutableAppContext) { pub fn register_followed_item<I: FollowedItem>(cx: &mut MutableAppContext) {
cx.update_default_global(|builders: &mut FollowedItemBuilders, _| { cx.update_default_global(|builders: &mut FollowedItemBuilders, _| {
builders.push(I::for_state_message) builders.insert(
TypeId::of::<I>(),
(I::for_state_message, |this| {
Box::new(this.downcast::<I>().unwrap())
}),
);
}); });
} }
@ -158,9 +168,6 @@ pub struct JoinProjectParams {
} }
pub trait Item: View { pub trait Item: View {
fn as_followed(&self) -> Option<&dyn FollowedItem> {
None
}
fn deactivated(&mut self, _: &mut ViewContext<Self>) {} fn deactivated(&mut self, _: &mut ViewContext<Self>) {}
fn navigate(&mut self, _: Box<dyn Any>, _: &mut ViewContext<Self>) {} fn navigate(&mut self, _: Box<dyn Any>, _: &mut ViewContext<Self>) {}
fn tab_content(&self, style: &theme::Tab, cx: &AppContext) -> ElementBox; fn tab_content(&self, style: &theme::Tab, cx: &AppContext) -> ElementBox;
@ -225,7 +232,7 @@ pub trait ProjectItem: Item {
) -> Self; ) -> Self;
} }
pub trait FollowedItem { pub trait FollowedItem: Item {
fn for_state_message( fn for_state_message(
pane: ViewHandle<Pane>, pane: ViewHandle<Pane>,
project: ModelHandle<Project>, project: ModelHandle<Project>,
@ -234,8 +241,40 @@ pub trait FollowedItem {
) -> Option<Task<Result<Box<dyn ItemHandle>>>> ) -> Option<Task<Result<Box<dyn ItemHandle>>>>
where where
Self: Sized; Self: Sized;
fn to_state_message(&self, cx: &AppContext) -> proto::view::Variant; fn to_state_message(&self, cx: &AppContext) -> proto::view::Variant;
fn to_update_message(
&self,
event: &Self::Event,
cx: &AppContext,
) -> Option<proto::view_update::Variant>;
}
pub trait FollowedItemHandle {
fn id(&self) -> usize;
fn to_state_message(&self, cx: &AppContext) -> proto::view::Variant;
fn to_update_message(
&self,
event: &dyn Any,
cx: &AppContext,
) -> Option<proto::view_update::Variant>;
}
impl<T: FollowedItem> FollowedItemHandle for ViewHandle<T> {
fn id(&self) -> usize {
self.id()
}
fn to_state_message(&self, cx: &AppContext) -> proto::view::Variant {
self.read(cx).to_state_message(cx)
}
fn to_update_message(
&self,
event: &dyn Any,
cx: &AppContext,
) -> Option<proto::view_update::Variant> {
self.read(cx).to_update_message(event.downcast_ref()?, cx)
}
} }
pub trait ItemHandle: 'static { pub trait ItemHandle: 'static {
@ -262,8 +301,7 @@ pub trait ItemHandle: 'static {
cx: &mut MutableAppContext, cx: &mut MutableAppContext,
) -> Task<Result<()>>; ) -> Task<Result<()>>;
fn act_as_type(&self, type_id: TypeId, cx: &AppContext) -> Option<AnyViewHandle>; fn act_as_type(&self, type_id: TypeId, cx: &AppContext) -> Option<AnyViewHandle>;
fn can_be_followed(&self, cx: &AppContext) -> bool; fn to_followed_item_handle(&self, cx: &AppContext) -> Option<Box<dyn FollowedItemHandle>>;
fn to_state_message(&self, cx: &AppContext) -> Option<proto::view::Variant>;
} }
pub trait WeakItemHandle { pub trait WeakItemHandle {
@ -318,15 +356,22 @@ impl<T: Item> ItemHandle for ViewHandle<T> {
pane.close_item(item.id(), cx); pane.close_item(item.id(), cx);
return; return;
} }
if T::should_activate_item_on_event(event) { if T::should_activate_item_on_event(event) {
if let Some(ix) = pane.index_for_item(&item) { if let Some(ix) = pane.index_for_item(&item) {
pane.activate_item(ix, cx); pane.activate_item(ix, cx);
pane.activate(cx); pane.activate(cx);
} }
} }
if T::should_update_tab_on_event(event) { if T::should_update_tab_on_event(event) {
cx.notify() cx.notify()
} }
if let Some(message) = item
.to_followed_item_handle(cx)
.and_then(|i| i.to_update_message(event, cx))
{}
}) })
.detach(); .detach();
} }
@ -380,14 +425,14 @@ impl<T: Item> ItemHandle for ViewHandle<T> {
self.read(cx).act_as_type(type_id, self, cx) self.read(cx).act_as_type(type_id, self, cx)
} }
fn can_be_followed(&self, cx: &AppContext) -> bool { fn to_followed_item_handle(&self, cx: &AppContext) -> Option<Box<dyn FollowedItemHandle>> {
self.read(cx).as_followed().is_some() if cx.has_global::<FollowedItemBuilders>() {
} let builders = cx.global::<FollowedItemBuilders>();
let item = self.to_any();
fn to_state_message(&self, cx: &AppContext) -> Option<proto::view::Variant> { Some(builders.get(&item.view_type())?.1(item))
self.read(cx) } else {
.as_followed() None
.map(|item| item.to_state_message(cx)) }
} }
} }
@ -487,9 +532,16 @@ pub struct Workspace {
active_pane: ViewHandle<Pane>, active_pane: ViewHandle<Pane>,
status_bar: ViewHandle<StatusBar>, status_bar: ViewHandle<StatusBar>,
project: ModelHandle<Project>, project: ModelHandle<Project>,
leader_state: LeaderState,
_observe_current_user: Task<()>, _observe_current_user: Task<()>,
} }
#[derive(Default)]
struct LeaderState {
followers: HashSet<PeerId>,
subscriptions: Vec<Subscription>,
}
impl Workspace { impl Workspace {
pub fn new(params: &WorkspaceParams, cx: &mut ViewContext<Self>) -> Self { pub fn new(params: &WorkspaceParams, cx: &mut ViewContext<Self>) -> Self {
cx.observe(&params.project, |_, project, cx| { cx.observe(&params.project, |_, project, cx| {
@ -561,6 +613,7 @@ impl Workspace {
left_sidebar: Sidebar::new(Side::Left), left_sidebar: Sidebar::new(Side::Left),
right_sidebar: Sidebar::new(Side::Right), right_sidebar: Sidebar::new(Side::Right),
project: params.project.clone(), project: params.project.clone(),
leader_state: Default::default(),
_observe_current_user, _observe_current_user,
}; };
this.project_remote_id_changed(this.project.read(cx).remote_id(), cx); this.project_remote_id_changed(this.project.read(cx).remote_id(), cx);
@ -1068,6 +1121,13 @@ impl Workspace {
let (project, pane) = this.read_with(&cx, |this, _| { let (project, pane) = this.read_with(&cx, |this, _| {
(this.project.clone(), this.active_pane().clone()) (this.project.clone(), this.active_pane().clone())
}); });
let item_builders = cx.update(|cx| {
cx.default_global::<FollowedItemBuilders>()
.values()
.map(|b| b.0)
.collect::<Vec<_>>()
.clone()
});
for view in &mut response.views { for view in &mut response.views {
let variant = view let variant = view
.variant .variant
@ -1075,7 +1135,7 @@ impl Workspace {
.ok_or_else(|| anyhow!("missing variant"))?; .ok_or_else(|| anyhow!("missing variant"))?;
cx.update(|cx| { cx.update(|cx| {
let mut variant = Some(variant); let mut variant = Some(variant);
for build_item in cx.default_global::<FollowedItemBuilders>().clone() { for build_item in &item_builders {
if let Some(task) = if let Some(task) =
build_item(pane.clone(), project.clone(), &mut variant, cx) build_item(pane.clone(), project.clone(), &mut variant, cx)
{ {
@ -1323,28 +1383,29 @@ impl Workspace {
async fn handle_follow( async fn handle_follow(
this: ViewHandle<Self>, this: ViewHandle<Self>,
_: TypedEnvelope<proto::Follow>, envelope: TypedEnvelope<proto::Follow>,
_: Arc<Client>, _: Arc<Client>,
cx: AsyncAppContext, mut cx: AsyncAppContext,
) -> Result<proto::FollowResponse> { ) -> Result<proto::FollowResponse> {
this.read_with(&cx, |this, cx| { this.update(&mut cx, |this, cx| {
let current_view_id = if let Some(active_item) = this.active_item(cx) { this.leader_state
if active_item.can_be_followed(cx) { .followers
Some(active_item.id() as u64) .insert(envelope.original_sender_id()?);
} else {
None let current_view_id = this
} .active_item(cx)
} else { .and_then(|i| i.to_followed_item_handle(cx))
None .map(|i| i.id() as u64);
};
Ok(proto::FollowResponse { Ok(proto::FollowResponse {
current_view_id, current_view_id,
views: this views: this
.items(cx) .items(cx)
.filter_map(|item| { .filter_map(|item| {
let variant = item.to_state_message(cx)?; let id = item.id() as u64;
let item = item.to_followed_item_handle(cx)?;
let variant = item.to_state_message(cx);
Some(proto::View { Some(proto::View {
id: item.id() as u64, id,
variant: Some(variant), variant: Some(variant),
}) })
}) })