2021-09-03 06:49:18 +02:00
|
|
|
use {
|
|
|
|
std::{
|
|
|
|
sync::Arc,
|
|
|
|
process::Command,
|
|
|
|
os::unix::io::{FromRawFd, AsRawFd},
|
|
|
|
},
|
|
|
|
std::sync::RwLock,
|
|
|
|
termion::event::{Key, Event},
|
|
|
|
cgmath::Point2,
|
|
|
|
nested::{
|
2021-09-15 17:47:40 +02:00
|
|
|
core::{OuterViewPort, InnerViewPort, Observer},
|
2021-09-03 06:49:18 +02:00
|
|
|
singleton::{SingletonView, SingletonBuffer},
|
|
|
|
sequence::{SequenceView, SequenceViewExt},
|
|
|
|
index::buffer::IndexBuffer,
|
|
|
|
vec::VecBuffer,
|
|
|
|
terminal::{TerminalAtom, TerminalStyle, TerminalView, TerminalEvent, TerminalEditor, TerminalEditorResult, make_label},
|
|
|
|
tree_nav::{TreeNav, TreeNavResult, TerminalTreeEditor, TreeCursor},
|
|
|
|
list::{ListEditor, ListEditorStyle, sexpr::ListDecoration},
|
|
|
|
string_editor::CharEditor,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//<<<<>>>><<>><><<>><<<*>>><<>><><<>><<<<>>>>
|
|
|
|
|
|
|
|
pub struct ProcessArg {
|
|
|
|
editor: ListEditor< CharEditor,
|
|
|
|
Box<dyn Fn() -> Arc<RwLock<CharEditor>> + Send + Sync + 'static> >
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ProcessArg {
|
|
|
|
pub fn get_data_port(&self) -> OuterViewPort<dyn SequenceView<Item = char>> {
|
|
|
|
self.editor.get_data_port()
|
|
|
|
.map(
|
|
|
|
|char_editor| char_editor.read().unwrap().get_data_port().get_view().unwrap().get().unwrap()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TerminalEditor for ProcessArg {
|
|
|
|
fn get_term_view(&self) -> OuterViewPort<dyn TerminalView> {
|
|
|
|
self.editor
|
|
|
|
.get_seg_seq_view()
|
|
|
|
.to_grid_horizontal()
|
|
|
|
.flatten()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_terminal_event(&mut self, event: &TerminalEvent) -> TerminalEditorResult {
|
|
|
|
match event {
|
|
|
|
TerminalEvent::Input(Event::Key(Key::Char(' '))) |
|
|
|
|
TerminalEvent::Input(Event::Key(Key::Char('\n'))) => {
|
|
|
|
self.editor.up();
|
|
|
|
TerminalEditorResult::Exit
|
|
|
|
}
|
|
|
|
|
|
|
|
event => self.editor.handle_terminal_event(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TreeNav for ProcessArg {
|
|
|
|
fn get_cursor(&self) -> TreeCursor { self.editor.get_cursor() }
|
|
|
|
fn goto(&mut self, cur: TreeCursor) -> TreeNavResult { self.editor.goto(cur) }
|
|
|
|
fn goto_home(&mut self) -> TreeNavResult { self.editor.goto_home() }
|
|
|
|
fn goto_end(&mut self) -> TreeNavResult { self.editor.goto_end() }
|
|
|
|
fn pxev(&mut self) -> TreeNavResult { self.editor.pxev() }
|
|
|
|
fn nexd(&mut self) -> TreeNavResult { self.editor.nexd() }
|
|
|
|
fn up(&mut self) -> TreeNavResult { self.editor.up() }
|
|
|
|
fn dn(&mut self) -> TreeNavResult { self.editor.dn() }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ProcessLauncher {
|
|
|
|
editor: ListEditor< ProcessArg,
|
|
|
|
Box<dyn Fn() -> Arc<RwLock<ProcessArg>> + Send + Sync + 'static> >
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ProcessLauncher {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
ProcessLauncher {
|
|
|
|
editor: ListEditor::new(
|
|
|
|
Box::new(
|
|
|
|
|| {
|
|
|
|
Arc::new(RwLock::new(ProcessArg {
|
|
|
|
editor: ListEditor::new(
|
|
|
|
Box::new(
|
|
|
|
|| {
|
|
|
|
Arc::new(RwLock::new(CharEditor::new()))
|
|
|
|
}
|
|
|
|
),
|
|
|
|
ListEditorStyle::Plain)
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
),
|
|
|
|
ListEditorStyle::Plain
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-15 17:47:40 +02:00
|
|
|
pub fn launch_pty(&mut self, port: InnerViewPort<dyn TerminalView>) -> Option<crate::pty::PTY> {
|
2021-09-03 06:49:18 +02:00
|
|
|
self.up();
|
|
|
|
self.up();
|
2021-09-15 15:24:39 +02:00
|
|
|
|
2021-09-03 06:49:18 +02:00
|
|
|
let mut strings = Vec::new();
|
|
|
|
|
|
|
|
let v = self.editor.get_data_port().get_view().unwrap();
|
|
|
|
for i in 0 .. v.len().unwrap_or(0) {
|
|
|
|
let arg_view = v.get(&i).unwrap().read().unwrap().get_data_port().get_view().unwrap();
|
|
|
|
strings.push(arg_view.iter().collect::<String>());
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.len() > 0 {
|
2021-09-15 15:24:39 +02:00
|
|
|
// Spawn a shell into the pty
|
2021-09-15 17:47:40 +02:00
|
|
|
let mut cmd = crate::pty::CommandBuilder::new(strings[0].as_str());
|
2021-09-15 15:24:39 +02:00
|
|
|
cmd.args(&strings[1..]);
|
|
|
|
|
2021-09-15 17:47:40 +02:00
|
|
|
crate::pty::PTY::new(cmd, port)
|
2021-09-03 06:49:18 +02:00
|
|
|
} else {
|
2021-09-15 17:47:40 +02:00
|
|
|
None
|
2021-09-03 06:49:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TerminalEditor for ProcessLauncher {
|
|
|
|
fn get_term_view(&self) -> OuterViewPort<dyn TerminalView> {
|
|
|
|
self.editor
|
|
|
|
.get_seg_seq_view()
|
|
|
|
.decorate("$(", ")", " ", 0)
|
|
|
|
.to_grid_horizontal()
|
|
|
|
.flatten()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_terminal_event(&mut self, event: &TerminalEvent) -> TerminalEditorResult {
|
|
|
|
match event {
|
|
|
|
TerminalEvent::Input(Event::Key(Key::Char('\n'))) => {
|
|
|
|
// launch command
|
|
|
|
self.editor.up();
|
|
|
|
self.editor.up();
|
|
|
|
TerminalEditorResult::Exit
|
|
|
|
}
|
|
|
|
|
|
|
|
event => self.editor.handle_terminal_event(event)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TreeNav for ProcessLauncher {
|
|
|
|
fn get_cursor(&self) -> TreeCursor { self.editor.get_cursor() }
|
|
|
|
fn goto(&mut self, cur: TreeCursor) -> TreeNavResult { self.editor.goto(cur) }
|
|
|
|
fn goto_home(&mut self) -> TreeNavResult { self.editor.goto_home() }
|
|
|
|
fn goto_end(&mut self) -> TreeNavResult { self.editor.goto_end() }
|
|
|
|
fn pxev(&mut self) -> TreeNavResult { self.editor.pxev() }
|
|
|
|
fn nexd(&mut self) -> TreeNavResult { self.editor.nexd() }
|
|
|
|
fn up(&mut self) -> TreeNavResult { self.editor.up() }
|
|
|
|
fn dn(&mut self) -> TreeNavResult { self.editor.dn() }
|
|
|
|
}
|
|
|
|
|