job management class

Methods
D
I
K
M
N
S
T
Attributes
[RW] current_job
Class Public methods
new()
# File ../ruby/lib/irb/ext/multi-irb.rb, line 19
def initialize
  # @jobs = [[thread, irb],...]
  @jobs = []
  @current_job = nil
end
Instance Public methods
delete(key)
# File ../ruby/lib/irb/ext/multi-irb.rb, line 86
def delete(key)
  case key
  when Integer
    IRB.fail NoSuchJob, key unless @jobs[key]
    @jobs[key] = nil
  else
    catch(:EXISTS) do
      @jobs.each_index do
        |i|
        if @jobs[i] and (@jobs[i][0] == key ||
                         @jobs[i][1] == key ||
                         @jobs[i][1].context.main.equal?(key))
          @jobs[i] = nil
          throw :EXISTS
        end
      end
      IRB.fail NoSuchJob, key
    end
  end
  until assoc = @jobs.pop; end unless @jobs.empty?
  @jobs.push assoc
end
insert(irb)
# File ../ruby/lib/irb/ext/multi-irb.rb, line 49
def insert(irb)
  @jobs.push [Thread.current, irb]
end
inspect()
# File ../ruby/lib/irb/ext/multi-irb.rb, line 109
def inspect
  ary = []
  @jobs.each_index do
    |i|
    th, irb = @jobs[i]
    next if th.nil?

    if th.alive?
      if th.stop?
        t_status = "stop"
      else
        t_status = "running"
      end
    else
      t_status = "exited"
    end
    ary.push format("#%d->%s on %s (%s: %s)",
                    i,
                    irb.context.irb_name,
                    irb.context.main,
                    th,
                    t_status)
  end
  ary.join("\n")
end
irb(key)
# File ../ruby/lib/irb/ext/multi-irb.rb, line 36
def irb(key)
  _, irb = search(key)
  irb
end
kill(*keys)
# File ../ruby/lib/irb/ext/multi-irb.rb, line 63
def kill(*keys)
  for key in keys
    th, _ = search(key)
    IRB.fail IrbAlreadyDead unless th.alive?
    th.exit
  end
end
main_irb()
# File ../ruby/lib/irb/ext/multi-irb.rb, line 45
def main_irb
  @jobs[0][1]
end
main_thread()
# File ../ruby/lib/irb/ext/multi-irb.rb, line 41
def main_thread
  @jobs[0][0]
end
n_jobs()
# File ../ruby/lib/irb/ext/multi-irb.rb, line 27
def n_jobs
  @jobs.size
end
# File ../ruby/lib/irb/ext/multi-irb.rb, line 71
def search(key)
  job = case key
  when Integer
    @jobs[key]
  when Irb
    @jobs.find{|k, v| v.equal?(key)}
  when Thread
    @jobs.assoc(key)
  else
    @jobs.find{|k, v| v.context.main.equal?(key)}
  end
  IRB.fail NoSuchJob, key if job.nil?
  job
end
switch(key)
# File ../ruby/lib/irb/ext/multi-irb.rb, line 53
def switch(key)
  th, irb = search(key)
  IRB.fail IrbAlreadyDead unless th.alive?
  IRB.fail IrbSwitchedToCurrentThread if th == Thread.current
  @current_job = irb
  th.run
  Thread.stop
  @current_job = irb(Thread.current)
end
thread(key)
# File ../ruby/lib/irb/ext/multi-irb.rb, line 31
def thread(key)
  th, = search(key)
  th
end