Module: UnixUtils

Defined in:
lib/unix_utils.rb,
lib/unix_utils/version.rb

Constant Summary collapse

BUFSIZE =
2**16
VERSION =
"0.0.15"

Class Method Summary collapse

Class Method Details

._spawn(argv, input, output, error) ⇒ Object



293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# File 'lib/unix_utils.rb', line 293

def self._spawn(argv, input, output, error)
  # lifted from posix-spawn
  # https://github.com/rtomayko/posix-spawn/blob/master/lib/posix/spawn/child.rb
  Open3.popen3(*argv) do |stdin, stdout, stderr|
    readers = [stdout, stderr]
    if RUBY_DESCRIPTION =~ /jruby 1.7.0/
      readers.delete stderr
    end
    writers = if input
      [stdin]
    else
      stdin.close
      []
    end
    while readers.any? or writers.any?
      ready = IO.select(readers, writers, readers + writers)
      # write to stdin stream
      ready[1].each do |fd|
        begin
          boom = nil
          size = fd.write input.read(BUFSIZE)
        rescue Errno::EPIPE => boom
        rescue Errno::EAGAIN, Errno::EINTR
        end
        if boom || size < BUFSIZE
          stdin.close
          input.close
          writers.delete stdin
        end
      end
      # read from stdout and stderr streams
      ready[0].each do |fd|
        buf = (fd == stdout) ? output : error
        if fd.eof?
          readers.delete fd
          fd.close
        else
          begin
            buf << fd.readpartial(BUFSIZE)
          rescue Errno::EAGAIN, Errno::EINTR
          end
        end
      end
    end
    # thanks @tmm1 and @rtomayko for showing how it's done!
  end
end

.available?(bin) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


242
243
244
245
246
247
248
# File 'lib/unix_utils.rb', line 242

def self.available?(bin) # :nodoc:
  bin = bin.to_s
  return @@available_query[bin] if defined?(@@available_query) and @@available_query.is_a?(Hash) and @@available_query.has_key?(bin)
  @@available_query ||= {}
  `which #{bin}`
  @@available_query[bin] = $?.success?
end

.awk(infile, *expr) ⇒ Object



163
164
165
166
167
168
169
170
# File 'lib/unix_utils.rb', line 163

def self.awk(infile, *expr)
  infile = File.expand_path infile
  outfile = tmp_path infile
  bin = available?('gawk') ? 'gawk' : 'awk'
  argv = [bin, expr, infile].flatten
  spawn argv, :write_to => outfile
  outfile
end

.bunzip2(infile) ⇒ Object



119
120
121
122
123
124
125
# File 'lib/unix_utils.rb', line 119

def self.bunzip2(infile)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = ['bunzip2', '--stdout', infile]
  spawn argv, :write_to => outfile
  outfile
end

.bzip2(infile) ⇒ Object



129
130
131
132
133
134
135
# File 'lib/unix_utils.rb', line 129

def self.bzip2(infile)
  infile = File.expand_path infile
  outfile = tmp_path infile, '.bz2'
  argv = ['bzip2', '--keep', '--stdout', infile]
  spawn argv, :write_to => outfile
  outfile
end

.curl(url, form_data = nil) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/unix_utils.rb', line 13

def self.curl(url, form_data = nil)
  outfile = tmp_path url
  if url.start_with?('file://') or not url.include?('://')
    # deal with local files
    infile = File.expand_path url.sub('file://', '')
    unless File.readable?(infile)
      raise "[unix_utils] #{url.inspect} does not exist or is not readable on the local filesystem."
    end
    FileUtils.cp infile, outfile
    return outfile
  end
  uri = URI.parse url
  argv = [ 'curl', '--location', '--show-error', '--silent', '--compressed', '--header', 'Expect: ' ]
  if form_data
    argv += [ '--data', form_data ]
  end
  argv += [ uri.to_s, '--output', outfile ]
  spawn argv
  outfile
end

.cut(infile, character_positions) ⇒ Object

specify character_positions as a string like “3-5” or “3,9-10”



226
227
228
229
230
231
232
# File 'lib/unix_utils.rb', line 226

def self.cut(infile, character_positions)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = ['cut', '-c', character_positions, infile]
  spawn argv, :write_to => outfile
  outfile
end

.dos2unix(infile) ⇒ Object



190
191
192
193
194
195
196
197
# File 'lib/unix_utils.rb', line 190

def self.dos2unix(infile)
  infile = File.expand_path infile
  if available?('gawk') or available?('awk')
    awk infile, '{ sub(/\r/, ""); printf("%s\n", $0) }'
  else
    perl infile, 's/\r\n|\n|\r/\n/g'
  end
end

.du(srcdir) ⇒ Object



77
78
79
80
81
82
# File 'lib/unix_utils.rb', line 77

def self.du(srcdir)
  srcdir = File.expand_path srcdir
  argv = ['du', '-sk', srcdir]
  stdout = spawn argv
  stdout.strip.split(/\s+/).first.to_i
end

.gunzip(infile) ⇒ Object



111
112
113
114
115
116
117
# File 'lib/unix_utils.rb', line 111

def self.gunzip(infile)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = ['gunzip', '--stdout', infile]
  spawn argv, :write_to => outfile
  outfile
end

.gzip(infile) ⇒ Object



153
154
155
156
157
158
159
# File 'lib/unix_utils.rb', line 153

def self.gzip(infile)
  infile = File.expand_path infile
  outfile = tmp_path infile, '.gz'
  argv = ['gzip', '--stdout', infile]
  spawn argv, :write_to => outfile
  outfile
end

.head(infile, lines) ⇒ Object



217
218
219
220
221
222
223
# File 'lib/unix_utils.rb', line 217

def self.head(infile, lines)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = ['head', '-n', lines.to_s, infile]
  spawn argv, :write_to => outfile
  outfile
end

.iconv(infile, to, from) ⇒ Object



234
235
236
237
238
239
240
# File 'lib/unix_utils.rb', line 234

def self.iconv(infile, to, from)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = ['iconv', '-c', '-t', to, '-f', from, infile]
  spawn argv, :write_to => outfile
  outfile
end

.md5sum(infile) ⇒ Object

– os x 10.6.8; most platforms $ openssl dgst -md5 .bashrc MD5(.bashrc)= 88f464fb6d1d6fe9141135248bf7b265 ubuntu 11.04; fedora 7; gentoo $ md5sum –binary .mysql_history 8d01e54ab8142d6786850e22d55a1b6c *.mysql_history



64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/unix_utils.rb', line 64

def self.md5sum(infile)
  infile = File.expand_path infile
  if available?('md5sum')
    argv = ['md5sum', '--binary', infile]
    stdout = spawn argv
    stdout.strip.split(' ').first
  else
    argv = ['openssl', 'dgst', '-md5', infile]
    stdout = spawn argv
    stdout.strip.split(' ').last
  end
end

.method_missing(method_id, *args) ⇒ Object



341
342
343
344
345
346
347
348
349
350
351
352
353
# File 'lib/unix_utils.rb', line 341

def self.method_missing(method_id, *args)
  base_method_id = method_id.to_s.chomp('_s')
  if respond_to?(base_method_id)
    begin
      outfile = send(*([base_method_id]+args))
      File.read outfile
    ensure
      FileUtils.rm_f outfile
    end
  else
    super
  end
end

.perl(infile, *expr) ⇒ Object

Yes, this is a very limited use of perl.



173
174
175
176
177
178
179
# File 'lib/unix_utils.rb', line 173

def self.perl(infile, *expr)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = [ 'perl', expr.map { |e| ['-pe', e] }, infile ].flatten
  spawn argv, :write_to => outfile
  outfile
end

.sed(infile, *expr) ⇒ Object

POSIX sed, whether it’s provided by sed or gsed



200
201
202
203
204
205
206
207
# File 'lib/unix_utils.rb', line 200

def self.sed(infile, *expr)
  infile = File.expand_path infile
  outfile = tmp_path infile
  bin = available?('sed') ? 'sed' : ['gsed', '--posix']
  argv = [ bin, expr.map { |e| ['-e', e] }, infile ].flatten
  spawn argv, :write_to => outfile
  outfile
end

.shasum(infile, algorithm) ⇒ Object

– most platforms $ openssl dgst -sha256 .bash_profile SHA256(.bash_profile)= ae12206aaa35dc96273ed421f4e85ca26a1707455e3cc9f054c7f5e2e9c53df6 ubuntu 11.04 $ shasum -a 256 –portable .mysql_history 856aa27deb0b80b41031c2ddf722af28ba2a8c4999ff9cf2d45f33bc67d992ba ?.mysql_history fedora 7 $ sha256sum –binary .bash_profile 01b1210962b3d1e5e1ccba26f93d98efbb7b315b463f9f6bdb40ab496728d886 *.bash_profile



44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/unix_utils.rb', line 44

def self.shasum(infile, algorithm)
  infile = File.expand_path infile
  if available?('shasum')
    argv = ['shasum', '--binary', '-a', algorithm.to_s, infile]
    stdout = spawn argv
    stdout.strip.split(' ').first
  else
    argv = ['openssl', 'dgst', "-sha#{algorithm}", infile]
    stdout = spawn argv
    stdout.strip.split(' ').last
  end
end

.spawn(argv, options = {}) ⇒ Object

:nodoc:



258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/unix_utils.rb', line 258

def self.spawn(argv, options = {}) # :nodoc:
  input = if (read_from = options[:read_from])
    if RUBY_DESCRIPTION =~ /jruby 1.7.0/
      raise "[unix_utils] Can't use `#{argv.first}` since JRuby 1.7.0 has a broken IO implementation!"
    end
    File.open(read_from, 'r')
  end
  output = if (write_to = options[:write_to])
    output_redirected = true
    File.open(write_to, 'wb')
  else
    output_redirected = false
    StringIO.new
  end
  error = StringIO.new
  if (chdir = options[:chdir])
    Dir.chdir(chdir) do
      _spawn argv, input, output, error
    end
  else
    _spawn argv, input, output, error
  end
  error.rewind
  unless (whole_error = error.read).empty?
    $stderr.puts "[unix_utils] `#{argv.join(' ')}` STDERR:"
    $stderr.puts whole_error
  end
  unless output_redirected
    output.rewind
    output.read
  end
ensure
  [input, output, error].each { |io| io.close if io and not io.closed? }
end

.tail(infile, lines) ⇒ Object



209
210
211
212
213
214
215
# File 'lib/unix_utils.rb', line 209

def self.tail(infile, lines)
  infile = File.expand_path infile
  outfile = tmp_path infile
  argv = ['tail', '-n', lines.to_s, infile]
  spawn argv, :write_to => outfile
  outfile
end

.tar(srcdir) ⇒ Object



137
138
139
140
141
142
143
# File 'lib/unix_utils.rb', line 137

def self.tar(srcdir)
  srcdir = File.expand_path srcdir
  outfile = tmp_path srcdir, '.tar'
  argv = ['tar', '-cf', outfile, '-C', srcdir, '.']
  spawn argv
  outfile
end

.tmp_path(ancestor, extname = nil) ⇒ Object

:nodoc:



250
251
252
253
254
255
256
# File 'lib/unix_utils.rb', line 250

def self.tmp_path(ancestor, extname = nil) # :nodoc:
  ancestor = ancestor.to_s
  extname ||= File.extname ancestor
  basename = File.basename ancestor.gsub(/unix_utils_[a-f0-9]{8,}_/, '')
  basename.gsub! /\W+/, '_'
  File.join Dir.tmpdir, "unix_utils_#{SecureRandom.hex(4)}_#{basename[0..(234-extname.length)]}#{extname}"
end

.unix2dos(infile) ⇒ Object



181
182
183
184
185
186
187
188
# File 'lib/unix_utils.rb', line 181

def self.unix2dos(infile)
  infile = File.expand_path infile
  if available?('gawk') or available?('awk')
    awk infile, '{ sub(/\r/, ""); printf("%s\r\n", $0) }'
  else
    perl infile, 's/\r\n|\n|\r/\r\n/g'
  end
end

.untar(infile) ⇒ Object



102
103
104
105
106
107
108
109
# File 'lib/unix_utils.rb', line 102

def self.untar(infile)
  infile = File.expand_path infile
  destdir = tmp_path infile
  FileUtils.mkdir destdir
  argv = ['tar', '-xf', infile, '-C', destdir]
  spawn argv
  destdir
end

.unzip(infile) ⇒ Object



93
94
95
96
97
98
99
100
# File 'lib/unix_utils.rb', line 93

def self.unzip(infile)
  infile = File.expand_path infile
  destdir = tmp_path infile
  FileUtils.mkdir destdir
  argv = ['unzip', '-qq', '-n', infile, '-d', destdir]
  spawn argv
  destdir
end

.wc(infile) ⇒ Object



84
85
86
87
88
89
# File 'lib/unix_utils.rb', line 84

def self.wc(infile)
  infile = File.expand_path infile
  argv = ['wc', infile]
  stdout = spawn argv
  stdout.strip.split(/\s+/)[0..2].map { |s| s.to_i }
end

.zip(srcdir) ⇒ Object



145
146
147
148
149
150
151
# File 'lib/unix_utils.rb', line 145

def self.zip(srcdir)
  srcdir = File.expand_path srcdir
  outfile = tmp_path srcdir, '.zip'
  argv = ['zip', '-rq', outfile, '.']
  spawn argv, :chdir => srcdir
  outfile
end