-
Notifications
You must be signed in to change notification settings - Fork 10
/
signature_bootstrap.py
177 lines (148 loc) · 6.37 KB
/
signature_bootstrap.py
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#############################################################################
##
## Copyright (C) 2019 The Qt Company Ltd.
## Contact: https://www.qt.io/licensing/
##
## This file is part of PySide6.
##
## $QT_BEGIN_LICENSE:LGPL$
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see https://www.qt.io/terms-conditions. For further
## information use the contact form at https://www.qt.io/contact-us.
##
## GNU Lesser General Public License Usage
## Alternatively, this file may be used under the terms of the GNU Lesser
## General Public License version 3 as published by the Free Software
## Foundation and appearing in the file LICENSE.LGPL3 included in the
## packaging of this file. Please review the following information to
## ensure the GNU Lesser General Public License version 3 requirements
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
##
## GNU General Public License Usage
## Alternatively, this file may be used under the terms of the GNU
## General Public License version 2.0 or (at your option) the GNU General
## Public license version 3 or any later version approved by the KDE Free
## Qt Foundation. The licenses are as published by the Free Software
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
## included in the packaging of this file. Please review the following
## information to ensure the GNU General Public License requirements will
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
## https://www.gnu.org/licenses/gpl-3.0.html.
##
## $QT_END_LICENSE$
##
#############################################################################
"""
signature_bootstrap.py
----------------------
This file was originally directly embedded into the C source.
After it grew more and more, I now prefer to have it as Python file.
Meanwhile, there is also no more a stub loader necessary:
Because we meanwhile have embedding support, we could also load this file
directly from a .pyc file.
This file replaces the hard to read Python stub in 'signature.cpp', and we
could distinguish better between bootstrap related functions and loader
functions.
It is embedded into 'signature.cpp' as "embed/signature_bootstrap.inc".
# PYSIDE-1436: Python 3.10 had a problem with EmbeddableZipImporter because the
imports were in the functions. Moved them outside into the globals.
"""
recursion_trap = 0
import base64
import importlib
import io
import sys
import traceback
import zipfile
from contextlib import contextmanager
from importlib.machinery import ModuleSpec
from pathlib import Path
def bootstrap():
global recursion_trap
if recursion_trap:
# we are probably called from outside, already
print("Recursion occurred in Bootstrap. Did you start by hand? Then it's ok.")
print("But you should trigger start by '_init_pyside_extension()', only!")
recursion_trap += 1
@contextmanager
def ensure_shibokensupport(target, support_path):
# Make sure that we always have the shibokensupport containing package first.
# Also remove any prior loaded module of this name, just in case.
# PYSIDE-1621: support_path can also be a finder instance.
target.insert(0, support_path)
sbks = "shibokensupport"
if sbks in sys.modules:
del sys.modules[sbks]
prefix = sbks + "."
for key in list(key for key in sys.modules if key.startswith(prefix)):
del sys.modules[key]
try:
import shibokensupport
yield
except Exception as e:
print("Problem importing shibokensupport:")
print(f"{e.__class__.__name__}: {e}")
traceback.print_exc()
print("sys.path:")
for p in sys.path:
print(" " + p)
sys.stdout.flush()
sys.exit(-1)
target.remove(support_path)
target, support_path = prepare_zipfile()
with ensure_shibokensupport(target, support_path):
from shibokensupport.signature import loader
return loader
# New functionality: Loading from a zip archive.
# There exists the zip importer, but as it is written, only real zip files are
# supported. Before I will start an own implementation, it is easiest to use
# a temporary zip file.
# PYSIDE-1621: make zip file access totally virtual
def prepare_zipfile():
"""
Old approach:
Write the zip file to a real file and return its name.
It will be implicitly opened as such when we add the name to sys.path .
New approach (Python 3, only):
Use EmbeddableZipImporter and pass the zipfile structure directly.
The sys.path way does not work, instead we need to use sys.meta_path .
See https://docs.python.org/3/library/sys.html#sys.meta_path
"""
# 'zipstring_sequence' comes from signature.cpp
zipbytes = base64.b64decode(''.join(zipstring_sequence))
vzip = zipfile.ZipFile(io.BytesIO(zipbytes))
return sys.meta_path, EmbeddableZipImporter(vzip)
class EmbeddableZipImporter(object):
def __init__(self, zip_file):
def p2m(filename):
if filename.endswith("/__init__.py"):
return filename[:-12].replace("/", ".")
if filename.endswith(".py"):
return filename[:-3].replace("/", ".")
return None
self.zfile = zip_file
self._mod2path = {p2m(_.filename) : _.filename for _ in zip_file.filelist}
def find_spec(self, fullname, path, target=None):
path = self._mod2path.get(fullname)
return ModuleSpec(fullname, self) if path else None
def create_module(self, spec):
return None
def exec_module(self, module):
fullname = module.__spec__.name
filename = self._mod2path[fullname]
with self.zfile.open(filename, "r") as f: # "rb" not for zipfile
codeob = compile(f.read(), filename, "exec")
exec(codeob, module.__dict__)
module.__file__ = filename
module.__loader__ = self
if filename.endswith("/__init__.py"):
module.__path__ = []
module.__package__ = fullname
else:
module.__package__ = fullname.rpartition('.')[0]
sys.modules[fullname] = module
# eof