Created
October 3, 2012 07:54
-
-
Save zach-brockway/3825678 to your computer and use it in GitHub Desktop.
A quick-and-dirty python script to find invalid ClInclude nodes in VS 2010 projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/c/Python32/python.exe | |
import sys | |
import os.path | |
import xml.etree.ElementTree as ET | |
ns = '{http://schemas.microsoft.com/developer/msbuild/2003}' | |
filterTree = ET.parse(sys.argv[1]+".filters") | |
filterRoot = filterTree.getroot() | |
filterDict = dict() | |
missingDict = dict() | |
for inc in filterRoot.iter(ns+'ClInclude'): | |
incFileRel = inc.get('Include') | |
incFilter = inc.find(ns+'Filter') | |
if incFileRel != None and incFilter != None: | |
filterDict[incFileRel] = incFilter.text | |
if incFilter.text not in missingDict: | |
missingDict[incFilter.text] = [] | |
projTree = ET.parse(sys.argv[1]) | |
projRoot = projTree.getroot() | |
for inc in projRoot.iter(ns+'ClInclude'): | |
incFileRel = inc.get('Include') | |
if incFileRel != None: | |
incFile = os.path.abspath( os.path.dirname(sys.argv[1]) +"\\"+ incFileRel ) | |
if not os.path.exists(incFile): | |
missingDict[filterDict[incFileRel]].append(incFileRel) | |
for (missingGroup, missingList) in missingDict.items(): | |
if len(missingList) > 0: | |
print("["+missingGroup+"]:") | |
for missing in missingList: | |
print(" " + os.path.basename(missing) + " (" + missing + ")") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment