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

ruby-changes:17194

From: akr <ko1@a...>
Date: Wed, 8 Sep 2010 06:26:56 +0900 (JST)
Subject: [ruby-changes:17194] Ruby:r29194 (trunk): * ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated

akr	2010-09-08 06:26:33 +0900 (Wed, 08 Sep 2010)

  New Revision: 29194

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

  Log:
    * ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated
      from pathname.rb.

  Modified files:
    trunk/ChangeLog
    trunk/ext/pathname/lib/pathname.rb
    trunk/ext/pathname/pathname.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29193)
+++ ChangeLog	(revision 29194)
@@ -1,3 +1,8 @@
+Wed Sep  8 06:25:41 2010  Tanaka Akira  <akr@f...>
+
+	* ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated
+	  from pathname.rb.
+
 Tue Sep  7 21:03:35 2010  Tanaka Akira  <akr@f...>
 
 	* ext/pathname/pathname.c (path_readable_real_p):
Index: ext/pathname/lib/pathname.rb
===================================================================
--- ext/pathname/lib/pathname.rb	(revision 29193)
+++ ext/pathname/lib/pathname.rb	(revision 29194)
@@ -486,9 +486,6 @@
 
 class Pathname    # * FileTest *
 
-  # See <tt>FileTest.setuid?</tt>.
-  def setuid?() FileTest.setuid?(@path) end
-
   # See <tt>FileTest.setgid?</tt>.
   def setgid?() FileTest.setgid?(@path) end
 
Index: ext/pathname/pathname.c
===================================================================
--- ext/pathname/pathname.c	(revision 29193)
+++ ext/pathname/pathname.c	(revision 29194)
@@ -724,6 +724,15 @@
 }
 
 /*
+ * See <tt>FileTest.setuid?</tt>.
+ */
+static VALUE
+path_setuid_p(VALUE self)
+{
+    return rb_funcall(rb_mFileTest, rb_intern("setuid?"), 1, get_strpath(self));
+}
+
+/*
  * == Pathname
  *
  * Pathname represents a pathname which locates a file in a filesystem.
@@ -966,4 +975,5 @@
     rb_define_method(rb_cPathname, "readable?", path_readable_p, 0);
     rb_define_method(rb_cPathname, "world_readable?", path_world_readable_p, 0);
     rb_define_method(rb_cPathname, "readable_real?", path_readable_real_p, 0);
+    rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0);
 }

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

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