2013-12-25 13:33:12 -05:00
|
|
|
function! vebugger#jdb#start(entryClass,args)
|
2014-06-23 18:46:03 -04:00
|
|
|
let l:debugger=vebugger#std#startDebugger(shellescape(vebugger#util#getToolFullPath('jdb',get(a:args,'version'),'jdb'))
|
2014-05-23 10:43:01 -04:00
|
|
|
\.(has_key(a:args,'classpath') ? ' -classpath '.fnameescape(a:args.classpath) : ''))
|
2013-12-28 15:23:33 -05:00
|
|
|
let l:debugger.state.jdb={}
|
2013-12-25 13:33:12 -05:00
|
|
|
if has_key(a:args,'srcpath')
|
2013-12-28 15:23:33 -05:00
|
|
|
let l:debugger.state.jdb.srcpath=a:args.srcpath
|
|
|
|
else
|
|
|
|
let l:debugger.state.jdb.srcpath='.'
|
2013-12-25 13:33:12 -05:00
|
|
|
endif
|
2013-12-28 15:23:33 -05:00
|
|
|
let l:debugger.state.jdb.filesToClassesMap={}
|
|
|
|
|
2013-12-25 13:33:12 -05:00
|
|
|
call l:debugger.writeLine('stop on '.a:entryClass.'.main')
|
2014-05-17 13:23:15 -04:00
|
|
|
call l:debugger.writeLine('run '.a:entryClass.' '.vebugger#util#commandLineArgsForProgram(a:args))
|
2013-12-25 13:33:12 -05:00
|
|
|
call l:debugger.writeLine('monitor where')
|
2014-05-22 10:21:31 -04:00
|
|
|
if !has('win32')
|
|
|
|
call vebugger#std#openShellBuffer(l:debugger)
|
|
|
|
endif
|
2013-12-25 13:33:12 -05:00
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
call l:debugger.addReadHandler(function('vebugger#jdb#_readProgramOutput'))
|
|
|
|
call l:debugger.addReadHandler(function('vebugger#jdb#_readWhere'))
|
|
|
|
call l:debugger.addReadHandler(function('vebugger#jdb#_readException'))
|
|
|
|
call l:debugger.addReadHandler(function('vebugger#jdb#_readEvaluatedExpressions'))
|
2013-12-25 13:33:12 -05:00
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
call l:debugger.setWriteHandler('std','flow',function('vebugger#jdb#_writeFlow'))
|
|
|
|
call l:debugger.setWriteHandler('std','breakpoints',function('vebugger#jdb#_writeBreakpoints'))
|
|
|
|
call l:debugger.setWriteHandler('std','evaluateExpressions',function('vebugger#jdb#_requestEvaluateExpression'))
|
|
|
|
call l:debugger.setWriteHandler('std','executeStatements',function('vebugger#jdb#_executeStatements'))
|
2013-12-27 16:52:57 -05:00
|
|
|
|
|
|
|
call l:debugger.generateWriteActionsFromTemplate()
|
|
|
|
|
2013-12-28 15:23:33 -05:00
|
|
|
call l:debugger.std_addAllBreakpointActions(g:vebugger_breakpoints)
|
|
|
|
|
2013-12-25 13:33:12 -05:00
|
|
|
return l:debugger
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_readProgramOutput(pipeName,line,readResult,debugger) dict
|
2014-05-17 13:23:15 -04:00
|
|
|
if 'out'==a:pipeName
|
|
|
|
if a:line=~'\v^\> \>'
|
|
|
|
\||a:line=='> '
|
|
|
|
\||a:line=~'\v^Step completed'
|
|
|
|
\||a:line=~'\v^Breakpoint hit'
|
|
|
|
\||a:line=~'\v^\> Deferring breakpoint'
|
|
|
|
\||a:line=='Nothing suspended.'
|
|
|
|
\||a:line=~'\v^\> run ' "Signs that the output finished
|
|
|
|
let self.programOutputMode=0
|
|
|
|
elseif a:line=~'\v(step|step up|next|cont)$' "Next line should be output
|
|
|
|
let self.programOutputMode=1
|
|
|
|
elseif a:line=~'\v^\> [^>]' "Start of output
|
|
|
|
let a:readResult.std.programOutput={'line':substitute(a:line,'\v^\> ','','')}
|
|
|
|
let self.programOutputMode=1
|
|
|
|
elseif get(self,'programOutputMode')
|
|
|
|
let a:readResult.std.programOutput={'line':a:line}
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
let a:readResult.std.programOutput={'line':a:line}
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2015-09-05 11:15:14 -04:00
|
|
|
function! s:getTagContainingString(tag, str)
|
|
|
|
let l:tags = taglist(a:tag)
|
|
|
|
if (len(l:tags) > 0)
|
|
|
|
for l:tag in l:tags
|
2015-09-05 12:38:24 -04:00
|
|
|
if (filereadable(l:tag.filename) && match(readfile(l:tag.filename), a:str) >= 0)
|
2015-09-05 11:15:14 -04:00
|
|
|
return l:tag
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
return {}
|
|
|
|
endfunction
|
|
|
|
|
2015-09-05 23:53:44 -04:00
|
|
|
function! s:findFolderFromStackTrace(src,nameFromStackTrace,frameNumber)
|
2015-09-05 11:15:14 -04:00
|
|
|
" Remove method name.
|
|
|
|
let l:canonicalClassName = strpart(a:nameFromStackTrace, 0, strridx(a:nameFromStackTrace, "."))
|
|
|
|
" Remove package name.
|
2015-09-05 11:15:14 -04:00
|
|
|
let l:simpleClassName = strridx(l:canonicalClassName, ".") >= 0 ? strpart(l:canonicalClassName, strridx(l:canonicalClassName, ".") + 1) : l:canonicalClassName
|
2015-09-05 11:15:14 -04:00
|
|
|
" Remove class name.
|
|
|
|
let l:package = strridx(l:canonicalClassName, ".") >= 0 ? strpart(l:canonicalClassName, 0, strridx(l:canonicalClassName, ".")) : ""
|
|
|
|
|
2015-09-05 23:53:44 -04:00
|
|
|
" We don't really use callstack, so we use tags only for the current location.
|
|
|
|
" Otherwise it makes everything too slow.
|
|
|
|
if exists('g:vebugger_use_tags') && g:vebugger_use_tags && a:frameNumber == 1
|
2015-09-05 12:08:29 -04:00
|
|
|
" Now first try to find a tag for the class from the required package.
|
|
|
|
let l:classTag = s:getTagContainingString(l:simpleClassName, l:package)
|
|
|
|
if (has_key(l:classTag, "filename"))
|
|
|
|
return fnamemodify(l:classTag.filename, ":h")
|
|
|
|
endif
|
2015-09-05 11:15:14 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
" If no such tag was found, try to find it using the src path.
|
2017-10-16 18:11:15 -04:00
|
|
|
for l:one_path in vebugger#util#listify(a:src)
|
2017-05-17 21:19:56 -04:00
|
|
|
let l:path=l:one_path
|
|
|
|
for l:dirname in split(a:nameFromStackTrace,'\.')
|
|
|
|
let l:nextPath=l:path.'/'.fnameescape(l:dirname)
|
|
|
|
if empty(glob(l:nextPath))
|
|
|
|
return l:path
|
|
|
|
endif
|
|
|
|
let l:path=l:nextPath
|
|
|
|
endfor
|
|
|
|
endfor
|
2013-12-27 15:19:29 -05:00
|
|
|
return l:path
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_readWhere(pipeName,line,readResult,debugger)
|
2013-12-25 13:33:12 -05:00
|
|
|
if 'out'==a:pipeName
|
2013-12-27 15:19:29 -05:00
|
|
|
let l:matches=matchlist(a:line,'\v\s*\[(\d+)]\s*(\S+)\s*\(([^:]*):(\d*)\)')
|
|
|
|
if 4<len(l:matches)
|
2013-12-27 16:09:58 -05:00
|
|
|
let l:frameNumber=str2nr(l:matches[1])
|
2015-09-05 23:53:44 -04:00
|
|
|
let l:file=s:findFolderFromStackTrace(a:debugger.state.jdb.srcpath,l:matches[2],l:frameNumber).'/'.l:matches[3]
|
|
|
|
let l:file=fnamemodify(l:file,':~:.')
|
2013-12-27 16:09:58 -05:00
|
|
|
if 1==l:frameNumber " first stackframe is the current location
|
2013-12-27 15:19:29 -05:00
|
|
|
let a:readResult.std.location={
|
|
|
|
\'file':(l:file),
|
2014-01-17 18:21:02 -05:00
|
|
|
\'line':str2nr(l:matches[4])}
|
2013-12-27 15:19:29 -05:00
|
|
|
endif
|
2013-12-27 16:09:58 -05:00
|
|
|
let a:readResult.std.callstack={
|
|
|
|
\'clearOld':('1'==l:frameNumber),
|
|
|
|
\'add':'after',
|
|
|
|
\'file':(l:file),
|
2014-01-17 18:21:02 -05:00
|
|
|
\'line':str2nr(l:matches[4])}
|
2013-12-25 13:33:12 -05:00
|
|
|
endif
|
2013-12-27 16:52:57 -05:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_readException(pipeName,line,readResult,debugger)
|
2014-02-08 15:58:34 -05:00
|
|
|
if 'out'==a:pipeName
|
|
|
|
let l:matches=matchlist(a:line,'\vException occurred:\s+(\S+)')
|
|
|
|
if 1<len(l:matches)
|
|
|
|
let a:readResult.std.exception={
|
|
|
|
\'message':(l:matches[1])}
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_writeFlow(writeAction,debugger)
|
2013-12-27 16:52:57 -05:00
|
|
|
if 'stepin'==a:writeAction
|
|
|
|
call a:debugger.writeLine('step')
|
|
|
|
elseif 'stepover'==a:writeAction
|
|
|
|
call a:debugger.writeLine('next')
|
|
|
|
elseif 'stepout'==a:writeAction
|
|
|
|
call a:debugger.writeLine('step up')
|
|
|
|
elseif 'continue'==a:writeAction
|
|
|
|
call a:debugger.writeLine('cont')
|
|
|
|
endif
|
2013-12-25 13:33:12 -05:00
|
|
|
endfunction
|
2013-12-28 15:23:33 -05:00
|
|
|
|
|
|
|
function! s:getClassNameFromFile(filename)
|
|
|
|
let l:className=fnamemodify(a:filename,':t:r') " Get only the name of the file, without path or extension
|
|
|
|
for l:line in readfile(a:filename)
|
2015-09-05 01:45:04 -04:00
|
|
|
" trailing ; is optional to make it work for groovy as well
|
|
|
|
let l:matches=matchlist(l:line,'\vpackage\s+(%(\w|\.)+)\s*;?')
|
2013-12-28 15:23:33 -05:00
|
|
|
if 1<len(l:matches)
|
|
|
|
return l:matches[1].'.'.l:className
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return l:className
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_writeBreakpoints(writeAction,debugger)
|
2013-12-28 15:23:33 -05:00
|
|
|
for l:breakpoint in a:writeAction
|
|
|
|
let l:class=''
|
|
|
|
if has_key(a:debugger.state.jdb.filesToClassesMap,l:breakpoint.file)
|
|
|
|
let l:class=a:debugger.state.jdb.filesToClassesMap[l:breakpoint.file]
|
|
|
|
else
|
|
|
|
let l:class=s:getClassNameFromFile(l:breakpoint.file)
|
|
|
|
let a:debugger.state.jdb.filesToClassesMap[l:breakpoint.file]=l:class
|
|
|
|
endif
|
|
|
|
|
|
|
|
if 'add'==(l:breakpoint.action)
|
|
|
|
call a:debugger.writeLine('stop at '.l:class.':'.l:breakpoint.line)
|
|
|
|
elseif 'remove'==l:breakpoint.action
|
|
|
|
call a:debugger.writeLine('clear '.l:class.':'.l:breakpoint.line)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
2014-01-17 17:36:13 -05:00
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_requestEvaluateExpression(writeAction,debugger)
|
2014-01-17 17:36:13 -05:00
|
|
|
for l:evalAction in a:writeAction
|
|
|
|
call a:debugger.writeLine('eval '.l:evalAction.expression)
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_executeStatements(writeAction,debugger)
|
2014-05-17 12:56:19 -04:00
|
|
|
for l:evalAction in a:writeAction
|
|
|
|
if has_key(l:evalAction,'statement')
|
|
|
|
"Use eval to run the statement - it works!
|
|
|
|
call a:debugger.writeLine('eval '.l:evalAction.statement)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2015-01-23 19:12:49 -05:00
|
|
|
function! vebugger#jdb#_readEvaluatedExpressions(pipeName,line,readResult,debugger)
|
2014-01-17 17:36:13 -05:00
|
|
|
if 'out'==a:pipeName
|
|
|
|
let l:matches=matchlist(a:line,'\v^%(\s*%(%(%(\w|\.)+)\[\d+\] )+)? ([^=]+) \= (.*)$')
|
|
|
|
if 3<len(l:matches)
|
|
|
|
let l:expression=l:matches[1]
|
|
|
|
let l:value=l:matches[2]
|
|
|
|
let a:readResult.std.evaluatedExpression={
|
2014-01-17 18:21:02 -05:00
|
|
|
\'expression':(l:expression),
|
|
|
|
\'value':(l:value)}
|
2014-01-17 17:36:13 -05:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|