2016-11-04 21:04:37 +00:00
|
|
|
#!/usr/bin/env python3
|
2013-12-31 10:45:07 +00:00
|
|
|
#
|
2014-01-09 08:39:05 +00:00
|
|
|
# Copyright (c) 2014,Thibault Saunier <thibault.saunier@collabora.com>
|
2013-12-31 10:45:07 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this program; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
import os
|
2015-02-19 11:53:16 +00:00
|
|
|
import subprocess
|
2014-01-09 08:39:05 +00:00
|
|
|
import sys
|
|
|
|
|
2017-01-03 18:34:39 +00:00
|
|
|
LIBDIR = r'@LIBDIR@'
|
|
|
|
BUILDDIR = r'@BUILDDIR@'
|
|
|
|
SRCDIR = r'@SRCDIR@'
|
2014-01-09 08:39:05 +00:00
|
|
|
|
2014-01-09 14:15:51 +00:00
|
|
|
|
2014-01-09 08:39:05 +00:00
|
|
|
def _add_gst_launcher_path():
|
2017-01-03 18:34:39 +00:00
|
|
|
f = os.path.abspath(__file__)
|
2020-06-15 21:56:54 +00:00
|
|
|
if f.startswith(BUILDDIR):
|
2016-08-29 01:12:35 +00:00
|
|
|
# Make sure to have the configured config.py in the python path
|
2017-01-03 17:38:24 +00:00
|
|
|
sys.path.insert(0, os.path.abspath(os.path.join(BUILDDIR, "..")))
|
2016-08-05 19:48:41 +00:00
|
|
|
root = os.path.abspath(os.path.join(SRCDIR, "../"))
|
|
|
|
else:
|
|
|
|
root = os.path.join(LIBDIR, 'gst-validate-launcher', 'python')
|
2014-08-11 18:19:02 +00:00
|
|
|
|
2014-10-23 13:21:14 +00:00
|
|
|
sys.path.insert(0, root)
|
2014-08-11 18:19:02 +00:00
|
|
|
return os.path.join(root, "launcher")
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
|
2013-12-31 10:45:07 +00:00
|
|
|
if "__main__" == __name__:
|
2014-08-11 18:19:02 +00:00
|
|
|
libsdir = _add_gst_launcher_path()
|
2014-06-17 13:10:41 +00:00
|
|
|
from launcher.main import main
|
2019-02-09 20:23:28 +00:00
|
|
|
run_profile = os.environ.get('GST_VALIDATE_LAUNCHER_PROFILING', False)
|
|
|
|
if run_profile:
|
|
|
|
import cProfile
|
|
|
|
prof = cProfile.Profile()
|
2020-01-08 12:23:19 +00:00
|
|
|
try:
|
|
|
|
res = prof.runcall(main, libsdir)
|
|
|
|
finally:
|
|
|
|
prof.dump_stats('gst-validate-launcher-runstats')
|
2019-02-09 20:23:28 +00:00
|
|
|
exit(res)
|
|
|
|
|
2019-03-16 15:21:34 +00:00
|
|
|
exit(main(libsdir))
|