summaryrefslogtreecommitdiffstats
path: root/bin/find-headers-to-move-inside-modules.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
commited5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch)
tree7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /bin/find-headers-to-move-inside-modules.py
parentInitial commit. (diff)
downloadlibreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz
libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bin/find-headers-to-move-inside-modules.py')
-rwxr-xr-xbin/find-headers-to-move-inside-modules.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/bin/find-headers-to-move-inside-modules.py b/bin/find-headers-to-move-inside-modules.py
new file mode 100755
index 000000000..9ec0f6231
--- /dev/null
+++ b/bin/find-headers-to-move-inside-modules.py
@@ -0,0 +1,53 @@
+#!/usr/bin/python3
+
+# Look for headers inside include/ that can be moved into their respective modules.
+# Not 100% accurate
+
+import subprocess
+import sys
+
+headerSet = set()
+a = subprocess.Popen("git ls-files include/", stdout=subprocess.PIPE, shell=True)
+with a.stdout as txt:
+ for line in txt:
+ header = line[8:].strip();
+ if b"README" in header: continue
+ if header == b"version.hrc": continue
+ # ignore URE headers
+ if header.startswith(b"IwyuFilter_include.yaml"): continue
+ if header.startswith(b"cppu/"): continue
+ if header.startswith(b"cppuhelper/"): continue
+ if header.startswith(b"osl/"): continue
+ if header.startswith(b"sal/"): continue
+ if header.startswith(b"salhelper/"): continue
+ if header.startswith(b"uno/"): continue
+ # these are direct copies of mozilla code
+ if header.startswith(b"onlineupdate/mozilla/"): continue
+ headerSet.add(header)
+
+headerSetUnused = headerSet.copy()
+headerSetOnlyInOwnModule = headerSet.copy()
+a = subprocess.Popen("git grep '^#include <'", stdout=subprocess.PIPE, shell=True)
+with a.stdout as txt:
+ for line in txt:
+ idx1 = line.find(b"#include <")
+ idx2 = line.find(b">", idx1 + 10)
+ include = line[idx1 + 10 : idx2]
+ headerSetUnused.discard(include)
+ #
+ idx1 = line.find(b"/")
+ includedFromModule = line[0 : idx1]
+ idx1 = include.find(b"/")
+ module = include[0 : idx1]
+ if module != includedFromModule:
+ headerSetOnlyInOwnModule.discard(include)
+
+print("completely unused")
+print("----------------------------")
+for x in sorted(headerSetUnused):
+ print(x)
+print("")
+print("only used in own module")
+print("----------------------------")
+for x in sorted(headerSetOnlyInOwnModule):
+ print(x)