1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
// Copyright 2021-2022 Aaron Erhardt <aaron.erhardt@t-online.de>
// Copyright 2022 System76 <info@system76.com>
// SPDX-License-Identifier: MIT or Apache-2.0
use super::super::MessageBroker;
use super::{Component, ComponentParts, Connector, StateWatcher};
use crate::{
late_initialization, ComponentSender, GuardedReceiver, Receiver, RelmContainerExt,
RelmWidgetExt, RuntimeSenders, Sender,
};
use gtk::glib;
use gtk::prelude::{GtkWindowExt, NativeDialogExt};
use std::any;
use std::cell::RefCell;
use std::marker::PhantomData;
use std::rc::Rc;
use tokio::sync::oneshot;
use tracing::info_span;
/// A component that is ready for docking and launch.
#[derive(Debug)]
pub struct ComponentBuilder<C: Component> {
/// The root widget of the component.
pub root: C::Root,
priority: glib::Priority,
pub(super) component: PhantomData<C>,
}
impl<C: Component> Default for ComponentBuilder<C> {
/// Prepares a component for initialization.
fn default() -> Self {
Self {
root: C::init_root(),
priority: glib::Priority::default(),
component: PhantomData,
}
}
}
impl<C: Component> ComponentBuilder<C> {
/// Configure the root widget before launching.
#[must_use]
pub fn update_root<F: FnOnce(&mut C::Root)>(mut self, func: F) -> Self {
func(&mut self.root);
self
}
/// Access the root widget before the component is initialized.
pub const fn widget(&self) -> &C::Root {
&self.root
}
/// Change the priority at which the messages of this component
/// are handled.
///
/// + Use [`glib::PRIORITY_HIGH`] for high priority event sources.
/// + Use [`glib::PRIORITY_LOW`] for very low priority background tasks.
/// + Use [`glib::PRIORITY_DEFAULT_IDLE`] for default priority idle functions.
/// + Use [`glib::PRIORITY_HIGH_IDLE`] for high priority idle functions.
pub fn priority(mut self, priority: glib::Priority) -> Self {
self.priority = priority;
self
}
}
impl<C: Component> ComponentBuilder<C>
where
C::Root: AsRef<gtk::Widget>,
{
/// Attach the component's root widget to a given container.
#[must_use]
pub fn attach_to(self, container: &impl RelmContainerExt) -> Self {
container.container_add(self.root.as_ref());
self
}
}
impl<C: Component> ComponentBuilder<C>
where
C::Root: AsRef<gtk::Window> + Clone,
{
/// Set the component's root widget transient for a given window.
/// This function doesn't require a [`gtk::Window`] as parameter,
/// but instead uses [`RelmWidgetExt::toplevel_window()`] to retrieve the toplevel
/// window of any [`gtk::Widget`].
/// Therefore, you don't have to pass a window to every component.
///
/// If the root widget is a native dialog, such as [`gtk::FileChooserNative`],
/// you should use [`transient_for_native`][ComponentBuilder::transient_for_native] instead.
#[must_use]
pub fn transient_for(self, widget: impl AsRef<gtk::Widget>) -> Self {
let widget = widget.as_ref().clone();
let root = self.root.clone();
late_initialization::register_callback(Box::new(move || {
if let Some(window) = widget.toplevel_window() {
root.as_ref().set_transient_for(Some(&window));
} else {
tracing::error!("Couldn't find root of transient widget");
}
}));
self
}
}
impl<C: Component> ComponentBuilder<C>
where
C::Root: AsRef<gtk::NativeDialog> + Clone,
{
/// Set the component's root widget transient for a given window.
/// This function doesn't require a [`gtk::Window`] as parameter,
/// but instead uses [`RelmWidgetExt::toplevel_window()`] to retrieve the toplevel
/// window of any [`gtk::Widget`].
/// Therefore, you don't have to pass a window to every component.
///
/// Applicable to native dialogs only, such as [`gtk::FileChooserNative`].
/// If the root widget is a non-native dialog,
/// you should use [`transient_for`][ComponentBuilder::transient_for] instead.
#[must_use]
pub fn transient_for_native(self, widget: impl AsRef<gtk::Widget>) -> Self {
let widget = widget.as_ref().clone();
let root = self.root.clone();
late_initialization::register_callback(Box::new(move || {
if let Some(window) = widget.toplevel_window() {
root.as_ref().set_transient_for(Some(&window));
} else {
tracing::error!("Couldn't find root of transient widget");
}
}));
self
}
}
impl<C: Component> ComponentBuilder<C> {
/// Starts the component, passing ownership to a future attached to a [gtk::glib::MainContext].
pub fn launch(self, payload: C::Init) -> Connector<C> {
// Used for all events to be processed by this component's internal service.
let (input_sender, input_receiver) = crate::channel::<C::Input>();
self.launch_with_input_channel(payload, input_sender, input_receiver)
}
/// Similar to [`launch()`](ComponentBuilder::launch) but also initializes a [`MessageBroker`].
///
/// # Panics
///
/// This method panics if the message broker was already initialized in another launch.
pub fn launch_with_broker(
self,
payload: C::Init,
broker: &MessageBroker<C::Input>,
) -> Connector<C> {
let (input_sender, input_receiver) = broker.get_channel();
self.launch_with_input_channel(
payload,
input_sender,
input_receiver.expect("Message broker launched multiple times"),
)
}
fn launch_with_input_channel(
self,
payload: C::Init,
input_sender: Sender<C::Input>,
input_receiver: Receiver<C::Input>,
) -> Connector<C> {
let Self { root, priority, .. } = self;
let RuntimeSenders {
output_sender,
output_receiver,
cmd_sender,
cmd_receiver,
shutdown_notifier,
shutdown_recipient,
shutdown_on_drop,
mut shutdown_event,
} = RuntimeSenders::<C::Output, C::CommandOutput>::new();
// Gets notifications when a component's model and view is updated externally.
let (notifier, notifier_receiver) = crate::channel();
let (source_id_sender, source_id_receiver) =
oneshot::channel::<gtk::glib::JoinHandle<()>>();
// Encapsulates the senders used by component methods.
let component_sender = ComponentSender::new(
input_sender.clone(),
output_sender.clone(),
cmd_sender,
shutdown_recipient,
);
// Constructs the initial model and view with the initial payload.
let state = Rc::new(RefCell::new(C::init(
payload,
&root,
component_sender.clone(),
)));
let watcher = StateWatcher {
state,
notifier,
shutdown_on_drop,
};
let rt_state = watcher.state.clone();
let rt_root = root.clone();
// Spawns the component's service. It will receive both `Self::Input` and
// `Self::CommandOutput` messages. It will spawn commands as requested by
// updates, and send `Self::Output` messages externally.
let handle = crate::spawn_local_with_priority(priority, async move {
let id = source_id_receiver.await.unwrap().into_source_id().unwrap();
let mut notifier = GuardedReceiver::new(notifier_receiver);
let mut cmd = GuardedReceiver::new(cmd_receiver);
let mut input = GuardedReceiver::new(input_receiver);
loop {
futures::select!(
// Performs the model update, checking if the update requested a command.
// Runs that command asynchronously in the background using tokio.
message = input => {
let ComponentParts {
model,
widgets,
} = &mut *rt_state.borrow_mut();
let span = info_span!(
"update_with_view",
input=?message,
component=any::type_name::<C>(),
id=model.id(),
);
let _enter = span.enter();
model.update_with_view(widgets, message, component_sender.clone(), &rt_root);
}
// Handles responses from a command.
message = cmd => {
let ComponentParts {
model,
widgets,
} = &mut *rt_state.borrow_mut();
let span = info_span!(
"update_cmd_with_view",
cmd_output=?message,
component=any::type_name::<C>(),
id=model.id(),
);
let _enter = span.enter();
model.update_cmd_with_view(widgets, message, component_sender.clone(), &rt_root);
}
// Triggered when the model and view have been updated externally.
_ = notifier => {
let ComponentParts {
model,
widgets,
} = &mut *rt_state.borrow_mut();
model.update_view(widgets, component_sender.clone());
}
// Triggered when the component is destroyed
_ = shutdown_event => {
let ComponentParts {
model,
widgets,
} = &mut *rt_state.borrow_mut();
model.shutdown(widgets, output_sender);
shutdown_notifier.shutdown();
id.remove();
return;
}
);
}
});
source_id_sender.send(handle).unwrap();
// Give back a type for controlling the component service.
Connector {
state: watcher,
widget: root,
sender: input_sender,
receiver: output_receiver,
}
}
}