WIP: Make App the only entry point from main
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
parent
301163bab7
commit
4ecc17b1bb
7 changed files with 165 additions and 88 deletions
158
gpui/src/app.rs
158
gpui/src/app.rs
|
@ -21,6 +21,7 @@ use std::{
|
||||||
fmt::{self, Debug},
|
fmt::{self, Debug},
|
||||||
hash::{Hash, Hasher},
|
hash::{Hash, Hasher},
|
||||||
marker::PhantomData,
|
marker::PhantomData,
|
||||||
|
path::PathBuf,
|
||||||
rc::{self, Rc},
|
rc::{self, Rc},
|
||||||
sync::{Arc, Weak},
|
sync::{Arc, Weak},
|
||||||
};
|
};
|
||||||
|
@ -83,20 +84,44 @@ pub enum MenuItem<'a> {
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct App(Rc<RefCell<MutableAppContext>>);
|
pub struct App(Rc<RefCell<MutableAppContext>>);
|
||||||
|
|
||||||
|
pub trait TestClosure<'a, T> {
|
||||||
|
type Result: 'a + Future<Output = T>;
|
||||||
|
fn run_test(self, ctx: &'a mut MutableAppContext) -> Self::Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, F, R, T> TestClosure<'a, T> for F
|
||||||
|
where
|
||||||
|
F: FnOnce(&mut MutableAppContext) -> R,
|
||||||
|
R: 'a + Future<Output = T>,
|
||||||
|
{
|
||||||
|
type Result = R;
|
||||||
|
|
||||||
|
fn run_test(self, ctx: &'a mut MutableAppContext) -> Self::Result {
|
||||||
|
(self)(ctx)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl App {
|
impl App {
|
||||||
pub fn test<T, A: AssetSource, F: Future<Output = T>, G: FnOnce(App) -> F>(
|
pub fn test<
|
||||||
|
T,
|
||||||
|
A: AssetSource,
|
||||||
|
// F: 'static + ,
|
||||||
|
// G: for<'a> FnOnce(&'a mut MutableAppContext) -> impl Future<Output = T>,
|
||||||
|
G: for<'a> TestClosure<'a, T>,
|
||||||
|
>(
|
||||||
asset_source: A,
|
asset_source: A,
|
||||||
f: G,
|
f: G,
|
||||||
) -> T {
|
) -> T {
|
||||||
let platform = platform::test::platform();
|
let platform = platform::test::platform();
|
||||||
let foreground = Rc::new(executor::Foreground::test());
|
let foreground = Rc::new(executor::Foreground::test());
|
||||||
let app = Self(Rc::new(RefCell::new(MutableAppContext::new(
|
let ctx = Rc::new(RefCell::new(MutableAppContext::new(
|
||||||
foreground.clone(),
|
foreground.clone(),
|
||||||
Arc::new(platform),
|
Arc::new(platform),
|
||||||
asset_source,
|
asset_source,
|
||||||
))));
|
)));
|
||||||
app.0.borrow_mut().weak_self = Some(Rc::downgrade(&app.0));
|
ctx.borrow_mut().weak_self = Some(Rc::downgrade(&ctx));
|
||||||
smol::block_on(foreground.run(f(app)))
|
let mut ctx = ctx.borrow_mut();
|
||||||
|
smol::block_on(foreground.run(f.run_test(&mut *ctx)))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new(asset_source: impl AssetSource) -> Result<Self> {
|
pub fn new(asset_source: impl AssetSource) -> Result<Self> {
|
||||||
|
@ -111,6 +136,80 @@ impl App {
|
||||||
Ok(app)
|
Ok(app)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn on_become_active<F>(self, mut callback: F) -> Self
|
||||||
|
where
|
||||||
|
F: 'static + FnMut(&mut MutableAppContext),
|
||||||
|
{
|
||||||
|
let ctx = self.0.clone();
|
||||||
|
self.0
|
||||||
|
.borrow()
|
||||||
|
.platform
|
||||||
|
.on_become_active(Box::new(move || callback(&mut *ctx.borrow_mut())));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn on_resign_active<F>(self, mut callback: F) -> Self
|
||||||
|
where
|
||||||
|
F: 'static + FnMut(&mut MutableAppContext),
|
||||||
|
{
|
||||||
|
let ctx = self.0.clone();
|
||||||
|
self.0
|
||||||
|
.borrow()
|
||||||
|
.platform
|
||||||
|
.on_resign_active(Box::new(move || callback(&mut *ctx.borrow_mut())));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn on_event<F>(self, mut callback: F) -> Self
|
||||||
|
where
|
||||||
|
F: 'static + FnMut(Event, &mut MutableAppContext) -> bool,
|
||||||
|
{
|
||||||
|
let ctx = self.0.clone();
|
||||||
|
self.0.borrow().platform.on_event(Box::new(move |event| {
|
||||||
|
callback(event, &mut *ctx.borrow_mut())
|
||||||
|
}));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn on_menu_command<F>(self, mut callback: F) -> Self
|
||||||
|
where
|
||||||
|
F: 'static + FnMut(&str, &mut MutableAppContext),
|
||||||
|
{
|
||||||
|
let ctx = self.0.clone();
|
||||||
|
self.0
|
||||||
|
.borrow()
|
||||||
|
.platform
|
||||||
|
.on_menu_command(Box::new(move |command| {
|
||||||
|
callback(command, &mut *ctx.borrow_mut())
|
||||||
|
}));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn on_open_files<F>(self, mut callback: F) -> Self
|
||||||
|
where
|
||||||
|
F: 'static + FnMut(Vec<PathBuf>, &mut MutableAppContext),
|
||||||
|
{
|
||||||
|
let ctx = self.0.clone();
|
||||||
|
self.0
|
||||||
|
.borrow()
|
||||||
|
.platform
|
||||||
|
.on_open_files(Box::new(move |paths| {
|
||||||
|
callback(paths, &mut *ctx.borrow_mut())
|
||||||
|
}));
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn run<F>(self, callback: F)
|
||||||
|
where
|
||||||
|
F: 'static + FnOnce(&mut MutableAppContext),
|
||||||
|
{
|
||||||
|
let ctx = self.0.clone();
|
||||||
|
self.0
|
||||||
|
.borrow()
|
||||||
|
.platform
|
||||||
|
.run(Box::new(move || callback(&mut *ctx.borrow_mut())));
|
||||||
|
}
|
||||||
|
|
||||||
pub fn on_window_invalidated<F: 'static + FnMut(WindowInvalidation, &mut MutableAppContext)>(
|
pub fn on_window_invalidated<F: 'static + FnMut(WindowInvalidation, &mut MutableAppContext)>(
|
||||||
&self,
|
&self,
|
||||||
window_id: usize,
|
window_id: usize,
|
||||||
|
@ -155,12 +254,6 @@ impl App {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn dispatch_global_action<T: 'static + Any>(&self, name: &str, arg: T) {
|
|
||||||
self.0
|
|
||||||
.borrow_mut()
|
|
||||||
.dispatch_global_action(name, Box::new(arg).as_ref());
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add_bindings<T: IntoIterator<Item = keymap::Binding>>(&self, bindings: T) {
|
pub fn add_bindings<T: IntoIterator<Item = keymap::Binding>>(&self, bindings: T) {
|
||||||
self.0.borrow_mut().add_bindings(bindings);
|
self.0.borrow_mut().add_bindings(bindings);
|
||||||
}
|
}
|
||||||
|
@ -556,14 +649,18 @@ impl MutableAppContext {
|
||||||
}
|
}
|
||||||
|
|
||||||
if !halted_dispatch {
|
if !halted_dispatch {
|
||||||
self.dispatch_global_action(name, arg);
|
self.dispatch_global_action_with_dyn_arg(name, arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
self.flush_effects();
|
self.flush_effects();
|
||||||
halted_dispatch
|
halted_dispatch
|
||||||
}
|
}
|
||||||
|
|
||||||
fn dispatch_global_action(&mut self, name: &str, arg: &dyn Any) {
|
pub fn dispatch_global_action<T: 'static + Any>(&mut self, name: &str, arg: T) {
|
||||||
|
self.dispatch_global_action_with_dyn_arg(name, Box::new(arg).as_ref());
|
||||||
|
}
|
||||||
|
|
||||||
|
fn dispatch_global_action_with_dyn_arg(&mut self, name: &str, arg: &dyn Any) {
|
||||||
if let Some((name, mut handlers)) = self.global_actions.remove_entry(name) {
|
if let Some((name, mut handlers)) = self.global_actions.remove_entry(name) {
|
||||||
self.pending_flushes += 1;
|
self.pending_flushes += 1;
|
||||||
for handler in handlers.iter_mut().rev() {
|
for handler in handlers.iter_mut().rev() {
|
||||||
|
@ -574,7 +671,7 @@ impl MutableAppContext {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn add_bindings<T: IntoIterator<Item = keymap::Binding>>(&mut self, bindings: T) {
|
pub fn add_bindings<T: IntoIterator<Item = keymap::Binding>>(&mut self, bindings: T) {
|
||||||
self.keystroke_matcher.add_bindings(bindings);
|
self.keystroke_matcher.add_bindings(bindings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1887,13 +1984,6 @@ impl<T: Entity> ModelHandle<T> {
|
||||||
app.model(self)
|
app.model(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn read<'a, S, F>(&self, app: &'a App, read: F) -> S
|
|
||||||
where
|
|
||||||
F: FnOnce(&T, &AppContext) -> S,
|
|
||||||
{
|
|
||||||
app.read_model(self, read)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn update<A, F, S>(&self, app: &mut A, update: F) -> S
|
pub fn update<A, F, S>(&self, app: &mut A, update: F) -> S
|
||||||
where
|
where
|
||||||
A: UpdateModel,
|
A: UpdateModel,
|
||||||
|
@ -2362,9 +2452,7 @@ mod tests {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
App::test((), |mut app| async move {
|
App::test((), |app: &mut MutableAppContext| async move {
|
||||||
let app = &mut app;
|
|
||||||
|
|
||||||
let handle_1 = app.add_model(|ctx| Model::new(None, ctx));
|
let handle_1 = app.add_model(|ctx| Model::new(None, ctx));
|
||||||
let handle_2 = app.add_model(|ctx| Model::new(Some(handle_1.clone()), ctx));
|
let handle_2 = app.add_model(|ctx| Model::new(Some(handle_1.clone()), ctx));
|
||||||
assert_eq!(app.0.borrow().ctx.models.len(), 2);
|
assert_eq!(app.0.borrow().ctx.models.len(), 2);
|
||||||
|
@ -2375,19 +2463,15 @@ mod tests {
|
||||||
ctx.notify();
|
ctx.notify();
|
||||||
ctx.emit(2);
|
ctx.emit(2);
|
||||||
});
|
});
|
||||||
handle_1.read(app, |model, _| {
|
assert_eq!(handle_1.as_ref(app).events, vec!["updated".to_string()]);
|
||||||
assert_eq!(model.events, vec!["updated".to_string()]);
|
assert_eq!(
|
||||||
});
|
handle_2.as_ref(app).events,
|
||||||
handle_2.read(app, |model, _| {
|
vec![
|
||||||
assert_eq!(
|
"observed event 1".to_string(),
|
||||||
model.events,
|
"notified".to_string(),
|
||||||
vec![
|
"observed event 2".to_string(),
|
||||||
"observed event 1".to_string(),
|
]
|
||||||
"notified".to_string(),
|
);
|
||||||
"observed event 2".to_string(),
|
|
||||||
]
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
handle_2.update(app, |model, _| {
|
handle_2.update(app, |model, _| {
|
||||||
drop(handle_1);
|
drop(handle_1);
|
||||||
|
|
|
@ -7,7 +7,8 @@ use anyhow::Result;
|
||||||
use futures_core::future::LocalBoxFuture;
|
use futures_core::future::LocalBoxFuture;
|
||||||
use gpui::{
|
use gpui::{
|
||||||
fonts::Properties as FontProperties, keymap::Binding, text_layout, App, AppContext, Element,
|
fonts::Properties as FontProperties, keymap::Binding, text_layout, App, AppContext, Element,
|
||||||
ElementBox, Entity, FontCache, ModelHandle, View, ViewContext, WeakViewHandle,
|
ElementBox, Entity, FontCache, ModelHandle, MutableAppContext, View, ViewContext,
|
||||||
|
WeakViewHandle,
|
||||||
};
|
};
|
||||||
use gpui::{geometry::vector::Vector2F, TextLayoutCache};
|
use gpui::{geometry::vector::Vector2F, TextLayoutCache};
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
|
@ -24,7 +25,7 @@ use std::{
|
||||||
|
|
||||||
const CURSOR_BLINK_INTERVAL: Duration = Duration::from_millis(500);
|
const CURSOR_BLINK_INTERVAL: Duration = Duration::from_millis(500);
|
||||||
|
|
||||||
pub fn init(app: &mut App) {
|
pub fn init(app: &mut MutableAppContext) {
|
||||||
app.add_bindings(vec![
|
app.add_bindings(vec![
|
||||||
Binding::new("backspace", "buffer:backspace", Some("BufferView")),
|
Binding::new("backspace", "buffer:backspace", Some("BufferView")),
|
||||||
Binding::new("enter", "buffer:newline", Some("BufferView")),
|
Binding::new("enter", "buffer:newline", Some("BufferView")),
|
||||||
|
|
|
@ -11,8 +11,8 @@ use gpui::{
|
||||||
fonts::{Properties, Weight},
|
fonts::{Properties, Weight},
|
||||||
geometry::vector::vec2f,
|
geometry::vector::vec2f,
|
||||||
keymap::{self, Binding},
|
keymap::{self, Binding},
|
||||||
App, AppContext, Axis, Border, Entity, ModelHandle, View, ViewContext, ViewHandle,
|
App, AppContext, Axis, Border, Entity, ModelHandle, MutableAppContext, View, ViewContext,
|
||||||
WeakViewHandle,
|
ViewHandle, WeakViewHandle,
|
||||||
};
|
};
|
||||||
use std::cmp;
|
use std::cmp;
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ pub struct FileFinder {
|
||||||
list_state: UniformListState,
|
list_state: UniformListState,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn init(app: &mut App) {
|
pub fn init(app: &mut MutableAppContext) {
|
||||||
app.add_action("file_finder:toggle", FileFinder::toggle);
|
app.add_action("file_finder:toggle", FileFinder::toggle);
|
||||||
app.add_action("file_finder:confirm", FileFinder::confirm);
|
app.add_action("file_finder:confirm", FileFinder::confirm);
|
||||||
app.add_action("file_finder:select", FileFinder::select);
|
app.add_action("file_finder:select", FileFinder::select);
|
||||||
|
|
|
@ -13,55 +13,47 @@ fn main() {
|
||||||
|
|
||||||
let app = gpui::App::new(assets::Assets).unwrap();
|
let app = gpui::App::new(assets::Assets).unwrap();
|
||||||
let (_, settings_rx) = settings::channel(&app.font_cache()).unwrap();
|
let (_, settings_rx) = settings::channel(&app.font_cache()).unwrap();
|
||||||
|
app.on_menu_command({
|
||||||
platform::runner()
|
let settings_rx = settings_rx.clone();
|
||||||
.set_menus(menus::MENUS)
|
move |command, ctx| match command {
|
||||||
.on_menu_command({
|
"app:open" => {
|
||||||
let app = app.clone();
|
if let Some(paths) = ctx.platform().prompt_for_paths(PathPromptOptions {
|
||||||
let settings_rx = settings_rx.clone();
|
files: true,
|
||||||
move |command| match command {
|
directories: true,
|
||||||
"app:open" => {
|
multiple: true,
|
||||||
if let Some(paths) = app.platform().prompt_for_paths(PathPromptOptions {
|
}) {
|
||||||
files: true,
|
ctx.dispatch_global_action(
|
||||||
directories: true,
|
|
||||||
multiple: true,
|
|
||||||
}) {
|
|
||||||
app.dispatch_global_action(
|
|
||||||
"workspace:open_paths",
|
|
||||||
OpenParams {
|
|
||||||
paths,
|
|
||||||
settings: settings_rx.clone(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => app.dispatch_global_action(command, ()),
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.on_finish_launching({
|
|
||||||
let mut app = app.clone();
|
|
||||||
move || {
|
|
||||||
workspace::init(&mut app);
|
|
||||||
editor::init(&mut app);
|
|
||||||
file_finder::init(&mut app);
|
|
||||||
|
|
||||||
if stdout_is_a_pty() {
|
|
||||||
app.platform().activate(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
let paths = collect_path_args();
|
|
||||||
if !paths.is_empty() {
|
|
||||||
app.dispatch_global_action(
|
|
||||||
"workspace:open_paths",
|
"workspace:open_paths",
|
||||||
OpenParams {
|
OpenParams {
|
||||||
paths,
|
paths,
|
||||||
settings: settings_rx,
|
settings: settings_rx.clone(),
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
_ => ctx.dispatch_global_action(command, ()),
|
||||||
.run();
|
}
|
||||||
|
})
|
||||||
|
.run(move |ctx| {
|
||||||
|
workspace::init(ctx);
|
||||||
|
editor::init(ctx);
|
||||||
|
file_finder::init(ctx);
|
||||||
|
|
||||||
|
if stdout_is_a_pty() {
|
||||||
|
ctx.platform().activate(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
let paths = collect_path_args();
|
||||||
|
if !paths.is_empty() {
|
||||||
|
ctx.dispatch_global_action(
|
||||||
|
"workspace:open_paths",
|
||||||
|
OpenParams {
|
||||||
|
paths,
|
||||||
|
settings: settings_rx,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
fn init_logger() {
|
fn init_logger() {
|
||||||
|
|
|
@ -12,7 +12,7 @@ use crate::{settings::Settings, watch};
|
||||||
use gpui::{App, MutableAppContext};
|
use gpui::{App, MutableAppContext};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
pub fn init(app: &mut App) {
|
pub fn init(app: &mut MutableAppContext) {
|
||||||
app.add_global_action("workspace:open_paths", open_paths);
|
app.add_global_action("workspace:open_paths", open_paths);
|
||||||
app.add_global_action("app:quit", quit);
|
app.add_global_action("app:quit", quit);
|
||||||
pane::init(app);
|
pane::init(app);
|
||||||
|
|
|
@ -5,11 +5,11 @@ use gpui::{
|
||||||
elements::*,
|
elements::*,
|
||||||
geometry::{rect::RectF, vector::vec2f},
|
geometry::{rect::RectF, vector::vec2f},
|
||||||
keymap::Binding,
|
keymap::Binding,
|
||||||
App, AppContext, Border, Entity, Quad, View, ViewContext,
|
App, AppContext, Border, Entity, MutableAppContext, Quad, View, ViewContext,
|
||||||
};
|
};
|
||||||
use std::cmp;
|
use std::cmp;
|
||||||
|
|
||||||
pub fn init(app: &mut App) {
|
pub fn init(app: &mut MutableAppContext) {
|
||||||
app.add_action(
|
app.add_action(
|
||||||
"pane:activate_item",
|
"pane:activate_item",
|
||||||
|pane: &mut Pane, index: &usize, ctx| {
|
|pane: &mut Pane, index: &usize, ctx| {
|
||||||
|
|
|
@ -8,7 +8,7 @@ use gpui::{
|
||||||
use log::{error, info};
|
use log::{error, info};
|
||||||
use std::{collections::HashSet, path::PathBuf};
|
use std::{collections::HashSet, path::PathBuf};
|
||||||
|
|
||||||
pub fn init(app: &mut App) {
|
pub fn init(app: &mut MutableAppContext) {
|
||||||
app.add_action("workspace:save", WorkspaceView::save_active_item);
|
app.add_action("workspace:save", WorkspaceView::save_active_item);
|
||||||
app.add_action("workspace:debug_elements", WorkspaceView::debug_elements);
|
app.add_action("workspace:debug_elements", WorkspaceView::debug_elements);
|
||||||
app.add_bindings(vec![
|
app.add_bindings(vec![
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue