Module: Utils::IRB::Shell

Includes:
FileUtils, Tins::Find
Included in:
Object
Defined in:
lib/utils/irb.rb

Defined Under Namespace

Classes: ConstantWrapper, MethodWrapper, WrapperBase

Constant Summary collapse

Infinity =

I like to define the infinite.

1.0 / 0

Instance Method Summary collapse

Instance Method Details

#capture_output(with_stderr = false) ⇒ Object



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/utils/irb.rb', line 266

def capture_output(with_stderr = false)
  return "missing block" unless block_given?
  require 'tempfile'
  begin
    old_stdout, $stdout = $stdout, Tempfile.new('irb')
    if with_stderr
      old_stderr, $stderr = $stderr, $stdout
    end
    yield
  ensure
    $stdout, temp = old_stdout, $stdout
    with_stderr and $stderr = old_stderr
  end
  temp.rewind
  temp.read
end

#irb_all_class_instance_methods(obj) ⇒ Object

Return all instance methods of obj’s class.



57
58
59
60
# File 'lib/utils/irb.rb', line 57

def irb_all_class_instance_methods(obj)
  methods = obj.class.instance_methods
  irb_wrap_methods obj, methods
end

#irb_all_instance_methods(modul) ⇒ Object

Return all instance methods defined in module modul.



70
71
72
73
# File 'lib/utils/irb.rb', line 70

def irb_all_instance_methods(modul)
  methods = modul.instance_methods
  irb_wrap_methods modul, methods, true
end

#irb_all_methods(obj) ⇒ Object

Return all methods of obj (including obj’s eigenmethods.)



83
84
85
86
# File 'lib/utils/irb.rb', line 83

def irb_all_methods(obj)
  methods = obj.methods
  irb_wrap_methods obj, methods
end

#irb_class_instance_methods(obj) ⇒ Object

Return instance methods of obj’s class without the inherited/mixed in methods.



64
65
66
67
# File 'lib/utils/irb.rb', line 64

def irb_class_instance_methods(obj)
  methods = obj.class.instance_methods(false)
  irb_wrap_methods obj, methods
end

#irb_connect(hostname = nil, port = nil) ⇒ Object

Conenct to an irb server.



52
53
54
# File 'lib/utils/irb.rb', line 52

def irb_connect(hostname = nil, port = nil)
  Utils::IRB::Service.connect(hostname, port)
end

#irb_constants(modul) ⇒ Object

Return all the constants defined in modul.



185
186
187
# File 'lib/utils/irb.rb', line 185

def irb_constants(modul)
  modul.constants.map { |c| ConstantWrapper.new(modul.const_get(c), c) }.sort
end

#irb_edit(*files) ⇒ Object



368
369
370
# File 'lib/utils/irb.rb', line 368

def irb_edit(*files)
  $editor.full?(:edit, *files)
end

#irb_eigen_methods(obj) ⇒ Object

Return all eigen methods of obj.



98
99
100
# File 'lib/utils/irb.rb', line 98

def irb_eigen_methods(obj)
  irb_wrap_methods obj, obj.methods(false)
end

#irb_fullinfo(obj) ⇒ Object

Output all the irb_info about obj. You may need to buy a bigger screen for this or use:

less { irb_fullinfo object }


262
263
264
# File 'lib/utils/irb.rb', line 262

def irb_fullinfo(obj)
  irb_info obj, 0..Infinity
end

#irb_info(obj, detailed = nil) ⇒ Object

Output all kinds of information about obj. If detailed is given output details about the methods (+ arity) in inheritance chain of obj as well.

  • detailed as 0 output instance methods only of part 0 (the first) of the chain.

  • detailed as 1..2 output instance methods of obj inherited from parts 1 and 2 of the the chain.



204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/utils/irb.rb', line 204

def irb_info(obj, detailed = nil)
  if Module === obj
    modul = obj
    klassp = Class === modul
    if klassp
      begin
        allocated = modul.allocate
      rescue TypeError
      else
        obj = allocated
      end
    end
  else
    modul = obj.class
  end
  inspected = obj.inspect
  puts "obj = #{inspected.size > 40 ? inspected[0, 40] + '...' : inspected} is of class #{obj.class}."
  am = irb_all_methods(obj).size
  ms = irb_methods(obj).size
  ems = irb_eigen_methods(obj).size
  puts "obj: #{am} methods, #{ms} only local#{ems > 0 ? " (#{ems} eigenmethods),": ','} #{am - ms} inherited/mixed in."
  acim = irb_all_class_instance_methods(obj).size
  cim = irb_class_instance_methods(obj).size
  puts "obj: #{acim} instance methods, #{cim} local, #{acim - cim} only inherited/mixed in."
  if klassp
    s = modul.superclass
    puts "Superclass of #{modul}: #{s}"
  end
  a = []
  ec = true
  begin
    a << (class << obj; self; end)
  rescue TypeError
    ec = false
  end
  a.concat modul.ancestors
  if ec
    puts "Ancestors of #{modul}: (#{a[0]},) #{a[1..-1].map { |k| "#{k}#{k == s ? '*' : ''}" } * ', '}"
  else
    puts "Ancestors of #{modul}: #{a[0..-1].map { |k| "#{k}#{k == s ? '*' : ''}" } * ', '}"
  end
  if Class === modul and detailed
    if detailed.respond_to? :to_int
      detailed = detailed..detailed
    end
    detailed.each do |i|
      break if i >= a.size
      k = a[i]
      puts "#{k}:"
      puts irb_wrap_methods(obj, k.instance_methods(false)).sort
    end
  end
  nil
end

#irb_instance_methods(modul) ⇒ Object

Return instance methods defined in module modul without the inherited/mixed in methods.



77
78
79
80
# File 'lib/utils/irb.rb', line 77

def irb_instance_methods(modul)
  methods = modul.instance_methods(false)
  irb_wrap_methods modul, methods, true
end

#irb_load!(*files) ⇒ Object



340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/utils/irb.rb', line 340

def irb_load!(*files)
  files = files.map { |f| f.gsub(/(\.rb)?\Z/, '.rb') }
  loaded = {}
  for file in files
    catch :found do
      Find.find('.') do |f|
        File.directory?(f) and next
        md5_f = Utils::MD5.md5(f)
        if f.end_with?(file) and !loaded[md5_f]
          Kernel.load f
          loaded[md5_f] = true
          STDERR.puts "Loaded '#{f}'."
        end
      end
      Find.find('.') do |f|
        File.directory?(f) and next
        md5_f = Utils::MD5.md5(f)
        if f.end_with?(file) and !loaded[md5_f]
          Kernel.load f
          loaded[md5_f] = true
          STDERR.puts "Loaded '#{f}'."
        end
      end
    end
  end
  nil
end

#irb_methods(obj) ⇒ Object

Return instance methods of obj’s class without the inherited/mixed in methods, but including obj’s eigenmethods.



90
91
92
93
94
95
# File 'lib/utils/irb.rb', line 90

def irb_methods(obj)
  methods = obj.class.ancestors[1..-1].inject(obj.methods) do |all, a|
    all -= a.instance_methods
  end
  irb_wrap_methods obj, methods
end

#irb_read(filename, chunk_size = 8_192) ⇒ Object



328
329
330
331
332
333
334
335
336
337
338
# File 'lib/utils/irb.rb', line 328

def irb_read(filename, chunk_size = 8_192)
  if block_given?
    File.open(filename) do |file|
      until file.eof?
        yield file.read(chunk_size)
      end
    end
  else
    IO.read filename
  end
end

#irb_restartObject

Restart this irb.



42
43
44
# File 'lib/utils/irb.rb', line 42

def irb_restart
  exec $0
end

#irb_server(hostname = nil, port = nil) ⇒ Object

Start an irb server.



47
48
49
# File 'lib/utils/irb.rb', line 47

def irb_server(hostname = nil, port = nil)
  Utils::IRB::Service.start(hostname, port) {}
end

#irb_subclasses(klass) ⇒ Object

Return all the subclasses of klass. TODO implement subclasses w/out rails



190
191
192
# File 'lib/utils/irb.rb', line 190

def irb_subclasses(klass)
  klass.subclasses.map { |c| ConstantWrapper.new(eval(c), c) }.sort
end

#irb_timeObject



292
293
294
295
296
297
298
# File 'lib/utils/irb.rb', line 292

def irb_time
  s = Time.now
  yield
  d = Time.now - s
  warn "Took %.3fs seconds." % d
  d
end

#irb_time_tapObject



300
301
302
303
304
# File 'lib/utils/irb.rb', line 300

def irb_time_tap
  r = nil
  irb_time { r = yield }
  r
end

#irb_time_watch(duration = 1) ⇒ Object



306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# File 'lib/utils/irb.rb', line 306

def irb_time_watch(duration = 1)
  start = Time.now
  pre = nil
  loop do
    cur = [ yield ].flatten
    unless pre
      pre = cur.map(&:to_f)
      cur = [ yield ].flatten
    end
    expired = Time.now - start
    diffs = cur.zip(pre).map { |c, p| c - p }
    rates = diffs.map { |d| d / duration }
    warn "#{expired} #{cur.zip(rates, diffs).map(&:inspect) * ' '} # / per sec."
    pre = cur.map(&:to_f)
    sleep duration
  end
end

#irb_toggle_loggingObject



379
380
381
382
383
384
385
386
387
388
389
# File 'lib/utils/irb.rb', line 379

def irb_toggle_logging
  require 'logger'
  if ActiveRecord::Base.logger != $logger
    $old_logger = ActiveRecord::Base.logger
    ActiveRecord::Base.logger = $logger
    true
  else
    ActiveRecord::Base.logger = $old_logger
    false
  end
end

#irb_wrap_methods(obj, methods, modul = false) ⇒ Object



102
103
104
105
106
# File 'lib/utils/irb.rb', line 102

def irb_wrap_methods(obj, methods, modul = false)
  methods.map do |name|
    MethodWrapper.new(obj, name, modul) rescue nil
  end.compact.sort!
end

#irb_write(filename, text = nil) ⇒ Object



324
325
326
# File 'lib/utils/irb.rb', line 324

def irb_write(filename, text = nil)
  File.secure_write filename, text, 'wb'
end

#less(with_stderr = false, &block) ⇒ Object

Use pager on the output of the commands given in the block.



284
285
286
287
288
289
290
# File 'lib/utils/irb.rb', line 284

def less(with_stderr = false, &block)
  IO.popen($pager, 'w') do |f|
    f.write capture_output(with_stderr, &block)
    f.close_write
  end
  nil
end

#ls(*args) ⇒ Object

List contents of directory



373
374
375
# File 'lib/utils/irb.rb', line 373

def ls(*args)
  puts `ls #{args.map { |x| "'#{x}'" } * ' '}`
end

#ri(*patterns) ⇒ Object

Start ri for pattern. If pattern is not string like, call it with pattern.class.name as argument.



36
37
38
39
# File 'lib/utils/irb.rb', line 36

def ri(*patterns)
  patterns.map! { |p| p.respond_to?(:to_str) ? p.to_str : p.class.name }
  system "ri #{patterns.map { |p| "'#{p}'" } * ' '} | #{$pager}"
end