PkgConfigDependency: Cache the output of pkg-config

This halves the configure time in gst-build, the aggregate of all
GStreamer repositories.

We can't do this to Popen_safe because we can't be sure that other
programs have no side-effects and will always return the same output
for the same arguments and environment.
pull/3396/head
Nirbheek Chauhan 7 years ago
parent c04862e24c
commit eb07ad867e
  1. 11
      mesonbuild/dependencies/base.py

@ -362,6 +362,8 @@ class PkgConfigDependency(ExternalDependency):
# The class's copy of the pkg-config path. Avoids having to search for it
# multiple times in the same Meson invocation.
class_pkgbin = None
# We cache all pkg-config subprocess invocations to avoid redundant calls
pkgbin_cache = {}
def __init__(self, name, environment, kwargs, language=None):
super().__init__('pkgconfig', environment, language, kwargs)
@ -459,12 +461,19 @@ class PkgConfigDependency(ExternalDependency):
return s.format(self.__class__.__name__, self.name, self.is_found,
self.version_reqs)
def _call_pkgbin(self, args, env=None):
def _call_pkgbin_real(self, args, env):
if not env:
env = os.environ
p, out = Popen_safe(self.pkgbin.get_command() + args, env=env)[0:2]
return p.returncode, out.strip()
def _call_pkgbin(self, args, env=None):
targs = tuple(args)
cache = PkgConfigDependency.pkgbin_cache
if (self.pkgbin, targs, env) not in cache:
cache[(self.pkgbin, targs, env)] = self._call_pkgbin_real(args, env)
return cache[(self.pkgbin, targs, env)]
def _convert_mingw_paths(self, args):
'''
Both MSVC and native Python on Windows cannot handle MinGW-esque /c/foo

Loading…
Cancel
Save