gst-uninstalled: set PKG_CONFIG_PATH
[platform/upstream/gstreamer.git] / gst-uninstalled.py
1 #!/usr/bin/env python3
2
3 import argparse
4 import json
5 import os
6 import platform
7 import re
8 import site
9 import shutil
10 import subprocess
11 import sys
12 import tempfile
13
14 from common import get_meson
15
16 SCRIPTDIR = os.path.abspath(os.path.dirname(__file__))
17
18
19 def prepend_env_var(env, var, value):
20     env[var] = os.pathsep + value + os.pathsep + env.get(var, "")
21     env[var] = env[var].replace(os.pathsep + os.pathsep, os.pathsep).strip(os.pathsep)
22
23
24 def get_subprocess_env(options):
25     env = os.environ.copy()
26
27     prepend_env_var(env, "GST_PLUGIN_PATH", options.builddir)
28     prepend_env_var(env, "GST_PLUGIN_PATH", os.path.join(SCRIPTDIR, 'subprojects',
29                                                          'gst-python', 'plugin'))
30     env["CURRENT_GST"] = os.path.normpath(SCRIPTDIR)
31     env["GST_VALIDATE_SCENARIOS_PATH"] = os.path.normpath(
32         "%s/subprojects/gst-devtools/validate/data/scenarios" % SCRIPTDIR)
33     env["GST_VALIDATE_PLUGIN_PATH"] = os.path.normpath(
34         "%s/subprojects/gst-devtools/validate/plugins" % options.builddir)
35     env["GST_VALIDATE_APPS_DIR"] = os.path.normpath(
36         "%s/subprojects/gst-editing-services/tests/validate" % SCRIPTDIR)
37     prepend_env_var(env, "PATH", os.path.normpath(
38         "%s/subprojects/gst-devtools/validate/tools" % options.builddir))
39     prepend_env_var(env, "PATH", os.path.join(SCRIPTDIR, 'meson'))
40     env["GST_VERSION"] = options.gst_version
41     env["GST_ENV"] = 'gst-' + options.gst_version
42     env["GST_PLUGIN_SYSTEM_PATH"] = ""
43     env["GST_PLUGIN_SCANNER"] = os.path.normpath(
44         "%s/subprojects/gstreamer/libs/gst/helpers/gst-plugin-scanner" % options.builddir)
45     env["GST_PTP_HELPER"] = os.path.normpath(
46         "%s/subprojects/gstreamer/libs/gst/helpers/gst-ptp-helper" % options.builddir)
47     env["GST_REGISTRY"] = os.path.normpath(options.builddir + "/registry.dat")
48
49     sharedlib_reg = re.compile(r'\.so|\.dylib|\.dll')
50     typelib_reg = re.compile(r'.*\.typelib$')
51
52     if os.name is 'nt':
53         lib_path_envvar = 'PATH'
54     elif platform.system() == 'Darwin':
55         lib_path_envvar = 'DYLD_LIBRARY_PATH'
56     else:
57         lib_path_envvar = 'LD_LIBRARY_PATH'
58
59     meson, mesonconf, mesonintrospect = get_meson()
60     targets_s = subprocess.check_output([sys.executable, mesonintrospect, options.builddir, '--targets'])
61     targets = json.loads(targets_s.decode())
62     paths = set()
63     for target in targets:
64         filename = target['filename']
65         root = os.path.dirname(filename)
66         if typelib_reg.search(filename):
67             prepend_env_var(env, "GI_TYPELIB_PATH",
68                             os.path.join(options.builddir, root))
69         elif sharedlib_reg.search(filename):
70             if target.get('type') != "shared library":
71                 continue
72
73             if os.path.normpath("lib/gstreamer-1.0") in os.path.normpath(target.get('install_filename')):
74                 continue
75
76             prepend_env_var(env, lib_path_envvar,
77                             os.path.join(options.builddir, root))
78         elif target.get('type') == 'executable' and target.get('installed'):
79             paths.add(os.path.join(options.builddir, root))
80
81     for p in paths:
82         prepend_env_var(env, 'PATH', p)
83
84     presets = set()
85     encoding_targets = set()
86     pkg_dirs = set()
87     if '--installed' in subprocess.check_output([mesonintrospect, '-h']).decode():
88         installed_s = subprocess.check_output([sys.executable, mesonintrospect,
89                                                options.builddir, '--installed'])
90         for path, installpath in json.loads(installed_s.decode()).items():
91             if path.endswith('.prs'):
92                 presets.add(os.path.dirname(path))
93             elif path.endswith('.gep'):
94                 encoding_targets.add(
95                     os.path.abspath(os.path.join(os.path.dirname(path), '..')))
96             elif path.endswith('.pc'):
97                 # Is there a -uninstalled pc file for this file?
98                 uninstalled = "{0}-uninstalled.pc".format(path[:-3])
99                 if os.path.exists(uninstalled):
100                     pkg_dirs.add(os.path.dirname(path))
101
102         for p in presets:
103             prepend_env_var(env, 'GST_PRESET_PATH', p)
104
105         for t in encoding_targets:
106             prepend_env_var(env, 'GST_ENCODING_TARGET_PATH', t)
107
108         for pkg_dir in pkg_dirs:
109             prepend_env_var(env, "PKG_CONFIG_PATH", pkg_dir)
110
111     return env
112
113
114 def python_env(options, unset_env=False):
115     """
116     Setup our overrides_hack.py as sitecustomize.py script in user
117     site-packages if unset_env=False, else unset, previously set
118     env.
119     """
120     subprojects_path = os.path.join(options.builddir, "subprojects")
121     gst_python_path = os.path.join(SCRIPTDIR, "subprojects", "gst-python")
122     if not os.path.exists(os.path.join(subprojects_path, "gst-python")) or \
123             not os.path.exists(gst_python_path):
124         return False
125
126     sitepackages = site.getusersitepackages()
127     if not sitepackages:
128         return False
129
130     sitecustomize = os.path.join(sitepackages, "sitecustomize.py")
131     overrides_hack = os.path.join(gst_python_path, "testsuite", "overrides_hack.py")
132
133     if not unset_env:
134         if os.path.exists(sitecustomize):
135             if os.path.realpath(sitecustomize) == overrides_hack:
136                 print("Customize user site script already linked to the GStreamer one")
137                 return False
138
139             old_sitecustomize = os.path.join(sitepackages,
140                                             "old.sitecustomize.gstuninstalled.py")
141             shutil.move(sitecustomize, old_sitecustomize)
142         elif not os.path.exists(sitepackages):
143             os.makedirs(sitepackages)
144
145         os.symlink(overrides_hack, sitecustomize)
146         return os.path.realpath(sitecustomize) == overrides_hack
147     else:
148         if not os.path.realpath(sitecustomize) == overrides_hack:
149             return False
150
151         os.remove(sitecustomize)
152         old_sitecustomize = os.path.join(sitepackages,
153                                             "old.sitecustomize.gstuninstalled.py")
154
155         if os.path.exists(old_sitecustomize):
156             shutil.move(old_sitecustomize, sitecustomize)
157
158         return True
159
160
161 if __name__ == "__main__":
162     parser = argparse.ArgumentParser(prog="gstreamer-uninstalled")
163
164     parser.add_argument("--builddir",
165                         default=os.path.join(SCRIPTDIR, "build"),
166                         help="The meson build directory")
167     parser.add_argument("--gst-version", default="master",
168                         help="The GStreamer major version")
169     options, args = parser.parse_known_args()
170
171     if not os.path.exists(options.builddir):
172         print("GStreamer not built in %s\n\nBuild it and try again" %
173               options.builddir)
174         exit(1)
175
176     if not args:
177         if os.name is 'nt':
178             args = [os.environ.get("COMSPEC", r"C:\WINDOWS\system32\cmd.exe")]
179         else:
180             args = [os.environ.get("SHELL", os.path.realpath("/bin/sh"))]
181         if "bash" in args[0]:
182             bashrc = os.path.expanduser('~/.bashrc')
183             if os.path.exists(bashrc):
184                 tmprc = tempfile.NamedTemporaryFile(mode='w')
185                 with open(bashrc, 'r') as src:
186                     shutil.copyfileobj(src, tmprc)
187                 tmprc.write('\nexport PS1="[gst-%s] $PS1"' % options.gst_version)
188                 tmprc.flush()
189                 # Let the GC remove the tmp file
190                 args.append("--rcfile")
191                 args.append(tmprc.name)
192     python_set = python_env(options)
193     try:
194         exit(subprocess.call(args, env=get_subprocess_env(options)))
195     except subprocess.CalledProcessError as e:
196         exit(e.returncode)
197     finally:
198         if python_set:
199             python_env(options, unset_env=True)