From c5c245554df58577560571150189a592da7d0640 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 24 May 2011 22:58:18 +0000 Subject: * lib/tempfile.rb (Tempfile.{mkdir,rmdir}): revert for backward compatibility. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/tempfile.rb | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'lib/tempfile.rb') diff --git a/lib/tempfile.rb b/lib/tempfile.rb index 94dd0ce532..46a5605e52 100644 --- a/lib/tempfile.rb +++ b/lib/tempfile.rb @@ -141,12 +141,9 @@ class Tempfile < DelegateClass(File) else opts = perm end - lock = self.class.lock_tempfile(tmpname) - begin + self.class.locking(tmpname) do @data[1] = @tmpfile = File.open(tmpname, mode, opts) @data[0] = @tmpname = tmpname - ensure - self.class.unlock_tempfile(lock) end @mode = mode & ~(File::CREAT|File::EXCL) perm or opts.freeze @@ -327,16 +324,22 @@ class Tempfile < DelegateClass(File) # :stopdoc: - # makes lock for +tmpname+ and returns the lock. - def lock_tempfile(tmpname) + # yields with locking for +tmpname+ and returns the result of the + # block. + def locking(tmpname) lock = tmpname + '.lock' - Dir.mkdir(lock) - lock + mkdir(lock) + yield + ensure + rmdir(lock) if lock end - # unlock the lock made by _lock_tempfile_. - def unlock_tempfile(lock) - Dir.rmdir(lock) + def mkdir(*args) + Dir.mkdir(*args) + end + + def rmdir(*args) + Dir.rmdir(*args) end end end -- cgit v1.2.3