2020-06-25 00:24:46 +03:00
|
|
|
//! This module contains the IDE object implementation.
|
2020-12-22 18:57:24 +03:00
|
|
|
pub mod initializer;
|
|
|
|
pub mod integration;
|
2020-06-25 00:24:46 +03:00
|
|
|
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
2021-05-21 16:24:17 +03:00
|
|
|
use crate::controller::project::INITIAL_MODULE_NAME;
|
2020-12-22 18:57:24 +03:00
|
|
|
use crate::ide::integration::Integration;
|
2020-06-25 00:24:46 +03:00
|
|
|
|
2021-06-22 15:04:30 +03:00
|
|
|
use analytics::AnonymousData;
|
|
|
|
use enso_frp as frp;
|
2020-12-22 18:57:24 +03:00
|
|
|
use ensogl::application::Application;
|
2021-06-22 15:04:30 +03:00
|
|
|
use ensogl::system::web::sleep;
|
|
|
|
use std::time::Duration;
|
2020-12-22 18:57:24 +03:00
|
|
|
|
|
|
|
pub use initializer::Initializer;
|
2020-12-08 15:19:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// =================
|
|
|
|
// === Constants ===
|
|
|
|
// =================
|
|
|
|
|
2021-03-12 14:56:33 +03:00
|
|
|
/// Text that shows up in the statusbar when any of the backend connections is lost.
|
2021-11-02 16:05:43 +03:00
|
|
|
pub const BACKEND_DISCONNECTED_MESSAGE: &str =
|
2021-03-12 14:56:33 +03:00
|
|
|
"Connection to the backend has been lost. Please try restarting IDE.";
|
|
|
|
|
2021-11-02 16:05:43 +03:00
|
|
|
const ALIVE_LOG_INTERVAL_SEC: u64 = 60;
|
2021-06-22 15:04:30 +03:00
|
|
|
|
2020-06-25 00:24:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
// ===========
|
|
|
|
// === Ide ===
|
|
|
|
// ===========
|
|
|
|
|
2020-12-22 18:57:24 +03:00
|
|
|
/// The main Ide structure.
|
|
|
|
///
|
|
|
|
/// This structure is a root of all objects in our application. It includes both layers:
|
|
|
|
/// Controllers and Views, and an integration between them.
|
2020-06-25 00:24:46 +03:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Ide {
|
2021-11-02 16:05:43 +03:00
|
|
|
application: Application,
|
2021-11-02 01:41:52 +03:00
|
|
|
#[allow(dead_code)]
|
|
|
|
/// The integration layer is never directly accessed, but needs to be kept alive to keep
|
|
|
|
/// performing its function.
|
2021-11-02 16:05:43 +03:00
|
|
|
integration: Integration,
|
|
|
|
network: frp::Network,
|
2020-06-25 00:24:46 +03:00
|
|
|
}
|
|
|
|
|
2020-12-22 18:57:24 +03:00
|
|
|
impl Ide {
|
|
|
|
/// Constructor.
|
2021-11-02 16:05:43 +03:00
|
|
|
pub async fn new(
|
|
|
|
application: Application,
|
|
|
|
view: ide_view::project::View,
|
|
|
|
controller: controller::Ide,
|
|
|
|
) -> Self {
|
|
|
|
let integration = integration::Integration::new(controller, view);
|
|
|
|
let network = frp::Network::new("Ide");
|
|
|
|
Ide { application, integration, network }.init()
|
2021-06-22 15:04:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn init(self) -> Self {
|
|
|
|
executor::global::spawn(self.alive_log_sending_loop());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-11-02 16:05:43 +03:00
|
|
|
fn alive_log_sending_loop(&self) -> impl Future<Output = ()> + 'static {
|
|
|
|
let network = &self.network;
|
|
|
|
let scene = self.application.display.scene();
|
|
|
|
let mouse = &scene.mouse.frp;
|
2021-06-22 15:04:30 +03:00
|
|
|
let keyboard = &scene.keyboard.frp;
|
|
|
|
|
2021-07-06 10:42:08 +03:00
|
|
|
enso_frp::extend! { network
|
2021-06-22 15:04:30 +03:00
|
|
|
on_log_sent <- source::<()>();
|
|
|
|
mouse_moved <- mouse.position.constant(());
|
|
|
|
any_mouse_press <- any(mouse.up,mouse.down).constant(());
|
|
|
|
any_mouse_event <- any(any_mouse_press,mouse_moved,mouse.wheel);
|
|
|
|
any_keyboard_event <- any(keyboard.down,keyboard.up).constant(());
|
|
|
|
any_input_event <- any(any_mouse_event,any_keyboard_event);
|
|
|
|
// True if any input event was captured since the last "alive" log sending.
|
|
|
|
input_event_received <- bool(&on_log_sent,&any_input_event).sampler();
|
|
|
|
}
|
|
|
|
async move {
|
|
|
|
loop {
|
|
|
|
let value = AnonymousData(input_event_received.value());
|
2021-11-02 16:05:43 +03:00
|
|
|
analytics::remote_log_value("alive", "input_event_received", value);
|
2021-06-22 15:04:30 +03:00
|
|
|
on_log_sent.emit(());
|
|
|
|
sleep(Duration::from_secs(ALIVE_LOG_INTERVAL_SEC)).await;
|
|
|
|
}
|
|
|
|
}
|
2020-06-25 00:24:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-21 16:24:17 +03:00
|
|
|
/// The Path of the module initially opened after opening project in IDE.
|
2021-11-02 16:05:43 +03:00
|
|
|
pub fn initial_module_path(project: &model::Project) -> FallibleResult<model::module::Path> {
|
|
|
|
model::module::Path::from_name_segments(project.project_content_root_id(), &[
|
|
|
|
INITIAL_MODULE_NAME,
|
|
|
|
])
|
2020-12-22 18:57:24 +03:00
|
|
|
}
|