Merge branch 'origin/pipe-input'
This commit is contained in:
commit
b44799bef7
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -367,6 +367,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
name = "nvim-gtk"
|
name = "nvim-gtk"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"atty 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"cairo-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"cairo-rs 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"env_logger 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"env_logger 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"gdk 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"gdk 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -43,6 +43,8 @@ serde_derive = "1.0"
|
|||||||
toml = "0.4"
|
toml = "0.4"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
||||||
|
atty = "0.2"
|
||||||
|
|
||||||
#[dependencies.neovim-lib]
|
#[dependencies.neovim-lib]
|
||||||
#git = "https://github.com/daa84/neovim-lib"
|
#git = "https://github.com/daa84/neovim-lib"
|
||||||
|
|
||||||
|
34
src/main.rs
34
src/main.rs
@ -23,11 +23,12 @@ extern crate pango_sys;
|
|||||||
extern crate pangocairo;
|
extern crate pangocairo;
|
||||||
extern crate percent_encoding;
|
extern crate percent_encoding;
|
||||||
extern crate phf;
|
extern crate phf;
|
||||||
extern crate rmpv;
|
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
extern crate unicode_width;
|
extern crate rmpv;
|
||||||
extern crate unicode_segmentation;
|
extern crate unicode_segmentation;
|
||||||
|
extern crate unicode_width;
|
||||||
|
|
||||||
|
extern crate atty;
|
||||||
extern crate serde;
|
extern crate serde;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate serde_derive;
|
extern crate serde_derive;
|
||||||
@ -63,6 +64,8 @@ mod subscriptions;
|
|||||||
mod misc;
|
mod misc;
|
||||||
|
|
||||||
use std::env;
|
use std::env;
|
||||||
|
use std::io::Read;
|
||||||
|
use std::cell::RefCell;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use gio::prelude::*;
|
use gio::prelude::*;
|
||||||
@ -78,6 +81,8 @@ const DISABLE_WIN_STATE_RESTORE: &str = "--disable-win-restore";
|
|||||||
fn main() {
|
fn main() {
|
||||||
env_logger::init();
|
env_logger::init();
|
||||||
|
|
||||||
|
let input_data = RefCell::new(read_piped_input());
|
||||||
|
|
||||||
let app_flags = gio::ApplicationFlags::HANDLES_OPEN | gio::ApplicationFlags::NON_UNIQUE;
|
let app_flags = gio::ApplicationFlags::HANDLES_OPEN | gio::ApplicationFlags::NON_UNIQUE;
|
||||||
|
|
||||||
glib::set_program_name(Some("NeovimGtk"));
|
glib::set_program_name(Some("NeovimGtk"));
|
||||||
@ -88,12 +93,14 @@ fn main() {
|
|||||||
gtk::Application::new(Some("org.daa.NeovimGtk"), app_flags)
|
gtk::Application::new(Some("org.daa.NeovimGtk"), app_flags)
|
||||||
}.expect("Failed to initialize GTK application");
|
}.expect("Failed to initialize GTK application");
|
||||||
|
|
||||||
app.connect_activate(activate);
|
app.connect_activate(move |app| {
|
||||||
|
activate(app, input_data.replace(None))
|
||||||
|
});
|
||||||
app.connect_open(open);
|
app.connect_open(open);
|
||||||
|
|
||||||
let new_window_action = gio::SimpleAction::new("new-window", None);
|
let new_window_action = gio::SimpleAction::new("new-window", None);
|
||||||
let app_ref = app.clone();
|
let app_ref = app.clone();
|
||||||
new_window_action.connect_activate(move |_, _| activate(&app_ref));
|
new_window_action.connect_activate(move |_, _| activate(&app_ref, None));
|
||||||
app.add_action(&new_window_action);
|
app.add_action(&new_window_action);
|
||||||
|
|
||||||
gtk::Window::set_default_icon_name("org.daa.NeovimGtk");
|
gtk::Window::set_default_icon_name("org.daa.NeovimGtk");
|
||||||
@ -117,16 +124,18 @@ fn open(app: >k::Application, files: &[gio::File], _: &str) {
|
|||||||
nvim_bin_path(std::env::args()),
|
nvim_bin_path(std::env::args()),
|
||||||
files_list,
|
files_list,
|
||||||
nvim_timeout(std::env::args()),
|
nvim_timeout(std::env::args()),
|
||||||
|
None,
|
||||||
));
|
));
|
||||||
|
|
||||||
ui.init(app, !nvim_disable_win_state(std::env::args()));
|
ui.init(app, !nvim_disable_win_state(std::env::args()));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn activate(app: >k::Application) {
|
fn activate(app: >k::Application, input_data: Option<String>) {
|
||||||
let mut ui = Ui::new(ShellOptions::new(
|
let mut ui = Ui::new(ShellOptions::new(
|
||||||
nvim_bin_path(std::env::args()),
|
nvim_bin_path(std::env::args()),
|
||||||
Vec::new(),
|
Vec::new(),
|
||||||
nvim_timeout(std::env::args()),
|
nvim_timeout(std::env::args()),
|
||||||
|
input_data,
|
||||||
));
|
));
|
||||||
|
|
||||||
ui.init(app, !nvim_disable_win_state(std::env::args()));
|
ui.init(app, !nvim_disable_win_state(std::env::args()));
|
||||||
@ -165,6 +174,21 @@ where
|
|||||||
.unwrap_or(false)
|
.unwrap_or(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn read_piped_input() -> Option<String> {
|
||||||
|
if atty::isnt(atty::Stream::Stdin) {
|
||||||
|
let mut buf = String::new();
|
||||||
|
match std::io::stdin().read_to_string(&mut buf) {
|
||||||
|
Ok(_) => Some(buf),
|
||||||
|
Err(err) => {
|
||||||
|
error!("Error read stdin {}", err);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
@ -141,6 +141,7 @@ pub fn post_start_init(
|
|||||||
open_paths: Vec<String>,
|
open_paths: Vec<String>,
|
||||||
cols: u64,
|
cols: u64,
|
||||||
rows: u64,
|
rows: u64,
|
||||||
|
input_data: Option<String>,
|
||||||
) -> result::Result<(), NvimInitError> {
|
) -> result::Result<(), NvimInitError> {
|
||||||
nvim.borrow()
|
nvim.borrow()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
@ -170,6 +171,21 @@ pub fn post_start_init(
|
|||||||
.command_async(&command)
|
.command_async(&command)
|
||||||
.cb(|r| r.report_err())
|
.cb(|r| r.report_err())
|
||||||
.call();
|
.call();
|
||||||
|
} else {
|
||||||
|
if let Some(input_data) = input_data {
|
||||||
|
let mut nvim = nvim.borrow().unwrap();
|
||||||
|
let buf = nvim.get_current_buf().ok_and_report();
|
||||||
|
|
||||||
|
if let Some(buf) = buf {
|
||||||
|
buf.set_lines(
|
||||||
|
&mut *nvim,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
true,
|
||||||
|
input_data.lines().map(|l| l.to_owned()).collect(),
|
||||||
|
).report_err();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
28
src/shell.rs
28
src/shell.rs
@ -495,6 +495,7 @@ pub struct ShellOptions {
|
|||||||
nvim_bin_path: Option<String>,
|
nvim_bin_path: Option<String>,
|
||||||
open_paths: Vec<String>,
|
open_paths: Vec<String>,
|
||||||
timeout: Option<Duration>,
|
timeout: Option<Duration>,
|
||||||
|
input_data: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ShellOptions {
|
impl ShellOptions {
|
||||||
@ -502,13 +503,25 @@ impl ShellOptions {
|
|||||||
nvim_bin_path: Option<String>,
|
nvim_bin_path: Option<String>,
|
||||||
open_paths: Vec<String>,
|
open_paths: Vec<String>,
|
||||||
timeout: Option<Duration>,
|
timeout: Option<Duration>,
|
||||||
|
input_data: Option<String>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
ShellOptions {
|
ShellOptions {
|
||||||
nvim_bin_path,
|
nvim_bin_path,
|
||||||
open_paths,
|
open_paths,
|
||||||
timeout,
|
timeout,
|
||||||
|
input_data,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// remove input data from original
|
||||||
|
// shell option, as it need to be used only once
|
||||||
|
pub fn take(&mut self) -> Self {
|
||||||
|
let input_data = self.input_data.take();
|
||||||
|
let mut clone = self.clone();
|
||||||
|
clone.input_data = input_data;
|
||||||
|
|
||||||
|
clone
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Shell {
|
pub struct Shell {
|
||||||
@ -1044,7 +1057,13 @@ fn init_nvim_async(
|
|||||||
});
|
});
|
||||||
|
|
||||||
// attach ui
|
// attach ui
|
||||||
if let Err(err) = nvim::post_start_init(nvim, options.open_paths, cols as u64, rows as u64) {
|
if let Err(err) = nvim::post_start_init(
|
||||||
|
nvim,
|
||||||
|
options.open_paths,
|
||||||
|
cols as u64,
|
||||||
|
rows as u64,
|
||||||
|
options.input_data,
|
||||||
|
) {
|
||||||
show_nvim_init_error(&err, state_arc.clone());
|
show_nvim_init_error(&err, state_arc.clone());
|
||||||
} else {
|
} else {
|
||||||
set_nvim_initialized(state_arc);
|
set_nvim_initialized(state_arc);
|
||||||
@ -1142,7 +1161,7 @@ fn init_nvim(state_ref: &Arc<UiMutex<State>>) {
|
|||||||
|
|
||||||
let state_arc = state_ref.clone();
|
let state_arc = state_ref.clone();
|
||||||
let nvim_handler = NvimHandler::new(state_ref.clone());
|
let nvim_handler = NvimHandler::new(state_ref.clone());
|
||||||
let options = state.options.clone();
|
let options = state.options.take();
|
||||||
thread::spawn(move || init_nvim_async(state_arc, nvim_handler, options, cols, rows));
|
thread::spawn(move || init_nvim_async(state_arc, nvim_handler, options, cols, rows));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1157,7 +1176,10 @@ impl State {
|
|||||||
|
|
||||||
pub fn on_put(&mut self, text: String) -> RepaintMode {
|
pub fn on_put(&mut self, text: String) -> RepaintMode {
|
||||||
let double_width = text.is_empty();
|
let double_width = text.is_empty();
|
||||||
RepaintMode::Area(self.model.put(Some(text), double_width, self.cur_attrs.as_ref()))
|
RepaintMode::Area(
|
||||||
|
self.model
|
||||||
|
.put(Some(text), double_width, self.cur_attrs.as_ref()),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn on_clear(&mut self) -> RepaintMode {
|
pub fn on_clear(&mut self) -> RepaintMode {
|
||||||
|
Loading…
Reference in New Issue
Block a user