Skip to content
Snippets Groups Projects
lib.rs 36.5 KiB
Newer Older
gwenn's avatar
gwenn committed
//! Readline for Rust
Main's avatar
Main committed
//!
gwenn's avatar
gwenn committed
//! This implementation is based on [Antirez's Linenoise](https://github.com/antirez/linenoise)
Main's avatar
Main committed
//!
gwenn's avatar
gwenn committed
//! # Example
Main's avatar
Main committed
//!
gwenn's avatar
gwenn committed
//! Usage
Main's avatar
Main committed
//!
gwenn's avatar
gwenn committed
//! ```
//! let mut rl = rustyline::Editor::new();
//! let readline = rl.readline(">> ");
//! match readline {
Main's avatar
Main committed
//!     Ok(line) => println!("Line: {:?}",line),
//!     Err(_)   => println!("No input"),
//! }
gwenn's avatar
gwenn committed
//! ```
#![feature(iter_arith)]
gwenn's avatar
gwenn committed
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]

extern crate libc;
extern crate unicode_width;
#[allow(non_camel_case_types)]
mod consts;
pub mod error;
pub mod history;
gwenn's avatar
gwenn committed
mod kill_ring;
gwenn's avatar
gwenn committed
pub mod line_buffer;
use std::fmt;
gwenn's avatar
gwenn committed
use std::io::{self, Read, Write};
gwenn's avatar
gwenn committed
use std::mem;
use std::result;
gwenn's avatar
gwenn committed
use std::sync;
use std::sync::atomic;
use nix::errno::Errno;
gwenn's avatar
gwenn committed
use nix::sys::signal;
use nix::sys::termios;
use completion::Completer;
use consts::{KeyPress, char_to_key_press};
use history::History;
gwenn's avatar
gwenn committed
use line_buffer::{LineBuffer, WordAction, MAX_LINE};
gwenn's avatar
gwenn committed
use kill_ring::KillRing;
/// The error type for I/O and Linux Syscalls (Errno)
pub type Result<T> = result::Result<T, error::ReadlineError>;

// Represent the state during line editing.
struct State<'out, 'prompt> {
    out: &'out mut Write,
    prompt: &'prompt str, // Prompt to display
gwenn's avatar
gwenn committed
    prompt_size: Position, // Prompt Unicode width and height
gwenn's avatar
gwenn committed
    line: LineBuffer, // Edited line buffer
gwenn's avatar
gwenn committed
    cursor: Position, // Cursor position (relative to the start of the prompt for `row`)
    cols: usize, // Number of columns in terminal
    history_index: usize, // The history index we are currently editing.
gwenn's avatar
gwenn committed
    snapshot: LineBuffer, // Current edited line before history browsing/completion
gwenn's avatar
gwenn committed
#[derive(Copy, Clone, Debug, Default)]
struct Position {
    col: usize,
    row: usize,
impl<'out, 'prompt> State<'out, 'prompt> {
gwenn's avatar
gwenn committed
    fn new(out: &'out mut Write,
           prompt: &'prompt str,
           capacity: usize,
           cols: usize,
           history_index: usize)
           -> State<'out, 'prompt> {
gwenn's avatar
gwenn committed
        let prompt_size = calculate_position(prompt, Default::default(), cols);
        State {
            out: out,
            prompt: prompt,
gwenn's avatar
gwenn committed
            prompt_size: prompt_size,
gwenn's avatar
gwenn committed
            line: LineBuffer::with_capacity(capacity),
gwenn's avatar
gwenn committed
            cursor: prompt_size,
            cols: cols,
            history_index: history_index,
gwenn's avatar
gwenn committed
            snapshot: LineBuffer::with_capacity(capacity),
gwenn's avatar
gwenn committed
    fn snapshot(&mut self) {
gwenn's avatar
gwenn committed
        mem::swap(&mut self.line, &mut self.snapshot);
gwenn's avatar
gwenn committed
    }
gwenn's avatar
gwenn committed
    fn backup(&mut self) {
gwenn's avatar
gwenn committed
        self.snapshot.backup(&self.line);
gwenn's avatar
gwenn committed
    }
    /// Rewrite the currently edited line accordingly to the buffer content,
    /// cursor position, and number of columns of the terminal.
    fn refresh_line(&mut self) -> Result<()> {
gwenn's avatar
gwenn committed
        let prompt_size = self.prompt_size;
        self.refresh(self.prompt, prompt_size)
    }

    fn refresh_prompt_and_line(&mut self, prompt: &str) -> Result<()> {
gwenn's avatar
gwenn committed
        let prompt_size = calculate_position(prompt, Default::default(), self.cols);
        self.refresh(prompt, prompt_size)
gwenn's avatar
gwenn committed
    fn refresh(&mut self, prompt: &str, prompt_size: Position) -> Result<()> {
        use std::fmt::Write;

gwenn's avatar
gwenn committed
        let end_pos = calculate_position(&self.line, prompt_size, self.cols);
        let cursor = calculate_position(&self.line[..self.line.pos()], prompt_size, self.cols);

        let mut ab = String::new();
gwenn's avatar
gwenn committed
        let cursor_row_movement = self.cursor.row - self.prompt_size.row;
        // move the cursor up as required
        if cursor_row_movement > 0 {
gwenn's avatar
gwenn committed
            write!(ab, "\x1b[{}A", cursor_row_movement).unwrap();
gwenn's avatar
gwenn committed
        // position at the start of the prompt, clear to end of screen
        ab.push_str("\r\x1b[J");
        // display the prompt
        ab.push_str(prompt);
gwenn's avatar
gwenn committed
        // display the input line
gwenn's avatar
gwenn committed
        ab.push_str(&self.line);
gwenn's avatar
gwenn committed
        // we have to generate our own newline on line wrap
        if end_pos.col == 0 && end_pos.row > 0 {
            ab.push_str("\n");
gwenn's avatar
gwenn committed
        // position the cursor
        let cursor_row_movement = end_pos.row - cursor.row;
        // move the cursor up as required
        if cursor_row_movement > 0 {
gwenn's avatar
gwenn committed
            write!(ab, "\x1b[{}A", cursor_row_movement).unwrap();
gwenn's avatar
gwenn committed
        // position the cursor within the line
        if cursor.col > 0 {
gwenn's avatar
gwenn committed
            write!(ab, "\r\x1b[{}C", cursor.col).unwrap();
        } else {
            ab.push('\r');
        }

gwenn's avatar
gwenn committed
        self.cursor = cursor;
        write_and_flush(self.out, ab.as_bytes())
    }
impl<'out, 'prompt> fmt::Debug for State<'out, 'prompt> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("State")
gwenn's avatar
gwenn committed
         .field("prompt", &self.prompt)
gwenn's avatar
gwenn committed
         .field("prompt_size", &self.prompt_size)
gwenn's avatar
gwenn committed
         .field("buf", &self.line)
gwenn's avatar
gwenn committed
         .field("cursor", &self.cursor)
gwenn's avatar
gwenn committed
         .field("cols", &self.cols)
         .field("history_index", &self.history_index)
gwenn's avatar
gwenn committed
         .field("snapshot", &self.snapshot)
gwenn's avatar
gwenn committed
         .finish()
Main's avatar
Main committed
/// Unsupported Terminals that don't support RAW mode
gwenn's avatar
gwenn committed
static UNSUPPORTED_TERM: [&'static str; 3] = ["dumb", "cons25", "emacs"];
gwenn's avatar
gwenn committed
/// Check to see if `fd` is a TTY
fn is_a_tty(fd: libc::c_int) -> bool {
    unsafe { libc::isatty(fd) != 0 }
Main's avatar
Main committed
/// Check to see if the current `TERM` is unsupported
fn is_unsupported_term() -> bool {
    use std::ascii::AsciiExt;
    match std::env::var("TERM") {
            let mut unsupported = false;
            for iter in &UNSUPPORTED_TERM {
                unsupported = (*iter).eq_ignore_ascii_case(&term)
gwenn's avatar
gwenn committed
        Err(_) => false,
fn from_errno(errno: Errno) -> error::ReadlineError {
    error::ReadlineError::from(nix::Error::from_errno(errno))
}

Main's avatar
Main committed
/// Enable raw mode for the TERM
fn enable_raw_mode() -> Result<termios::Termios> {
gwenn's avatar
gwenn committed
    use nix::sys::termios::{BRKINT, ICRNL, INPCK, ISTRIP, IXON, OPOST, CS8, ECHO, ICANON, IEXTEN,
                            ISIG, VMIN, VTIME};
gwenn's avatar
gwenn committed
    if !is_a_tty(libc::STDIN_FILENO) {
gwenn's avatar
gwenn committed
        return Err(from_errno(Errno::ENOTTY));
gwenn's avatar
gwenn committed
    let original_term = try!(termios::tcgetattr(libc::STDIN_FILENO));
    let mut raw = original_term;
    raw.c_iflag = raw.c_iflag & !(BRKINT | ICRNL | INPCK | ISTRIP | IXON); // disable BREAK interrupt, CR to NL conversion on input, input parity check, strip high bit (bit 8), output flow control
    raw.c_oflag = raw.c_oflag & !(OPOST); // disable all output processing
    raw.c_cflag = raw.c_cflag | (CS8); // character-size mark (8 bits)
    raw.c_lflag = raw.c_lflag & !(ECHO | ICANON | IEXTEN | ISIG); // disable echoing, canonical mode, extended input processing and signals
    raw.c_cc[VMIN] = 1; // One character-at-a-time input
    raw.c_cc[VTIME] = 0; // with blocking read
    try!(termios::tcsetattr(libc::STDIN_FILENO, termios::TCSAFLUSH, &raw));
    Ok(original_term)
Main's avatar
Main committed
/// Disable Raw mode for the term
fn disable_raw_mode(original_termios: termios::Termios) -> Result<()> {
gwenn's avatar
gwenn committed
    try!(termios::tcsetattr(libc::STDIN_FILENO, termios::TCSAFLUSH, &original_termios));
#[cfg(any(target_os = "macos", target_os = "freebsd"))]
const TIOCGWINSZ: libc::c_ulong = 0x40087468;

#[cfg(any(target_os = "linux", target_os = "android"))]
const TIOCGWINSZ: libc::c_ulong = 0x5413;

/// Try to get the number of columns in the current terminal,
/// or assume 80 if it fails.
#[cfg(any(target_os = "linux",
          target_os = "android",
          target_os = "macos",
          target_os = "freebsd"))]
fn get_columns() -> usize {
    use std::mem::zeroed;
    use libc::c_ushort;

    unsafe {
        #[repr(C)]
        struct winsize {
            ws_row: c_ushort,
            ws_col: c_ushort,
            ws_xpixel: c_ushort,
gwenn's avatar
gwenn committed
            ws_ypixel: c_ushort,
        }

        let mut size: winsize = zeroed();
        match libc::ioctl(libc::STDOUT_FILENO, TIOCGWINSZ, &mut size) {
            0 => size.ws_col as usize, // TODO getCursorPosition
            _ => 80,
fn write_and_flush(w: &mut Write, buf: &[u8]) -> Result<()> {
    try!(w.write_all(buf));
    try!(w.flush());
/// Clear the screen. Used to handle ctrl+l
fn clear_screen(out: &mut Write) -> Result<()> {
    write_and_flush(out, b"\x1b[H\x1b[2J")
}

/// Beep, used for completion when there is nothing to complete or when all
/// the choices were already shown.
fn beep() -> Result<()> {
    write_and_flush(&mut io::stderr(), b"\x07") // TODO bell-style
gwenn's avatar
gwenn committed
/// Calculate the number of columns and rows used to display `s` on a `cols` width terminal
/// starting at `orig`.
/// Control characters are treated as having zero width.
/// Characters with 2 column width are correctly handled (not splitted).
#[cfg_attr(feature="clippy", allow(if_same_then_else))]
gwenn's avatar
gwenn committed
fn calculate_position(s: &str, orig: Position, cols: usize) -> Position {
gwenn's avatar
gwenn committed
    let mut esc_seq = 0;
    for c in s.chars() {
        let cw = if esc_seq == 1 {
            if c == '[' {
                // CSI
                esc_seq = 2;
gwenn's avatar
gwenn committed
                // two-character sequence
                esc_seq = 0;
            }
            None
        } else if esc_seq == 2 {
            if c == ';' || (c >= '0' && c <= '9') {
            } else if c == 'm' {
                // last
                esc_seq = 0;
gwenn's avatar
gwenn committed
                // not supported
                esc_seq = 0;
            }
            None
        } else if c == '\x1b' {
            esc_seq = 1;
            None
        } else if c == '\n' {
            pos.col = 0;
            pos.row += 1;
            None
        } else {
            unicode_width::UnicodeWidthChar::width(c)
        };
        if let Some(cw) = cw {
            pos.col += cw;
            if pos.col > cols {
                pos.row += 1;
                pos.col = cw;
gwenn's avatar
gwenn committed
    if pos.col == cols {
        pos.col = 0;
        pos.row += 1;
    }
    pos
/// Insert the character `ch` at cursor current position.
fn edit_insert(s: &mut State, ch: char) -> Result<()> {
gwenn's avatar
gwenn committed
    if let Some(push) = s.line.insert(ch) {
        if push {
gwenn's avatar
gwenn committed
            if s.cursor.col + unicode_width::UnicodeWidthChar::width(ch).unwrap_or(0) < s.cols {
                // Avoid a full update of the line in the trivial case.
gwenn's avatar
gwenn committed
                let bits = ch.encode_utf8();
                let bits = bits.as_slice();
                write_and_flush(s.out, bits)
                s.refresh_line()
            s.refresh_line()
gwenn's avatar
gwenn committed
// Yank/paste `text` at current position.
gwenn's avatar
gwenn committed
fn edit_yank(s: &mut State, text: &str) -> Result<()> {
gwenn's avatar
gwenn committed
    if let Some(_) = s.line.yank(text) {
        s.refresh_line()
gwenn's avatar
gwenn committed
        Ok(())
gwenn's avatar
gwenn committed
    }
}

gwenn's avatar
gwenn committed
// Delete previously yanked text and yank/paste `text` at current position.
gwenn's avatar
gwenn committed
fn edit_yank_pop(s: &mut State, yank_size: usize, text: &str) -> Result<()> {
gwenn's avatar
gwenn committed
    s.line.yank_pop(yank_size, text);
gwenn's avatar
gwenn committed
    edit_yank(s, text)
}

/// Move cursor on the left.
fn edit_move_left(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.move_left() {
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Move cursor on the right.
fn edit_move_right(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.move_right() {
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Move cursor to the start of the line.
fn edit_move_home(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.move_home() {
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Move cursor to the end of the line.
fn edit_move_end(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.move_end() {
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Delete the character at the right of the cursor without altering the cursor
/// position. Basically this is what happens with the "Delete" keyboard key.
fn edit_delete(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.delete() {
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Backspace implementation.
fn edit_backspace(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.backspace() {
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Kill the text from point to the end of the line.
gwenn's avatar
gwenn committed
fn edit_kill_line(s: &mut State) -> Result<Option<String>> {
gwenn's avatar
gwenn committed
    if let Some(text) = s.line.kill_line() {
gwenn's avatar
gwenn committed
        try!(s.refresh_line());
        Ok(Some(text))
gwenn's avatar
gwenn committed
        Ok(None)
    }
}

/// Kill backward from point to the beginning of the line.
gwenn's avatar
gwenn committed
fn edit_discard_line(s: &mut State) -> Result<Option<String>> {
gwenn's avatar
gwenn committed
    if let Some(text) = s.line.discard_line() {
gwenn's avatar
gwenn committed
        try!(s.refresh_line());
        Ok(Some(text))
gwenn's avatar
gwenn committed
        Ok(None)
    }
}

/// Exchange the char before cursor with the character at cursor.
fn edit_transpose_chars(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.transpose_chars() {
        s.refresh_line()
gwenn's avatar
gwenn committed
fn edit_move_to_prev_word(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.move_to_prev_word() {
gwenn's avatar
gwenn committed
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Delete the previous word, maintaining the cursor at the start of the
/// current word.
fn edit_delete_prev_word<F>(s: &mut State, test: F) -> Result<Option<String>>
    where F: Fn(char) -> bool
{
gwenn's avatar
gwenn committed
    if let Some(text) = s.line.delete_prev_word(test) {
gwenn's avatar
gwenn committed
        try!(s.refresh_line());
        Ok(Some(text))
gwenn's avatar
gwenn committed
        Ok(None)
gwenn's avatar
gwenn committed
fn edit_move_to_next_word(s: &mut State) -> Result<()> {
gwenn's avatar
gwenn committed
    if s.line.move_to_next_word() {
gwenn's avatar
gwenn committed
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Kill from the cursor to the end of the current word, or, if between words, to the end of the next word.
fn edit_delete_word(s: &mut State) -> Result<Option<String>> {
gwenn's avatar
gwenn committed
    if let Some(text) = s.line.delete_word() {
gwenn's avatar
gwenn committed
        try!(s.refresh_line());
        Ok(Some(text))
    } else {
        Ok(None)
    }
}

gwenn's avatar
gwenn committed
fn edit_word(s: &mut State, a: WordAction) -> Result<()> {
    if s.line.edit_word(a) {
gwenn's avatar
gwenn committed
        s.refresh_line()
    } else {
        Ok(())
    }
}

/// Substitute the currently edited line with the next or previous history
/// entry.
fn edit_history_next(s: &mut State, history: &History, prev: bool) -> Result<()> {
gwenn's avatar
gwenn committed
    if history.is_empty() {
        return Ok(());
    }
    if s.history_index == history.len() {
        if prev {
gwenn's avatar
gwenn committed
            // Save the current edited line before to overwrite it
gwenn's avatar
gwenn committed
            s.snapshot();
        } else {
gwenn's avatar
gwenn committed
            return Ok(());
gwenn's avatar
gwenn committed
    } else if s.history_index == 0 && prev {
        return Ok(());
    }
    if prev {
        s.history_index -= 1;
    } else {
gwenn's avatar
gwenn committed
        s.history_index += 1;
gwenn's avatar
gwenn committed
    if s.history_index < history.len() {
        let buf = history.get(s.history_index).unwrap();
gwenn's avatar
gwenn committed
        s.line.update(buf, buf.len());
gwenn's avatar
gwenn committed
    } else {
        // Restore current edited line
        s.snapshot();
gwenn's avatar
gwenn committed
    };
    s.refresh_line()
/// Completes the line/word
gwenn's avatar
gwenn committed
fn complete_line<R: io::Read>(chars: &mut io::Chars<R>,
                              s: &mut State,
                              completer: &Completer)
                              -> Result<Option<char>> {
gwenn's avatar
gwenn committed
    let (start, candidates) = try!(completer.complete(&s.line, s.line.pos()));
    if candidates.is_empty() {
        try!(beep());
        Ok(None)
    } else {
        // Save the current edited line before to overwrite it
        s.backup();
        let mut ch;
        let mut i = 0;
        loop {
            // Show completion or original buffer
            if i < candidates.len() {
                completer.update(&mut s.line, start, &candidates[i]);
                try!(s.refresh_line());
                // Restore current edited line
                s.snapshot();
                try!(s.refresh_line());
                s.snapshot();
            }

            ch = try!(chars.next().unwrap());
            let key = char_to_key_press(ch);
            match key {
                KeyPress::TAB => {
gwenn's avatar
gwenn committed
                    i = (i + 1) % (candidates.len() + 1); // Circular
                    if i == candidates.len() {
                        try!(beep());
                    }
gwenn's avatar
gwenn committed
                }
                KeyPress::ESC => {
                    // Re-show original buffer
                    s.snapshot();
                    if i < candidates.len() {
                        try!(s.refresh_line());
gwenn's avatar
gwenn committed
                    return Ok(None);
                }
                _ => {
                    break;
/// Incremental search
gwenn's avatar
gwenn committed
#[cfg_attr(feature="clippy", allow(if_not_else))]
gwenn's avatar
gwenn committed
fn reverse_incremental_search<R: io::Read>(chars: &mut io::Chars<R>,
                                           s: &mut State,
                                           history: &History)
                                           -> Result<Option<KeyPress>> {
    // Save the current edited line (and cursor position) before to overwrite it
gwenn's avatar
gwenn committed
    s.snapshot();

    let mut search_buf = String::new();
    let mut history_idx = history.len() - 1;
    let mut success = true;

    let mut ch;
    let mut key;
    // Display the reverse-i-search prompt and process chars
    loop {
gwenn's avatar
gwenn committed
        let prompt = if success {
            format!("(reverse-i-search)`{}': ", search_buf)
        } else {
            format!("(failed reverse-i-search)`{}': ", search_buf)
        };
        try!(s.refresh_prompt_and_line(&prompt));

        ch = try!(chars.next().unwrap());
        if !ch.is_control() {
            search_buf.push(ch);
        } else {
            key = char_to_key_press(ch);
            if key == KeyPress::ESC {
                key = try!(escape_sequence(chars));
            }
            match key {
                KeyPress::CTRL_H | KeyPress::BACKSPACE => {
                    search_buf.pop();
gwenn's avatar
gwenn committed
                    continue;
                }
                KeyPress::CTRL_R => {
                    if history_idx > 0 {
                        history_idx -= 1;
                    } else {
                        success = false;
                        continue;
                    }
gwenn's avatar
gwenn committed
                }
                KeyPress::CTRL_G => {
gwenn's avatar
gwenn committed
                    // Restore current edited line (before search)
                    s.snapshot();
                    try!(s.refresh_line());
gwenn's avatar
gwenn committed
                    return Ok(None);
                }
                _ => break,
            }
        }
        success = match history.search(&search_buf, history_idx, true) {
            Some(idx) => {
                history_idx = idx;
                let entry = history.get(idx).unwrap();
gwenn's avatar
gwenn committed
                let pos = entry.find(&search_buf).unwrap();
gwenn's avatar
gwenn committed
                s.line.update(entry, pos);
gwenn's avatar
gwenn committed
            _ => false,
        };
    }
    Ok(Some(key))
}

fn escape_sequence<R: io::Read>(chars: &mut io::Chars<R>) -> Result<KeyPress> {
    // Read the next two bytes representing the escape sequence.
    let seq1 = try!(chars.next().unwrap());
gwenn's avatar
gwenn committed
    if seq1 == '[' {
        // ESC [ sequences.
        let seq2 = try!(chars.next().unwrap());
gwenn's avatar
gwenn committed
        if seq2.is_digit(10) {
            // Extended escape, read additional byte.
            let seq3 = try!(chars.next().unwrap());
            if seq3 == '~' {
                match seq2 {
                    '3' => Ok(KeyPress::ESC_SEQ_DELETE),
                    // TODO '1' // Home
                    // TODO '4' // End
                    _ => Ok(KeyPress::UNKNOWN_ESC_SEQ),
                }
            } else {
                Ok(KeyPress::UNKNOWN_ESC_SEQ)
            }
        } else {
            match seq2 {
                'A' => Ok(KeyPress::CTRL_P), // Up
                'B' => Ok(KeyPress::CTRL_N), // Down
                'C' => Ok(KeyPress::CTRL_F), // Right
                'D' => Ok(KeyPress::CTRL_B), // Left
                'F' => Ok(KeyPress::CTRL_E), // End
                'H' => Ok(KeyPress::CTRL_A), // Home
gwenn's avatar
gwenn committed
                _ => Ok(KeyPress::UNKNOWN_ESC_SEQ),
gwenn's avatar
gwenn committed
    } else if seq1 == 'O' {
        // ESC O sequences.
        let seq2 = try!(chars.next().unwrap());
        match seq2 {
            'F' => Ok(KeyPress::CTRL_E),
            'H' => Ok(KeyPress::CTRL_A),
gwenn's avatar
gwenn committed
            _ => Ok(KeyPress::UNKNOWN_ESC_SEQ),
        }
    } else {
        // TODO ESC-N (n): search history forward not interactively
        // TODO ESC-P (p): search history backward not interactively
        // TODO ESC-R (r): Undo all changes made to this line.
        // TODO EST-T (t): transpose words
        // TODO ESC-<: move to first entry in history
        // TODO ESC->: move to last entry in history
gwenn's avatar
gwenn committed
        match seq1 {
gwenn's avatar
gwenn committed
            'b' | 'B' => Ok(KeyPress::ESC_B),
            'c' | 'C' => Ok(KeyPress::ESC_C),
gwenn's avatar
gwenn committed
            'd' | 'D' => Ok(KeyPress::ESC_D),
gwenn's avatar
gwenn committed
            'f' | 'F' => Ok(KeyPress::ESC_F),
            'l' | 'L' => Ok(KeyPress::ESC_L),
            'u' | 'U' => Ok(KeyPress::ESC_U),
gwenn's avatar
gwenn committed
            'y' | 'Y' => Ok(KeyPress::ESC_Y),
gwenn's avatar
gwenn committed
            '\x08' | '\x7f' => Ok(KeyPress::ESC_BACKSPACE),
gwenn's avatar
gwenn committed
            _ => {
                writeln!(io::stderr(), "key: {:?}, seq1, {:?}", KeyPress::ESC, seq1).unwrap();
                Ok(KeyPress::UNKNOWN_ESC_SEQ)
            }
        }
Main's avatar
Main committed
/// Handles reading and editting the readline buffer.
/// It will also handle special inputs in an appropriate fashion
/// (e.g., C-c will exit readline)
gwenn's avatar
gwenn committed
#[cfg_attr(feature="clippy", allow(cyclomatic_complexity))]
gwenn's avatar
gwenn committed
fn readline_edit(prompt: &str,
                 history: &mut History,
gwenn's avatar
gwenn committed
                 completer: Option<&Completer>,
gwenn's avatar
gwenn committed
                 kill_ring: &mut KillRing,
                 original_termios: termios::Termios)
gwenn's avatar
gwenn committed
                 -> Result<String> {
    let mut stdout = io::stdout();
    try!(write_and_flush(&mut stdout, prompt.as_bytes()));

gwenn's avatar
gwenn committed
    kill_ring.reset();
    let mut s = State::new(&mut stdout, prompt, MAX_LINE, get_columns(), history.len());
    let stdin = io::stdin();
    let mut chars = stdin.lock().chars();
gwenn's avatar
gwenn committed
        let c = chars.next().unwrap();
        if c.is_err() && SIGWINCH.compare_and_swap(true, false, atomic::Ordering::SeqCst) {
            s.cols = get_columns();
            try!(s.refresh_line());
            continue;
        }
        let mut ch = try!(c);
        if !ch.is_control() {
gwenn's avatar
gwenn committed
            kill_ring.reset();
            try!(edit_insert(&mut s, ch));
            continue;
        }

        let mut key = char_to_key_press(ch);
        // autocomplete
        if key == KeyPress::TAB && completer.is_some() {
            let next = try!(complete_line(&mut chars, &mut s, completer.unwrap()));
            if next.is_some() {
gwenn's avatar
gwenn committed
                kill_ring.reset();
Gwenael Treguier's avatar
Gwenael Treguier committed
                ch = next.unwrap();
                if !ch.is_control() {
                    try!(edit_insert(&mut s, ch));
                    continue;
                }
Gwenael Treguier's avatar
Gwenael Treguier committed
                key = char_to_key_press(ch);
gwenn's avatar
gwenn committed
        } else if key == KeyPress::CTRL_R {
            // Search history backward
            let next = try!(reverse_incremental_search(&mut chars, &mut s, history));
            if next.is_some() {
                key = next.unwrap();
gwenn's avatar
gwenn committed
            } else {
gwenn's avatar
gwenn committed
            }
        } else if key == KeyPress::ESC {
            // escape sequence
            key = try!(escape_sequence(&mut chars));
            if key == KeyPress::UNKNOWN_ESC_SEQ {
                continue;
            }
gwenn's avatar
gwenn committed
            KeyPress::CTRL_A => {
                kill_ring.reset();
                // Move to the beginning of line.
                try!(edit_move_home(&mut s))
            }
            KeyPress::CTRL_B => {
                kill_ring.reset();
                // Move back a character.
                try!(edit_move_left(&mut s))
            }
            KeyPress::CTRL_C => {
                kill_ring.reset();
                return Err(error::ReadlineError::Interrupted);
            }
            KeyPress::CTRL_D => {
gwenn's avatar
gwenn committed
                kill_ring.reset();
gwenn's avatar
gwenn committed
                if s.line.is_empty() {
gwenn's avatar
gwenn committed
                    return Err(error::ReadlineError::Eof);
                } else {
gwenn's avatar
gwenn committed
                    // Delete (forward) one character at point.
                    try!(edit_delete(&mut s))
gwenn's avatar
gwenn committed
            }
gwenn's avatar
gwenn committed
            KeyPress::CTRL_E => {
                kill_ring.reset();
                // Move to the end of line.
                try!(edit_move_end(&mut s))
            }
            KeyPress::CTRL_F => {
                kill_ring.reset();
                // Move forward a character.
                try!(edit_move_right(&mut s))
            }
            KeyPress::CTRL_H | KeyPress::BACKSPACE => {
                kill_ring.reset();
                // Delete one character backward.
                try!(edit_backspace(&mut s))
            }
            KeyPress::CTRL_K => {
                // Kill the text from point to the end of the line.
gwenn's avatar
gwenn committed
                if let Some(text) = try!(edit_kill_line(&mut s)) {
                    kill_ring.kill(&text, true)
gwenn's avatar
gwenn committed
                }
            }
gwenn's avatar
gwenn committed
            KeyPress::CTRL_L => {
                // Clear the screen leaving the current line at the top of the screen.
                try!(clear_screen(s.out));
                try!(s.refresh_line())
gwenn's avatar
gwenn committed
            }
            KeyPress::CTRL_N => {
gwenn's avatar
gwenn committed
                kill_ring.reset();
gwenn's avatar
gwenn committed
                // Fetch the next command from the history list.
                try!(edit_history_next(&mut s, history, false))
gwenn's avatar
gwenn committed
            }
            KeyPress::CTRL_P => {
gwenn's avatar
gwenn committed
                kill_ring.reset();
gwenn's avatar
gwenn committed
                // Fetch the previous command from the history list.
                try!(edit_history_next(&mut s, history, true))
gwenn's avatar
gwenn committed
            }
gwenn's avatar
gwenn committed
            KeyPress::CTRL_T => {
                kill_ring.reset();
                // Exchange the char before cursor with the character at cursor.
                try!(edit_transpose_chars(&mut s))
            }
            KeyPress::CTRL_U => {
                // Kill backward from point to the beginning of the line.
gwenn's avatar
gwenn committed
                if let Some(text) = try!(edit_discard_line(&mut s)) {
                    kill_ring.kill(&text, false)
gwenn's avatar
gwenn committed
                }
            }
            // TODO CTRL_V // Quoted insert
gwenn's avatar
gwenn committed
            KeyPress::CTRL_W => {
                // Kill the word behind point, using white space as a word boundary
gwenn's avatar
gwenn committed
                if let Some(text) = try!(edit_delete_prev_word(&mut s, char::is_whitespace)) {
gwenn's avatar
gwenn committed
                    kill_ring.kill(&text, false)
gwenn's avatar
gwenn committed
                }
            }
            KeyPress::CTRL_Y => {
                // retrieve (yank) last item killed
gwenn's avatar
gwenn committed
                if let Some(text) = kill_ring.yank() {
                    try!(edit_yank(&mut s, text))
gwenn's avatar
gwenn committed
                }
            }
gwenn's avatar
gwenn committed
            KeyPress::CTRL_Z => {
                try!(disable_raw_mode(original_termios));
                try!(signal::raise(signal::SIGSTOP));
                try!(enable_raw_mode()); // TODO original_termios may have changed
                try!(s.refresh_line())
            }
            // TODO CTRL-_ // undo
            KeyPress::ENTER | KeyPress::CTRL_J => {
                // Accept the line regardless of where the cursor is.
                kill_ring.reset();
                try!(edit_move_end(&mut s));
                break;
            }
gwenn's avatar
gwenn committed
            KeyPress::ESC_BACKSPACE => {
                // kill one word backward
                // Kill from the cursor the start of the current word, or, if between words, to the start of the previous word.
                if let Some(text) = try!(edit_delete_prev_word(&mut s,
                                                               |ch| !ch.is_alphanumeric())) {
                    kill_ring.kill(&text, false)
                }
            }
gwenn's avatar
gwenn committed
            KeyPress::ESC_B => {
                // move backwards one word
                kill_ring.reset();
                try!(edit_move_to_prev_word(&mut s))
            }
            KeyPress::ESC_C => {
                // capitalize word after point
                kill_ring.reset();
                try!(edit_word(&mut s, WordAction::CAPITALIZE))
            }
gwenn's avatar
gwenn committed
            KeyPress::ESC_D => {
                // kill one word forward
                if let Some(text) = try!(edit_delete_word(&mut s)) {
                    kill_ring.kill(&text, true)
gwenn's avatar
gwenn committed
                }
            }
gwenn's avatar
gwenn committed
            KeyPress::ESC_F => {
                // move forwards one word
                kill_ring.reset();
                try!(edit_move_to_next_word(&mut s))
            }
            KeyPress::ESC_L => {
                // lowercase word after point
                kill_ring.reset();
                try!(edit_word(&mut s, WordAction::LOWERCASE))
            }
            KeyPress::ESC_U => {
                // uppercase word after point
                kill_ring.reset();
                try!(edit_word(&mut s, WordAction::UPPERCASE))
gwenn's avatar
gwenn committed
            }
gwenn's avatar
gwenn committed
            KeyPress::ESC_Y => {
                // yank-pop
gwenn's avatar
gwenn committed
                if let Some((yank_size, text)) = kill_ring.yank_pop() {
                    try!(edit_yank_pop(&mut s, yank_size, text))
gwenn's avatar
gwenn committed
                }
            }
            KeyPress::ESC_SEQ_DELETE => {
                kill_ring.reset();
                try!(edit_delete(&mut s))
            }
            _ => {
                kill_ring.reset();
                // Insert the character typed.
                try!(edit_insert(&mut s, ch))
            }
gwenn's avatar
gwenn committed
    Ok(s.line.into_string())
struct Guard(termios::Termios);

#[allow(unused_must_use)]
impl Drop for Guard {
    fn drop(&mut self) {
        let Guard(termios) = *self;
        disable_raw_mode(termios);
    }
}

gwenn's avatar
gwenn committed
/// Readline method that will enable RAW mode, call the `readline_edit()`
Main's avatar
Main committed
/// method and disable raw mode
gwenn's avatar
gwenn committed
fn readline_raw(prompt: &str,
                history: &mut History,
gwenn's avatar
gwenn committed
                completer: Option<&Completer>,
                kill_ring: &mut KillRing)
gwenn's avatar
gwenn committed
                -> Result<String> {
    let original_termios = try!(enable_raw_mode());
    let guard = Guard(original_termios);
gwenn's avatar
gwenn committed
    let user_input = readline_edit(prompt, history, completer, kill_ring, original_termios);
    drop(guard); // try!(disable_raw_mode(original_termios));
    println!("");
    user_input
}

fn readline_direct() -> Result<String> {
    let mut line = String::new();
    if try!(io::stdin().read_line(&mut line)) > 0 {
        Ok(line)
    } else {
        Err(error::ReadlineError::Eof)
    }
/// Line editor
pub struct Editor<'completer> {
    unsupported_term: bool,
    stdin_isatty: bool,
gwenn's avatar
gwenn committed
    stdout_isatty: bool,
gwenn's avatar
gwenn committed
    // cols: usize, // Number of columns in terminal
    history: History,
    completer: Option<&'completer Completer>,
gwenn's avatar
gwenn committed
    kill_ring: KillRing,
impl<'completer> Editor<'completer> {
    pub fn new() -> Editor<'completer> {
        // TODO check what is done in rl_initialize()
        // if the number of columns is stored here, we need a SIGWINCH handler...
gwenn's avatar
gwenn committed
        let editor = Editor {
            unsupported_term: is_unsupported_term(),
gwenn's avatar
gwenn committed
            stdin_isatty: is_a_tty(libc::STDIN_FILENO),
            stdout_isatty: is_a_tty(libc::STDOUT_FILENO),
            history: History::new(),
gwenn's avatar
gwenn committed
            completer: None,
gwenn's avatar
gwenn committed
            kill_ring: KillRing::new(60),
gwenn's avatar
gwenn committed
        };
        if !editor.unsupported_term && editor.stdin_isatty && editor.stdout_isatty {
            install_sigwinch_handler();
gwenn's avatar
gwenn committed
        }
gwenn's avatar
gwenn committed
        editor
    }

    /// This method will read a line from STDIN and will display a `prompt`
gwenn's avatar
gwenn committed
    #[cfg_attr(feature="clippy", allow(if_not_else))]
    pub fn readline(&mut self, prompt: &str) -> Result<String> {
        if self.unsupported_term {
            // Write prompt and flush it to stdout
            let mut stdout = io::stdout();
            try!(write_and_flush(&mut stdout, prompt.as_bytes()));

            readline_direct()
gwenn's avatar
gwenn committed
        } else if !self.stdin_isatty {
            // Not a tty: read from file / pipe.
gwenn's avatar
gwenn committed
            readline_raw(prompt,
                         &mut self.history,
                         self.completer,
                         &mut self.kill_ring)