// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. use rustyline; use crate::msg::ErrorKind; use std::error::Error; use crate::deno_dir::DenoDir; use crate::deno_error::new as deno_error; use crate::deno_error::DenoResult; use std::path::PathBuf; #[cfg(not(windows))] use rustyline::Editor; // Work around the issue that on Windows, `struct Editor` does not implement the // `Send` trait, because it embeds a windows HANDLE which is a type alias for // *mut c_void. This value isn't actually a pointer and there's nothing that // can be mutated through it, so hack around it. TODO: a prettier solution. #[cfg(windows)] use std::ops::{Deref, DerefMut}; #[cfg(windows)] struct Editor { inner: rustyline::Editor, } #[cfg(windows)] unsafe impl Send for Editor {} #[cfg(windows)] impl Editor { pub fn new() -> Editor { Editor { inner: rustyline::Editor::::new(), } } } #[cfg(windows)] impl Deref for Editor { type Target = rustyline::Editor; fn deref(&self) -> &rustyline::Editor { &self.inner } } #[cfg(windows)] impl DerefMut for Editor { fn deref_mut(&mut self) -> &mut rustyline::Editor { &mut self.inner } } pub struct Repl { editor: Editor<()>, history_file: PathBuf, } impl Repl { pub fn new(history_file: PathBuf) -> Self { let mut repl = Self { editor: Editor::<()>::new(), history_file, }; repl.load_history(); repl } fn load_history(&mut self) { debug!("Loading REPL history: {:?}", self.history_file); self .editor .load_history(&self.history_file.to_str().unwrap()) .map_err(|e| debug!("Unable to load history file: {:?} {}", self.history_file, e)) // ignore this error (e.g. it occurs on first load) .unwrap_or(()) } fn save_history(&mut self) -> DenoResult<()> { self .editor .save_history(&self.history_file.to_str().unwrap()) .map(|_| debug!("Saved REPL history to: {:?}", self.history_file)) .map_err(|e| { eprintln!("Unable to save REPL history: {:?} {}", self.history_file, e); deno_error(ErrorKind::Other, e.description().to_string()) }) } pub fn readline(&mut self, prompt: &str) -> DenoResult { self .editor .readline(&prompt) .map(|line| { self.editor.add_history_entry(line.clone()); line }).map_err(|e| deno_error(ErrorKind::Other, e.description().to_string())) // Forward error to TS side for processing } } impl Drop for Repl { fn drop(&mut self) { self.save_history().unwrap(); } } pub fn history_path(dir: &DenoDir, history_file: &str) -> PathBuf { let mut p: PathBuf = dir.root.clone(); p.push(history_file); p }