Sha256: 1611353a615161bc87551558a79a5c83f25f89166a56af4f9f6a2602dc9b9afe

Contents?: true

Size: 1.81 KB

Versions: 3

Compression:

Stored size: 1.81 KB

Contents

# Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net>
require 'rubygems'; require 'require_relative'
require_relative 'base/cmd'
class Trepan::Command::ExitCommand < Trepan::Command

  unless defined?(HELP)
    ALIASES      = %w(quit q q! quit! exit!)
    HELP = 
      'exit [exitcode] - hard exit of the debugged program.  

The program being debugged is exited via exit!() which does not run
the Kernel at_exit finalizers. If a return code is given, that is the
return code passed to exit() - presumably the return code that will be
passed back to the OS. If no exit code is given, 0 is used.

If you are in interactive mode, you are prompted to confirm
quitting. However if you do not want to be prompted, add ! the end.
(vim/vi/ed users can use alias q!).

See also "kill".'

    CATEGORY     = 'support'
    MAX_ARGS     = 2  # Need at most this many
    NAME         = File.basename(__FILE__, '.rb')
    SHORT_HELP  = 'Exit program via "exit!()"'
  end

  # FIXME: Combine 'quit' and 'exit'. The only difference is
  # whether exit! or exit is used.

  # This method runs the command
  def run(args) # :nodoc
    unconditional = 
      if args.size > 1 && args[1] == 'unconditionally'
        args.shift
        true
      elsif args[0][-1..-1] == '!'
        true
      else
        false
      end
    unless unconditional || confirm('Really quit?', false)
      msg('Quit not confirmed.')
      return
    end
    exitrc = (args.size > 1) ? exitrc = Integer(args[1]) rescue 0 : 0

    # FIXME: funnel to sort of more general finalize routine
    @proc.dbgr.intf[-1].close

    # No graceful way to stop threads...
    # A little harsh, but for now let's go with this.
    exit! exitrc
  end
end

if __FILE__ == $0
  require_relative '../mock'
  dbgr, cmd = MockDebugger::setup
  fork { cmd.run([cmd.name]) }
  cmd.run([cmd.name, '10'])
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rbx-trepanning-0.0.6-universal-rubinius-1.2 processor/command/exit.rb
rbx-trepanning-0.0.5-universal-rubinius-1.2.1 processor/command/exit.rb
rbx-trepanning-0.0.4-universal-rubinius-1.2 processor/command/exit.rb