1999-01-19 23:59:32 -05:00
|
|
|
/* readline.c -- GNU Readline module
|
2001-05-06 11:06:00 -04:00
|
|
|
Copyright (C) 1997-2001 Shugo Maeda */
|
1999-01-19 23:59:32 -05:00
|
|
|
|
2002-06-20 08:14:33 -04:00
|
|
|
#include <errno.h>
|
1999-01-19 23:59:32 -05:00
|
|
|
#include <stdio.h>
|
2005-05-19 10:36:20 -04:00
|
|
|
#include <ctype.h>
|
2005-05-20 02:57:06 -04:00
|
|
|
#include <string.h>
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_READLINE_READLINE_H
|
1999-01-19 23:59:32 -05:00
|
|
|
#include <readline/readline.h>
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_READLINE_HISTORY_H
|
1999-01-19 23:59:32 -05:00
|
|
|
#include <readline/history.h>
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_EDITLINE_READLINE_H
|
|
|
|
#include <editline/readline.h>
|
|
|
|
#endif
|
1999-01-19 23:59:32 -05:00
|
|
|
|
|
|
|
#include "ruby.h"
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
#include "rubyio.h"
|
1999-01-19 23:59:32 -05:00
|
|
|
#include "rubysig.h"
|
|
|
|
|
2003-07-26 11:03:16 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
static VALUE mReadline;
|
|
|
|
|
|
|
|
#define TOLOWER(c) (isupper(c) ? tolower(c) : c)
|
|
|
|
|
|
|
|
#define COMPLETION_PROC "completion_proc"
|
|
|
|
#define COMPLETION_CASE_FOLD "completion_case_fold"
|
2005-01-16 17:09:29 -05:00
|
|
|
static ID completion_proc, completion_case_fold;
|
1999-01-19 23:59:32 -05:00
|
|
|
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifndef HAVE_RL_FILENAME_COMPLETION_FUNCTION
|
2001-05-06 11:06:00 -04:00
|
|
|
# define rl_filename_completion_function filename_completion_function
|
|
|
|
# define rl_username_completion_function username_completion_function
|
2001-05-07 05:26:29 -04:00
|
|
|
# define rl_completion_matches completion_matches
|
2001-05-06 11:06:00 -04:00
|
|
|
#endif
|
|
|
|
|
2005-05-19 10:36:20 -04:00
|
|
|
static int readline_event(void);
|
|
|
|
static char **readline_attempted_completion_function(const char *text,
|
|
|
|
int start, int end);
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
static int
|
|
|
|
readline_event()
|
|
|
|
{
|
|
|
|
CHECK_INTS;
|
|
|
|
rb_thread_schedule();
|
2001-06-23 05:30:42 -04:00
|
|
|
return 0;
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_readline(argc, argv, self)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
VALUE tmp, add_hist, result;
|
|
|
|
char *prompt = NULL;
|
|
|
|
char *buff;
|
2001-09-06 01:14:06 -04:00
|
|
|
int status;
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
OpenFile *ofp, *ifp;
|
1999-01-19 23:59:32 -05:00
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-01-19 23:59:32 -05:00
|
|
|
if (rb_scan_args(argc, argv, "02", &tmp, &add_hist) > 0) {
|
2004-11-18 01:12:12 -05:00
|
|
|
SafeStringValue(tmp);
|
|
|
|
prompt = RSTRING(tmp)->ptr;
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
2001-09-06 01:14:06 -04:00
|
|
|
|
2002-06-20 08:14:33 -04:00
|
|
|
if (!isatty(0) && errno == EBADF) rb_raise(rb_eIOError, "stdin closed");
|
|
|
|
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
GetOpenFile(rb_stdout, ofp);
|
|
|
|
rl_outstream = rb_io_stdio_file(ofp);
|
|
|
|
GetOpenFile(rb_stdin, ifp);
|
|
|
|
rl_instream = rb_io_stdio_file(ifp);
|
2001-09-06 01:14:06 -04:00
|
|
|
buff = (char*)rb_protect((VALUE(*)_((VALUE)))readline, (VALUE)prompt,
|
|
|
|
&status);
|
|
|
|
if (status) {
|
2005-05-19 10:36:20 -04:00
|
|
|
#if defined HAVE_RL_CLEANUP_AFTER_SIGNAL
|
2001-09-06 01:14:06 -04:00
|
|
|
/* restore terminal mode and signal handler*/
|
|
|
|
rl_cleanup_after_signal();
|
2005-05-19 10:36:20 -04:00
|
|
|
#elif defined HAVE_RL_DEPREP_TERM_FUNCTION
|
2001-09-06 01:14:06 -04:00
|
|
|
/* restore terminal mode */
|
|
|
|
(*rl_deprep_term_function)();
|
|
|
|
#else
|
|
|
|
rl_deprep_terminal();
|
|
|
|
#endif
|
|
|
|
rb_jump_tag(status);
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
if (RTEST(add_hist) && buff) {
|
|
|
|
add_history(buff);
|
|
|
|
}
|
|
|
|
if (buff)
|
2001-09-06 01:14:06 -04:00
|
|
|
result = rb_tainted_str_new2(buff);
|
1999-01-19 23:59:32 -05:00
|
|
|
else
|
|
|
|
result = Qnil;
|
|
|
|
if (buff) free(buff);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_s_set_completion_proc(self, proc)
|
|
|
|
VALUE self;
|
|
|
|
VALUE proc;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-01-19 23:59:32 -05:00
|
|
|
if (!rb_respond_to(proc, rb_intern("call")))
|
2004-03-29 02:54:38 -05:00
|
|
|
rb_raise(rb_eArgError, "argument must respond to `call'");
|
2005-01-16 17:09:29 -05:00
|
|
|
return rb_ivar_set(mReadline, completion_proc, proc);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_s_get_completion_proc(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-01-16 17:09:29 -05:00
|
|
|
return rb_attr_get(mReadline, completion_proc);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_s_set_completion_case_fold(self, val)
|
|
|
|
VALUE self;
|
|
|
|
VALUE val;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-01-16 17:09:29 -05:00
|
|
|
return rb_ivar_set(mReadline, completion_case_fold, val);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_s_get_completion_case_fold(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-01-16 17:09:29 -05:00
|
|
|
return rb_attr_get(mReadline, completion_case_fold);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static char **
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_attempted_completion_function(text, start, end)
|
2005-05-19 10:36:20 -04:00
|
|
|
const char *text;
|
1999-08-13 01:37:52 -04:00
|
|
|
int start;
|
|
|
|
int end;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
VALUE proc, ary, temp;
|
|
|
|
char **result;
|
|
|
|
int case_fold;
|
|
|
|
int i, matches;
|
|
|
|
|
2005-01-16 17:09:29 -05:00
|
|
|
proc = rb_attr_get(mReadline, completion_proc);
|
1999-08-13 01:37:52 -04:00
|
|
|
if (NIL_P(proc))
|
|
|
|
return NULL;
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_ATTEMPTED_COMPLETION_OVER
|
1999-01-19 23:59:32 -05:00
|
|
|
rl_attempted_completion_over = 1;
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif
|
2005-01-16 17:09:29 -05:00
|
|
|
case_fold = RTEST(rb_attr_get(mReadline, completion_case_fold));
|
2001-09-06 01:14:06 -04:00
|
|
|
ary = rb_funcall(proc, rb_intern("call"), 1, rb_tainted_str_new2(text));
|
1999-01-19 23:59:32 -05:00
|
|
|
if (TYPE(ary) != T_ARRAY)
|
|
|
|
ary = rb_Array(ary);
|
|
|
|
matches = RARRAY(ary)->len;
|
|
|
|
if (matches == 0)
|
|
|
|
return NULL;
|
|
|
|
result = ALLOC_N(char *, matches + 2);
|
|
|
|
for (i = 0; i < matches; i++) {
|
|
|
|
temp = rb_obj_as_string(RARRAY(ary)->ptr[i]);
|
|
|
|
result[i + 1] = ALLOC_N(char, RSTRING(temp)->len + 1);
|
|
|
|
strcpy(result[i + 1], RSTRING(temp)->ptr);
|
|
|
|
}
|
|
|
|
result[matches + 1] = NULL;
|
|
|
|
|
|
|
|
if (matches == 1) {
|
2005-05-20 02:57:06 -04:00
|
|
|
result[0] = strdup(result[1]);
|
|
|
|
}
|
|
|
|
else {
|
1999-01-19 23:59:32 -05:00
|
|
|
register int i = 1;
|
|
|
|
int low = 100000;
|
|
|
|
|
|
|
|
while (i < matches) {
|
|
|
|
register int c1, c2, si;
|
|
|
|
|
|
|
|
if (case_fold) {
|
|
|
|
for (si = 0;
|
|
|
|
(c1 = TOLOWER(result[i][si])) &&
|
|
|
|
(c2 = TOLOWER(result[i + 1][si]));
|
|
|
|
si++)
|
|
|
|
if (c1 != c2) break;
|
|
|
|
} else {
|
|
|
|
for (si = 0;
|
|
|
|
(c1 = result[i][si]) &&
|
|
|
|
(c2 = result[i + 1][si]);
|
|
|
|
si++)
|
|
|
|
if (c1 != c2) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (low > si) low = si;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
result[0] = ALLOC_N(char, low + 1);
|
|
|
|
strncpy(result[0], result[1], low);
|
|
|
|
result[0][low] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_s_vi_editing_mode(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2005-05-19 12:26:50 -04:00
|
|
|
#ifdef HAVE_RL_VI_EDITING_MODE
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-08-13 01:37:52 -04:00
|
|
|
rl_vi_editing_mode(1,0);
|
1999-01-19 23:59:32 -05:00
|
|
|
return Qnil;
|
2005-05-19 12:26:50 -04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
return Qnil; /* not reached */
|
|
|
|
#endif /* HAVE_RL_VI_EDITING_MODE */
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
readline_s_emacs_editing_mode(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2005-05-19 12:26:50 -04:00
|
|
|
#ifdef HAVE_RL_EMACS_EDITING_MODE
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-08-13 01:37:52 -04:00
|
|
|
rl_emacs_editing_mode(1,0);
|
1999-01-19 23:59:32 -05:00
|
|
|
return Qnil;
|
2005-05-19 12:26:50 -04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
return Qnil; /* not reached */
|
|
|
|
#endif /* HAVE_RL_EMACS_EDITING_MODE */
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
2001-06-19 05:21:38 -04:00
|
|
|
static VALUE
|
|
|
|
readline_s_set_completion_append_character(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2004-11-18 20:38:38 -05:00
|
|
|
if (NIL_P(str)) {
|
2001-06-19 05:21:38 -04:00
|
|
|
rl_completion_append_character = '\0';
|
2004-11-18 20:38:38 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
SafeStringValue(str);
|
|
|
|
if (RSTRING(str)->len == 0) {
|
|
|
|
rl_completion_append_character = '\0';
|
|
|
|
} else {
|
|
|
|
rl_completion_append_character = RSTRING(str)->ptr[0];
|
|
|
|
}
|
2001-06-19 05:21:38 -04:00
|
|
|
}
|
|
|
|
return self;
|
2001-09-06 01:14:06 -04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_COMPLETION_APPEND_CHARACTER */
|
2001-06-19 05:21:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_get_completion_append_character(self)
|
|
|
|
VALUE self;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_COMPLETION_APPEND_CHARACTER
|
2001-06-19 05:21:38 -04:00
|
|
|
VALUE str;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2001-06-19 05:21:38 -04:00
|
|
|
if (rl_completion_append_character == '\0')
|
|
|
|
return Qnil;
|
|
|
|
|
|
|
|
str = rb_str_new("", 1);
|
|
|
|
RSTRING(str)->ptr[0] = rl_completion_append_character;
|
|
|
|
return str;
|
2001-09-06 01:14:06 -04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_COMPLETION_APPEND_CHARACTER */
|
2001-09-06 01:14:06 -04:00
|
|
|
}
|
|
|
|
|
2001-12-19 03:02:55 -05:00
|
|
|
static VALUE
|
|
|
|
readline_s_set_basic_word_break_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_BASIC_WORD_BREAK_CHARACTERS
|
2001-12-19 03:02:55 -05:00
|
|
|
static char *basic_word_break_characters = NULL;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
|
|
|
SafeStringValue(str);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (basic_word_break_characters == NULL) {
|
|
|
|
basic_word_break_characters =
|
|
|
|
ALLOC_N(char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
REALLOC_N(basic_word_break_characters, char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
strncpy(basic_word_break_characters,
|
|
|
|
RSTRING(str)->ptr, RSTRING(str)->len);
|
|
|
|
basic_word_break_characters[RSTRING(str)->len] = '\0';
|
|
|
|
rl_basic_word_break_characters = basic_word_break_characters;
|
|
|
|
return self;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_BASIC_WORD_BREAK_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_get_basic_word_break_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_BASIC_WORD_BREAK_CHARACTERS
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (rl_basic_word_break_characters == NULL)
|
|
|
|
return Qnil;
|
2004-11-18 01:12:12 -05:00
|
|
|
return rb_tainted_str_new2(rl_basic_word_break_characters);
|
2001-12-19 03:02:55 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_BASIC_WORD_BREAK_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_set_completer_word_break_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_COMPLETER_WORD_BREAK_CHARACTERS
|
2001-12-19 03:02:55 -05:00
|
|
|
static char *completer_word_break_characters = NULL;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
|
|
|
SafeStringValue(str);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (completer_word_break_characters == NULL) {
|
|
|
|
completer_word_break_characters =
|
|
|
|
ALLOC_N(char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
REALLOC_N(completer_word_break_characters, char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
strncpy(completer_word_break_characters,
|
|
|
|
RSTRING(str)->ptr, RSTRING(str)->len);
|
|
|
|
completer_word_break_characters[RSTRING(str)->len] = '\0';
|
|
|
|
rl_completer_word_break_characters = completer_word_break_characters;
|
|
|
|
return self;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_COMPLETER_WORD_BREAK_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_get_completer_word_break_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_COMPLETER_WORD_BREAK_CHARACTERS
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (rl_completer_word_break_characters == NULL)
|
|
|
|
return Qnil;
|
2004-11-18 01:12:12 -05:00
|
|
|
return rb_tainted_str_new2(rl_completer_word_break_characters);
|
2001-12-19 03:02:55 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_COMPLETER_WORD_BREAK_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_set_basic_quote_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_BASIC_QUOTE_CHARACTERS
|
2001-12-19 03:02:55 -05:00
|
|
|
static char *basic_quote_characters = NULL;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
|
|
|
SafeStringValue(str);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (basic_quote_characters == NULL) {
|
|
|
|
basic_quote_characters =
|
|
|
|
ALLOC_N(char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
REALLOC_N(basic_quote_characters, char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
strncpy(basic_quote_characters,
|
|
|
|
RSTRING(str)->ptr, RSTRING(str)->len);
|
|
|
|
basic_quote_characters[RSTRING(str)->len] = '\0';
|
|
|
|
rl_basic_quote_characters = basic_quote_characters;
|
|
|
|
|
|
|
|
return self;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_BASIC_QUOTE_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_get_basic_quote_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_BASIC_QUOTE_CHARACTERS
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (rl_basic_quote_characters == NULL)
|
|
|
|
return Qnil;
|
2004-11-18 01:12:12 -05:00
|
|
|
return rb_tainted_str_new2(rl_basic_quote_characters);
|
2001-12-19 03:02:55 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_BASIC_QUOTE_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_set_completer_quote_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_COMPLETER_QUOTE_CHARACTERS
|
2001-12-19 03:02:55 -05:00
|
|
|
static char *completer_quote_characters = NULL;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
|
|
|
SafeStringValue(str);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (completer_quote_characters == NULL) {
|
|
|
|
completer_quote_characters =
|
|
|
|
ALLOC_N(char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
REALLOC_N(completer_quote_characters, char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
strncpy(completer_quote_characters,
|
|
|
|
RSTRING(str)->ptr, RSTRING(str)->len);
|
|
|
|
completer_quote_characters[RSTRING(str)->len] = '\0';
|
|
|
|
rl_completer_quote_characters = completer_quote_characters;
|
|
|
|
|
|
|
|
return self;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_COMPLETER_QUOTE_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_get_completer_quote_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_COMPLETER_QUOTE_CHARACTERS
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (rl_completer_quote_characters == NULL)
|
|
|
|
return Qnil;
|
2004-11-18 01:12:12 -05:00
|
|
|
return rb_tainted_str_new2(rl_completer_quote_characters);
|
2001-12-19 03:02:55 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_COMPLETER_QUOTE_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_set_filename_quote_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_FILENAME_QUOTE_CHARACTERS
|
2001-12-19 03:02:55 -05:00
|
|
|
static char *filename_quote_characters = NULL;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
|
|
|
SafeStringValue(str);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (filename_quote_characters == NULL) {
|
|
|
|
filename_quote_characters =
|
|
|
|
ALLOC_N(char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
REALLOC_N(filename_quote_characters, char, RSTRING(str)->len + 1);
|
|
|
|
}
|
|
|
|
strncpy(filename_quote_characters,
|
|
|
|
RSTRING(str)->ptr, RSTRING(str)->len);
|
|
|
|
filename_quote_characters[RSTRING(str)->len] = '\0';
|
|
|
|
rl_filename_quote_characters = filename_quote_characters;
|
|
|
|
|
|
|
|
return self;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_FILENAME_QUOTE_CHARACTERS */
|
2001-12-19 03:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
readline_s_get_filename_quote_characters(self, str)
|
|
|
|
VALUE self, str;
|
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_FILENAME_QUOTE_CHARACTERS
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2001-12-19 03:02:55 -05:00
|
|
|
if (rl_filename_quote_characters == NULL)
|
|
|
|
return Qnil;
|
2004-11-18 01:12:12 -05:00
|
|
|
return rb_tainted_str_new2(rl_filename_quote_characters);
|
2001-12-19 03:02:55 -05:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif /* HAVE_RL_FILENAME_QUOTE_CHARACTERS */
|
2001-06-19 05:21:38 -04:00
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_to_s(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
return rb_str_new2("HISTORY");
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_get(self, index)
|
|
|
|
VALUE self;
|
|
|
|
VALUE index;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
HIST_ENTRY *entry;
|
1999-01-19 23:59:32 -05:00
|
|
|
int i;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-01-19 23:59:32 -05:00
|
|
|
i = NUM2INT(index);
|
2001-09-06 01:14:06 -04:00
|
|
|
if (i < 0) {
|
2005-05-19 10:36:20 -04:00
|
|
|
i += history_length;
|
2001-09-06 01:14:06 -04:00
|
|
|
}
|
2005-05-19 10:36:20 -04:00
|
|
|
entry = history_get(history_base + i);
|
|
|
|
if (entry == NULL) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
rb_raise(rb_eIndexError, "invalid index");
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
2005-05-19 10:36:20 -04:00
|
|
|
return rb_tainted_str_new2(entry->line);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_set(self, index, str)
|
|
|
|
VALUE self;
|
|
|
|
VALUE index;
|
|
|
|
VALUE str;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_REPLACE_HISTORY_ENTRY
|
|
|
|
HIST_ENTRY *entry;
|
1999-01-19 23:59:32 -05:00
|
|
|
int i;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-01-19 23:59:32 -05:00
|
|
|
i = NUM2INT(index);
|
2005-05-19 10:36:20 -04:00
|
|
|
SafeStringValue(str);
|
2001-09-06 01:14:06 -04:00
|
|
|
if (i < 0) {
|
2005-05-19 10:36:20 -04:00
|
|
|
i += history_length;
|
2001-09-06 01:14:06 -04:00
|
|
|
}
|
2005-05-19 10:36:20 -04:00
|
|
|
entry = replace_history_entry(i, RSTRING(str)->ptr, NULL);
|
|
|
|
if (entry == NULL) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
rb_raise(rb_eIndexError, "invalid index");
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
2005-05-19 12:26:50 -04:00
|
|
|
return str;
|
2005-05-19 10:36:20 -04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_push(self, str)
|
|
|
|
VALUE self;
|
|
|
|
VALUE str;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
|
|
|
SafeStringValue(str);
|
|
|
|
add_history(RSTRING(str)->ptr);
|
1999-01-19 23:59:32 -05:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_push_method(argc, argv, self)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
VALUE str;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-01-19 23:59:32 -05:00
|
|
|
while (argc--) {
|
|
|
|
str = *argv++;
|
2004-11-18 01:12:12 -05:00
|
|
|
SafeStringValue(str);
|
|
|
|
add_history(RSTRING(str)->ptr);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2005-05-19 10:36:20 -04:00
|
|
|
static VALUE
|
|
|
|
rb_remove_history(index)
|
|
|
|
int index;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_REMOVE_HISTORY
|
|
|
|
HIST_ENTRY *entry;
|
|
|
|
VALUE val;
|
|
|
|
|
|
|
|
rb_secure(4);
|
|
|
|
entry = remove_history(index);
|
|
|
|
if (entry) {
|
|
|
|
val = rb_tainted_str_new2(entry->line);
|
|
|
|
free(entry->line);
|
|
|
|
free(entry);
|
|
|
|
return val;
|
|
|
|
}
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil;
|
2005-05-19 10:36:20 -04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
2005-05-19 12:26:50 -04:00
|
|
|
return Qnil; /* not reached */
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_pop(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-05-19 10:36:20 -04:00
|
|
|
if (history_length > 0) {
|
|
|
|
return rb_remove_history(history_length - 1);
|
1999-01-19 23:59:32 -05:00
|
|
|
} else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_shift(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-05-19 10:36:20 -04:00
|
|
|
if (history_length > 0) {
|
2001-09-06 01:14:06 -04:00
|
|
|
return rb_remove_history(0);
|
1999-01-19 23:59:32 -05:00
|
|
|
} else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_each(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2005-05-19 10:36:20 -04:00
|
|
|
HIST_ENTRY *entry;
|
1999-01-19 23:59:32 -05:00
|
|
|
int i;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-05-19 10:36:20 -04:00
|
|
|
for (i = 0; i < history_length; i++) {
|
|
|
|
entry = history_get(history_base + i);
|
|
|
|
if (entry == NULL)
|
|
|
|
break;
|
|
|
|
rb_yield(rb_tainted_str_new2(entry->line));
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
1999-08-13 01:37:52 -04:00
|
|
|
return self;
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_length(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-05-19 10:36:20 -04:00
|
|
|
return INT2NUM(history_length);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_empty_p(self)
|
|
|
|
VALUE self;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
2005-05-19 10:36:20 -04:00
|
|
|
return history_length == 0 ? Qtrue : Qfalse;
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
hist_delete_at(self, index)
|
|
|
|
VALUE self;
|
|
|
|
VALUE index;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2004-11-18 01:12:12 -05:00
|
|
|
rb_secure(4);
|
1999-01-19 23:59:32 -05:00
|
|
|
i = NUM2INT(index);
|
2001-09-06 01:14:06 -04:00
|
|
|
if (i < 0)
|
2005-05-19 10:36:20 -04:00
|
|
|
i += history_length;
|
|
|
|
if (i < 0 || i > history_length - 1) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
rb_raise(rb_eIndexError, "invalid index");
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
2001-09-06 01:14:06 -04:00
|
|
|
return rb_remove_history(i);
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
filename_completion_proc_call(self, str)
|
|
|
|
VALUE self;
|
|
|
|
VALUE str;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
VALUE result;
|
|
|
|
char **matches;
|
|
|
|
int i;
|
|
|
|
|
2001-05-07 05:26:29 -04:00
|
|
|
matches = rl_completion_matches(StringValuePtr(str),
|
|
|
|
rl_filename_completion_function);
|
1999-01-19 23:59:32 -05:00
|
|
|
if (matches) {
|
|
|
|
result = rb_ary_new();
|
|
|
|
for (i = 0; matches[i]; i++) {
|
2001-09-06 01:14:06 -04:00
|
|
|
rb_ary_push(result, rb_tainted_str_new2(matches[i]));
|
1999-01-19 23:59:32 -05:00
|
|
|
free(matches[i]);
|
|
|
|
}
|
|
|
|
free(matches);
|
|
|
|
if (RARRAY(result)->len >= 2)
|
|
|
|
rb_ary_shift(result);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = Qnil;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 01:37:52 -04:00
|
|
|
username_completion_proc_call(self, str)
|
|
|
|
VALUE self;
|
|
|
|
VALUE str;
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
|
|
|
VALUE result;
|
|
|
|
char **matches;
|
|
|
|
int i;
|
|
|
|
|
2001-05-07 05:26:29 -04:00
|
|
|
matches = rl_completion_matches(StringValuePtr(str),
|
|
|
|
rl_username_completion_function);
|
1999-01-19 23:59:32 -05:00
|
|
|
if (matches) {
|
|
|
|
result = rb_ary_new();
|
|
|
|
for (i = 0; matches[i]; i++) {
|
2001-09-06 01:14:06 -04:00
|
|
|
rb_ary_push(result, rb_tainted_str_new2(matches[i]));
|
1999-01-19 23:59:32 -05:00
|
|
|
free(matches[i]);
|
|
|
|
}
|
|
|
|
free(matches);
|
|
|
|
if (RARRAY(result)->len >= 2)
|
|
|
|
rb_ary_shift(result);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = Qnil;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-08-13 01:37:52 -04:00
|
|
|
Init_readline()
|
1999-01-19 23:59:32 -05:00
|
|
|
{
|
2002-08-06 02:20:07 -04:00
|
|
|
VALUE history, fcomp, ucomp;
|
1999-01-19 23:59:32 -05:00
|
|
|
|
2001-09-06 01:14:06 -04:00
|
|
|
/* Allow conditional parsing of the ~/.inputrc file. */
|
|
|
|
rl_readline_name = "Ruby";
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
using_history();
|
|
|
|
|
2005-01-16 17:09:29 -05:00
|
|
|
completion_proc = rb_intern(COMPLETION_PROC);
|
|
|
|
completion_case_fold = rb_intern(COMPLETION_CASE_FOLD);
|
|
|
|
|
1999-01-19 23:59:32 -05:00
|
|
|
mReadline = rb_define_module("Readline");
|
|
|
|
rb_define_module_function(mReadline, "readline",
|
|
|
|
readline_readline, -1);
|
|
|
|
rb_define_singleton_method(mReadline, "completion_proc=",
|
|
|
|
readline_s_set_completion_proc, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "completion_proc",
|
|
|
|
readline_s_get_completion_proc, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "completion_case_fold=",
|
|
|
|
readline_s_set_completion_case_fold, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "completion_case_fold",
|
|
|
|
readline_s_get_completion_case_fold, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "vi_editing_mode",
|
|
|
|
readline_s_vi_editing_mode, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "emacs_editing_mode",
|
|
|
|
readline_s_emacs_editing_mode, 0);
|
2001-06-19 05:21:38 -04:00
|
|
|
rb_define_singleton_method(mReadline, "completion_append_character=",
|
|
|
|
readline_s_set_completion_append_character, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "completion_append_character",
|
|
|
|
readline_s_get_completion_append_character, 0);
|
2001-12-19 03:02:55 -05:00
|
|
|
rb_define_singleton_method(mReadline, "basic_word_break_characters=",
|
|
|
|
readline_s_set_basic_word_break_characters, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "basic_word_break_characters",
|
|
|
|
readline_s_get_basic_word_break_characters, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "completer_word_break_characters=",
|
|
|
|
readline_s_set_completer_word_break_characters, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "completer_word_break_characters",
|
|
|
|
readline_s_get_completer_word_break_characters, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "basic_quote_characters=",
|
|
|
|
readline_s_set_basic_quote_characters, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "basic_quote_characters",
|
|
|
|
readline_s_get_basic_quote_characters, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "completer_quote_characters=",
|
|
|
|
readline_s_set_completer_quote_characters, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "completer_quote_characters",
|
|
|
|
readline_s_get_completer_quote_characters, 0);
|
|
|
|
rb_define_singleton_method(mReadline, "filename_quote_characters=",
|
|
|
|
readline_s_set_filename_quote_characters, 1);
|
|
|
|
rb_define_singleton_method(mReadline, "filename_quote_characters",
|
|
|
|
readline_s_get_filename_quote_characters, 0);
|
1999-01-19 23:59:32 -05:00
|
|
|
|
2002-08-06 02:20:07 -04:00
|
|
|
history = rb_obj_alloc(rb_cObject);
|
|
|
|
rb_extend_object(history, rb_mEnumerable);
|
|
|
|
rb_define_singleton_method(history,"to_s", hist_to_s, 0);
|
|
|
|
rb_define_singleton_method(history,"[]", hist_get, 1);
|
|
|
|
rb_define_singleton_method(history,"[]=", hist_set, 2);
|
|
|
|
rb_define_singleton_method(history,"<<", hist_push, 1);
|
|
|
|
rb_define_singleton_method(history,"push", hist_push_method, -1);
|
|
|
|
rb_define_singleton_method(history,"pop", hist_pop, 0);
|
|
|
|
rb_define_singleton_method(history,"shift", hist_shift, 0);
|
|
|
|
rb_define_singleton_method(history,"each", hist_each, 0);
|
|
|
|
rb_define_singleton_method(history,"length", hist_length, 0);
|
|
|
|
rb_define_singleton_method(history,"size", hist_length, 0);
|
|
|
|
rb_define_singleton_method(history,"empty?", hist_empty_p, 0);
|
|
|
|
rb_define_singleton_method(history,"delete_at", hist_delete_at, 1);
|
|
|
|
rb_define_const(mReadline, "HISTORY", history);
|
1999-01-19 23:59:32 -05:00
|
|
|
|
|
|
|
fcomp = rb_obj_alloc(rb_cObject);
|
|
|
|
rb_define_singleton_method(fcomp, "call",
|
|
|
|
filename_completion_proc_call, 1);
|
|
|
|
rb_define_const(mReadline, "FILENAME_COMPLETION_PROC", fcomp);
|
|
|
|
|
|
|
|
ucomp = rb_obj_alloc(rb_cObject);
|
|
|
|
rb_define_singleton_method(ucomp, "call",
|
|
|
|
username_completion_proc_call, 1);
|
|
|
|
rb_define_const(mReadline, "USERNAME_COMPLETION_PROC", ucomp);
|
2005-05-19 10:36:20 -04:00
|
|
|
#if defined HAVE_RL_LIBRARY_VERSION
|
2001-09-06 01:14:06 -04:00
|
|
|
rb_define_const(mReadline, "VERSION", rb_str_new2(rl_library_version));
|
|
|
|
#else
|
|
|
|
rb_define_const(mReadline, "VERSION",
|
|
|
|
rb_str_new2("2.0 or before version"));
|
|
|
|
#endif
|
1999-01-19 23:59:32 -05:00
|
|
|
|
2005-05-19 10:36:20 -04:00
|
|
|
rl_attempted_completion_function = readline_attempted_completion_function;
|
|
|
|
#ifdef HAVE_RL_EVENT_HOOK
|
1999-01-19 23:59:32 -05:00
|
|
|
rl_event_hook = readline_event;
|
2003-04-17 01:41:27 -04:00
|
|
|
#endif
|
2005-05-19 10:36:20 -04:00
|
|
|
#ifdef HAVE_RL_CLEAR_SIGNALS
|
1999-01-19 23:59:32 -05:00
|
|
|
rl_clear_signals();
|
2005-05-19 10:36:20 -04:00
|
|
|
#endif
|
1999-01-19 23:59:32 -05:00
|
|
|
}
|