Move "async move" a few characters to the left in cx.spawn() (#26758)

This is the core change:
https://github.com/zed-industries/zed/pull/26758/files#diff-044302c0d57147af17e68a0009fee3e8dcdfb4f32c27a915e70cfa80e987f765R1052

TODO:
- [x] Use AsyncFn instead of Fn() -> Future in GPUI spawn methods
- [x] Implement it in the whole app
- [x] Implement it in the debugger 
- [x] Glance at the RPC crate, and see if those box future methods can
be switched over. Answer: It can't directly, as you can't make an
AsyncFn* into a trait object. There's ways around that, but they're all
more complex than just keeping the code as is.
- [ ] Fix platform specific code

Release Notes:

- N/A
This commit is contained in:
Mikayla Maki 2025-03-18 19:09:02 -07:00 committed by GitHub
parent 7f2e3fb5bd
commit 1aefa5178b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
256 changed files with 3110 additions and 3200 deletions

View file

@ -615,7 +615,7 @@ impl SshRemoteClient {
cx: &mut App,
) -> Task<Result<Option<Entity<Self>>>> {
let unique_identifier = unique_identifier.to_string(cx);
cx.spawn(|mut cx| async move {
cx.spawn(async move |cx| {
let success = Box::pin(async move {
let (outgoing_tx, outgoing_rx) = mpsc::unbounded::<Envelope>();
let (incoming_tx, incoming_rx) = mpsc::unbounded::<Envelope>();
@ -646,7 +646,7 @@ impl SshRemoteClient {
outgoing_rx,
connection_activity_tx,
delegate.clone(),
&mut cx,
cx,
);
let multiplex_task = Self::monitor(this.downgrade(), io_task, &cx);
@ -656,10 +656,9 @@ impl SshRemoteClient {
return Err(error);
}
let heartbeat_task =
Self::heartbeat(this.downgrade(), connection_activity_rx, &mut cx);
let heartbeat_task = Self::heartbeat(this.downgrade(), connection_activity_rx, cx);
this.update(&mut cx, |this, _| {
this.update(cx, |this, _| {
*this.state.lock() = Some(State::Connected {
ssh_connection,
delegate,
@ -784,7 +783,7 @@ impl SshRemoteClient {
let unique_identifier = self.unique_identifier.clone();
let client = self.client.clone();
let reconnect_task = cx.spawn(|this, mut cx| async move {
let reconnect_task = cx.spawn(async move |this, cx| {
macro_rules! failed {
($error:expr, $attempts:expr, $ssh_connection:expr, $delegate:expr) => {
return State::ReconnectFailed {
@ -825,7 +824,7 @@ impl SshRemoteClient {
outgoing_rx,
connection_activity_tx,
delegate.clone(),
&mut cx,
cx,
);
anyhow::Ok((ssh_connection, io_task))
}
@ -848,13 +847,13 @@ impl SshRemoteClient {
ssh_connection,
delegate,
multiplex_task,
heartbeat_task: Self::heartbeat(this.clone(), connection_activity_rx, &mut cx),
heartbeat_task: Self::heartbeat(this.clone(), connection_activity_rx, cx),
}
});
cx.spawn(|this, mut cx| async move {
cx.spawn(async move |this, cx| {
let new_state = reconnect_task.await;
this.update(&mut cx, |this, cx| {
this.update(cx, |this, cx| {
this.try_set_state(cx, |old_state| {
if old_state.is_reconnecting() {
match &new_state {
@ -908,9 +907,7 @@ impl SshRemoteClient {
return Task::ready(Err(anyhow!("SshRemoteClient lost")));
};
cx.spawn(|mut cx| {
let this = this.clone();
async move {
cx.spawn(async move |cx| {
let mut missed_heartbeats = 0;
let keepalive_timer = cx.background_executor().timer(HEARTBEAT_INTERVAL).fuse();
@ -926,7 +923,7 @@ impl SshRemoteClient {
if missed_heartbeats != 0 {
missed_heartbeats = 0;
this.update(&mut cx, |this, mut cx| {
this.update(cx, |this, mut cx| {
this.handle_heartbeat_result(missed_heartbeats, &mut cx)
})?;
}
@ -957,7 +954,7 @@ impl SshRemoteClient {
continue;
}
let result = this.update(&mut cx, |this, mut cx| {
let result = this.update(cx, |this, mut cx| {
this.handle_heartbeat_result(missed_heartbeats, &mut cx)
})?;
if result.is_break() {
@ -968,7 +965,7 @@ impl SshRemoteClient {
keepalive_timer.set(cx.background_executor().timer(HEARTBEAT_INTERVAL).fuse());
}
}
})
}
@ -1006,7 +1003,7 @@ impl SshRemoteClient {
io_task: Task<Result<i32>>,
cx: &AsyncApp,
) -> Task<Result<()>> {
cx.spawn(|mut cx| async move {
cx.spawn(async move |cx| {
let result = io_task.await;
match result {
@ -1015,21 +1012,21 @@ impl SshRemoteClient {
match error {
ProxyLaunchError::ServerNotRunning => {
log::error!("failed to reconnect because server is not running");
this.update(&mut cx, |this, cx| {
this.update(cx, |this, cx| {
this.set_state(State::ServerNotRunning, cx);
})?;
}
}
} else if exit_code > 0 {
log::error!("proxy process terminated unexpectedly");
this.update(&mut cx, |this, cx| {
this.update(cx, |this, cx| {
this.reconnect(cx).ok();
})?;
}
}
Err(error) => {
log::warn!("ssh io task died with error: {:?}. reconnecting...", error);
this.update(&mut cx, |this, cx| {
this.update(cx, |this, cx| {
this.reconnect(cx).ok();
})?;
}
@ -1118,7 +1115,7 @@ impl SshRemoteClient {
#[cfg(any(test, feature = "test-support"))]
pub fn simulate_disconnect(&self, client_cx: &mut App) -> Task<()> {
let opts = self.connection_options();
client_cx.spawn(|cx| async move {
client_cx.spawn(async move |cx| {
let connection = cx
.update_global(|c: &mut ConnectionPool, _| {
if let Some(ConnectionPoolEntry::Connecting(c)) = c.connections.get(&opts) {
@ -1220,8 +1217,8 @@ impl ConnectionPool {
match connection {
Some(ConnectionPoolEntry::Connecting(task)) => {
let delegate = delegate.clone();
cx.spawn(|mut cx| async move {
delegate.set_status(Some("Waiting for existing connection attempt"), &mut cx);
cx.spawn(async move |cx| {
delegate.set_status(Some("Waiting for existing connection attempt"), cx);
})
.detach();
return task.clone();
@ -1241,8 +1238,8 @@ impl ConnectionPool {
.spawn({
let opts = opts.clone();
let delegate = delegate.clone();
|mut cx| async move {
let connection = SshRemoteConnection::new(opts.clone(), delegate, &mut cx)
async move |cx| {
let connection = SshRemoteConnection::new(opts.clone(), delegate, cx)
.await
.map(|connection| Arc::new(connection) as Arc<dyn RemoteConnection>);
@ -1676,7 +1673,7 @@ impl SshRemoteConnection {
}
});
cx.spawn(|_| async move {
cx.spawn(async move |_| {
let result = futures::select! {
result = stdin_task.fuse() => {
result.context("stdin")
@ -2102,7 +2099,7 @@ impl ChannelClient {
mut incoming_rx: mpsc::UnboundedReceiver<Envelope>,
cx: &AsyncApp,
) -> Task<Result<()>> {
cx.spawn(|cx| async move {
cx.spawn(async move |cx| {
let peer_id = PeerId { owner_id: 0, id: 0 };
while let Some(incoming) = incoming_rx.next().await {
let Some(this) = this.upgrade() else {