3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 # This parses the output of 'include-what-you-use', focusing on just removing
8 # not needed includes and providing a relatively conservative output by
9 # filtering out a number of LibreOffice-specific false positives.
11 # It assumes you have a 'compile_commands.json' around (similar to clang-tidy),
12 # you can generate one with 'make vim-ide-integration'.
15 # - blacklist mechanism, so a warning is either fixed or blacklisted
16 # - works in a plugins-enabled clang build
17 # - no custom configure options required
18 # - no need to generate a dummy library to build a header
22 import multiprocessing
32 def ignoreRemoval(include, toAdd, absFileName, moduleRules):
35 # Avoid replacing .hpp with .hdl in the com::sun::star and ooo::vba namespaces.
36 if ( include.startswith("com/sun/star") or include.startswith("ooo/vba") ) and include.endswith(".hpp"):
37 hdl = include.replace(".hpp", ".hdl")
43 "array": ("debug/array", ),
44 "bitset": ("debug/bitset", ),
45 "deque": ("debug/deque", ),
46 "forward_list": ("debug/forward_list", ),
47 "list": ("debug/list", ),
48 "map": ("debug/map.h", "debug/multimap.h"),
49 "set": ("debug/set.h", "debug/multiset.h"),
50 "unordered_map": ("debug/unordered_map", ),
51 "unordered_set": ("debug/unordered_set", ),
52 "vector": ("debug/vector", ),
54 for k, values in debugStl.items():
60 # Avoid proposing to use libstdc++ internal headers.
62 "exception": "bits/exception.h",
63 "memory": "bits/shared_ptr.h",
64 "functional": "bits/std_function.h",
65 "cmath": "bits/std_abs.h",
66 "ctime": "bits/types/clock_t.h",
67 "cstdint": "bits/stdint-uintn.h"
69 for k, v in bits.items():
70 if include == k and v in toAdd:
73 # Avoid proposing o3tl fw declaration
75 "o3tl/typed_flags_set.hxx" : "namespace o3tl { template <typename T> struct typed_flags; }",
76 "o3tl/deleter.hxx" : "namespace o3tl { template <typename T> struct default_delete; }",
77 "o3tl/span.hxx" : "namespace o3tl { template <typename T> class span; }",
79 for k, v, in o3tl.items():
80 if include == k and v in toAdd:
83 # Follow boost documentation.
84 if include == "boost/optional.hpp" and "boost/optional/optional.hpp" in toAdd:
86 if include == "boost/intrusive_ptr.hpp" and "boost/smart_ptr/intrusive_ptr.hpp" in toAdd:
88 if include == "boost/variant.hpp" and "boost/variant/variant.hpp" in toAdd:
90 if include == "boost/unordered_map.hpp" and "boost/unordered/unordered_map.hpp" in toAdd:
92 if include == "boost/functional/hash.hpp" and "boost/container_hash/extensions.hpp" in toAdd:
95 # Avoid .hxx to .h proposals in basic css/uno/* API
97 "com/sun/star/uno/Any.hxx": "com/sun/star/uno/Any.h",
98 "com/sun/star/uno/Reference.hxx": "com/sun/star/uno/Reference.h",
99 "com/sun/star/uno/Sequence.hxx": "com/sun/star/uno/Sequence.h",
100 "com/sun/star/uno/Type.hxx": "com/sun/star/uno/Type.h"
102 for k, v in unoapi.items():
103 if include == k and v in toAdd:
106 # 3rd-party, non-self-contained headers.
107 if include == "libepubgen/libepubgen.h" and "libepubgen/libepubgen-decls.h" in toAdd:
109 if include == "librevenge/librevenge.h" and "librevenge/RVNGPropertyList.h" in toAdd:
113 # <https://www.openoffice.org/tools/CodingGuidelines.sxw> insists on not
116 # Works around a build breakage specific to the broken Android
118 "android/compatibility.hxx",
120 if include in noRemove:
123 # Ignore when <foo> is to be replaced with "foo".
127 fileName = os.path.relpath(absFileName, os.getcwd())
129 # Skip headers used only for compile test
130 if fileName == "cppu/qa/cppumaker/test_cppumaker.cxx":
131 if include.endswith(".hpp"):
136 if "blacklist" in moduleRules.keys():
137 blacklistRules = moduleRules["blacklist"]
138 if fileName in blacklistRules.keys():
139 if include in blacklistRules[fileName]:
145 def unwrapInclude(include):
146 # Drop <> or "" around the include.
150 def processIWYUOutput(iwyuOutput, moduleRules, fileName):
155 currentFileName = None
157 for line in iwyuOutput:
160 # Bail out if IWYU gave an error due to non self-containedness
161 if re.match ("(.*): error: (.*)", line):
172 shouldAdd = fileName + " should add these lines:"
173 match = re.match(shouldAdd, line)
175 currentFileName = match.group(0).split(' ')[0]
179 shouldRemove = fileName + " should remove these lines:"
180 match = re.match(shouldRemove, line)
182 currentFileName = match.group(0).split(' ')[0]
187 match = re.match('#include ([^ ]+)', line)
189 include = unwrapInclude(match.group(1))
190 toAdd.append(include)
192 # Forward declaration.
196 match = re.match("- #include (.*) // lines (.*)-.*", line)
198 # Only suggest removals for now. Removing fwd decls is more complex: they may be
199 # indeed unused or they may removed to be replaced with an include. And we want to
201 include = unwrapInclude(match.group(1))
202 lineno = match.group(2)
203 if not ignoreRemoval(include, toAdd, currentFileName, moduleRules):
204 toRemove.append("%s:%s: %s" % (currentFileName, lineno, include))
206 for remove in sorted(toRemove):
207 print("ERROR: %s: remove not needed include" % remove)
211 def run_tool(task_queue, failed_files):
213 invocation, moduleRules = task_queue.get()
214 if not len(failed_files):
215 print("[IWYU] " + invocation.split(' ')[-1])
216 p = subprocess.Popen(invocation, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
217 retcode = processIWYUOutput(p.communicate()[0].decode('utf-8').splitlines(), moduleRules, invocation.split(' ')[-1])
219 print("ERROR: A file is probably not self contained, check this commands output:\n" + invocation)
221 print("ERROR: The following command found unused includes:\n" + invocation)
222 failed_files.append(invocation)
223 task_queue.task_done()
226 def isInUnoIncludeFile(path):
227 return path.startswith("include/com/") \
228 or path.startswith("include/cppu/") \
229 or path.startswith("include/cppuhelper/") \
230 or path.startswith("include/osl/") \
231 or path.startswith("include/rtl/") \
232 or path.startswith("include/sal/") \
233 or path.startswith("include/salhelper/") \
234 or path.startswith("include/systools/") \
235 or path.startswith("include/typelib/") \
236 or path.startswith("include/uno/")
239 def tidy(compileCommands, paths):
242 max_task = multiprocessing.cpu_count()
243 task_queue = queue.Queue(max_task)
245 for _ in range(max_task):
246 t = threading.Thread(target=run_tool, args=(task_queue, failed_files))
250 for path in sorted(paths):
251 if isInUnoIncludeFile(path):
254 moduleName = path.split("/")[0]
256 rulePath = os.path.join(moduleName, "IwyuFilter_" + moduleName + ".yaml")
258 if os.path.exists(rulePath):
259 moduleRules = yaml.load(open(rulePath))
261 pathAbs = os.path.abspath(path)
262 compileFile = pathAbs
263 matches = [i for i in compileCommands if i["file"] == compileFile]
265 if "assumeFilename" in moduleRules.keys():
266 assume = moduleRules["assumeFilename"]
268 assumeAbs = os.path.abspath(assume)
269 compileFile = assumeAbs
270 matches = [i for i in compileCommands if i["file"] == compileFile]
272 print("WARNING: no compile commands for '" + path + "' (assumed filename: '" + assume + "'")
275 print("WARNING: no compile commands for '" + path + "'")
278 _, _, args = matches[0]["command"].partition(" ")
280 args = args.replace(assumeAbs, "-x c++ " + pathAbs)
282 invocation = "include-what-you-use -Xiwyu --no_fwd_decls -Xiwyu --max_line_length=200 " + args
283 task_queue.put((invocation, moduleRules))
286 if len(failed_files):
289 except KeyboardInterrupt:
290 print('\nCtrl-C detected, goodbye.')
293 sys.exit(return_code)
298 print("usage: find-unneeded-includes [FILE]...")
302 with open("compile_commands.json", 'r') as compileCommandsSock:
303 compileCommands = json.load(compileCommandsSock)
304 except FileNotFoundError:
305 print ("File 'compile_commands.json' does not exist, please run:\nmake vim-ide-integration")
308 tidy(compileCommands, paths=argv)
310 if __name__ == '__main__':
313 # vim:set shiftwidth=4 softtabstop=4 expandtab: