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
|
# run from root sources directory: python Scripts/cppcheck/cppcheck.py
import os
ignoredContent = [
"is not safe, destructor throws exception",
# "::initialise' can be const.", # ignore, because some are not const and we keep all non-const for similarity
# "::shutdown' can be const.", # ignore, because some are not const and we keep all non-const for similarity
"(style) The function '", # "Function is never used". False positive for library project
"MyGUI_UString", # warnings from UString, gnore because it wasn't written by the MyGUI developers
#"pugixml", # warnings from pugixml, ignore because it wasn't written by the MyGUI developers
#"sigslot", # warnings from sigslot, ignore because it wasn't written by the MyGUI developers
# "Technically the member function 'input::", # useless, because with other input system this function could be non-const
# "Cppcheck cannot find all the include files",
"is assigned in constructor body. Consider performing initialization in initialization list.", # sometimes it makes sense, when non-trivial logic involved
"(performance) Prefer prefix ++/-- operators for non-primitive types", # fine for us - leave this optimisation to compiler
# "(error) Reference to temporary returned." # only false positives (revert later)
#"does not have a copy constructor which is recommended since the class contains a pointer to allocated memory." # ignore, not important
]
def isIgnoredWarning(warning):
for ignore in ignoredContent:
if warning.find(ignore) != -1:
return True
return False
def parseOutput():
file = open("temp.cppcheck", 'r')
line = file.readline()
while line != "":
line = line[0:len(line)-1]
if (not isIgnoredWarning(line)):
print line
line = file.readline()
file.close ()
def checkFolderSources(folder, flags) :
os.system("cppcheck --enable=all -I Scripts/cppcheck -I MyGUIEngine/include -D MYGUI_COMPILER=2 " + flags + " " + folder + " 2>temp.cppcheck")
parseOutput()
checkFolderSources('MyGUIEngine', '')
checkFolderSources('Demos', '-I Common -I Common/Base/Ogre -I Common/Input/OIS -I Platforms/Ogre/OgrePlatform/include -I Plugins/Plugin_BerkeliumWidget')
checkFolderSources('Tools', '-I Common -I Common/Base/Ogre -I Common/Input/OIS -I Platforms/Ogre/OgrePlatform/include -I Tools/EditorFramework')
checkFolderSources('UnitTests/UnitTest_*', '-I Common -I Common/Base/Ogre -I Common/Input/OIS -I Platforms/Ogre/OgrePlatform/include')
checkFolderSources('Common', '-I Common -I Common/Input/OIS -I Platforms/Ogre/OgrePlatform/include')
checkFolderSources('Platforms/OpenGL/OpenGLPlatform/src', '-I Platforms/OpenGL/OpenGLPlatform/include -I Common')
checkFolderSources('Platforms/Ogre/OgrePlatform/src', '-I Platforms/Ogre/OgrePlatform/include')
checkFolderSources('Platforms/DirectX/DirectXPlatform/src', '-I Platforms/DirectX/DirectXPlatform/include -I Common')
checkFolderSources('Platforms/DirectX11/DirectX11Platform/src', '-I Platforms/DirectX11/DirectX11Platform/include -I Common')
checkFolderSources('Plugins', '')
checkFolderSources('Wrappers/MyGUI_Export', ' -I Common')
|