rust/src/libstd/rl.rs

72 lines
2.1 KiB
Rust
Raw Normal View History

2012-11-05 13:20:44 -06:00
// FIXME #3921. This is unsafe because linenoise uses global mutable
// state without mutexes.
use libc::{c_char, c_int};
extern mod rustrt {
#[legacy_exports];
fn linenoise(prompt: *c_char) -> *c_char;
fn linenoiseHistoryAdd(line: *c_char) -> c_int;
fn linenoiseHistorySetMaxLen(len: c_int) -> c_int;
fn linenoiseHistorySave(file: *c_char) -> c_int;
fn linenoiseHistoryLoad(file: *c_char) -> c_int;
fn linenoiseSetCompletionCallback(callback: *u8);
fn linenoiseAddCompletion(completions: *(), line: *c_char);
}
/// Add a line to history
2012-11-05 13:20:44 -06:00
pub unsafe fn add_history(line: ~str) -> bool {
2012-10-27 06:41:41 -05:00
do str::as_c_str(line) |buf| {
rustrt::linenoiseHistoryAdd(buf) == 1 as c_int
2012-10-27 06:41:41 -05:00
}
}
/// Set the maximum amount of lines stored
2012-11-05 13:20:44 -06:00
pub unsafe fn set_history_max_len(len: int) -> bool {
rustrt::linenoiseHistorySetMaxLen(len as c_int) == 1 as c_int
}
/// Save line history to a file
2012-11-05 13:20:44 -06:00
pub unsafe fn save_history(file: ~str) -> bool {
2012-10-27 06:41:41 -05:00
do str::as_c_str(file) |buf| {
rustrt::linenoiseHistorySave(buf) == 1 as c_int
2012-10-27 06:41:41 -05:00
}
}
/// Load line history from a file
2012-11-05 13:20:44 -06:00
pub unsafe fn load_history(file: ~str) -> bool {
2012-10-27 06:41:41 -05:00
do str::as_c_str(file) |buf| {
rustrt::linenoiseHistoryLoad(buf) == 1 as c_int
2012-10-27 06:41:41 -05:00
}
}
/// Print out a prompt and then wait for input and return it
2012-11-05 13:20:44 -06:00
pub unsafe fn read(prompt: ~str) -> Option<~str> {
2012-10-27 06:41:41 -05:00
do str::as_c_str(prompt) |buf| unsafe {
let line = rustrt::linenoise(buf);
2012-10-27 06:41:41 -05:00
if line.is_null() { None }
else { Some(str::raw::from_c_str(line)) }
}
}
pub type CompletionCb = fn~(~str, fn(~str));
fn complete_key(_v: @CompletionCb) {}
/// Bind to the main completion callback
2012-11-05 13:20:44 -06:00
pub unsafe fn complete(cb: CompletionCb) unsafe {
2012-10-27 06:41:41 -05:00
task::local_data::local_data_set(complete_key, @(move cb));
2012-10-27 06:41:41 -05:00
extern fn callback(line: *c_char, completions: *()) unsafe {
let cb = copy *task::local_data::local_data_get(complete_key).get();
2012-10-27 06:41:41 -05:00
do cb(str::raw::from_c_str(line)) |suggestion| {
do str::as_c_str(suggestion) |buf| {
rustrt::linenoiseAddCompletion(completions, buf);
2012-10-27 06:41:41 -05:00
}
}
}
rustrt::linenoiseSetCompletionCallback(callback);
}