-
Notifications
You must be signed in to change notification settings - Fork 2
/
run-dev
executable file
·99 lines (84 loc) · 3.71 KB
/
run-dev
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# Copyright 2019 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2+ (a copy included | http://gnu.org/licenses/gpl-2.0.txt)
from __future__ import print_function
"""Machinery entry point -- to be run from in-repo location"""
__author__ = "Jan Pokorný <jpokorny @at@ Red Hat .dot. com>"
# influenced with env. variables:
# - LOGLEVEL: redefine logging level (default: debug) if LOGSKIP not present
# - PREFERSYS: whether to prefer site-package upon clash (default: false)
import sys
from inspect import getabsfile
from os.path import abspath, basename, dirname, join, realpath, split
from os import environ, listdir
# inspired by http://stackoverflow.com/a/22881871
def get_script_path(follow_symlinks=True):
if getattr(sys, 'frozen', False): # PyInstaller, cx_Freeze
path = abspath(sys.executable)
else:
path = getabsfile(get_script_path)
return path
script_path = get_script_path()
real_script_path = realpath(script_path)
if (basename(real_script_path) != basename(sys.argv[0])
and 'LOGSKIP' not in globals()):
# when execfile'd from tests or so, verbose logging desired
import logging
logging.basicConfig()
logging.getLogger().setLevel(environ.get('LOGLEVEL') or logging.DEBUG)
root = dirname(real_script_path)
# XXX very similar to setup.py, but better
self_discovery_plan = [join(root, '__project__')]
while True:
pkg, backup_mod, maybe_root = {}, None, self_discovery_plan.pop()
maybe_root_real_head, maybe_root_real = split(realpath(maybe_root))
maybe_root = basename(maybe_root)
try:
sys.path.insert(0, maybe_root_real_head)
backup_mod = sys.modules.get(maybe_root_real)
if backup_mod:
if not hasattr(backup_mod, '__path__'): # not the case for builtins
continue
backup_mod = None
if not environ.get('PREFERSYS', 0):
backup_mod = sys.modules.pop(maybe_root_real)
pkg = __import__(maybe_root_real, globals=pkg)
break
except ImportError:
sys.path.pop(0)
if backup_mod:
sys.modules[maybe_root_real] = backup_mod
if maybe_root == '__project__':
from fnmatch import filter as fnfilter
self_discovery_plan.extend(p[:-len('.egg-info')].split('-', 1)[0]
for p in fnfilter(listdir(root),
'*.egg-info'))
if not self_discovery_plan:
print("Cannot find myself, please help me with __project__ symlink")
raise
sys.path.pop(0)
# set the correct __package__ for relative imports
__package__ = maybe_root_real # XXX optionally strip whole '-..' part
assert __package__ in sys.modules
# since Py3.6, ImportWarning when __package__ does not equal __spec__.parent,
# which itself is not modifiable, hence just drop all that new complexity off
try:
del __spec__
except NameError:
pass
if __name__ == '__main__':
if basename(real_script_path) == basename(sys.argv[0]): # __file__ undef?
from . import __main__
# XXX previous attempt to get unittest.main executed automagically at the end,
# which was failing likely because unittest uses Threading that register
# another atexit handler somehow interfering w/ its main started from here
# elif ('tests' == basename(dirname(script_path))
# == basename(dirname(abspath(__file__))):
# from atexit import register
# from unittest import main
# register(main)
# # hmm, see https://code.google.com/p/modwsgi/issues/detail?id=197
# # https://github.com/GrahamDumpleton/mod_wsgi/commit/fdef274
# register(lambda: __import__('dummy_threading'))