mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00
merge revision(s) 33785:
* ext/io/console/console.c (console_cooked, console_set_cooked): new methods to reset cooked mode. [EXPERIMENTAL] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c7495f996d
commit
7a208f4b18
4 changed files with 77 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Mar 6 12:39:27 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/io/console/console.c (console_cooked, console_set_cooked):
|
||||
new methods to reset cooked mode. [EXPERIMENTAL]
|
||||
|
||||
Tue Mar 6 12:31:47 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/io/console/console.c (io_getch): default delegating method
|
||||
|
|
|
@ -96,8 +96,7 @@ set_rawmode(conmode *t)
|
|||
{
|
||||
#ifdef HAVE_CFMAKERAW
|
||||
cfmakeraw(t);
|
||||
#else
|
||||
#if defined HAVE_TERMIOS_H || defined HAVE_TERMIO_H
|
||||
#elif defined HAVE_TERMIOS_H || defined HAVE_TERMIO_H
|
||||
t->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
|
||||
t->c_oflag &= ~OPOST;
|
||||
t->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
|
||||
|
@ -109,6 +108,20 @@ set_rawmode(conmode *t)
|
|||
#elif defined _WIN32
|
||||
*t = 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
set_cookedmode(conmode *t)
|
||||
{
|
||||
#if defined HAVE_TERMIOS_H || defined HAVE_TERMIO_H
|
||||
t->c_iflag |= (BRKINT|ISTRIP|ICRNL|IXON);
|
||||
t->c_oflag |= OPOST;
|
||||
t->c_lflag |= (ECHO|ECHOE|ECHOK|ECHONL|ICANON|ISIG|IEXTEN);
|
||||
#elif defined HAVE_SGTTY_H
|
||||
t->sg_flags |= ECHO;
|
||||
t->sg_flags &= ~RAW;
|
||||
#elif defined _WIN32
|
||||
*t |= ENABLE_ECHO_INPUT|ENABLE_LINE_INPUT|ENABLE_PROCESSED_INPUT;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -281,6 +294,45 @@ console_set_raw(VALUE io)
|
|||
return io;
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* io.cooked {|io| }
|
||||
*
|
||||
* Yields +self+ within cooked mode.
|
||||
*
|
||||
* STDIN.cooked(&:gets)
|
||||
*
|
||||
* will read and return a line with echo back and line editing.
|
||||
*/
|
||||
static VALUE
|
||||
console_cooked(VALUE io)
|
||||
{
|
||||
return ttymode(io, rb_yield, set_cookedmode);
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* io.cooked!
|
||||
*
|
||||
* Enables cooked mode.
|
||||
*
|
||||
* If the terminal mode needs to be back, use io.cooked { ... }.
|
||||
*/
|
||||
static VALUE
|
||||
console_set_cooked(VALUE io)
|
||||
{
|
||||
conmode t;
|
||||
rb_io_t *fptr;
|
||||
int fd;
|
||||
|
||||
GetOpenFile(io, fptr);
|
||||
fd = GetReadFD(fptr);
|
||||
if (!getattr(fd, &t)) rb_sys_fail(0);
|
||||
set_cookedmode(&t);
|
||||
if (!setattr(fd, &t)) rb_sys_fail(0);
|
||||
return io;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
getc_call(VALUE io)
|
||||
{
|
||||
|
@ -645,6 +697,8 @@ InitVM_console(void)
|
|||
{
|
||||
rb_define_method(rb_cIO, "raw", console_raw, 0);
|
||||
rb_define_method(rb_cIO, "raw!", console_set_raw, 0);
|
||||
rb_define_method(rb_cIO, "cooked", console_cooked, 0);
|
||||
rb_define_method(rb_cIO, "cooked!", console_set_cooked, 0);
|
||||
rb_define_method(rb_cIO, "getch", console_getch, 0);
|
||||
rb_define_method(rb_cIO, "echo=", console_set_echo, 1);
|
||||
rb_define_method(rb_cIO, "echo?", console_echo_p, 0);
|
||||
|
|
|
@ -20,6 +20,21 @@ class TestIO_Console < Test::Unit::TestCase
|
|||
}
|
||||
end
|
||||
|
||||
def test_cooked
|
||||
helper {|m, s|
|
||||
s.raw {
|
||||
s.print "abc\n"
|
||||
assert_equal("abc\n", m.gets)
|
||||
s.cooked {
|
||||
s.print "def\n"
|
||||
assert_equal("def\r\n", m.gets)
|
||||
}
|
||||
}
|
||||
s.print "ghi\n"
|
||||
assert_equal("ghi\r\n", m.gets)
|
||||
}
|
||||
end
|
||||
|
||||
def test_echo
|
||||
helper {|m, s|
|
||||
assert(s.echo?)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 159
|
||||
#define RUBY_PATCHLEVEL 160
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-03-06"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue