[#69616] [Ruby trunk - Feature #11258] add 'x' mode character for O_EXCL — cremno@...
Issue #11258 has been updated by cremno phobia.
3 messages
2015/06/16
[#69643] [Ruby trunk - Misc #11276] [RFC] compile.c: convert to use ccan/list — normalperson@...
Issue #11276 has been updated by Eric Wong.
3 messages
2015/06/17
[#69751] [Ruby trunk - Bug #11001] 2.2.1 Segmentation fault in reserve_stack() function. — kubo@...
Issue #11001 has been updated by Takehiro Kubo.
3 messages
2015/06/27
[ruby-core:69589] [Ruby trunk - Feature #7148] Improved Tempfile w/o DelegateClass
From:
glass.saga@...
Date:
2015-06-15 01:22:10 UTC
List:
ruby-core #69589
Issue #7148 has been updated by Masaki Matsushita.
Assignee changed from Yukihiro Matsumoto to Masaki Matsushita
----------------------------------------
Feature #7148: Improved Tempfile w/o DelegateClass
https://bugs.ruby-lang.org/issues/7148#change-52931
* Author: Masaki Matsushita
* Status: Assigned
* Priority: Low
* Assignee: Masaki Matsushita
----------------------------------------
I propose improved `Tempfile` without `DelegateClass()`.
Present `Tempfile` has following problems.
1. confusing inspect
~~~ruby
t = Tempfile.new("foo") #=> #<File:/tmp/foo20121012-6762-12w11to>
t.is_a? File #=> false
~~~
2. `#dup` doesn't duplicate `IO`
~~~ruby
t = Tempfile.new("foo")
t.dup.close
t.read #=> IOError: closed stream
~~~
3. finalizer performs unlink even when it has been duplicated
~~~ruby
t = Tempfile.new("foo")
path = t.path #=> "/tmp/foo20121012-7533-1q537gq"
File.exist? path #=> true
tt = t.dup
t = nil
GC.start
File.exist? path #=> false
~~~
I think these problems caused by using `DelegateClass()`.
Therefore, I made a patch to resolve the problems.
The patched Tempfile class is a subclass of File.
---Files--------------------------------
patch.diff (3.52 KB)
--
https://bugs.ruby-lang.org/