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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
#! /usr/bin/env python2
# Copyright (C) 2016 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
import glob
import json
import logging
import os
import re
import subprocess
import sys
import platform
class Library:
def __init__(self, path):
self.path = path
self.name = ''
self.exportedSymbols = {}
self.name = re.sub('^(.*/)?lib', '', path)
self.name = re.sub('\.so.*$', '', self.name)
self._runNM(self.path)
def isLibrary(self):
return True
def isPlugin(self):
return False
def debugDump(self):
log.debug('Library "%s" exports %d symbols.', self.name, len(self.exportedSymbols))
def _runNM(self, path):
try:
output = subprocess.check_output(['/usr/bin/nm', '--demangle', path], stderr=subprocess.STDOUT).splitlines()
except:
output = []
for line in output:
self._parseNMline(line)
def _parseNMline(self, line):
m = re.search('^[0-9a-fA-F]{8,16} [TD] (.*)$', line)
if m:
self.exportedSymbols[m.group(1)] = 1
class Plugin(Library):
def __init__(self, spec):
self.pluginSpec = spec
self.specDependencies = {}
self.symbolDependencies = {}
self.name = ''
self.importedSymbols = []
self.path = self._parsePluginSpec(spec)
Library.__init__(self, self.path)
self.importedSymbols.sort()
def isLibrary(self):
return False
def isPlugin(self):
return True
def debugDump(self):
log.debug('Plugin "%s" imports %d symbols and exports %d symbols.', self.name, len(self.importedSymbols),
len(self.exportedSymbols))
for i in self.specDependencies:
log.debug(' Spec declares dependency on "%s"', i)
for i in self.symbolDependencies:
tmp = 'plugin'
if i.isLibrary():
tmp = 'lib'
log.debug(' Symbol dependency on %s "%s" (%d)', tmp, i.name, self.symbolDependencies[i])
def _parsePluginSpec(self, spec):
dirname = os.path.dirname(spec)
with open(spec) as f:
content = json.load(f)
self.name = content.get("Name")
dependencies = content.get("Dependencies")
if dependencies is not None:
for dep in dependencies:
depName = dep.get("Name")
depType = dep.get("Type")
if depName is None:
log.critical("Unnamed dependency inside '%s'?" % spec)
continue
if depType is None:
depType = 'strong'
self.specDependencies[depName] = depType
if self.name is None or self.name == '':
log.critical('Plugin name not set for spec "%s".', spec)
return os.path.normpath(os.path.join(dirname, "..", "..", "..", "lib", "qtcreator",
"plugins", "lib%s.so" % self.name))
def _parseNMline(self, line):
m = re.search('^\s+ U (.*)$', line)
if m:
self.importedSymbols.append(m.group(1))
else:
Library._parseNMline(self, line)
def addSymbolDependency(self, dep, symbol):
if dep in self.symbolDependencies:
self.symbolDependencies[dep]['total'] += 1
else:
self.symbolDependencies[dep] = {}
self.symbolDependencies[dep]['total'] = 1
self.symbolDependencies[dep][symbol] = 1
class SymbolResolver:
def __init__(self, plugins, libraries):
self.libraries = libraries
self.libraries.extend(plugins)
for i in plugins:
self._resolve(i)
def _resolve(self, plugin):
print 'Resolving symbols for {}...'.format(plugin.name)
for symbol in plugin.importedSymbols:
lib = self._resolveSymbol(symbol)
if lib:
plugin.addSymbolDependency(lib, symbol)
def _resolveSymbol(self, symbol):
for i in self.libraries:
if symbol in i.exportedSymbols:
return i
return None
class Reporter:
def __init__(self, plugins):
for i in plugins:
self._reportPluginSpecIssues(i)
def _reportPluginSpecIssues(self, plugin):
print 'Plugin "{}" imports {} symbols and exports {} symbols.'.format(
plugin.name, len(plugin.importedSymbols), len(plugin.exportedSymbols))
spec = plugin.specDependencies
symb = {}
lib = {}
for p in plugin.symbolDependencies:
if p.isPlugin():
symb[p.name] = plugin.symbolDependencies[p]
else:
lib[p.name] = plugin.symbolDependencies[p]
for i in spec:
if i in symb:
total = symb[i]['total']
print ' {}: OK ({} usages)'.format(i, total)
self._printSome(symb[i])
del symb[i]
else:
if spec[i] == 'optional':
print ' {}: OK (optional)'.format(i)
else:
print ' {}: WARNING: unused'.format(i)
for i in symb:
total = symb[i]['total']
print ' {}: ERROR: undeclared ({} usages)'.format(i, total)
self._printSome(symb[i])
for i in lib:
total = lib[i]['total']
print ' LIBRARY {} used ({} usages)'.format(i, total)
def _printSome(self, data):
keys = data.keys()
if len(keys) <= 11:
for i in keys:
if i != 'total':
print ' {}'.format(i)
class BinaryDirExaminer:
def __init__(self, path):
self.libraries = []
self.plugins = []
self.binaryDir = path
log.debug('Examining directory "%s".', path)
self._findLibraries(path)
self._findPlugins(path)
def _findLibraries(self, path):
libdir = glob.glob(os.path.join(path, "lib", "qtcreator", "lib*"))
for l in libdir:
if os.path.islink(l):
continue
log.debug(' Looking at library "%s".', l)
self.libraries.append(Library(l))
def _findPlugins(self, path):
pluginspecs = glob.glob(os.path.join(path, "src", "plugins", "*", "*.json"))
if len(pluginspecs) == 0:
log.critical("This script only works for qmake builds that have not been installed "
"already.")
for spec in pluginspecs:
log.debug(' Looking at plugin "%s".', spec)
self.plugins.append(Plugin(spec))
if __name__ == '__main__':
# Setup logging:
log = logging.getLogger('log')
log.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
log.addHandler(ch)
# Make sure we are on linux:
if platform.system() != 'Linux':
log.critical("This check can only run on Linux")
sys.exit(1)
# Sanity check:
if not(os.path.exists(os.path.join(os.getcwd(), "bin", "qtcreator"))):
log.critical('Not a top level Qt Creator build directory.')
sys.exit(1)
binExaminer = BinaryDirExaminer(os.path.abspath(os.getcwd()))
# Find symbol dependencies:
resolver = SymbolResolver(binExaminer.plugins, binExaminer.libraries)
reporter = Reporter(binExaminer.plugins)
|