From eb5a52e0706c7321eaf04f1c3240618532db8ca3 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 23 Jul 2003 09:26:53 +0000 Subject: * ext/io/wait: imported. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/io/wait/MANIFEST | 4 ++ ext/io/wait/extconf.rb | 28 ++++++++++++ ext/io/wait/lib/nonblock.rb | 23 ++++++++++ ext/io/wait/wait.c | 106 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 161 insertions(+) create mode 100644 ext/io/wait/MANIFEST create mode 100644 ext/io/wait/extconf.rb create mode 100644 ext/io/wait/lib/nonblock.rb create mode 100644 ext/io/wait/wait.c (limited to 'ext/io/wait') diff --git a/ext/io/wait/MANIFEST b/ext/io/wait/MANIFEST new file mode 100644 index 0000000000..a08526c13a --- /dev/null +++ b/ext/io/wait/MANIFEST @@ -0,0 +1,4 @@ +MANIFEST +extconf.rb +wait.c +lib/nonblock.rb diff --git a/ext/io/wait/extconf.rb b/ext/io/wait/extconf.rb new file mode 100644 index 0000000000..0c1a870474 --- /dev/null +++ b/ext/io/wait/extconf.rb @@ -0,0 +1,28 @@ +require 'mkmf' +target = "io/wait" +unless defined?(checking_for) + def checking_for(msg) + STDOUT.print "checking for ", msg, "..." + STDOUT.flush + STDOUT.puts((r = yield) ? "yes" : "no") + r + end +end +unless defined?(macro_defined?) + def macro_defined?(macro, src, opt="") + try_cpp(src + <<"SRC", opt) +#ifndef #{macro} +# error +#endif +SRC + end +end + +unless /djgpp|mswin|mingw|human/ =~ RUBY_PLATFORM + fionread = %w[sys/ioctl.h sys/filio.h].find do |h| + checking_for("FIONREAD") {macro_defined?("FIONREAD", "#include <#{h}>\n")} + end + exit 1 unless fionread + $defs << "-DFIONREAD_HEADER=\"<#{fionread}>\"" + create_makefile(target) +end diff --git a/ext/io/wait/lib/nonblock.rb b/ext/io/wait/lib/nonblock.rb new file mode 100644 index 0000000000..46511fb40c --- /dev/null +++ b/ext/io/wait/lib/nonblock.rb @@ -0,0 +1,23 @@ +require "fcntl" +class IO + def nonblock? + (fcntl(Fcntl::F_GETFL) & File::NONBLOCK) != 0 + end + + def nonblock=(nb) + f = fcntl(Fcntl::F_GETFL) + if nb + f |= File::NONBLOCK + else + f &= ~File::NONBLOCK + end + fcntl(Fcntl::F_SETFL, f) + end + + def nonblock(nb = true) + nb, self.nonblock = nonblock?, nb + yield + ensure + self.nonblock = nb + end +end diff --git a/ext/io/wait/wait.c b/ext/io/wait/wait.c new file mode 100644 index 0000000000..53d5bd7d18 --- /dev/null +++ b/ext/io/wait/wait.c @@ -0,0 +1,106 @@ +/********************************************************************** + + io/wait.c - + + $Author$ + $Date$ + created at: Tue Aug 28 09:08:06 JST 2001 + + All the files in this distribution are covered under the Ruby's + license (see the file COPYING). + +**********************************************************************/ + +#include "ruby.h" +#include "rubyio.h" + +#include +#include FIONREAD_HEADER + +static VALUE io_ready_p _((VALUE io)); +static VALUE io_wait _((int argc, VALUE *argv, VALUE io)); +void Init_wait _((void)); + +EXTERN struct timeval rb_time_interval _((VALUE time)); + +/* +=begin += IO wait methods. +=end + */ + +/* +=begin +--- IO#ready? + returns non-nil if input available without blocking, or nil. +=end +*/ +static VALUE +io_ready_p(io) + VALUE io; +{ + OpenFile *fptr; + FILE *fp; + int n; + + GetOpenFile(io, fptr); + rb_io_check_readable(fptr); + fp = fptr->f; + if (feof(fp)) return Qfalse; + if (rb_read_pending(fp)) return Qtrue; + if (ioctl(fileno(fp), FIONREAD, &n)) rb_sys_fail(0); + if (n > 0) return INT2NUM(n); + return Qnil; +} + +/* +=begin +--- IO#wait([timeout]) + waits until input available or timed out and returns self, or nil + when EOF reached. +=end +*/ +static VALUE +io_wait(argc, argv, io) + int argc; + VALUE *argv; + VALUE io; +{ + OpenFile *fptr; + fd_set rd; + FILE *fp; + int fd, n; + VALUE timeout; + struct timeval *tp, timerec; + + GetOpenFile(io, fptr); + rb_io_check_readable(fptr); + rb_scan_args(argc, argv, "01", &timeout); + if (NIL_P(timeout)) { + tp = 0; + } + else { + timerec = rb_time_interval(timeout); + tp = &timerec; + } + + fp = fptr->f; + if (feof(fp)) return Qfalse; + if (rb_read_pending(fp)) return Qtrue; + fd = fileno(fp); + FD_ZERO(&rd); + FD_SET(fd, &rd); + if (rb_thread_select(fd + 1, &rd, NULL, NULL, tp) < 0) + rb_sys_fail(0); + rb_io_check_closed(fptr); + if (ioctl(fileno(fp), FIONREAD, &n)) rb_sys_fail(0); + if (n > 0) return io; + return Qnil; +} + +void +Init_wait() +{ + rb_define_method(rb_cIO, "ready?", io_ready_p, 0); + rb_define_method(rb_cIO, "wait", io_wait, -1); +} -- cgit v1.2.3