| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2024 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use async_recursion::async_recursion;
- use chrono::{Local, NaiveDate, NaiveDateTime, TimeZone};
- use darkfi::system::CondVar;
- use darkfi_serial::{deserialize, Decodable, Encodable};
- use futures::{stream::FuturesUnordered, StreamExt};
- use sled_overlay::sled;
- use smol::Task;
- use std::{
- fs::File,
- io::Cursor,
- sync::{Arc, Mutex as SyncMutex},
- thread,
- };
- use crate::{
- error::Error,
- expr::Op,
- gfx::{GraphicsEventPublisherPtr, RenderApi, Vertex},
- plugin::{self, PluginObject},
- prop::{
- Property, PropertyAtomicGuard, PropertyBool, PropertyStr, PropertySubType, PropertyType,
- Role,
- },
- scene::{Pimpl, SceneNode as SceneNode3, SceneNodePtr, SceneNodeType as SceneNodeType3, Slot},
- text::TextShaperPtr,
- ui::{chatview, Window},
- ExecutorPtr,
- };
- mod node;
- use node::create_darkirc;
- mod schema;
- use schema::get_window_scale_filename;
- macro_rules! d { ($($arg:tt)*) => { debug!(target: "app", $($arg)*); } }
- macro_rules! t { ($($arg:tt)*) => { trace!(target: "app", $($arg)*); } }
- macro_rules! i { ($($arg:tt)*) => { info!(target: "app", $($arg)*); } }
- const PLUGINS_ENABLED: bool = true;
- //fn print_type_of<T>(_: &T) {
- // println!("{}", std::any::type_name::<T>())
- //}
- pub struct AsyncRuntime {
- signal: async_channel::Sender<()>,
- shutdown: async_channel::Receiver<()>,
- exec_threadpool: SyncMutex<Option<thread::JoinHandle<()>>>,
- ex: ExecutorPtr,
- tasks: SyncMutex<Vec<Task<()>>>,
- }
- impl AsyncRuntime {
- pub fn new(ex: ExecutorPtr) -> Self {
- let (signal, shutdown) = async_channel::unbounded::<()>();
- Self {
- signal,
- shutdown,
- exec_threadpool: SyncMutex::new(None),
- ex,
- tasks: SyncMutex::new(vec![]),
- }
- }
- pub fn start(&self) {
- let n_threads = thread::available_parallelism().unwrap().get();
- let shutdown = self.shutdown.clone();
- let ex = self.ex.clone();
- let exec_threadpool = thread::spawn(move || {
- easy_parallel::Parallel::new()
- // N executor threads
- .each(0..n_threads, |_| smol::future::block_on(ex.run(shutdown.recv())))
- .run();
- });
- *self.exec_threadpool.lock().unwrap() = Some(exec_threadpool);
- info!(target: "async_runtime", "Started runtime [{n_threads} threads]");
- }
- pub fn push_task(&self, task: Task<()>) {
- self.tasks.lock().unwrap().push(task);
- }
- pub fn stop(&self) {
- // Go through event graph and call stop on everything
- // Depth first
- d!("Stopping async runtime...");
- let tasks = std::mem::take(&mut *self.tasks.lock().unwrap());
- // Close all tasks
- smol::future::block_on(async {
- // Perform cleanup code
- // If not finished in certain amount of time, then just exit
- let futures = FuturesUnordered::new();
- for task in tasks {
- futures.push(task.cancel());
- }
- let _: Vec<_> = futures.collect().await;
- });
- if !self.signal.close() {
- error!(target: "app", "exec threadpool was already shutdown");
- }
- let exec_threadpool = std::mem::replace(&mut *self.exec_threadpool.lock().unwrap(), None);
- let exec_threadpool = exec_threadpool.expect("threadpool wasnt started");
- exec_threadpool.join().unwrap();
- i!("Stopped app");
- }
- }
- pub type AppPtr = Arc<App>;
- pub struct App {
- pub sg_root: SceneNodePtr,
- pub render_api: RenderApi,
- pub event_pub: GraphicsEventPublisherPtr,
- pub text_shaper: TextShaperPtr,
- pub tasks: SyncMutex<Vec<Task<()>>>,
- pub ex: ExecutorPtr,
- }
- impl App {
- pub fn new(
- sg_root: SceneNodePtr,
- render_api: RenderApi,
- event_pub: GraphicsEventPublisherPtr,
- text_shaper: TextShaperPtr,
- ex: ExecutorPtr,
- ) -> Arc<Self> {
- Arc::new(Self {
- sg_root,
- ex,
- render_api,
- event_pub,
- text_shaper,
- tasks: SyncMutex::new(vec![]),
- })
- }
- /// Does not require miniquad to be init. Created the scene graph tree / schema and all
- /// the objects.
- pub async fn setup(&self) {
- t!("App::setup()");
- let atom = &mut PropertyAtomicGuard::new();
- let mut window = SceneNode3::new("window", SceneNodeType3::Window);
- let mut prop = Property::new("screen_size", PropertyType::Float32, PropertySubType::Pixel);
- prop.set_array_len(2);
- window.add_property(prop).unwrap();
- let mut prop = Property::new("scale", PropertyType::Float32, PropertySubType::Pixel);
- prop.set_defaults_f32(vec![1.]).unwrap();
- window.add_property(prop).unwrap();
- let window = window.setup(|me| Window::new(me, self.render_api.clone())).await;
- self.sg_root.clone().link(window.clone());
- schema::make(&self, window).await;
- //schema::test::make(&self, window).await;
- d!("Schema loaded");
- let plugin = Arc::new(SceneNode3::new("plugin", SceneNodeType3::PluginRoot));
- self.sg_root.clone().link(plugin.clone());
- if !PLUGINS_ENABLED {
- return
- }
- let darkirc = create_darkirc("darkirc");
- let darkirc = darkirc
- .setup(|me| async {
- plugin::DarkIrc::new(me, self.ex.clone()).await.expect("DarkIrc pimpl setup")
- })
- .await;
- let (slot, recvr) = Slot::new("recvmsg");
- darkirc.register("recv", slot).unwrap();
- let sg_root2 = self.sg_root.clone();
- let darkirc_nick = PropertyStr::wrap(&darkirc, Role::App, "nick", 0).unwrap();
- let listen_recv = self.ex.spawn(async move {
- while let Ok(data) = recvr.recv().await {
- let atom = &mut PropertyAtomicGuard::new();
- let mut cur = Cursor::new(&data);
- let channel = String::decode(&mut cur).unwrap();
- let timestamp = chatview::Timestamp::decode(&mut cur).unwrap();
- let id = chatview::MessageId::decode(&mut cur).unwrap();
- let nick = String::decode(&mut cur).unwrap();
- let msg = String::decode(&mut cur).unwrap();
- let node_path = format!("/window/{channel}_chat_layer/content/chatty");
- t!("Attempting to relay message to {node_path}");
- let Some(chatview) = sg_root2.clone().lookup_node(&node_path) else {
- d!("Ignoring message since {node_path} doesn't exist");
- continue
- };
- // I prefer to just re-encode because the code is clearer.
- let mut data = vec![];
- timestamp.encode(&mut data).unwrap();
- id.encode(&mut data).unwrap();
- nick.encode(&mut data).unwrap();
- msg.encode(&mut data).unwrap();
- if let Err(err) = chatview.call_method("insert_line", data).await {
- error!(
- target: "app",
- "Call method {node_path}::insert_line({timestamp}, {id}, {nick}, '{msg}'): {err:?}"
- );
- }
- // Apply coloring when you get a message
- let chat_path = format!("/window/{channel}_chat_layer");
- let chat_layer = sg_root2.clone().lookup_node(chat_path).unwrap();
- if chat_layer.get_property_bool("is_visible").unwrap() {
- continue
- }
- let node_path = format!("/window/menu_layer/{channel}_channel_label");
- let menu_label = sg_root2.clone().lookup_node(&node_path).unwrap();
- let prop = menu_label.get_property("text_color").unwrap();
- if msg.contains(&darkirc_nick.get()) {
- // Nick highlight
- prop.clone().set_f32(atom, Role::App, 0, 0.56).unwrap();
- prop.clone().set_f32(atom, Role::App, 1, 0.61).unwrap();
- prop.clone().set_f32(atom, Role::App, 2, 1.).unwrap();
- prop.clone().set_f32(atom, Role::App, 3, 1.).unwrap();
- } else {
- // Normal channel activity
- prop.clone().set_f32(atom, Role::App, 0, 0.36).unwrap();
- prop.clone().set_f32(atom, Role::App, 1, 1.).unwrap();
- prop.clone().set_f32(atom, Role::App, 2, 0.51).unwrap();
- prop.clone().set_f32(atom, Role::App, 3, 1.).unwrap();
- }
- }
- });
- self.tasks.lock().unwrap().push(listen_recv);
- let (slot, recvr) = Slot::new("connect");
- darkirc.register("connect", slot).unwrap();
- let sg_root2 = self.sg_root.clone();
- let listen_connect = self.ex.spawn(async move {
- let net0 = sg_root2.clone().lookup_node("/window/netstatus_layer/net0").unwrap();
- let net1 = sg_root2.clone().lookup_node("/window/netstatus_layer/net1").unwrap();
- let net2 = sg_root2.clone().lookup_node("/window/netstatus_layer/net2").unwrap();
- let net3 = sg_root2.clone().lookup_node("/window/netstatus_layer/net3").unwrap();
- let net0_is_visible = PropertyBool::wrap(&net0, Role::App, "is_visible", 0).unwrap();
- let net1_is_visible = PropertyBool::wrap(&net1, Role::App, "is_visible", 0).unwrap();
- let net2_is_visible = PropertyBool::wrap(&net2, Role::App, "is_visible", 0).unwrap();
- let net3_is_visible = PropertyBool::wrap(&net3, Role::App, "is_visible", 0).unwrap();
- while let Ok(data) = recvr.recv().await {
- let peers_count: u32 = deserialize(&data).unwrap();
- let atom = &mut PropertyAtomicGuard::new();
- match peers_count {
- 0 => {
- net0_is_visible.set(atom, true);
- net1_is_visible.set(atom, false);
- net2_is_visible.set(atom, false);
- net3_is_visible.set(atom, false);
- }
- 1 => {
- net0_is_visible.set(atom, false);
- net1_is_visible.set(atom, true);
- net2_is_visible.set(atom, false);
- net3_is_visible.set(atom, false);
- }
- 2 => {
- net0_is_visible.set(atom, false);
- net1_is_visible.set(atom, false);
- net2_is_visible.set(atom, true);
- net3_is_visible.set(atom, false);
- }
- _ => {
- net0_is_visible.set(atom, false);
- net1_is_visible.set(atom, false);
- net2_is_visible.set(atom, false);
- net3_is_visible.set(atom, true);
- }
- }
- }
- });
- self.tasks.lock().unwrap().push(listen_connect);
- plugin.link(darkirc);
- i!("Plugins loaded");
- }
- /// Begins the draw of the tree, and then starts the UI procs.
- pub async fn start(self: Arc<Self>) {
- d!("Starting app");
- let atom = &mut PropertyAtomicGuard::new();
- let window_node = self.sg_root.clone().lookup_node("/window").unwrap();
- let prop = window_node.get_property("screen_size").unwrap();
- // We can only do this once the window has been created in miniquad.
- let (screen_width, screen_height) = miniquad::window::screen_size();
- prop.clone().set_f32(atom, Role::App, 0, screen_width);
- prop.clone().set_f32(atom, Role::App, 1, screen_height);
- let mut window_scale = 1.;
- if let Ok(mut file) = File::open(get_window_scale_filename()) {
- window_scale = Decodable::decode(&mut file).unwrap();
- }
- window_node.set_property_f32(atom, Role::App, "scale", window_scale).unwrap();
- drop(atom);
- // Access drawable in window node and call draw()
- self.trigger_draw().await;
- self.start_procs().await;
- i!("App started");
- }
- pub fn stop(&self) {
- smol::future::block_on(async {
- self.async_stop().await;
- });
- }
- async fn trigger_draw(&self) {
- let window_node = self.sg_root.clone().lookup_node("/window").expect("no window attached!");
- match &window_node.pimpl {
- Pimpl::Window(win) => win.draw().await,
- _ => panic!("wrong pimpl"),
- }
- }
- async fn start_procs(&self) {
- let window_node = self.sg_root.clone().lookup_node("/window").unwrap();
- match &window_node.pimpl {
- Pimpl::Window(win) => win.clone().start(self.event_pub.clone(), self.ex.clone()).await,
- _ => panic!("wrong pimpl"),
- }
- let plugins = self.sg_root.clone().lookup_node("/plugin").unwrap();
- for plugin in plugins.get_children() {
- match &plugin.pimpl {
- Pimpl::DarkIrc(darkirc) => darkirc.clone().start(self.ex.clone()).await,
- _ => panic!("wrong pimpl"),
- }
- }
- }
- /// Shutdown code here
- async fn async_stop(&self) {
- //self.darkirc_backend.stop().await;
- }
- }
- impl Drop for App {
- fn drop(&mut self) {
- t!("Dropping app");
- // This hangs
- //self.stop();
- }
- }
- // Just for testing
- fn populate_tree(tree: &sled::Tree) {
- let chat_txt = include_str!("../../chat.txt");
- for line in chat_txt.lines() {
- let parts: Vec<&str> = line.splitn(3, ' ').collect();
- assert_eq!(parts.len(), 3);
- let time_parts: Vec<&str> = parts[0].splitn(2, ':').collect();
- let (hour, min) = (time_parts[0], time_parts[1]);
- let hour = hour.parse::<u32>().unwrap();
- let min = min.parse::<u32>().unwrap();
- let dt: NaiveDateTime =
- NaiveDate::from_ymd_opt(2024, 8, 6).unwrap().and_hms_opt(hour, min, 0).unwrap();
- let timest = dt.and_utc().timestamp_millis() as u64;
- let nick = parts[1].to_string();
- let text = parts[2].to_string();
- // serial order is important here
- let timest = timest.to_be_bytes();
- assert_eq!(timest.len(), 8);
- let mut key = [0u8; 8 + 32];
- key[..8].clone_from_slice(×t);
- let msg = chatview::ChatMsg { nick, text };
- let mut val = vec![];
- msg.encode(&mut val).unwrap();
- tree.insert(&key, val).unwrap();
- }
- // O(n)
- d!("populated db with {} lines", tree.len());
- }
|