2018-04-14 13:22:11 +00:00
|
|
|
#!/usr/bin/env python3
|
2007-11-14 08:30:19 +00:00
|
|
|
# -*- coding: utf-8; mode: python; -*-
|
|
|
|
#
|
2007-11-22 08:47:06 +00:00
|
|
|
# GStreamer Debug Viewer - View and analyze GStreamer debug log files
|
2007-11-14 08:30:19 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 René Stadler <mail@renestadler.de>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by the Free
|
|
|
|
# Software Foundation; either version 3 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 General Public License for
|
|
|
|
# more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
"""GStreamer Debug Viewer program invocation."""
|
|
|
|
|
2019-03-16 15:21:34 +00:00
|
|
|
|
|
|
|
def main():
|
2007-11-14 08:30:19 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import os.path
|
|
|
|
|
2019-03-16 15:21:34 +00:00
|
|
|
def substituted(s):
|
|
|
|
if s.startswith("@") and s.endswith("@"):
|
2007-11-14 08:30:19 +00:00
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return s
|
|
|
|
|
|
|
|
# These "$"-enclosed strings are substituted at install time by a custom
|
|
|
|
# distutils extension (see setup.py). If you don't see any dollar signs at
|
|
|
|
# all, you are looking at an installed version of this file.
|
2019-03-16 15:21:34 +00:00
|
|
|
data_dir = substituted("@DATADIR@")
|
|
|
|
lib_dir = substituted("@LIBDIR@")
|
2007-11-14 08:30:19 +00:00
|
|
|
|
|
|
|
if data_dir:
|
|
|
|
installed = True
|
|
|
|
else:
|
2022-02-21 09:49:15 +00:00
|
|
|
# Substitution has not been run, we are running within a development
|
|
|
|
# environment:
|
2019-03-16 15:21:34 +00:00
|
|
|
lib_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
|
2007-11-14 08:30:19 +00:00
|
|
|
installed = False
|
|
|
|
|
|
|
|
if lib_dir:
|
2019-03-16 15:21:34 +00:00
|
|
|
if not os.path.normpath(lib_dir) in [os.path.normpath(p)
|
|
|
|
for p in sys.path]:
|
|
|
|
sys.path.insert(0, lib_dir)
|
2007-11-14 08:30:19 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
import GstDebugViewer
|
2011-11-16 18:45:16 +00:00
|
|
|
except ImportError as exc:
|
2019-03-16 15:21:34 +00:00
|
|
|
print(str(exc), file=sys.stderr)
|
|
|
|
sys.exit(1)
|
2007-11-14 08:30:19 +00:00
|
|
|
else:
|
|
|
|
if installed:
|
2019-03-16 15:21:34 +00:00
|
|
|
GstDebugViewer.Paths.setup_installed(data_dir)
|
2007-11-14 08:30:19 +00:00
|
|
|
else:
|
|
|
|
# Assume that we reside inside the source dist.
|
2019-03-16 15:21:34 +00:00
|
|
|
source_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
|
2022-02-21 09:49:15 +00:00
|
|
|
GstDebugViewer.Paths.setup_devenv(source_dir)
|
2019-03-16 15:21:34 +00:00
|
|
|
|
|
|
|
GstDebugViewer.run()
|
2007-11-14 08:30:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2019-03-16 15:21:34 +00:00
|
|
|
main()
|