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
|
import parsing
# WARNING: Failure to find
missingFile = parsing.Pattern( r"(?:^|\n)WARNING:\s*(Failure to find:\s*([^\n$]+))", file = '%2', type = 'error', text = '%1' )
missingFile.setComment( 'WARNING: Failure to find file' )
missingFile.test( 'WARNING: Failure to find: file.ext',
file = 'file.ext',
type = 'error',
text = 'Failure to find: file.ext',
hint = 'WARNING: Failure to find: file.ext' )
# Project MESSAGE
message = parsing.Pattern( r"(?:^|\n)Project MESSAGE:\s*([^\n$]+)", type = 'message', text = '%1' )
message.setComment( 'Project MESSAGE' )
message.test( 'Project MESSAGE: this is my qmake project message',
type = 'message',
text = 'this is my qmake project message',
hint = 'Project MESSAGE: this is my qmake project message' )
# Reading
reading = parsing.Pattern( r"(?:^|\n)\s*(Reading\s*([^\n$]+))", file = '%2', type = 'message', hint = '%1' )
reading.setComment( 'Reading' )
reading.test( ' Reading /home/pasnox/Temporaire/qtsol/sub1/sub1.pro',
file = '/home/pasnox/Temporaire/qtsol/sub1/sub1.pro',
type = 'message',
text = ' Reading /home/pasnox/Temporaire/qtsol/sub1/sub1.pro',
hint = 'Reading /home/pasnox/Temporaire/qtsol/sub1/sub1.pro' )
# Warning: potential duplicate alias detected
duplicateAlias = parsing.Pattern( r"(?:^|\n)([^:]+):\s*Warning:\s*(potential duplicate alias detected:\s*'[^\n$]+')", file = '%1', type = 'warning', text = '%2' )
duplicateAlias.setComment( 'Warning: potential duplicate alias detected' )
duplicateAlias.test( 'src/resources/resources.qrc: Warning: potential duplicate alias detected: \'license.gpl\'',
file = 'src/resources/resources.qrc',
type = 'warning',
text = 'potential duplicate alias detected: \'license.gpl\'',
hint = 'src/resources/resources.qrc: Warning: potential duplicate alias detected: \'license.gpl\'' )
# lupdate/lrelease warning
#warning = parsing.Pattern( r"(?:^|\n)(?:lupdate|lrelease) warning:\s*([^']+'([^']+)'\.?)", file = '%2', type = 'warning', text = '%1' )
warning = parsing.Pattern( r"(?:^|\n)(?:lupdate|lrelease) warning:\s*((?:[^'\n$]+'[^'\n$]+')?[^'\n$]+'([^'\n$]+)'\.?)", file = '%2', type = 'warning', text = '%1' )
warning.setComment( 'lupdate/lrelease warning' )
warning.test( 'lupdate warning: no TS files specified. Only diagnostics will be produced for \'/home/pasnox/Temporaire/qtgui/qtgui.pro\'.',
file = '/home/pasnox/Temporaire/qtgui/qtgui.pro',
type = 'warning',
text = 'no TS files specified. Only diagnostics will be produced for \'/home/pasnox/Temporaire/qtgui/qtgui.pro\'.',
hint = 'lupdate warning: no TS files specified. Only diagnostics will be produced for \'/home/pasnox/Temporaire/qtgui/qtgui.pro\'.' )
warning.test( "lrelease warning: Met no 'TRANSLATIONS' entry in project file '/home/pasnox/Temporaire/cppqtgui/cppqtgui.pro'",
file = '/home/pasnox/Temporaire/cppqtgui/cppqtgui.pro',
type = 'warning',
text = "Met no 'TRANSLATIONS' entry in project file '/home/pasnox/Temporaire/cppqtgui/cppqtgui.pro'",
hint = "lrelease warning: Met no 'TRANSLATIONS' entry in project file '/home/pasnox/Temporaire/cppqtgui/cppqtgui.pro'" )
# cannot open/create
cannot = parsing.Pattern( r"(?:^|\n)Cannot (?:open|create) [^:]+:\s*([^\n$]+)", type = 'error', text = '%1' )
cannot.setComment( 'cannot open' )
cannot.test( 'Cannot open dependencies/intuisphere/core: file to open is a directory',
type = 'error',
text = 'file to open is a directory',
hint = 'Cannot open dependencies/intuisphere/core: file to open is a directory' )
cannot.test( 'Cannot create /home/pasnox/Temporaire/cppqtgui/translations/cppqtgui: No such file or directory',
type = 'error',
text = 'No such file or directory',
hint = 'Cannot create /home/pasnox/Temporaire/cppqtgui/translations/cppqtgui: No such file or directory' )
# Updating TS/QM file
tsUpdate = parsing.Pattern( r"(?:^|\n)Updating\s*'([^']+)'[^\n$]+", file = '%1', type = 'message' )
tsUpdate.setComment( 'Updating TS/QM file' )
tsUpdate.test( "Updating 'datas/languages/references/numento_en.ts'...",
file = 'datas/languages/references/numento_en.ts',
type = 'message',
text = "Updating 'datas/languages/references/numento_en.ts'...",
hint = "Updating 'datas/languages/references/numento_en.ts'..." )
tsUpdate.test( "Updating 'datas/languages/references/numento_dependencies_it.qm'...",
file = 'datas/languages/references/numento_dependencies_it.qm',
type = 'message',
text = "Updating 'datas/languages/references/numento_dependencies_it.qm'...",
hint = "Updating 'datas/languages/references/numento_dependencies_it.qm'..." )
# Updating TS/QM file info
tsUpdateInfo = parsing.Pattern( r"(?:^|\n)\s*((?:Found|Generated|Kept|Same-text)(?:\s*\d+)?[^\n$]+)", type = 'message', hint = '%1' )
tsUpdateInfo.setComment( 'Updating TS/QM file info' )
tsUpdateInfo.test( ' Found 680 source text(s) (0 new and 680 already existing)',
type = 'message',
text = ' Found 680 source text(s) (0 new and 680 already existing)',
hint = 'Found 680 source text(s) (0 new and 680 already existing)' )
tsUpdateInfo.test( ' Generated 123 translation(s) (123 finished and 0 unfinished)',
type = 'message',
text = ' Generated 123 translation(s) (123 finished and 0 unfinished)',
hint = 'Generated 123 translation(s) (123 finished and 0 unfinished)' )
tsUpdateInfo.test( ' Kept 118 obsolete entries',
type = 'message',
text = ' Kept 118 obsolete entries',
hint = 'Kept 118 obsolete entries' )
tsUpdateInfo.test( ' Same-text heuristic provided 9 translation(s)',
type = 'message',
text = ' Same-text heuristic provided 9 translation(s)',
hint = 'Same-text heuristic provided 9 translation(s)' )
# generic filename + line + message
fileNameLine = parsing.Pattern( r"(?:^|\n)([^:(]+):?\(?(\d+)\)?:\s*([^\n$]+)", file = '%1', type = 'warning', line = '%2', text ='%3' )
fileNameLine.setComment( 'Generic filename + line + message' )
fileNameLine.test( '/usr/share/qt4/mkspecs/modules/qt_phonon.pri(7):Function \'fromfile\' is not implemented',
file = '/usr/share/qt4/mkspecs/modules/qt_phonon.pri',
type = 'warning',
line = '7',
text = 'Function \'fromfile\' is not implemented',
hint = '/usr/share/qt4/mkspecs/modules/qt_phonon.pri(7):Function \'fromfile\' is not implemented' )
fileNameLine.test( '/usr/share/qt4/mkspecs/modules/qt_phonon.pri(7):\'!contains\' is not a recognized test function',
file = '/usr/share/qt4/mkspecs/modules/qt_phonon.pri',
type = 'warning',
line = '7',
text = '\'!contains\' is not a recognized test function',
hint = '/usr/share/qt4/mkspecs/modules/qt_phonon.pri(7):\'!contains\' is not a recognized test function' )
fileNameLine.test( '/usr/include/qt4/QtCore/qstringbuilder.h:45: circular inclusion of /usr/include/qt4/QtCore/qstring.h',
file = '/usr/include/qt4/QtCore/qstringbuilder.h',
type = 'warning',
line = '45',
text = 'circular inclusion of /usr/include/qt4/QtCore/qstring.h',
hint = '/usr/include/qt4/QtCore/qstringbuilder.h:45: circular inclusion of /usr/include/qt4/QtCore/qstring.h' )
fileNameLine.test( 'Qt4/qscilexerbash.cpp:209: Qualifying with unknown namespace/class ::QsciLexerBash',
file = 'Qt4/qscilexerbash.cpp',
type = 'warning',
line = '209',
text = 'Qualifying with unknown namespace/class ::QsciLexerBash',
hint = 'Qt4/qscilexerbash.cpp:209: Qualifying with unknown namespace/class ::QsciLexerBash' )
fileNameLine.test( 'src/LexEScript.cpp:179: Discarding unconsumed meta data',
file = 'src/LexEScript.cpp',
type = 'warning',
line = '179',
text = 'Discarding unconsumed meta data',
hint = 'src/LexEScript.cpp:179: Discarding unconsumed meta data' )
fileNameLine.test( 'sqlite3_unicode.c:2743: Unbalanced opening brace in C++ code (or abuse of the C++ preprocessor)',
file = 'sqlite3_unicode.c',
type = 'warning',
line = '2743',
text = 'Unbalanced opening brace in C++ code (or abuse of the C++ preprocessor)',
hint = 'sqlite3_unicode.c:2743: Unbalanced opening brace in C++ code (or abuse of the C++ preprocessor)' )
# generic filename + message
fileName = parsing.Pattern( r"(?:^|\n)([^:]+):\s*(?:[^\n:]+):\s*([^\n$]+)", file = '%1', type = 'warning', text ='%2' )
fileName.setComment( 'Generic filename + message' )
fileName.test( "src/settings/UISettings.ui: Warning: Z-order assignment: 'horizontalLayoutWidget' is not a valid widget.",
file = 'src/settings/UISettings.ui',
type = 'warning',
text = "Z-order assignment: 'horizontalLayoutWidget' is not a valid widget.",
hint = "src/settings/UISettings.ui: Warning: Z-order assignment: 'horizontalLayoutWidget' is not a valid widget." )
# uic call
uic = parsing.Pattern( r"(?:^|\n)(?:[^\n$]+)?uic(?:-[\w\d\.]+)?\s+[^\n$]+\s+-o\s+([^\n$]+)",
type = 'action',
file = '%1',
text = 'Generating %1...' )
uic.setComment( "uic command line" )
uic.test( '/usr/bin/uic-qt4 src/usersdialog.ui -o /media/ramdisk/bodeasy/debug/ui/ui_usersdialog.h',
type = 'action',
file = '/media/ramdisk/bodeasy/debug/ui/ui_usersdialog.h',
text = 'Generating /media/ramdisk/bodeasy/debug/ui/ui_usersdialog.h...',
hint = '/usr/bin/uic-qt4 src/usersdialog.ui -o /media/ramdisk/bodeasy/debug/ui/ui_usersdialog.h' )
# moc call
moc = parsing.Pattern( r"(?:^|\n)(?:[^\n$]+)?moc(?:-[\w\d\.]+)?\s+[^\n$]+\s+-o\s+([^\n$]+)",
type = 'action',
file = '%1',
text = 'Generating %1...' )
moc.setComment( "moc command line" )
moc.test( '/usr/bin/moc-qt4 -DQT_SQL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtSql -I/usr/include/qt4 -I/usr/include/qt4/QtTest -I. -Isrc -I/usr/local/qwt-6.0.1/include -I/media/ramdisk/bodeasy/debug/moc -I/media/ramdisk/bodeasy/debug/ui src/sql/models/exercisesmodel.h -o /media/ramdisk/bodeasy/debug/moc/moc_exercisesmodel.cpp',
type = 'action',
file = '/media/ramdisk/bodeasy/debug/moc/moc_exercisesmodel.cpp',
text = 'Generating /media/ramdisk/bodeasy/debug/moc/moc_exercisesmodel.cpp...',
hint = '/usr/bin/moc-qt4 -DQT_SQL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtSql -I/usr/include/qt4 -I/usr/include/qt4/QtTest -I. -Isrc -I/usr/local/qwt-6.0.1/include -I/media/ramdisk/bodeasy/debug/moc -I/media/ramdisk/bodeasy/debug/ui src/sql/models/exercisesmodel.h -o /media/ramdisk/bodeasy/debug/moc/moc_exercisesmodel.cpp' )
# Generation of script file
print '# It is a machine generated file. Do not edit it manualy!'
print ''
print missingFile.generateMkSScript( 'QMake' )
print message.generateMkSScript( 'QMake' )
print reading.generateMkSScript( 'QMake' )
print duplicateAlias.generateMkSScript( 'QMake' )
print warning.generateMkSScript( 'QMake' )
print cannot.generateMkSScript( 'QMake' )
print tsUpdate.generateMkSScript( 'QMake' )
print tsUpdateInfo.generateMkSScript( 'QMake' )
print fileNameLine.generateMkSScript( 'QMake' )
print fileName.generateMkSScript( 'QMake' )
print uic.generateMkSScript( 'QMake' )
print moc.generateMkSScript( 'QMake' )
|