author | mickeyl <mickeyl> | 2004-04-26 12:25:42 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-26 12:25:42 (UTC) |
commit | a26e4da56923553a2f9e4da4db3b92bdb75479c8 (patch) (unidiff) | |
tree | e936f193364176109edc0ae4cc05678a2549ca78 /scripts/qdebug-odebug.py | |
parent | caf74b437544a95410bbd030045e15e4dcaa91f0 (diff) | |
download | opie-a26e4da56923553a2f9e4da4db3b92bdb75479c8.zip opie-a26e4da56923553a2f9e4da4db3b92bdb75479c8.tar.gz opie-a26e4da56923553a2f9e4da4db3b92bdb75479c8.tar.bz2 |
update
-rwxr-xr-x | scripts/qdebug-odebug.py | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/scripts/qdebug-odebug.py b/scripts/qdebug-odebug.py index 636c1b2..7a417e1 100755 --- a/scripts/qdebug-odebug.py +++ b/scripts/qdebug-odebug.py | |||
@@ -10,9 +10,9 @@ manual work may be needed after applying the script. | |||
10 | import sys, sre | 10 | import sys, sre |
11 | 11 | ||
12 | qDebugExpression = sre.compile( '(.*)(qDebug)\(\s*(.*)\s*\);(.*)' ) | 12 | qDebugExpression = sre.compile( '(?P<head>.*)(?P<statement>qDebug)\(\s*(?P<content>.*)\s*\);(?P<tail>.*)' ) |
13 | qWarningExpression = sre.compile( '(.*)(qWarning)\(\s*(.*)\s*\);(.*)' ) | 13 | qWarningExpression = sre.compile( '(?P<head>.*)(?P<statement>qWarning)\(\s*(?P<content>.*)\s*\);(?P<tail>.*)' ) |
14 | qErrorExpression = sre.compile( '(.*)(qError)\(\s*(.*)\s*\);(.*)' ) | 14 | qErrorExpression = sre.compile( '(?P<head>.*)(?P<statement>qError)\(\s*(?P<content>.*)\s*\);(?P<tail>.*)' ) |
15 | qFatalExpression = sre.compile( '(.*)(qFatal)\(\s*(.*)\s*\);(.*)' ) | 15 | qFatalExpression = sre.compile( '(?P<head>.*)(?P<statement>qFatal)\(\s*(?P<content>.*)\s*\);(?P<tail>.*)' ) |
16 | printfExpression = sre.compile( '(.*)(printf)\(\s*(.*)\s*\);(.*)' ) | 16 | #printfExpression = sre.compile( '(?P<head>.*)(?![s\.])(?P<statement>printf)\(\s*(?P<content>.*)\s*\);(?P<tail>.*)' ) |
17 | 17 | ||
18 | debugTable = { "qDebug" : "odebug", | 18 | debugTable = { "qDebug" : "odebug", |
@@ -22,5 +22,5 @@ debugTable = { "qDebug" : "odebug", | |||
22 | "printf" : "odebug" } | 22 | "printf" : "odebug" } |
23 | 23 | ||
24 | allExpressions = ( qDebugExpression, qWarningExpression, qErrorExpression, qFatalExpression, printfExpression ) | 24 | allExpressions = ( qDebugExpression, qWarningExpression, qErrorExpression, qFatalExpression ) #, printfExpression ) |
25 | 25 | ||
26 | #################################################################################################### | 26 | #################################################################################################### |
@@ -37,5 +37,10 @@ def convert( fname ): | |||
37 | else: | 37 | else: |
38 | match = True | 38 | match = True |
39 | head, debug, content, tail = m.groups() | 39 | |
40 | head = m.groupdict()["head"] | ||
41 | debug = m.groupdict()["statement"] | ||
42 | content = m.groupdict()["content"] | ||
43 | tail = m.groupdict()["tail"] | ||
44 | |||
40 | print >>sys.stderr, "<NOTE>: Groups = ", m.groups() | 45 | print >>sys.stderr, "<NOTE>: Groups = ", m.groups() |
41 | sys.stdout.write( head ) # don't strip() here, because we want to keep indentation | 46 | sys.stdout.write( head ) # don't strip() here, because we want to keep indentation |
@@ -96,5 +101,5 @@ def transform( s ): | |||
96 | indirective = True | 101 | indirective = True |
97 | i += 1 | 102 | i += 1 |
98 | while i < len( formatstring ) and formatstring[i] not in "%dDiouxXfegEscpn": | 103 | while i < len( formatstring ) and formatstring[i] not in "%dDiouxXfFegEscpn": |
99 | i += 1 | 104 | i += 1 |
100 | if formatstring[i] == "%": | 105 | if formatstring[i] == "%": |