-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebugger.py
More file actions
executable file
·1230 lines (1098 loc) · 48.1 KB
/
debugger.py
File metadata and controls
executable file
·1230 lines (1098 loc) · 48.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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
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
292
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
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- c--oding: ko_KR.UTF-8 -*-
# remote PHP debugger : remote debugger interface to DBGp protocol
#
# Copyright (c) 2003-2006 ActiveState Software Inc.
#
# The MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify,
# merge, publish, distribute, sublicense, and/or sell copies of the
# Software, and to permit persons to whom the Software is furnished
# to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
#
# Authors:
# Seung Woo Shin <segv <at> sayclub.com>
# Sam Ghods <sam <at> box.net>
"""
debugger.py -- DBGp client: a remote debugger interface to DBGp protocol
Usage:
Use with the debugger.vim vim plugin
This debugger is designed to be used with debugger.vim,
a vim plugin which provides a full debugging environment
right inside vim.
CHECK DEBUGGER.VIM FOR THE FULL DOCUMENTATION.
Example usage:
Place inside <source vim directory>/plugin/ along with
debugger.py.
"""
import os
import sys
import vim
import socket
import base64
import traceback
import xml.dom.minidom
#######################################################################################################################
# #
# this diagram is little outdated. #
# #
# #
# +---[ class Debugger ]-----------+ #
# | [m] run() | #
# | [m] mark() | #
# | [m] command() | #
# | [m] stop() | #
# +--------- [m] handle_msg() ------------------+ #
# | | | | handle all other tags #
# if error +--------> [m] handle_error() | | comming from server #
# | | [m] handle_*() <-----------------+ #
# | | | #
# if <response > +--------> [m] handle_response() -------------+ #
# | | | if <response command='*'> #
# | [m] handle_response_*() <----------+ #
# | | #
# | +--[ class DbgProtocol ]--+ | #
# +-------+ 1. connect | | | | #
# |debug | ---------------------> [m] accept() | | #
# | | <-- 2. send ---------- [m] send_msg() | | #
# | server| --- 3. recv ---------> [m] recv_msg() | | #
# +-------+ | | | | #
# | +-------------------------+ | #
# | | #
# | +--[ class BreakPoint ]---+ | #
# | | manage breakpoints | | #
# | | [m] add() | | #
# | | [m] remove() | | #
# | | [m] list() | | #
# | +-------------------------+ | VIM #
# | | +--------------+-----+ #
# [m] method | +--[ class DebugUI ]------+ | | | | <----+ #
# [f] class | | [m] debug_mode() | ------------------ | +-----+ | #
# | | [m] normal_mode() | | controls | srv | | <----+ #
# | | [m] goto() | | all vim | view +-----+ | #
# | | [m] stackwrite() | | windows | | | <----+ #
# | | [m] stackwrite() | | | +-----+ | #
# | +-------------------------+ | | | | <----+ #
# | | | +-----+ | #
# | +--[ class VimWindow ]----+ | | | | <----+ #
# | | [m] create() | | +--------------+-----+ | #
# | | [m] write() | | | #
# | | [m] create() | ------------------------------------------------+ #
# | | [m] create() | | controls each debug window #
# | +-------------------------+ | (except src view) #
# | | #
# +--------------------------------+ #
# #
# global debugger <----+ #
# | creates #
# [f] debugger_init() --+ #
# [f] debugger_run() <-+ #
# [f] debugger_context() | #
# [f] debugger_command() +------ map <F5> :python debugger_run() #
# [f] debugger_stop() | ... etc ... #
# [f] debugger_mark() <-+ #
# #
# #
#######################################################################################################################
#class XMLPrintFold(XMLPrint):
# def fixup_childs(self, line, node, level):
# line = ('{{{' + str(level+1)).ljust(level*4+6) + line + '\n'
# line += self.xml_stringfy_childs(node, level+1)
# line += '}}}' + str(level+1) + '\n'
# return line
# def fixup_single(self, line, node, level):
# return ''.ljust(level*4+6) + line + '\n'
#
class VimWindow:
""" wrapper class of window of vim """
def __init__(self, name = 'DEBUG_WINDOW'):
""" initialize """
self.name = name
self.buffer = None
self.firstwrite = 1
def isprepared(self):
""" check window is OK """
if self.buffer == None or len(dir(self.buffer)) == 0 or self.getwinnr() == -1:
return 0
return 1
def prepare(self):
""" check window is OK, if not then create """
if not self.isprepared():
self.create()
def on_create(self):
pass
def getwinnr(self):
return int(vim.eval("bufwinnr('"+self.name+"')"))
def xml_on_element(self, node):
line = str(node.nodeName)
if node.hasAttributes():
for (n,v) in node.attributes.items():
line += str(' %s=%s' % (n,v))
return line
def xml_on_attribute(self, node):
return str(node.nodeName)
def xml_on_entity(self, node):
return 'entity node'
def xml_on_comment(self, node):
return 'comment node'
def xml_on_document(self, node):
return '#document'
def xml_on_document_type(self, node):
return 'document type node'
def xml_on_notation(self, node):
return 'notation node'
def xml_on_text(self, node):
return node.data
def xml_on_processing_instruction(self, node):
return 'processing instruction'
def xml_on_cdata_section(self, node):
return node.data
def write(self, msg):
""" append last """
self.prepare()
if self.firstwrite == 1:
self.firstwrite = 0
self.buffer[:] = str(msg).split('\n')
else:
self.buffer.append(str(msg).split('\n'))
self.command('normal G')
#self.window.cursor = (len(self.buffer), 1)
def create(self, method = 'new'):
""" create window """
vim.command('silent ' + method + ' ' + self.name)
#if self.name != 'LOG___WINDOW':
vim.command("setlocal buftype=nofile")
self.buffer = vim.current.buffer
self.width = int( vim.eval("winwidth(0)") )
self.height = int( vim.eval("winheight(0)") )
self.on_create()
def destroy(self):
""" destroy window """
if self.buffer == None or len(dir(self.buffer)) == 0:
return
#if self.name == 'LOG___WINDOW':
# self.command('hide')
#else:
self.command('bdelete ' + self.name)
self.firstwrite = 1
def clean(self):
""" clean all datas in buffer """
self.prepare()
self.buffer[:] = []
self.firstwrite = 1
def command(self, cmd):
""" go to my window & execute command """
self.prepare()
winnr = self.getwinnr()
if winnr != int(vim.eval("winnr()")):
vim.command(str(winnr) + 'wincmd w')
vim.command(cmd)
def _xml_stringfy(self, node, level = 0, encoding = None):
if node.nodeType == node.ELEMENT_NODE:
line = self.xml_on_element(node)
elif node.nodeType == node.ATTRIBUTE_NODE:
line = self.xml_on_attribute(node)
elif node.nodeType == node.ENTITY_NODE:
line = self.xml_on_entity(node)
elif node.nodeType == node.COMMENT_NODE:
line = self.xml_on_comment(node)
elif node.nodeType == node.DOCUMENT_NODE:
line = self.xml_on_document(node)
elif node.nodeType == node.DOCUMENT_TYPE_NODE:
line = self.xml_on_document_type(node)
elif node.nodeType == node.NOTATION_NODE:
line = self.xml_on_notation(node)
elif node.nodeType == node.PROCESSING_INSTRUCTION_NODE:
line = self.xml_on_processing_instruction(node)
elif node.nodeType == node.CDATA_SECTION_NODE:
line = self.xml_on_cdata_section(node)
elif node.nodeType == node.TEXT_NODE:
line = self.xml_on_text(node)
else:
line = 'unknown node type'
if node.hasChildNodes():
#print ''.ljust(level*4) + '{{{' + str(level+1)
#print ''.ljust(level*4) + line
return self.fixup_childs(line, node, level)
else:
return self.fixup_single(line, node, level)
return line
def fixup_childs(self, line, node, level):
line = ''.ljust(level*4) + line + '\n'
line += self.xml_stringfy_childs(node, level+1)
return line
def fixup_single(self, line, node, level):
return ''.ljust(level*4) + line + '\n'
def xml_stringfy(self, xml):
return self._xml_stringfy(xml)
def xml_stringfy_childs(self, node, level = 0):
line = ''
for cnode in node.childNodes:
line = str(line)
line += str(self._xml_stringfy(cnode, level))
return line
def write_xml(self, xml):
self.write(self.xml_stringfy(xml))
def write_xml_childs(self, xml):
self.write(self.xml_stringfy_childs(xml))
class StackWindow(VimWindow):
def __init__(self, name = 'STACK_WINDOW'):
VimWindow.__init__(self, name)
def xml_on_element(self, node):
if node.nodeName != 'stack':
return VimWindow.xml_on_element(self, node)
else:
if node.getAttribute('where') != '{main}':
fmark = '()'
else:
fmark = ''
return str('%-2s %-15s %s:%s' % ( \
node.getAttribute('level'), \
node.getAttribute('where')+fmark, \
node.getAttribute('filename')[7:], \
node.getAttribute('lineno')))
def on_create(self):
self.command('highlight CurStack term=reverse ctermfg=White ctermbg=Red gui=reverse')
self.highlight_stack(0)
def highlight_stack(self, no):
self.command('syntax clear')
self.command('syntax region CurStack start="^' +str(no)+ ' " end="$"')
class LogWindow(VimWindow):
def __init__(self, name = 'LOG___WINDOW'):
VimWindow.__init__(self, name)
def on_create(self):
self.command('set nowrap fdm=marker fmr={{{,}}} fdl=0')
self.write('asdfasdf')
class TraceWindow(VimWindow):
def __init__(self, name = 'TRACE_WINDOW'):
VimWindow.__init__(self, name)
def xml_on_element(self, node):
if node.nodeName != 'error':
return VimWindow.xml_on_element(self, node)
else:
desc = ''
if node.hasAttribute('code'):
desc = ' : '+error_msg[int(node.getAttribute('code'))]
return VimWindow.xml_on_element(self, node) + desc
def on_create(self):
self.command('set nowrap fdm=marker fmr={{{,}}} fdl=0')
class WatchWindow(VimWindow):
def __init__(self, name = 'WATCH_WINDOW'):
VimWindow.__init__(self, name)
def fixup_single(self, line, node, level):
return ''.ljust(level*1) + line + '\n'
def fixup_childs(self, line, node, level):
global z
if len(node.childNodes) == 1 and \
(node.firstChild.nodeType == node.TEXT_NODE or \
node.firstChild.nodeType == node.CDATA_SECTION_NODE):
line = str(''.ljust(level*1) + line)
encoding = node.getAttribute('encoding')
if encoding == 'base64':
line += "'" + base64.decodestring(str(node.firstChild.data)) + "';\n"
elif encoding == '':
line += str(node.firstChild.data) + ';\n'
else:
line += '(e:'+encoding+') ' + str(node.firstChild.data) + ';\n'
else:
if level == 0:
line = ''.ljust(level*1) + str(line) + ';' + '\n'
line += self.xml_stringfy_childs(node, level+1)
line += '/*}}}1*/\n'
else:
line = (''.ljust(level*1) + str(line) + ';').ljust(self.width-20) + ''.ljust(level*1) + '/*{{{' + str(level+1) + '*/' + '\n'
line += str(self.xml_stringfy_childs(node, level+1))
line += (''.ljust(level*1) + ''.ljust(level*1)).ljust(self.width-20) + ''.ljust(level*1) + '/*}}}' + str(level+1) + '*/\n'
return line
def xml_on_element(self, node):
if node.nodeName == 'property':
self.type = node.getAttribute('type')
name = node.getAttribute('name')
fullname = node.getAttribute('fullname')
if name == '':
name = 'EVAL_RESULT'
if fullname == '':
fullname = 'EVAL_RESULT'
if self.type == 'uninitialized':
return str(('%-20s' % name) + " = /* uninitialized */'';")
else:
return str('%-20s' % name) + ' = (' + self.type + ') '
elif node.nodeName == 'response':
return "$command = '" + node.getAttribute('command') + "'"
else:
return VimWindow.xml_on_element(self, node)
def xml_on_text(self, node):
if self.type == 'string':
return "'" + str(node.data) + "'"
else:
return str(node.data)
def xml_on_cdata_section(self, node):
if self.type == 'string':
return "'" + str(node.data) + "'"
else:
return str(node.data)
def on_create(self):
self.write('<?')
self.command('inoremap <buffer> <cr> <esc>:python debugger.watch_execute()<cr>')
self.command('set noai nocin')
self.command('set nowrap fdm=marker fmr={{{,}}} ft=php fdl=1')
def input(self, mode, arg = ''):
line = self.buffer[-1]
if line[:len(mode)+1] == '/*{{{1*/ => '+mode+':':
self.buffer[-1] = line + arg
else:
self.buffer.append('/*{{{1*/ => '+mode+': '+arg)
self.command('normal G')
def get_command(self):
line = self.buffer[-1]
if line[0:17] == '/*{{{1*/ => exec:':
print "exec does not supported by xdebug now."
return ('none', '')
#return ('exec', line[17:].strip(' '))
elif line[0:17] == '/*{{{1*/ => eval:':
return ('eval', line[17:].strip(' '))
elif line[0:25] == '/*{{{1*/ => property_get:':
return ('property_get', line[25:].strip(' '))
elif line[0:24] == '/*{{{1*/ => context_get:':
return ('context_get', line[24:].strip(' '))
else:
return ('none', '')
class HelpWindow(VimWindow):
def __init__(self, name = 'HELP__WINDOW'):
VimWindow.__init__(self, name)
def on_create(self):
self.write( \
'[ Function Keys ] | \n' + \
' <F1> resize | [ Normal Mode ] \n' + \
' <F2> step into | ,e eval \n' + \
' <F3> step over | \n' + \
' <F4> step out | \n' + \
' <F5> run | [ Command Mode ] \n' + \
' <F6> quit debugging | :Bp toggle breakpoint \n' + \
' | :Up stack up \n' + \
' <F11> get all context | :Dn stack down \n' + \
' <F12> get property at cursor | \n' + \
'\n')
self.command('1')
class DebugUI:
""" DEBUGUI class """
def __init__(self, minibufexpl = 0):
""" initialize object """
self.watchwin = WatchWindow()
self.stackwin = StackWindow()
self.tracewin = TraceWindow()
self.helpwin = HelpWindow('HELP__WINDOW')
self.mode = 0 # normal mode
self.file = None
self.line = None
self.winbuf = {}
self.cursign = None
self.sessfile = "/tmp/debugger_vim_saved_session." + str(os.getpid())
self.minibufexpl = minibufexpl
def debug_mode(self):
""" change mode to debug """
if self.mode == 1: # is debug mode ?
return
self.mode = 1
if self.minibufexpl == 1:
vim.command('CMiniBufExplorer') # close minibufexplorer if it is open
# save session
vim.command('mksession! ' + self.sessfile)
for i in range(1, len(vim.windows)+1):
vim.command(str(i)+'wincmd w')
self.winbuf[i] = vim.eval('bufnr("%")') # save buffer number, mksession does not do job perfectly
# when buffer is not saved at all.
vim.command('silent topleft new') # create srcview window (winnr=1)
for i in range(2, len(vim.windows)+1):
vim.command(str(i)+'wincmd w')
vim.command('hide')
self.create()
vim.command('1wincmd w') # goto srcview window(nr=1, top-left)
self.cursign = '1'
self.set_highlight()
def normal_mode(self):
""" restore mode to normal """
if self.mode == 0: # is normal mode ?
return
vim.command('sign unplace 1')
vim.command('sign unplace 2')
# destory all created windows
self.destroy()
# restore session
vim.command('source ' + self.sessfile)
os.system('rm -f ' + self.sessfile)
self.set_highlight()
self.winbuf.clear()
self.file = None
self.line = None
self.mode = 0
self.cursign = None
if self.minibufexpl == 1:
vim.command('MiniBufExplorer') # close minibufexplorer if it is open
def create(self):
""" create windows """
self.watchwin.create('vertical belowright new')
self.helpwin.create('belowright new')
self.stackwin.create('belowright new')
self.tracewin.create('belowright new')
def set_highlight(self):
""" set vim highlight of debugger sign """
vim.command("highlight DbgCurrent term=reverse ctermfg=White ctermbg=Red gui=reverse")
vim.command("highlight DbgBreakPt term=reverse ctermfg=White ctermbg=Green gui=reverse")
def destroy(self):
""" destroy windows """
self.helpwin.destroy()
self.watchwin.destroy()
self.stackwin.destroy()
self.tracewin.destroy()
def go_srcview(self):
vim.command('1wincmd w')
def next_sign(self):
if self.cursign == '1':
return '2'
else:
return '1'
def set_srcview(self, file, line):
""" set srcview windows to file:line and replace current sign """
if file == self.file and self.line == line:
return
nextsign = self.next_sign()
if file != self.file:
self.file = file
self.go_srcview()
vim.command('silent edit ' + file)
vim.command('sign place ' + nextsign + ' name=current line='+str(line)+' file='+file)
vim.command('sign unplace ' + self.cursign)
vim.command('sign jump ' + nextsign + ' file='+file)
#vim.command('normal z.')
self.line = line
self.cursign = nextsign
class DbgProtocol:
""" DBGp Procotol class """
def __init__(self, port = 9000):
self.port = port
self.sock = None
self.isconned = 0
def isconnected(self):
return self.isconned
def accept(self):
print 'waiting for a new connection on port '+str(self.port)+' for 10 seconds...'
serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
serv.bind(('', self.port))
serv.listen(10)
(self.sock, address) = serv.accept()
except socket.timeout:
serv.close()
self.stop()
print 'timeout'
return
print 'connection from ', address
self.isconned = 1
serv.close()
def close(self):
if self.sock != None:
self.sock.close()
self.sock = None
self.isconned = 0
def recv_length(self):
#print '* recv len'
length = ''
while 1:
c = self.sock.recv(1)
if c == '':
self.close()
raise EOFError, 'Socket Closed'
#print ' GET(',c, ':', ord(c), ') : length=', len(c)
if c == '\0':
return int(length)
if c.isdigit():
length = length + c
def recv_null(self):
while 1:
c = self.sock.recv(1)
if c == '':
self.close()
raise EOFError, 'Socket Closed'
if c == '\0':
return
def recv_body(self, to_recv):
body = ''
while to_recv > 0:
buf = self.sock.recv(to_recv)
if buf == '':
self.close()
raise EOFError, 'Socket Closed'
to_recv -= len(buf)
body = body + buf
return body
def recv_msg(self):
length = self.recv_length()
body = self.recv_body(length)
self.recv_null()
return body
def send_msg(self, cmd):
self.sock.send(cmd + '\0')
class BreakPoint:
""" Breakpoint class """
def __init__(self):
""" initalize """
self.breakpt = {}
self.revmap = {}
self.startbno = 10000
self.maxbno = self.startbno
def clear(self):
""" clear of breakpoint number """
self.breakpt.clear()
self.rtbreakpt = None
self.revmap.clear()
self.maxbno = self.startbno
def add(self, file, line, exp = ''):
""" add break point at file:line """
self.maxbno = self.maxbno + 1
self.breakpt[self.maxbno] = { 'file':file, 'line':line, 'exp':exp, 'id':None }
return self.maxbno
def remove(self, bno):
""" remove break point numbered with bno """
del self.breakpt[bno]
def find(self, file, line):
""" find break point and return bno(breakpoint number) """
for bno in self.breakpt.keys():
if self.breakpt[bno]['file'] == file and self.breakpt[bno]['line'] == line:
return bno
return None
def getfile(self, bno):
""" get file name of breakpoint numbered with bno """
return self.breakpt[bno]['file']
def getline(self, bno):
""" get line number of breakpoint numbered with bno """
return self.breakpt[bno]['line']
def getexp(self, bno):
""" get expression of breakpoint numbered with bno """
return self.breakpt[bno]['exp']
def getid(self, bno):
""" get Debug Server's breakpoint numbered with bno """
return self.breakpt[bno]['id']
def setid(self, bno, id):
""" get Debug Server's breakpoint numbered with bno """
self.breakpt[bno]['id'] = id
def list(self):
""" return list of breakpoint number """
return self.breakpt.keys()
class Debugger:
""" Main Debugger class """
#################################################################################################################
# Internal functions
#
def __init__(self, port = 9000, max_children = '32', max_data = '1024', max_depth = '1', minibufexpl = '0', debug = 0):
""" initialize Debugger """
socket.setdefaulttimeout(10)
self.port = port
self.debug = debug
self.current = None
self.file = None
self.lasterror = None
self.msgid = 0
self.running = 0
self.stacks = []
self.curstack = 0
self.laststack = 0
self.bptsetlst = {}
self.rtbreakpt = None
self.status = None
self.max_children = max_children
self.max_data = max_data
self.max_depth = max_depth
self.protocol = DbgProtocol(self.port)
self.ui = DebugUI(minibufexpl)
self.breakpt = BreakPoint()
vim.command('sign unplace *')
def clear(self):
self.current = None
self.lasterror = None
self.msgid = 0
self.running = 0
self.stacks = []
self.curstack = 0
self.laststack = 0
self.bptsetlst = {}
self.rtbreakpt = None
self.protocol.close()
def send(self, msg):
""" send message """
self.protocol.send_msg(msg)
# log message
if self.debug:
self.ui.tracewin.write(str(self.msgid) + ' : send =====> ' + msg)
def recv(self, count=10000):
""" receive message until response is last transaction id or received count's message """
while count>0:
count = count - 1
# recv message and convert to XML object
txt = self.protocol.recv_msg()
res = xml.dom.minidom.parseString(txt)
# log messages {{{
if self.debug:
self.ui.tracewin.write( str(self.msgid) + ' : recv <===== {{{ ' + txt)
self.ui.tracewin.write('}}}')
# handle message
self.handle_msg(res)
# exit, if response's transaction id == last transaction id
try:
if int(res.firstChild.getAttribute('transaction_id')) == int(self.msgid):
return
except:
pass
def send_command(self, cmd, arg1 = '', arg2 = ''):
""" send command (do not receive response) """
self.msgid = self.msgid + 1
line = cmd + ' -i ' + str(self.msgid)
if arg1 != '':
line = line + ' ' + arg1
if arg2 != '':
line = line + ' -- ' + base64.encodestring(arg2)[0:-1]
self.send(line)
return self.msgid
#
#
#################################################################################################################
#################################################################################################################
# Internal message handlers
#
def handle_msg(self, res):
""" call appropraite message handler member function, handle_XXX() """
fc = res.firstChild
try:
handler = getattr(self, 'handle_' + fc.tagName)
handler(res)
except AttributeError:
print 'Debugger.handle_'+fc.tagName+'() not found, please see the LOG___WINDOW'
self.ui.go_srcview()
def handle_response(self, res):
""" call appropraite response message handler member function, handle_response_XXX() """
if res.firstChild.hasAttribute('reason') and res.firstChild.getAttribute('reason') == 'error':
self.handle_response_error(res)
return
errors = res.getElementsByTagName('error')
if len(errors)>0:
self.handle_response_error(res)
return
command = res.firstChild.getAttribute('command')
try:
handler = getattr(self, 'handle_response_' + command)
except AttributeError:
print 'Debugger.handle_response_'+command+'() not found, please see the LOG___WINDOW'
return
handler(res)
return
def handle_init(self, res):
"""handle <init> tag
<init appid="7035" fileuri="file:///home/segv/htdocs/index.php" language="PHP" protocol_version="1.0">
<engine version="2.0.0beta1">
Xdebug
</engine>
<author>
Derick Rethans
</author>
<url>
http://xdebug.org
</url>
<copyright>
Copyright (c) 2002-2004 by Derick Rethans
</copyright>
</init>"""
file = res.firstChild.getAttribute('fileuri')[7:]
self.ui.set_srcview(file, 1)
def handle_response_error(self, res):
""" handle <error> tag """
self.ui.tracewin.write_xml_childs(res)
# print 'ERROR!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'
# print res.toprettyxml()
# print '------------------------------------'
#
# errors = res.getElementsByTagName('error')
# #print 'list: ', len(errors), errors
# if len(errors)>0:
# return
# for error in errors:
# code = error.getAttribute('code')
# print 'error code=', code
# print res
def handle_response_stack_get(self, res):
"""handle <response command=stack_get> tag
<response command="stack_get" transaction_id="1 ">
<stack filename="file:///home/segv/htdocs/index.php" level="0" lineno="41" where="{main}"/>
</response>"""
stacks = res.getElementsByTagName('stack')
if len(stacks)>0:
self.curstack = 0
self.laststack = len(stacks) - 1
self.stacks = []
for s in stacks:
self.stacks.append( {'file': s.getAttribute('filename')[7:], \
'line': int(s.getAttribute('lineno')), \
'where': s.getAttribute('where'), \
'level': int(s.getAttribute('level'))
} )
self.ui.stackwin.clean()
self.ui.stackwin.highlight_stack(self.curstack)
self.ui.stackwin.write_xml_childs(res.firstChild) #str(res.toprettyxml()))
self.ui.set_srcview( self.stacks[self.curstack]['file'], self.stacks[self.curstack]['line'] )
def handle_response_step_out(self, res):
"""handle <response command=step_out> tag
<response command="step_out" reason="ok" status="break" transaction_id="1 "/>"""
if res.firstChild.hasAttribute('reason') and res.firstChild.getAttribute('reason') == 'ok':
if res.firstChild.hasAttribute('status'):
self.status = res.firstChild.getAttribute('status')
return
else:
print res.toprettyxml()
def handle_response_step_over(self, res):
"""handle <response command=step_over> tag
<response command="step_over" reason="ok" status="break" transaction_id="1 "/>"""
if res.firstChild.hasAttribute('reason') and res.firstChild.getAttribute('reason') == 'ok':
if res.firstChild.hasAttribute('status'):
self.status = res.firstChild.getAttribute('status')
return
else:
print res.toprettyxml()
def handle_response_step_into(self, res):
"""handle <response command=step_into> tag
<response command="step_into" reason="ok" status="break" transaction_id="1 "/>"""
if res.firstChild.hasAttribute('reason') and res.firstChild.getAttribute('reason') == 'ok':
if res.firstChild.hasAttribute('status'):
self.status = res.firstChild.getAttribute('status')
return
else:
print res.toprettyxml()
def handle_response_run(self, res):
"""handle <response command=run> tag
<response command="step_over" reason="ok" status="break" transaction_id="1 "/>"""
if res.firstChild.hasAttribute('status'):
self.status = res.firstChild.getAttribute('status')
return
def handle_response_breakpoint_remove(self, res):
if self.rtbreakpt != None:
del self.rtbreakpt
def handle_response_breakpoint_set(self, res):
"""handle <response command=breakpoint_set> tag
<responsponse command="breakpoint_set" id="110180001" transaction_id="1"/>"""
if res.firstChild.hasAttribute('id'):
tid = int(res.firstChild.getAttribute('transaction_id'))
bno = self.bptsetlst[tid]
del self.bptsetlst[tid]
self.breakpt.setid(bno, str(res.firstChild.getAttribute('id')))
#try:
#except:
# print "can't find bptsetlst tid=", tid
# pass
def handle_response_eval(self, res):
"""handle <response command=eval> tag """
self.ui.watchwin.write_xml_childs(res)
def handle_response_property_get(self, res):
"""handle <response command=property_get> tag """
self.ui.watchwin.write_xml_childs(res)
def handle_response_context_get(self, res):
"""handle <response command=context_get> tag """
self.ui.watchwin.write_xml_childs(res)
def handle_response_feature_set(self, res):
"""handle <response command=feature_set> tag """
self.ui.watchwin.write_xml_childs(res)
def handle_response_default(self, res):
"""handle <response command=context_get> tag """
print res.toprettyxml()
#
#
#################################################################################################################
#################################################################################################################
# debugger command functions
#
# usage:
#
# dbg = Debugger() # create Debugger Object
# dbg.run() # run() method initialize windows, debugger connection and send breakpoints, ...
# dbg.run() # run() method sends 'run -i ...' message
# dbg.command('step_into') # sends 'step_into' message
# dbg.stop() # stop debugger
#
def command(self, cmd, arg1 = '', arg2 = ''):
""" general command sender (receive response too) """
#debugger.clear_runto()
if self.running == 0:
print "Not connected\n"
return
msgid = self.send_command(cmd, arg1, arg2)
self.recv()
return msgid
def run(self):
""" start debugger or continue """
if self.protocol.isconnected():
self.command('run')
if self.status != 'stopped':
self.command('stack_get')
else:
self.clear()
self.protocol.accept()
self.ui.debug_mode()
self.running = 1
self.recv(1)
# set max data to get with eval results
self.command('feature_set', '-n max_children -v ' + self.max_children)
self.command('feature_set', '-n max_data -v ' + self.max_data)
self.command('feature_set', '-n max_depth -v ' + self.max_depth)
self.command('step_into')
flag = 0
for bno in self.breakpt.list():
msgid = self.send_command('breakpoint_set', \
'-t line -f ' + self.breakpt.getfile(bno) + ' -n ' + str(self.breakpt.getline(bno)) + ' -s enabled', \
self.breakpt.getexp(bno))
self.bptsetlst[msgid] = bno
flag = 1
if flag:
self.recv()
self.ui.go_srcview()
def quit(self):
self.ui.normal_mode()
self.clear()
#vim.command('MiniBufExplorer')
def stop(self):
self.clear()
def up(self):
if self.curstack > 0:
self.curstack -= 1
self.ui.stackwin.highlight_stack(self.curstack)
self.ui.set_srcview(self.stacks[self.curstack]['file'], self.stacks[self.curstack]['line'])
def down(self):
if self.curstack < self.laststack:
self.curstack += 1
self.ui.stackwin.highlight_stack(self.curstack)
self.ui.set_srcview(self.stacks[self.curstack]['file'], self.stacks[self.curstack]['line'])
def mark(self, exp = '', runto = False):
(row, rol) = vim.current.window.cursor
file = vim.current.buffer.name
if ((runto == True) and not (self.protocol.isconnected())):
print 'Cannot advance when not connected'
return
bno = self.breakpt.find(file, row)
if bno != None:
id = self.breakpt.getid(bno)
self.breakpt.remove(bno)
vim.command('sign unplace ' + str(bno))
if self.protocol.isconnected():
self.send_command('breakpoint_remove', '-d ' + str(id))
self.recv()
else:
bno = self.breakpt.add(file, row, exp)