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

tempfile.rb: fix r47655

* lib/tempfile.rb (Tempfile#initialize, Tempfile.create): get rid of
  shadowing local variables.

* lib/tmpdir.rb (Dir::Tmpname#make_tmpname): simlify argument
  splitting.

* test/test_tempfile.rb: need thread library for ConditionVariable.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-09-21 01:40:21 +00:00
parent 09e91be9ab
commit a718be06fa
3 changed files with 8 additions and 16 deletions

View file

@ -122,7 +122,7 @@ class Tempfile < DelegateClass(File)
# #
# If Tempfile.new cannot find a unique filename within a limited # If Tempfile.new cannot find a unique filename within a limited
# number of tries, then it will raise an exception. # number of tries, then it will raise an exception.
def initialize(basename, tmpdir=nil, mode: 0, **opts) def initialize(basename, tmpdir=nil, mode: 0, **options)
if block_given? if block_given?
warn "Tempfile.new doesn't call the given block." warn "Tempfile.new doesn't call the given block."
end end
@ -130,7 +130,7 @@ class Tempfile < DelegateClass(File)
@clean_proc = Remover.new(@data) @clean_proc = Remover.new(@data)
ObjectSpace.define_finalizer(self, @clean_proc) ObjectSpace.define_finalizer(self, @clean_proc)
::Dir::Tmpname.create(basename, tmpdir, opts) do |tmpname, n, opts| ::Dir::Tmpname.create(basename, tmpdir, options) do |tmpname, n, opts|
mode |= File::RDWR|File::CREAT|File::EXCL mode |= File::RDWR|File::CREAT|File::EXCL
opts[:perm] = 0600 opts[:perm] = 0600
@data[1] = @tmpfile = File.open(tmpname, mode, opts) @data[1] = @tmpfile = File.open(tmpname, mode, opts)
@ -347,9 +347,9 @@ end
# ... do something with f ... # ... do something with f ...
# end # end
# #
def Tempfile.create(basename, tmpdir=nil, mode: 0, **opts) def Tempfile.create(basename, tmpdir=nil, mode: 0, **options)
tmpfile = nil tmpfile = nil
Dir::Tmpname.create(basename, tmpdir, opts) do |tmpname, n, opts| Dir::Tmpname.create(basename, tmpdir, options) do |tmpname, n, opts|
mode |= File::RDWR|File::CREAT|File::EXCL mode |= File::RDWR|File::CREAT|File::EXCL
opts[:perm] = 0600 opts[:perm] = 0600
tmpfile = File.open(tmpname, mode, opts) tmpfile = File.open(tmpname, mode, opts)

View file

@ -105,21 +105,12 @@ class Dir
Dir.tmpdir Dir.tmpdir
end end
def make_tmpname(prefix_suffix, n) def make_tmpname((prefix, suffix), n)
case prefix_suffix
when String
prefix = prefix_suffix
suffix = ""
when Array
prefix = prefix_suffix[0]
suffix = prefix_suffix[1]
else
raise ArgumentError, "unexpected prefix_suffix: #{prefix_suffix.inspect}"
end
t = Time.now.strftime("%Y%m%d") t = Time.now.strftime("%Y%m%d")
path = "#{prefix}#{t}-#{$$}-#{rand(0x100000000).to_s(36)}" path = "#{prefix}#{t}-#{$$}-#{rand(0x100000000).to_s(36)}"
path << "-#{n}" if n path << "-#{n}" if n
path << suffix path << suffix if suffix
path
end end
def create(basename, tmpdir=nil, max_try: nil, **opts) def create(basename, tmpdir=nil, max_try: nil, **opts)

View file

@ -1,5 +1,6 @@
require 'test/unit' require 'test/unit'
require 'tempfile' require 'tempfile'
require 'thread'
require_relative 'ruby/envutil' require_relative 'ruby/envutil'
class TestTempfile < Test::Unit::TestCase class TestTempfile < Test::Unit::TestCase