From f21230b4916955440028e54c73eb965a44980368 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 24 Aug 2010 13:08:00 +0000 Subject: * ext/pathname/pathname.c (path_read): Pathname#read translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/pathname/lib/pathname.rb | 3 --- ext/pathname/pathname.c | 21 +++++++++++++++++++++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6fa1a4374b..d80d7f8d43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 24 22:07:28 2010 Tanaka Akira + + * ext/pathname/pathname.c (path_read): Pathname#read translated from + pathname.rb. + Tue Aug 24 10:11:04 2010 Nobuyoshi Nakada * configure.in: read API version from include/ruby/version.h. diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 3099b2b8f4..203fe930fc 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -484,9 +484,6 @@ class Pathname end class Pathname # * IO * - # See IO.read. Returns all data from the file, or the first +N+ bytes - # if specified. - def read(*args) IO.read(@path, *args) end # See IO.binread. Returns all the bytes from the file, or the first +N+ # if specified. diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index bd55da1d94..76bbbd5c0d 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -261,6 +261,26 @@ path_each_line(int argc, VALUE *argv, VALUE self) } } +/* + * call-seq: + * pathname.read([length [, offset]]) -> string + * pathname.read([length [, offset]], open_args) -> string + * + * See IO.read. Returns all data from the file, or the first +N+ bytes + * if specified. + * + */ +static VALUE +path_read(int argc, VALUE *argv, VALUE self) +{ + VALUE args[4]; + int n; + + args[0] = get_strpath(self); + n = rb_scan_args(argc, argv, "03", &args[1], &args[2], &args[3]); + return rb_funcall2(rb_cIO, rb_intern("read"), 1+n, args); +} + /* * See File.atime. Returns last access time. */ @@ -721,6 +741,7 @@ Init_pathname() rb_define_method(rb_cPathname, "realpath", path_realpath, -1); rb_define_method(rb_cPathname, "realdirpath", path_realdirpath, -1); rb_define_method(rb_cPathname, "each_line", path_each_line, -1); + rb_define_method(rb_cPathname, "read", path_read, -1); rb_define_method(rb_cPathname, "atime", path_atime, 0); rb_define_method(rb_cPathname, "ctime", path_ctime, 0); rb_define_method(rb_cPathname, "mtime", path_mtime, 0); -- cgit v1.2.3