Class: RubyDebug

Inherits:
ArcadiaExt show all
Defined in:
ext/ae-ruby-debug/ae-ruby-debug.rb

Instance Attribute Summary collapse

Attributes inherited from ArcadiaExt

#arcadia, #name

Instance Method Summary collapse

Methods inherited from ArcadiaExt

#add_to_conf_property, #array_conf, #conf, #conf_array, #conf_default, #del_from_conf_property, #destroy_frame, #exec, #float_frame, #frame, #frame_def_visible?, #frame_domain, #frame_domain_default, #frame_raised?, #frame_title, #frame_visible?, #hide_frame, #hinner_dialog, #hinner_splitted_dialog, #hinner_splitted_dialog_titled, #initialize, #maximize, #maximized?, #resize, #restore_default_conf

Constructor Details

This class inherits a constructor from ArcadiaExt

Instance Attribute Details

#rdcObject (readonly)

Returns the value of attribute rdc.



1334
1335
1336
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1334

def rdc
  @rdc
end

#rdebug_fileObject (readonly)

Returns the value of attribute rdebug_file.



1335
1336
1337
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1335

def rdebug_file
  @rdebug_file
end

#rdsObject (readonly)

Returns the value of attribute rds.



1333
1334
1335
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1333

def rds
  @rds
end

Instance Method Details

#break_name(_file, _line) ⇒ Object



1452
1453
1454
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1452

def break_name(_file,_line)
  "#{_file}:#{_line}"
end

#breakpoint_add(_file, _line) ⇒ Object



1475
1476
1477
1478
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1475

def breakpoint_add(_file,_line)
  breakpoint_add_live(_file,_line)
  @static_breakpoints << {:file=>_file,:line=>_line}
end

#breakpoint_add_live(_file, _line) ⇒ Object



1456
1457
1458
1459
1460
1461
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1456

def breakpoint_add_live(_file,_line)
  if @rdc && @rdc.is_alive?
    @breakpoints[breakpoint_suf(_file,_line)] = @rdc.set_breakpoint(_file, _line.to_i)
    #@rdv.break_list_add(_file,_line) if @rdv
  end
end

#breakpoint_del(_file, _line) ⇒ Object



1490
1491
1492
1493
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1490

def breakpoint_del(_file,_line)
  breakpoint_del_live(_file,_line)
  @static_breakpoints.delete_if{|b| (b[:file]==_file && b[:line]==_line)}
end

#breakpoint_del_live(_file, _line) ⇒ Object



1463
1464
1465
1466
1467
1468
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1463

def breakpoint_del_live(_file,_line)
  if @rdc && @rdc.is_alive?
    @rdc.unset_breakpoint(@breakpoints.delete(breakpoint_suf(_file,_line)))
    #@rdv.break_list_del(_file,_line) if @rdv
  end
end

#breakpoint_free_liveObject



1470
1471
1472
1473
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1470

def breakpoint_free_live
  @breakpoints.clear if @breakpoints
  #@rdv.break_list_free if @rdv
end

#debug_beginObject



1526
1527
1528
1529
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1526

def debug_begin
  breakpoint_free_live
  #DebugContract.instance.debug_begin(self)
end

#debug_currentObject



1518
1519
1520
1521
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1518

def debug_current
  Arcadia.process_event(StartDebugEvent.new(self, 'file'=>@raised_file)) if @raised_file!=nil
  #debug(@raised_file) if @raised_file!=nil
end

#debug_freeObject



1574
1575
1576
1577
1578
1579
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1574

def debug_free
  self.frame.free
  self.frame(1).free
  @rdc = nil
  @rdv = nil
end

#debug_lastObject



1513
1514
1515
1516
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1513

def debug_last
  Arcadia.process_event(StartDebugEvent.new(self, 'file'=>$arcadia['pers']['run.file.last']))
  #debug($arcadia['pers']['run.file.last'])
end

#debug_quitObject



1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1581

def debug_quit
#p "in debug quit @rdc.is_alive?=#{@rdc.is_alive?}"
  if @rdc 
    if @rdc.is_alive?
      Thread.new{
        Arcadia.dialog(self, 
            'type'=>'ok', 
            'title' => Arcadia.text("ext.ruby_debug.d.quit_if_debug.title"), 
            'msg'=>Arcadia.text("ext.ruby_debug.d.quit_if_debug.msg"),
            'level'=>'info')
#          Tk.messageBox('icon' => 'info', 
#          						'type' => 'ok',
#        						 'title' => '(Arcadia) Debug',
#        						 'message' => "Debug in course, stop it before exit")
      }
    else
      begin
        debug_free
      rescue Exception => e
        Arcadia.console(self, 'msg'=>"debug_quit:---> "+e.to_s+ ' ' + e.backtrace[0], 'level'=>'debug')
        #Arcadia.new_debug_msg(self, "debug_quit:---> "+e.to_s)
        #@arcadia['shell'].outln("debug_quit:---> "+e.to_s )
      end
    end
  end
end

#debugging?Boolean

debug(@raised_file) if @raised_file!=nil

Returns:

  • (Boolean)


1522
1523
1524
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1522

def debugging?
  !@rdc.nil? && @rdc.is_alive?
end

#do_debug(_event) ⇒ Object



1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1531

def do_debug(_event)
  _filename = _event.file
  if _filename && !debugging?
    begin
      self.debug_begin
      @arcadia['pers']['run.file.last']=_filename if _event.persistent
      @rds = RubyDebugServer.new(self,@arcadia) if @rds.nil?
      @rds.start_session(_event, conf('server.host'), conf('server.port'))
      #Arcadia.new_msg(self,@rds.to_s)
      
      @rdc = RubyDebugClient.new(self, conf('server.host'), conf('server.port'), conf('server.timeout')) if @rdc.nil?
      @rdv = RubyDebugView.new(self) if @rdv.nil?
      self.frame.show
      @rdv.start_process(_filename)
      if @rdc.start_session
        @static_breakpoints.each{|_b|
          if !_event.persistent && _b[:file]==_event.id
            _b[:file]=_filename
          end
          #Arcadia.console(self,'msg'=>" breakpoint_add #{_b[:file]}:#{_b[:line]}")
          breakpoint_add_live(_b[:file], _b[:line])
        }
        if static_breakpoints_of_file(_filename).length > 0 && conf("auto_resume_break_on_first_line")!='no'
          @rdv.debug_send(:resume)
        end
      end
    rescue Exception => e
      Arcadia.console(self, 'msg'=> Arcadia.text('ext.ruby_debug.e.do_debug', [e.to_s, e.backtrace[0]]), 'level'=>'debug')
    end
  end
end

#eval_expression(_exp) ⇒ Object

def do_editor_event(_event)

  case _event.signature 
    when EditorContract::BREAKPOINT_AFTER_CREATE
      self.breakpoint_add(File.expand_path(_event.context.file), _event.context.line)
    when EditorContract::BREAKPOINT_AFTER_DELETE
      self.breakpoint_del(File.expand_path(_event.context.file), _event.context.line)
    when EditorContract::BUFFER_AFTER_RAISE
      @raised_file=_event.context.file
    when EditorContract::EVAL_EXPRESSION
      eval_expression(_event.context.text)
  end
end


1431
1432
1433
1434
1435
1436
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1431

def eval_expression(_exp)
  res = @rdc.debug_eval(_exp) if @rdc && @rdc.is_debugging_ready?
  hash = Hash.new
  hash[_exp]=res 
  @rdv.show_expression(_exp, hash) if res 
end

#on_before_build(_event) ⇒ Object



1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1336

def on_before_build(_event)
  #if RubyWhich.new.which("rdebug") != []
  @breakpoints = Hash.new
  @static_breakpoints = Array.new
  if Arcadia.is_windows?
    @rdebug_file = Arcadia.which("rdebug.bat")
    if !@rdebug_file
      @rdebug_file = Arcadia.which("rdebug.cmd")
    end
    if !@rdebug_file
      @rdebug_file = Arcadia.which("rdebug")
    end      
  else
    @rdebug_file = Arcadia.which("rdebug")    
  end
  
  
  if @rdebug_file
    Arcadia.attach_listener(self, BufferEvent)
  else
    Arcadia.console(self, 'msg'=>Arcadia.text("ext.ruby_debug.e.rdebug"), 'level'=>'error')
    #Arcadia.new_error_msg(self, "Warning: Extension ae-ruby-debug depend upon rdebug command (install it or update system path!)")
  end
  Arcadia.attach_listener(self, DebugEvent)
end

#on_buffer(_event) ⇒ Object



1366
1367
1368
1369
1370
1371
1372
1373
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1366

def on_buffer(_event)
  case _event
    when BufferRaisedEvent
      @raised_file=_event.file
      debugcurr = Arcadia.toolbar_item('debugcurr')
      debugcurr.enable=_event.lang=='ruby' if debugcurr
  end
end

#on_build(_event) ⇒ Object



1362
1363
1364
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1362

def on_build(_event)
  #Arcadia.attach_listener(self, DebugEvent)
end

#on_debug(_event) ⇒ Object



1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1375

def on_debug(_event)
  case _event
    when StartDebugEvent
      return if _event.file.nil?
      _filename = _event.file
      _filename = @arcadia['pers']['run.file.last'] if _filename == "*LAST"
      if _filename && File.exist?(_filename)
        do_debug(_event)
      else
        Arcadia.dialog(self,
          'type'=>'ok',
          'title'=>Arcadia.text('ext.ruby_debug.d.file_not_exist.title'),
          'msg'=>Arcadia.text('ext.ruby_debug.d.file_not_exist.msg', [_filename]))
      end
    when StepDebugEvent
      if (_event.command == :quit_yes)
        @rds.quit_confirm_request = true
      end
      @rdc.send(_event.command) if @rdc.is_alive?
      
      #p "on_debug -> Thread.current=#{Thread.current}"

      #p "on_debug --> @rdc.is_alive?=#{@rdc.is_alive?}"
      #p "on_debug --> @rds.is_alive?=#{@rds.is_alive?}"
    when SetBreakpointEvent
      if _event.active > 0
        if _event.file
          self.breakpoint_add(File.expand_path(_event.file), _event.row)
        elsif _event.id
          self.breakpoint_add(_event.id, _event.row)
        end
      end
    when UnsetBreakpointEvent
      return if _event.file.nil?
      self.breakpoint_del(File.expand_path(_event.file), _event.row)
    when EvalExpressionEvent
      eval_expression(_event.expression)
    when StopDebugEvent
      self.debug_quit
  end
end

#on_exit_query(_event) ⇒ Object



1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1497

def on_exit_query(_event)
  if @rdc && @rdc.is_alive?
    query = (Arcadia.dialog(self, 'icon' => 'question', 'type' => 'yes_no',
    'title' => Arcadia.text("ext.ruby_debug.d.exit_query.title"),
    'message' => Arcadia.text("ext.ruby_debug.d.exit_query.msg"))=='yes')
    if query
      debug_quit
      _event.can_exit=true
    else
      _event.can_exit=false
    end
  else
    _event.can_exit=true
  end
end

#rdebug_server_update(_state) ⇒ Object



1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1563

def rdebug_server_update(_state)
  case _state
    when RubyDebugServer::RDS_QUIET
      @rdc.kill if @rdc
      #p "@rdc.is_alive?=#{@rdc.is_alive?}"
      #p "rdebug_server_update -> Thread.current=#{Thread.current}"
      #@rdv.command_enabled(false)
      #debug_free
  end
end

#static_breakpoints_of_file(_filename) ⇒ Object

private :breakpoint_add



1480
1481
1482
1483
1484
1485
1486
1487
1488
# File 'ext/ae-ruby-debug/ae-ruby-debug.rb', line 1480

def static_breakpoints_of_file(_filename)
  ret = Array.new
  @static_breakpoints.each{|b|
    if b[:file]==_filename
      ret << b
    end
  }
  ret
end