Avoid stalling server when test notifications aren't being processed

This commit is contained in:
Antonio Scandurra 2022-02-17 10:38:56 +01:00
parent 1fbcea6c0d
commit e824a6f220
2 changed files with 20 additions and 11 deletions

View file

@ -869,6 +869,10 @@ impl RemoteWorktree {
Ok(()) Ok(())
} }
pub fn has_pending_updates(&self) -> bool {
!self.pending_updates.is_empty()
}
pub fn update_diagnostic_summary( pub fn update_diagnostic_summary(
&mut self, &mut self,
path: Arc<Path>, path: Arc<Path>,

View file

@ -9,9 +9,8 @@ use anyhow::anyhow;
use async_std::task; use async_std::task;
use async_tungstenite::{tungstenite::protocol::Role, WebSocketStream}; use async_tungstenite::{tungstenite::protocol::Role, WebSocketStream};
use collections::{HashMap, HashSet}; use collections::{HashMap, HashSet};
use futures::{future::BoxFuture, FutureExt, StreamExt}; use futures::{channel::mpsc, future::BoxFuture, FutureExt, SinkExt, StreamExt};
use parking_lot::{RwLock, RwLockReadGuard, RwLockWriteGuard}; use parking_lot::{RwLock, RwLockReadGuard, RwLockWriteGuard};
use postage::{mpsc, prelude::Sink as _};
use rpc::{ use rpc::{
proto::{self, AnyTypedEnvelope, EnvelopedMessage, RequestMessage}, proto::{self, AnyTypedEnvelope, EnvelopedMessage, RequestMessage},
Connection, ConnectionId, Peer, TypedEnvelope, Connection, ConnectionId, Peer, TypedEnvelope,
@ -38,7 +37,7 @@ pub struct Server {
store: RwLock<Store>, store: RwLock<Store>,
app_state: Arc<AppState>, app_state: Arc<AppState>,
handlers: HashMap<TypeId, MessageHandler>, handlers: HashMap<TypeId, MessageHandler>,
notifications: Option<mpsc::Sender<()>>, notifications: Option<mpsc::UnboundedSender<()>>,
} }
pub trait Executor { pub trait Executor {
@ -54,7 +53,7 @@ impl Server {
pub fn new( pub fn new(
app_state: Arc<AppState>, app_state: Arc<AppState>,
peer: Arc<Peer>, peer: Arc<Peer>,
notifications: Option<mpsc::Sender<()>>, notifications: Option<mpsc::UnboundedSender<()>>,
) -> Arc<Self> { ) -> Arc<Self> {
let mut server = Self { let mut server = Self {
peer, peer,
@ -155,7 +154,7 @@ impl Server {
connection: Connection, connection: Connection,
addr: String, addr: String,
user_id: UserId, user_id: UserId,
mut send_connection_id: Option<postage::mpsc::Sender<ConnectionId>>, mut send_connection_id: Option<mpsc::Sender<ConnectionId>>,
executor: E, executor: E,
) -> impl Future<Output = ()> { ) -> impl Future<Output = ()> {
let mut this = self.clone(); let mut this = self.clone();
@ -1095,7 +1094,7 @@ mod tests {
use collections::BTreeMap; use collections::BTreeMap;
use gpui::{executor, ModelHandle, TestAppContext}; use gpui::{executor, ModelHandle, TestAppContext};
use parking_lot::Mutex; use parking_lot::Mutex;
use postage::{mpsc, watch}; use postage::{sink::Sink, watch};
use rand::prelude::*; use rand::prelude::*;
use rpc::PeerId; use rpc::PeerId;
use serde_json::json; use serde_json::json;
@ -3769,8 +3768,14 @@ mod tests {
project project
.worktrees(cx) .worktrees(cx)
.map(|worktree| { .map(|worktree| {
let snapshot = worktree.read(cx).snapshot(); let worktree = worktree.read(cx);
(snapshot.id(), snapshot) assert!(
!worktree.as_remote().unwrap().has_pending_updates(),
"Guest {} worktree {:?} contains deferred updates",
guest_id,
worktree.id()
);
(worktree.id(), worktree.snapshot())
}) })
.collect::<BTreeMap<_, _>>() .collect::<BTreeMap<_, _>>()
}); });
@ -3837,7 +3842,7 @@ mod tests {
app_state: Arc<AppState>, app_state: Arc<AppState>,
server: Arc<Server>, server: Arc<Server>,
foreground: Rc<executor::Foreground>, foreground: Rc<executor::Foreground>,
notifications: mpsc::Receiver<()>, notifications: mpsc::UnboundedReceiver<()>,
connection_killers: Arc<Mutex<HashMap<UserId, watch::Sender<Option<()>>>>>, connection_killers: Arc<Mutex<HashMap<UserId, watch::Sender<Option<()>>>>>,
forbid_connections: Arc<AtomicBool>, forbid_connections: Arc<AtomicBool>,
_test_db: TestDb, _test_db: TestDb,
@ -3849,7 +3854,7 @@ mod tests {
test_db.set_clean_pool_on_drop(clean_db_pool_on_drop); test_db.set_clean_pool_on_drop(clean_db_pool_on_drop);
let app_state = Self::build_app_state(&test_db).await; let app_state = Self::build_app_state(&test_db).await;
let peer = Peer::new(); let peer = Peer::new();
let notifications = mpsc::channel(128); let notifications = mpsc::unbounded();
let server = Server::new(app_state.clone(), peer.clone(), Some(notifications.0)); let server = Server::new(app_state.clone(), peer.clone(), Some(notifications.0));
Self { Self {
peer, peer,
@ -3871,7 +3876,7 @@ mod tests {
let server = self.server.clone(); let server = self.server.clone();
let connection_killers = self.connection_killers.clone(); let connection_killers = self.connection_killers.clone();
let forbid_connections = self.forbid_connections.clone(); let forbid_connections = self.forbid_connections.clone();
let (connection_id_tx, mut connection_id_rx) = postage::mpsc::channel(16); let (connection_id_tx, mut connection_id_rx) = mpsc::channel(16);
Arc::get_mut(&mut client) Arc::get_mut(&mut client)
.unwrap() .unwrap()