[前][次][番号順一覧][スレッド一覧]

ruby-changes:15508

From: shyouhei <ko1@a...>
Date: Tue, 20 Apr 2010 08:13:01 +0900 (JST)
Subject: [ruby-changes:15508] Ruby:r27410 (ruby_1_8_7): merge revision(s) 26252:

shyouhei	2010-04-20 08:10:31 +0900 (Tue, 20 Apr 2010)

  New Revision: 27410

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27410

  Log:
    merge revision(s) 26252:
    * io.c (rb_io_s_read): close the IO if an exception is raised on
      seeking. [ruby-core:27429]

  Modified files:
    branches/ruby_1_8_7/ChangeLog
    branches/ruby_1_8_7/io.c
    branches/ruby_1_8_7/version.h

Index: ruby_1_8_7/ChangeLog
===================================================================
--- ruby_1_8_7/ChangeLog	(revision 27409)
+++ ruby_1_8_7/ChangeLog	(revision 27410)
@@ -1,3 +1,8 @@
+Tue Apr 20 08:04:37 2010  NAKAMURA Usaku  <usa@r...>
+
+	* io.c (rb_io_s_read): close the IO if an exception is raised on
+	  seeking. [ruby-core:27429]
+
 Mon Apr 19 22:43:28 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	 * ruby.h (RB_GC_GUARD_PTR): workaround for gcc optimization.
Index: ruby_1_8_7/version.h
===================================================================
--- ruby_1_8_7/version.h	(revision 27409)
+++ ruby_1_8_7/version.h	(revision 27410)
@@ -2,7 +2,7 @@
 #define RUBY_RELEASE_DATE "2010-04-20"
 #define RUBY_VERSION_CODE 187
 #define RUBY_RELEASE_CODE 20100420
-#define RUBY_PATCHLEVEL 253
+#define RUBY_PATCHLEVEL 254
 
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 8
Index: ruby_1_8_7/io.c
===================================================================
--- ruby_1_8_7/io.c	(revision 27409)
+++ ruby_1_8_7/io.c	(revision 27410)
@@ -5462,6 +5462,18 @@
     return io_read(arg->argc, &arg->sep, arg->io);
 }
 
+struct seek_arg {
+    VALUE io;
+    VALUE offset;
+    int mode;
+};
+
+static VALUE
+seek_before_read(struct seek_arg *arg)
+{
+    return rb_io_seek(arg->io, arg->offset, arg->mode);
+}
+
 /*
  *  call-seq:
  *     IO.read(name, [length [, offset]] )   => string
@@ -5491,7 +5503,16 @@
     arg.io = rb_io_open(StringValueCStr(fname), "r");
     if (NIL_P(arg.io)) return Qnil;
     if (!NIL_P(offset)) {
-	rb_io_seek(arg.io, offset, SEEK_SET);
+	struct seek_arg sarg;
+	int state = 0;
+	sarg.io = arg.io;
+	sarg.offset = offset;
+	sarg.mode = SEEK_SET;
+	rb_protect((VALUE (*)(VALUE))seek_before_read, (VALUE)&sarg, &state);
+	if (state) {
+	    rb_io_close(arg.io);
+	    rb_jump_tag(state);
+	}
     }
     return rb_ensure(io_s_read, (VALUE)&arg, rb_io_close, arg.io);
 }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]