meli/src/bin.rs

209 lines
8.5 KiB
Rust
Raw Normal View History

2017-09-01 15:24:32 +03:00
/*
* meli - bin.rs
2017-09-01 15:24:32 +03:00
*
* Copyright 2017-2018 Manos Pitsidianakis
*
2017-09-01 15:24:32 +03:00
* This file is part of meli.
*
* meli is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* meli 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with meli. If not, see <http://www.gnu.org/licenses/>.
*/
2018-07-18 10:42:52 +03:00
/*! This crate contains the frontend stuff of the application. The application entry way on `src/bin.rs` creates an event loop and passes input to the `ui` module.
The mail handling stuff is done in the `melib` crate which includes all backend needs. The split is done to theoretically be able to create different frontends with the same innards.
*/
2018-08-05 12:14:26 +03:00
use std::alloc::System;
#[global_allocator]
static GLOBAL: System = System;
extern crate melib;
extern crate ui;
2018-07-11 18:58:57 +03:00
pub use melib::*;
2018-08-06 22:20:34 +03:00
pub use ui::*;
2017-09-01 15:24:32 +03:00
2018-07-16 13:36:28 +03:00
#[macro_use]
extern crate chan;
extern crate chan_signal;
use chan_signal::Signal;
2018-07-24 13:28:15 +03:00
extern crate nix;
fn main() {
2018-07-21 11:20:13 +03:00
/* Lock all stdio outs */
2018-07-24 13:28:15 +03:00
//let _stdout = stdout();
//let mut _stdout = _stdout.lock();
2018-07-11 17:07:51 +03:00
/*
let _stderr = stderr();
let mut _stderr = _stderr.lock();
*/
2018-07-11 17:07:51 +03:00
/* Catch SIGWINCH to handle terminal resizing */
2018-07-16 13:36:28 +03:00
let signal = chan_signal::notify(&[Signal::WINCH]);
/* Create the application State. This is the 'System' part of an ECS architecture */
let mut state = State::new();
let receiver = state.receiver();
2018-07-11 17:07:51 +03:00
/* Register some reasonably useful interfaces */
let menu = Entity::from(Box::new(AccountMenu::new(&state.context.accounts)));
let listing = listing::Listing::default();
let b = Entity::from(Box::new(listing));
2018-09-04 02:10:37 +03:00
let tabs = Box::new(Tabbed::new(vec![Box::new(VSplit::new(menu, b, 90, true))]));
let window = Entity::from(tabs);
let status_bar = Entity::from(Box::new(StatusBar::new(window)));
2018-07-14 15:04:42 +03:00
state.register_entity(status_bar);
let xdg_notifications =
Entity::from(Box::new(ui::components::notifications::XDGNotifications {}));
state.register_entity(xdg_notifications);
/* Keep track of the input mode. See ui::UIMode for details */
'main: loop {
2018-07-14 21:41:38 +03:00
state.render();
'inner: loop {
/* Check if any entities have sent reply events to State. */
let events: Vec<UIEvent> = state.context.replies();
for e in events {
state.rcv_event(e);
}
2018-07-21 11:20:13 +03:00
/* Poll on all channels. Currently we have the input channel for stdin, watching events and the signal watcher. */
2018-07-16 13:36:28 +03:00
chan_select! {
receiver.recv() -> r => {
match r.unwrap() {
2018-07-24 13:28:15 +03:00
ThreadEvent::Input(Key::Ctrl('z')) => {
2018-08-07 15:01:15 +03:00
state.switch_to_main_screen();
2018-07-24 13:28:15 +03:00
//_thread_handler.join().expect("Couldn't join on the associated thread");
let self_pid = nix::unistd::Pid::this();
nix::sys::signal::kill(self_pid, nix::sys::signal::Signal::SIGSTOP).unwrap();
2018-08-07 15:01:15 +03:00
state.switch_to_alternate_screen();
state.restore_input();
2018-07-24 13:28:15 +03:00
// BUG: thread sends input event after one received key
state.update_size();
state.render();
state.redraw();
},
2018-07-16 13:36:28 +03:00
ThreadEvent::Input(k) => {
2018-07-21 11:20:13 +03:00
match state.mode {
2018-07-16 13:36:28 +03:00
UIMode::Normal => {
match k {
Key::Char('q') | Key::Char('Q') => {
drop(state);
2018-07-16 13:36:28 +03:00
break 'main;
},
Key::Char(';') => {
2018-07-21 11:20:13 +03:00
state.mode = UIMode::Execute;
state.rcv_event(UIEvent { id: 0, event_type: UIEventType::ChangeMode(UIMode::Execute)});
2018-07-16 13:36:28 +03:00
state.redraw();
}
key => {
state.rcv_event(UIEvent { id: 0, event_type: UIEventType::Input(key)});
state.redraw();
},
}
2018-07-15 01:27:13 +03:00
},
2018-07-16 13:36:28 +03:00
UIMode::Execute => {
match k {
Key::Char('\n') | Key::Esc => {
2018-07-21 11:20:13 +03:00
state.mode = UIMode::Normal;
state.rcv_event(UIEvent { id: 0, event_type: UIEventType::ChangeMode(UIMode::Normal)});
2018-07-16 13:36:28 +03:00
state.redraw();
},
2018-08-07 16:14:06 +03:00
k => {
2018-07-16 13:36:28 +03:00
state.rcv_event(UIEvent { id: 0, event_type: UIEventType::ExInput(k)});
state.redraw();
},
}
},
2018-07-21 11:20:13 +03:00
UIMode::Fork => {
break 'inner; // `goto` 'reap loop, and wait on child.
},
2018-07-15 01:27:13 +03:00
}
},
2018-09-05 16:08:11 +03:00
ThreadEvent::RefreshMailbox(event) => {
state.refresh_event(event);
state.redraw();
2018-07-16 13:36:28 +03:00
},
2018-08-06 13:33:10 +03:00
ThreadEvent::UIEvent(UIEventType::ChangeMode(f)) => {
2018-07-21 11:20:13 +03:00
state.mode = f;
break 'inner; // `goto` 'reap loop, and wait on child.
}
2018-08-06 13:33:10 +03:00
ThreadEvent::UIEvent(UIEventType::StartupCheck) => {
let mut render_flag = false;
for idx_a in 0..state.context.accounts.len() {
let len = state.context.accounts[idx_a].len();
for idx_m in 0..len {
match state.context.account_status(idx_a, idx_m) {
Ok(true) => {
render_flag = true;
},
2018-09-07 15:36:42 +03:00
Ok(false) | Err(_) => {}
2018-08-06 13:33:10 +03:00
}
}
}
if render_flag {
state.render();
}
2018-08-06 13:33:10 +03:00
}
ThreadEvent::UIEvent(e) => {
2018-07-16 13:36:28 +03:00
state.rcv_event(UIEvent { id: 0, event_type: e});
state.render();
},
2018-08-06 14:58:54 +03:00
ThreadEvent::ThreadJoin(id) => {
state.join(id);
},
2017-09-28 18:06:35 +03:00
}
2017-09-01 15:24:32 +03:00
},
2018-07-16 13:36:28 +03:00
signal.recv() -> signal => {
2018-07-21 11:20:13 +03:00
if state.mode != UIMode::Fork {
if let Some(Signal::WINCH) = signal {
state.update_size();
state.render();
state.redraw();
}
2018-07-16 13:36:28 +03:00
}
},
}
2018-07-21 11:20:13 +03:00
} // end of 'inner
'reap: loop {
match state.try_wait_on_child() {
Some(true) => {
state.restore_input();
state.switch_to_alternate_screen();
2018-07-27 21:37:56 +03:00
}
2018-07-21 11:20:13 +03:00
Some(false) => {
use std::{thread, time};
let ten_millis = time::Duration::from_millis(1500);
2018-07-21 11:20:13 +03:00
thread::sleep(ten_millis);
2018-07-24 13:28:15 +03:00
2018-07-21 11:20:13 +03:00
continue 'reap;
2018-07-27 21:37:56 +03:00
}
None => {
state.mode = UIMode::Normal;
state.render();
2018-07-27 21:37:56 +03:00
break 'reap;
}
2018-07-21 11:20:13 +03:00
}
}
}
}