Module: TmpFile

Defined in:
lib/scout/tmpfile.rb,
lib/scout/path/tmpfile.rb

Constant Summary collapse

MAX_FILE_LENGTH =
150
SLASH_REPLACE =
'·'

Class Method Summary collapse

Class Method Details

.in_dir(*args) ⇒ Object



90
91
92
93
94
95
96
# File 'lib/scout/tmpfile.rb', line 90

def self.in_dir(*args)
  with_dir(*args) do |dir|
    Misc.in_dir dir do
      yield dir
    end
  end
end

.random_name(prefix = 'tmp-', max = 1_000_000_000) ⇒ Object

Creates a random file name, with the given suffix and a random number up to max



27
28
29
30
# File 'lib/scout/tmpfile.rb', line 27

def self.random_name(prefix = 'tmp-', max = 1_000_000_000)
  n = rand(max)
  prefix + n.to_s
end

.tmp_file(prefix = 'tmp-', max = 1_000_000_000, dir = nil) ⇒ Object

Creates a random filename in the temporary directory



33
34
35
36
37
# File 'lib/scout/tmpfile.rb', line 33

def self.tmp_file(prefix = 'tmp-', max = 1_000_000_000, dir = nil)
  dir ||= TmpFile.tmpdir
  dir = dir.find if Path === dir
  File.join(dir, random_name(prefix, max))
end

.tmp_for_file(file, tmp_options = {}, other_options = {}) ⇒ Object



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/scout/tmpfile.rb', line 99

def self.tmp_for_file(file, tmp_options = {}, other_options = {})
  tmp_for_file, prefix, key, persistence_dir = IndiferentHash.process_options tmp_options, :file, :prefix, :key, :dir
  return tmp_for_file unless tmp_for_file.nil?

  if prefix.nil?
    perfile = file.to_s.sub(/\.b?gz$/,'')
  else
    perfile = prefix.to_s + ":" + file.to_s.sub(/\.b?gz$/,'')
  end

  perfile += "[#{ key }]" if key

  if other_options.include? :filters
    other_options[:filters].each do |match,value|
      perfile = perfile + "&F[#{match}=#{Misc.digest(value)}]"
    end
  end

  persistence_dir = TmpFile.tmpdir if persistence_dir.nil?
  Path.setup(persistence_dir) unless Path === persistence_dir

  filename = perfile.gsub(/\s/,'_').gsub('/', SLASH_REPLACE)
  clean_options = other_options.dup
  clean_options.delete :unnamed
  clean_options.delete "unnamed"

  filename = filename[0..MAX_FILE_LENGTH] << Misc.digest(filename[MAX_FILE_LENGTH+1..-1]) if filename.length > MAX_FILE_LENGTH + 10

  filename  += ":" << Misc.digest(clean_options) unless clean_options.empty?

  persistence_dir[filename]
end

.tmpdirObject



21
22
23
# File 'lib/scout/tmpfile.rb', line 21

def self.tmpdir
  @tmpdir ||= self.user_tmp('tmpfiles')
end

.tmpdir=(tmpdir) ⇒ Object



17
18
19
# File 'lib/scout/tmpfile.rb', line 17

def self.tmpdir=(tmpdir)
  @tmpdir = tmpdir
end

.user_tmp(subdir = nil) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/scout/tmpfile.rb', line 9

def self.user_tmp(subdir = nil)
  if subdir
    File.join(ENV["HOME"],"/tmp/scout", subdir)
  else
    File.join(ENV["HOME"],"/tmp/scout")
  end
end

.with_dir(erase = true, options = {}) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/scout/tmpfile.rb', line 77

def self.with_dir(erase = true, options = {})
  prefix = options[:prefix] || 'tmpdir-'
  tmpdir = tmp_file prefix

  Open.mkdir tmpdir

  result = yield(tmpdir)

  Open.rm_rf tmpdir if Open.exist?(tmpdir) && erase

  result
end

.with_file(content = nil, erase = true, options = {}) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/scout/tmpfile.rb', line 39

def self.with_file(content = nil, erase = true, options = {})
  if content.is_a?(Hash)
    options = content
    content = nil
    erase = true
  end
  if erase.is_a?(Hash)
    options = erase
    erase = true
  end

  prefix = options[:prefix] || 'tmp-'
  tmpdir = options[:tmpdir] || TmpFile.tmpdir
  max = options[:max] || 1_000_000_000
  tmpfile = tmp_file prefix, max, tmpdir
  tmpfile += ".#{options[:extension]}" if options[:extension]

  Open.mkdir tmpdir
  if IO === content
    Open.open(tmpfile, mode: 'wb') do |f|
      begin
        while c = content.readpartial(1024)
          f << c
        end
      rescue EOFError
      end
    end
  elsif !content.nil?
    Open.write(tmpfile, content)
  end

  result = yield(tmpfile)

  Open.rm_rf tmpfile if Open.exist?(tmpfile) && erase

  result
end

.with_path(*args, &block) ⇒ Object



2
3
4
5
6
7
# File 'lib/scout/path/tmpfile.rb', line 2

def self.with_path(*args, &block)
  TmpFile.with_file(*args) do |file|
    Path.setup(file)
    yield file
  end
end