mirror of
https://github.com/Nuitka/Nuitka.git
synced 2025-12-14 20:35:49 +01:00
292 lines
9.4 KiB
Python
292 lines
9.4 KiB
Python
# Copyright 2025, Kay Hayen, mailto:kay.hayen@gmail.com find license text at end of file
|
|
|
|
|
|
""" Write and read constants data files and provide identifiers.
|
|
|
|
"""
|
|
|
|
import os
|
|
import pickle
|
|
import sys
|
|
|
|
from nuitka import OutputDirectories
|
|
from nuitka.__past__ import ( # pylint: disable=I0021,redefined-builtin
|
|
BaseExceptionGroup,
|
|
ExceptionGroup,
|
|
GenericAlias,
|
|
UnionType,
|
|
basestring,
|
|
to_byte,
|
|
xrange,
|
|
)
|
|
from nuitka.Builtins import (
|
|
builtin_anon_codes,
|
|
builtin_anon_values,
|
|
builtin_exception_values_list,
|
|
)
|
|
|
|
# TODO: Move to constants
|
|
from nuitka.code_generation.Namify import namifyConstant
|
|
from nuitka.containers.OrderedSets import OrderedSet
|
|
from nuitka.PythonVersions import python_version
|
|
from nuitka.utils.FileOperations import openPickleFile
|
|
|
|
|
|
class BuiltinAnonValue(object):
|
|
"""Used to pickle anonymous values."""
|
|
|
|
# Python3 values has no index, turn into a tuple.
|
|
anon_values = tuple(builtin_anon_values.values())
|
|
|
|
def __init__(self, anon_name):
|
|
self.anon_name = anon_name
|
|
|
|
def getStreamValueByte(self):
|
|
"""Return byte value, encoding the anon built-in value."""
|
|
|
|
return to_byte(self.anon_values.index(self.anon_name))
|
|
|
|
|
|
class BuiltinGenericAliasValue(object):
|
|
"""For transporting GenericAlias values through pickler."""
|
|
|
|
def __init__(self, origin, args):
|
|
self.origin = origin
|
|
self.args = args
|
|
|
|
|
|
class BuiltinUnionTypeValue(object):
|
|
"""For transporting UnionType values through pickler."""
|
|
|
|
def __init__(self, args):
|
|
self.args = args
|
|
|
|
|
|
class BuiltinSpecialValue(object):
|
|
"""Used to pickle special values."""
|
|
|
|
def __init__(self, value):
|
|
self.value = value
|
|
|
|
def getStreamValueByte(self):
|
|
"""Return byte value, encoding the special built-in value."""
|
|
|
|
# Currently the only ones.
|
|
if self.value == "Ellipsis":
|
|
return to_byte(0)
|
|
elif self.value == "NotImplemented":
|
|
return to_byte(1)
|
|
elif self.value == "Py_SysVersionInfo":
|
|
return to_byte(2)
|
|
else:
|
|
assert False, self.value
|
|
|
|
|
|
class BlobData(object):
|
|
"""Used to pickle bytes to become raw pointers."""
|
|
|
|
__slots__ = ("data", "name")
|
|
|
|
def __init__(self, data, name):
|
|
self.data = data
|
|
self.name = name
|
|
|
|
def getData(self):
|
|
return self.data
|
|
|
|
def __repr__(self):
|
|
return "<nuitka.Serialization.BlobData %s>" % self.name
|
|
|
|
|
|
def _pickleAnonValues(pickler, value):
|
|
if value in builtin_anon_values:
|
|
pickler.save(BuiltinAnonValue(builtin_anon_values[value]))
|
|
elif value is Ellipsis:
|
|
pickler.save(BuiltinSpecialValue("Ellipsis"))
|
|
elif value is NotImplemented:
|
|
pickler.save(BuiltinSpecialValue("NotImplemented"))
|
|
elif value is sys.version_info:
|
|
pickler.save(BuiltinSpecialValue("Py_SysVersionInfo"))
|
|
else:
|
|
pickler.save_global(value)
|
|
|
|
|
|
def _pickleGenericAlias(pickler, value):
|
|
pickler.save(BuiltinGenericAliasValue(origin=value.__origin__, args=value.__args__))
|
|
|
|
|
|
def _pickleUnionType(pickler, value):
|
|
pickler.save(BuiltinUnionTypeValue(args=value.__args__))
|
|
|
|
|
|
class ConstantStreamWriter(object):
|
|
"""Write constants to a stream and return numbers for them."""
|
|
|
|
def __init__(self, filename):
|
|
self.count = 0
|
|
|
|
filename = os.path.join(OutputDirectories.getSourceDirectoryPath(), filename)
|
|
self.file, self.pickle = openPickleFile(filename, "wb")
|
|
|
|
self.pickle.dispatch[type] = _pickleAnonValues
|
|
self.pickle.dispatch[type(Ellipsis)] = _pickleAnonValues
|
|
self.pickle.dispatch[type(NotImplemented)] = _pickleAnonValues
|
|
|
|
if type(sys.version_info) is not tuple:
|
|
self.pickle.dispatch[type(sys.version_info)] = _pickleAnonValues
|
|
|
|
# Standard pickling doesn't work with our necessary wrappers.
|
|
if python_version >= 0x390:
|
|
self.pickle.dispatch[GenericAlias] = _pickleGenericAlias
|
|
|
|
if python_version >= 0x3A0:
|
|
self.pickle.dispatch[UnionType] = _pickleUnionType
|
|
|
|
def addConstantValue(self, constant_value):
|
|
self.pickle.dump(constant_value)
|
|
self.count += 1
|
|
|
|
def addBlobData(self, data, name):
|
|
self.pickle.dump(BlobData(data, name))
|
|
self.count += 1
|
|
|
|
def close(self):
|
|
self.file.close()
|
|
|
|
|
|
class ConstantStreamReader(object):
|
|
def __init__(self, const_file):
|
|
self.count = 0
|
|
self.pickle = pickle.Unpickler(const_file)
|
|
|
|
def readConstantValue(self):
|
|
return self.pickle.load()
|
|
|
|
|
|
class GlobalConstantAccessor(object):
|
|
__slots__ = ("constants", "constants_writer", "top_level_name")
|
|
|
|
def __init__(self, data_filename, top_level_name):
|
|
self.constants = OrderedSet()
|
|
|
|
self.constants_writer = ConstantStreamWriter(data_filename)
|
|
self.top_level_name = top_level_name
|
|
|
|
def getConstantCode(self, constant):
|
|
# Use in user code, or for constants building code itself, many constant
|
|
# types get special code immediately, and it's return driven.
|
|
# pylint: disable=too-many-branches,too-many-return-statements
|
|
if constant is None:
|
|
return "Py_None"
|
|
elif constant is True:
|
|
return "Py_True"
|
|
elif constant is False:
|
|
return "Py_False"
|
|
elif constant is Ellipsis:
|
|
return "Py_Ellipsis"
|
|
elif constant is NotImplemented:
|
|
return "Py_NotImplemented"
|
|
elif constant is sys.version_info:
|
|
return "Py_SysVersionInfo"
|
|
elif type(constant) is type:
|
|
# TODO: Maybe make this a mapping in nuitka.Builtins
|
|
|
|
if constant is None:
|
|
return "(PyObject *)Py_TYPE(Py_None)"
|
|
elif constant is object:
|
|
return "(PyObject *)&PyBaseObject_Type"
|
|
elif constant is staticmethod:
|
|
return "(PyObject *)&PyStaticMethod_Type"
|
|
elif constant is classmethod:
|
|
return "(PyObject *)&PyClassMethod_Type"
|
|
elif constant is bytearray:
|
|
return "(PyObject *)&PyByteArray_Type"
|
|
elif constant is enumerate:
|
|
return "(PyObject *)&PyEnum_Type"
|
|
elif constant is frozenset:
|
|
return "(PyObject *)&PyFrozenSet_Type"
|
|
elif python_version >= 0x270 and constant is memoryview:
|
|
return "(PyObject *)&PyMemoryView_Type"
|
|
elif python_version < 0x300 and constant is basestring:
|
|
return "(PyObject *)&PyBaseString_Type"
|
|
elif python_version < 0x300 and constant is xrange:
|
|
return "(PyObject *)&PyRange_Type"
|
|
elif constant in builtin_anon_values:
|
|
return (
|
|
"(PyObject *)" + builtin_anon_codes[builtin_anon_values[constant]]
|
|
)
|
|
elif constant in builtin_exception_values_list:
|
|
return "(PyObject *)PyExc_%s" % constant.__name__
|
|
elif constant is ExceptionGroup:
|
|
return "(PyObject *)_PyInterpreterState_GET()->exc_state.PyExc_ExceptionGroup"
|
|
elif constant is BaseExceptionGroup:
|
|
return "(PyObject *)PyExc_BaseExceptionGroup"
|
|
else:
|
|
type_name = constant.__name__
|
|
|
|
if constant is int and python_version >= 0x300:
|
|
type_name = "long"
|
|
elif constant is str:
|
|
type_name = "string" if python_version < 0x300 else "unicode"
|
|
|
|
return "(PyObject *)&Py%s_Type" % type_name.capitalize()
|
|
else:
|
|
return self._getConstantCode(constant)
|
|
|
|
def _getConstantCode(self, constant):
|
|
key = "const_" + namifyConstant(constant)
|
|
|
|
if key not in self.constants:
|
|
self.constants.add(key)
|
|
self.constants_writer.addConstantValue(constant)
|
|
|
|
key = "%s[%d]" % (self.top_level_name, self.constants.index(key))
|
|
|
|
# TODO: Make it returning, more clear.
|
|
return key
|
|
|
|
def getBlobDataCode(self, data, name):
|
|
key = "blob_" + namifyConstant(data)
|
|
|
|
if key not in self.constants:
|
|
self.constants.add(key)
|
|
self.constants_writer.addBlobData(data=data, name=name)
|
|
|
|
key = "%s[%d]" % (self.top_level_name, self.constants.index(key))
|
|
|
|
return key
|
|
|
|
def getConstantsCount(self):
|
|
# Make sure to add no more after asking this.
|
|
self.constants_writer.close()
|
|
|
|
return len(self.constants)
|
|
|
|
|
|
class ConstantAccessor(GlobalConstantAccessor):
|
|
def _getConstantCode(self, constant):
|
|
constant_type = type(constant)
|
|
|
|
if constant_type is tuple and not constant:
|
|
return "const_tuple_empty"
|
|
elif constant_type is int and constant in (-1, 0, 1):
|
|
return "const_" + namifyConstant(constant)
|
|
else:
|
|
return GlobalConstantAccessor._getConstantCode(self, constant)
|
|
|
|
|
|
# Part of "Nuitka", an optimizing Python compiler that is compatible and
|
|
# integrates with CPython, but also works on its own.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|