简体   繁体   中英

Python script setting breakpoints and the encounter of a comment

I am trying to build a script that sets breakpoints in winIDEA (this ide will run a project, that has different comments). The breakpoints must be set in winIDEA after a specific comment is recognised. I am somewhat new to this language and I am having problems making this script. I am not sure if what I have here is good, but I am trying to get the line where the comment is recognised, and then set a breakpoint in the program at this specific line.

import inspect
import logging

import isystem.connect as ic
import sys

connMgr = ic.ConnectionMgr()
connMgr.connectMRU('')

dbg = ic.CDebugFacade(connMgr)
bc = ic.CBreakpointController(connMgr)
exe = ic.CExecutionController(connMgr)

logging.basicConfig(
    format = "%(levelname) -10s %(asctime)s %(message)s",
    level = logging.DEBUG

def test():

    caller_list = []
    frame = inspect.currentframe()

    this_frame = frame  # Save current frame.

    while frame.f_back:
        print frame
        caller_list.append('{0}()'.format(frame.f_code.co_name))
        frame = frame.f_back

    caller_line = this_frame.f_back.f_lineno
    callers =  '/'.join(reversed(caller_list))

    logging.info('Line {0} : {1}'.format(caller_line, callers))
    print caller_line

def foo():
   test()

def bar():
   foo()

test()

datafile= file(r'C:\Documents and Settings\stiral1\Desktop\function.py')
stringfile=datafile.read()
item_search="haha"
counter=0

print stringfile.find(item_search,counter)


while counter != -1:
    print stringfile.find(item_search,counter)
    bc.setBP(counter,r'C:\_DevTools\winIDEA\2012\Examples\Simulator\PPC\Simple\main.c')

I get instead a random line, and the position where I encounter my element in the string (I make the script that runs in ide a string at some point). I have no idea left... Help a newbie!

This is what worked up for me:

def wdSetBPComment(wdPrmStr):
    assert(wdGetNrOfSubStrings(wdPrmStr) == 2)
    comment = wdGetSubString_1(wdPrmStr)
    function = wdGetSubString_2(wdPrmStr)

    gl_tpLocation.setResourceName(function)
    gl_tpLocation.setSearch(ic.E_TRUE)
    gl_tpLocation.setMatchingType(ic.CTestLocation.E_MATCH_PLAIN)
    gl_tpLocation.setSearchPattern(comment)
    lineLocation = addrCtrl.getSourceLocation(gl_tpLocation)
    wdSetBreakpoint(lineLocation.getFileName()+lineLocation.getLineNumber())
    gl_bcCtrl.setBP(lineNo,fileName)

    return (gl_wdOkStr)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM