1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* file.c (rb_stat_rdev_major): added. [new]

* file.c (rb_stat_rdev_minor): added. [new]

* file.c (rb_stat_inspect): print mode in octal.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2002-01-29 07:16:09 +00:00
parent e9d17f8a22
commit 86298123d7
5 changed files with 283 additions and 104 deletions

View file

@ -6,6 +6,14 @@ Mon Jan 28 18:33:18 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
* parse.y (yylex): strict check for numbers. * parse.y (yylex): strict check for numbers.
Mon Jan 28 18:01:01 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* file.c (rb_stat_rdev_major): added. [new]
* file.c (rb_stat_rdev_minor): added. [new]
* file.c (rb_stat_inspect): print mode in octal.
Mon Jan 28 13:29:41 2002 K.Kosako <kosako@sofnec.co.jp> Mon Jan 28 13:29:41 2002 K.Kosako <kosako@sofnec.co.jp>
* eval.c (is_defined): defined?(Foo::Baz) should check constants * eval.c (is_defined): defined?(Foo::Baz) should check constants

40
file.c
View file

@ -210,6 +210,30 @@ rb_stat_rdev(self)
#endif #endif
} }
static VALUE
rb_stat_rdev_major(self)
VALUE self;
{
#if defined(HAVE_ST_RDEV) && defined(major)
long rdev = get_stat(self)->st_rdev;
return ULONG2NUM(major(rdev));
#else
return INT2FIX(0);
#endif
}
static VALUE
rb_stat_rdev_minor(self)
VALUE self;
{
#if defined(HAVE_ST_RDEV) && defined(minor)
long rdev = get_stat(self)->st_rdev;
return ULONG2NUM(minor(rdev));
#else
return INT2FIX(0);
#endif
}
static VALUE static VALUE
rb_stat_size(self) rb_stat_size(self)
VALUE self; VALUE self;
@ -290,15 +314,23 @@ rb_stat_inspect(self)
rb_str_buf_cat2(str, " "); rb_str_buf_cat2(str, " ");
for (i = 0; i < sizeof(member)/sizeof(member[0]); i++) { for (i = 0; i < sizeof(member)/sizeof(member[0]); i++) {
VALUE str2; VALUE v;
if (i > 0) { if (i > 0) {
rb_str_buf_cat2(str, ", "); rb_str_buf_cat2(str, ", ");
} }
rb_str_buf_cat2(str, member[i].name); rb_str_buf_cat2(str, member[i].name);
rb_str_buf_cat2(str, "="); rb_str_buf_cat2(str, "=");
str2 = rb_inspect((*member[i].func)(self)); v = (*member[i].func)(self);
rb_str_append(str, str2); if (i == 2) { /* mode */
char buf[32];
sprintf(buf, "0%o", NUM2INT(v));
rb_str_buf_cat2(str, buf);
}
else {
rb_str_append(str, rb_inspect(v));
}
} }
rb_str_buf_cat2(str, ">"); rb_str_buf_cat2(str, ">");
OBJ_INFECT(str, self); OBJ_INFECT(str, self);
@ -2553,6 +2585,8 @@ Init_File()
rb_define_method(rb_cStat, "uid", rb_stat_uid, 0); rb_define_method(rb_cStat, "uid", rb_stat_uid, 0);
rb_define_method(rb_cStat, "gid", rb_stat_gid, 0); rb_define_method(rb_cStat, "gid", rb_stat_gid, 0);
rb_define_method(rb_cStat, "rdev", rb_stat_rdev, 0); rb_define_method(rb_cStat, "rdev", rb_stat_rdev, 0);
rb_define_method(rb_cStat, "rdev_major", rb_stat_rdev_major, 0);
rb_define_method(rb_cStat, "rdev_minor", rb_stat_rdev_minor, 0);
rb_define_method(rb_cStat, "size", rb_stat_size, 0); rb_define_method(rb_cStat, "size", rb_stat_size, 0);
rb_define_method(rb_cStat, "blksize", rb_stat_blksize, 0); rb_define_method(rb_cStat, "blksize", rb_stat_blksize, 0);
rb_define_method(rb_cStat, "blocks", rb_stat_blocks, 0); rb_define_method(rb_cStat, "blocks", rb_stat_blocks, 0);

View file

@ -40,6 +40,7 @@ module Open3
pe[1].close pe[1].close
Process.waitpid(pid) Process.waitpid(pid)
pi = [pw[1], pr[0], pe[0]] pi = [pw[1], pr[0], pe[0]]
pw[1].sync = true
if defined? yield if defined? yield
begin begin
return yield(*pi) return yield(*pi)

View file

@ -1,130 +1,203 @@
# The Singleton module implements the Singleton pattern - i.e. # The Singleton module implements the Singleton pattern.
# #
# class Klass # Usage:
# include Singleton # class Klass
# # ... # include Singleton
# end # # ...
# end
# #
# * ensures that only one instance of Klass called ``the instance'' # * this ensures that only one instance of Klass lets call it
# can be created. # ``the instance'' can be created.
# #
# a,b = Klass.instance, Klass.instance # a,b = Klass.instance, Klass.instance
# a == b # => true # a == b # => true
# a.new # NoMethodError - new is private ... # a.new # NoMethodError - new is private ...
# #
# * ``The instance'' is created at instanciation time - i.e. the first call # * ``The instance'' is created at instanciation time, in other words
# of Klass.instance(). # the first call of Klass.instance(), thus
# #
# class OtherKlass # class OtherKlass
# include Singleton # include Singleton
# # ... # # ...
# end # end
# p "#{ObjectSpace.each_object(OtherKlass) {}}" # => 0 # ObjectSpace.each_object(OtherKlass){} # => 0.
# #
# * This behavior is preserved under inheritance. # * This behavior is preserved under inheritance and cloning.
# #
# #
# This achieved by marking # This is achieved by marking
# * Klass.new and Klass.allocate - as private and modifying # * Klass.new and Klass.allocate - as private
# * Klass.inherited(sub_klass) - to ensure # * removing #clone and #dup and modifying
# that the Singleton pattern is properly inherited. # * Klass.inherited(sub_klass) and Klass.clone() -
# to ensure that the Singleton pattern is properly
# inherited and cloned.
# #
# In addition Klass is provided with the class methods # In addition Klass is providing the additional class methods
# * Klass.instance() - returning ``the instance'' # * Klass.instance() - returning ``the instance''. After a successful
# * Klass._load(str) - returning ``the instance'' # self modifying instanciating first call the method body is a simple
# * Klass._wait() - a hook method putting a second (or n-th) # def Klass.instance()
# thread calling Klass.instance on a waiting loop if the first call # return @__instance__
# to Klass.instance is still in progress. # end
# * Klass._load(str) - calls instance()
# * Klass._instanciate?() - returning ``the instance'' or nil
# This hook method puts a second (or nth) thread calling
# Klass.instance() on a waiting loop. The return value signifies
# the successful completion or premature termination of the
# first, or more generally, current instanciating thread.
# #
# The sole instance method of Singleton is # The sole instance method of Singleton is
# * _dump(depth) - returning the empty string # * _dump(depth) - returning the empty string. Marshalling strips
# The default Marshalling strategy is to strip all state information - i.e. # by default all state information, e.g. instance variables and taint
# instance variables from ``the instance''. Providing custom # state, from ``the instance''. Providing custom _load(str) and
# _dump(depth) and _load(str) method allows the (partial) resurrection # _dump(depth) hooks allows the (partially) resurrections of a
# of a previous state of ``the instance'' - see third example. # previous state of ``the instance''.
#
module Singleton module Singleton
def Singleton.included (klass) private
# should this be checked? # default marshalling strategy
# raise TypeError.new "..." if klass.type == Module def _dump(depth=-1) '' end
klass.module_eval {
undef_method :clone class << self
undef_method :dup # extending an object with Singleton is a bad idea
} undef_method :extend_object
class << klass private
def inherited(sub_klass) def append_features(mod)
# @__instance__ takes on one of the following values # This catches ill advisted inclusions of Singleton in
# * nil - before (and after a failed) creation # singletons types (sounds like an oxymoron) and
# * false - during creation # helps out people counting on transitive mixins
# * sub_class instance - after a successful creation unless mod.instance_of? (Class)
sub_klass.instance_eval { @__instance__ = nil } raise TypeError.new "Inclusion of the OO-Singleton module in module #{mod}"
def sub_klass.instance end
unless @__instance__.nil? unless (class << mod; self end) <= (class << Object; self end)
# is the extra flexiblity having the hook method raise TypeError.new "Inclusion of the OO-Singleton module in singleton type"
# _wait() around ever useful? end
_wait() super
# check for instance creation end
return @__instance__ if @__instance__ def included (klass)
end # remove build in copying methods
Thread.critical = true klass.class_eval do
unless @__instance__ undef_method(:clone) rescue nil
@__instance__ = false undef_method(:dup) rescue nil
Thread.critical = false end
begin
@__instance__ = new # initialize the ``klass instance variable'' @__instance__ to nil
ensure klass.instance_eval do @__instance__ = nil end
if @__instance__ class << klass
define_method(:instance) {@__instance__ } # a main point of the whole exercise - make
else # new and allocate private
# failed instance creation private :new, :allocate
@__instance__ = nil
end # declare the self modifying klass#instance method
end define_method (:instance, Singleton::FirstInstanceCall)
else
Thread.critical = false # simple waiting loop hook - should do in most cases
end # note the pre/post-conditions of a thread-critical state
return @__instance__ private
end def _instanciate?()
end while false.equal?(@__instance__)
def _load(str) Thread.critical = false
instance sleep(0.08)
end Thread.critical = true
def _wait end
sleep(0.05) while false.equal?(@__instance__) @__instance__
end end
private :new, :allocate
# hook methods are also marked private # default Marshalling strategy
private :_load,:_wait def _load(str) instance end
# ensure that the Singleton pattern is properly inherited
def inherited(sub_klass)
super
sub_klass.instance_eval do @__instance__ = nil end
class << sub_klass
define_method (:instance, Singleton::FirstInstanceCall)
end
end
public
# properly clone the Singleton pattern. Question - Did
# you know that duping doesn't copy class methods?
def clone
res = super
res.instance_eval do @__instance__ = nil end
class << res
define_method (:instance, Singleton::FirstInstanceCall)
end
res
end
end # of << klass
end # of included
end # of << Singleton
FirstInstanceCall = proc do
# @__instance__ takes on one of the following values
# * nil - before and after a failed creation
# * false - during creation
# * sub_class instance - after a successful creation
# the form makes up for the lack of returns in progs
Thread.critical = true
if @__instance__.nil?
@__instance__ = false
Thread.critical = false
begin
@__instance__ = new
ensure
if @__instance__
def self.instance() @__instance__ end
else
@__instance__ = nil # failed instance creation
end
end
elsif _instanciate?()
Thread.critical = false
else
@__instance__ = false
Thread.critical = false
begin
@__instance__ = new
ensure
if @__instance__
def self.instance() @__instance__ end
else
@__instance__ = nil
end
end
end
@__instance__
end end
klass.inherited klass
end
private
def _dump(depth)
return ""
end
end end
if __FILE__ == $0 if __FILE__ == $0
#basic example def num_of_instances(klass)
"#{ObjectSpace.each_object(klass){}} #{klass} instance(s)"
end
# The basic and most important example. The latter examples demonstrate
# advanced features that have no relevance for the general usage
class SomeSingletonClass class SomeSingletonClass
include Singleton include Singleton
end end
puts "There are #{num_of_instances(SomeSingletonClass)}"
a = SomeSingletonClass.instance a = SomeSingletonClass.instance
b = SomeSingletonClass.instance # a and b are same object b = SomeSingletonClass.instance # a and b are same object
p a == b # => true puts "basic test is #{a == b}"
begin begin
SomeSingletonClass.new SomeSingletonClass.new
rescue NoMethodError => mes rescue NoMethodError => mes
puts mes puts mes
end end
# threaded example with exception and customized hook #_wait method
puts "\nThreaded example with exception and customized #_instanciate?() hook"; p
Thread.abort_on_exception = false Thread.abort_on_exception = false
def num_of_instances(mod)
"#{ObjectSpace.each_object(mod){}} #{mod} instance"
end
class Ups < SomeSingletonClass class Ups < SomeSingletonClass
def initialize def initialize
@ -132,18 +205,23 @@ class Ups < SomeSingletonClass
puts "initialize called by thread ##{Thread.current[:i]}" puts "initialize called by thread ##{Thread.current[:i]}"
end end
class << self class << self
def _wait def _instanciate?
@enter.push Thread.current[:i] @enter.push Thread.current[:i]
sleep 0.02 while false.equal?(@__instance__) while false.equal?(@__instance__)
Thread.critical = false
sleep 0.04
Thread.critical = true
end
@leave.push Thread.current[:i] @leave.push Thread.current[:i]
@__instance__
end end
def __sleep def __sleep
sleep (rand(0.1)) sleep (rand(0.08))
end end
def allocate def allocate
__sleep __sleep
def self.allocate; __sleep; super() end def self.allocate; __sleep; super() end
raise "allocation in thread ##{Thread.current[:i]} aborted" raise "boom - allocation in thread ##{Thread.current[:i]} aborted"
end end
def instanciate_all def instanciate_all
@enter = [] @enter = []
@ -159,9 +237,9 @@ class Ups < SomeSingletonClass
end end
end end
end end
puts "Before there were #{num_of_instances(Ups)}s" puts "Before there were #{num_of_instances(self)}"
sleep 3 sleep 5
puts "Now there is #{num_of_instances(Ups)}" puts "Now there is #{num_of_instances(self)}"
puts "#{@enter.join "; "} was the order of threads entering the waiting loop" puts "#{@enter.join "; "} was the order of threads entering the waiting loop"
puts "#{@leave.join "; "} was the order of threads leaving the waiting loop" puts "#{@leave.join "; "} was the order of threads leaving the waiting loop"
end end
@ -177,8 +255,17 @@ Ups.instanciate_all
# 2; 3; 6; 1; 7; 5; 9; 4 was the order of threads entering the waiting loop # 2; 3; 6; 1; 7; 5; 9; 4 was the order of threads entering the waiting loop
# 3; 2; 1; 7; 6; 5; 4; 9 was the order of threads leaving the waiting loop # 3; 2; 1; 7; 6; 5; 4; 9 was the order of threads leaving the waiting loop
puts "\nLets see if class level cloning really works"
Yup = Ups.clone
def Yup.allocate
__sleep
def self.allocate; __sleep; super() end
raise "boom - allocation in thread ##{Thread.current[:i]} aborted"
end
Yup.instanciate_all
# Customized marshalling
puts "\n","Customized marshalling"
class A class A
include Singleton include Singleton
attr_accessor :persist, :die attr_accessor :persist, :die
@ -195,6 +282,7 @@ end
a = A.instance a = A.instance
a.persist = ["persist"] a.persist = ["persist"]
a.die = "die" a.die = "die"
a.taint
stored_state = Marshal.dump(a) stored_state = Marshal.dump(a)
# change state # change state
@ -203,6 +291,47 @@ a.die = nil
b = Marshal.load(stored_state) b = Marshal.load(stored_state)
p a == b # => true p a == b # => true
p a.persist # => ["persist"] p a.persist # => ["persist"]
p a.die # => nil p a.die # => nil
puts "\n\nSingleton with overridden default #inherited() hook"
class Up
def Up.inherited(sub_klass)
puts "#{sub_klass} subclasses #{self}"
end
end
class Middle < Up
undef_method :dup
include Singleton
end
class Down < Middle; end
puts "basic test is #{Down.instance == Down.instance}"
puts "\n","Various exceptions"
begin
module AModule
include Singleton
end
rescue TypeError => mes
puts mes #=> Inclusion of the OO-Singleton module in module AModule
end
begin
class << 'aString'
include Singleton
end
rescue TypeError => mes
puts mes # => Inclusion of the OO-Singleton module in singleton type
end
begin
'aString'.extend Singleton
rescue NoMethodError => mes
puts mes #=> undefined method `extend_object' for Singleton:Module
end
end end

View file

@ -15,7 +15,7 @@
;;; for example : ;;; for example :
;;; ;;;
;;; (autoload 'ruby-mode "ruby-mode" ;;; (autoload 'ruby-mode "ruby-mode"
;;; "Mode for editing ruby source files") ;;; "Mode for editing ruby source files" t)
;;; (setq auto-mode-alist ;;; (setq auto-mode-alist
;;; (append '(("\\.rb$" . ruby-mode)) auto-mode-alist)) ;;; (append '(("\\.rb$" . ruby-mode)) auto-mode-alist))
;;; (setq interpreter-mode-alist (append '(("ruby" . ruby-mode)) ;;; (setq interpreter-mode-alist (append '(("ruby" . ruby-mode))
@ -35,6 +35,13 @@
;;; HISTORY ;;; HISTORY
;;; senda - 8 Apr 1998: Created. ;;; senda - 8 Apr 1998: Created.
;;; $Log$ ;;; $Log$
;;; Revision 1.4 2002/01/29 07:16:09 matz
;;; * file.c (rb_stat_rdev_major): added. [new]
;;;
;;; * file.c (rb_stat_rdev_minor): added. [new]
;;;
;;; * file.c (rb_stat_inspect): print mode in octal.
;;;
;;; Revision 1.3 1999/12/01 09:24:18 matz ;;; Revision 1.3 1999/12/01 09:24:18 matz
;;; 19991201 ;;; 19991201
;;; ;;;