2021-04-16 23:21:06 +08:00
|
|
|
"""Various utility functions used internally by pyglet
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2023-10-14 15:36:43 +08:00
|
|
|
from typing import Optional, Union, Callable
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
import pyglet
|
2023-10-14 15:36:43 +08:00
|
|
|
from pyglet.customtypes import Buffer
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
def asbytes(s: Union[str, Buffer]) -> bytes:
|
2021-04-16 23:21:06 +08:00
|
|
|
if isinstance(s, bytes):
|
|
|
|
return s
|
|
|
|
elif isinstance(s, str):
|
|
|
|
return bytes(ord(c) for c in s)
|
|
|
|
else:
|
|
|
|
return bytes(s)
|
|
|
|
|
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
def asstr(s: Optional[Union[str, Buffer]]) -> str:
|
2021-04-16 23:21:06 +08:00
|
|
|
if s is None:
|
|
|
|
return ''
|
|
|
|
if isinstance(s, str):
|
|
|
|
return s
|
2023-10-14 15:36:43 +08:00
|
|
|
return s.decode("utf-8") # type: ignore
|
|
|
|
|
|
|
|
|
|
|
|
# Keep these outside of the function since we don't need to re-define
|
|
|
|
# the function each time we make a call since no state is persisted.
|
|
|
|
def _debug_print_real(arg: str) -> bool:
|
|
|
|
print(arg)
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def _debug_print_dummy(arg: str) -> bool:
|
|
|
|
return True
|
|
|
|
|
2021-04-16 23:21:06 +08:00
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
def debug_print(pyglet_option_name: str = 'debug') -> Callable[[str], bool]:
|
|
|
|
"""Get a debug printer controlled by the given ``pyglet.options`` name.
|
2021-04-16 23:21:06 +08:00
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
This allows repurposing ``assert`` to write cleaner, more efficient
|
|
|
|
debug output:
|
|
|
|
|
|
|
|
#. Debug printers fit into a one-line ``assert`` statements instead
|
|
|
|
of longer, slower key-lookup ``if`` statements
|
|
|
|
#. Running Python with the ``-O`` flag makes pyglet run faster by
|
|
|
|
skipping all ``assert`` statements
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
Usage example::
|
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
from pyglet.util import debug_print
|
|
|
|
|
|
|
|
|
2021-04-16 23:21:06 +08:00
|
|
|
_debug_media = debug_print('debug_media')
|
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
|
2021-04-16 23:21:06 +08:00
|
|
|
def some_func():
|
2023-10-14 15:36:43 +08:00
|
|
|
# Python will skip the line below when run with -O
|
2021-04-16 23:21:06 +08:00
|
|
|
assert _debug_media('My debug statement')
|
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
# The rest of the function will run as normal
|
|
|
|
...
|
2021-04-16 23:21:06 +08:00
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
For more information, please see `the Python command line
|
|
|
|
documentation <https://docs.python.org/3/using/cmdline.html#cmdoption-O>`_.
|
2021-04-16 23:21:06 +08:00
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
Args:
|
|
|
|
`pyglet_option_name` :
|
|
|
|
The name of a key in :attr:`pyglet.options` to read the
|
|
|
|
debug flag's value from.
|
2021-04-16 23:21:06 +08:00
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
Returns:
|
|
|
|
A callable which prints a passed string and returns ``True``
|
|
|
|
to allow auto-removal when running with ``-O``.
|
2021-04-16 23:21:06 +08:00
|
|
|
|
2023-10-14 15:36:43 +08:00
|
|
|
"""
|
|
|
|
enabled = pyglet.options.get(pyglet_option_name, False)
|
|
|
|
if enabled:
|
|
|
|
return _debug_print_real
|
|
|
|
return _debug_print_dummy
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
|
2022-04-08 23:07:41 +08:00
|
|
|
class CodecRegistry:
|
2021-04-16 23:21:06 +08:00
|
|
|
"""Utility class for handling adding and querying of codecs."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._decoders = []
|
|
|
|
self._encoders = []
|
2022-04-13 19:00:36 +08:00
|
|
|
self._decoder_extensions = {} # Map str -> list of matching Decoders
|
|
|
|
self._encoder_extensions = {} # Map str -> list of matching Encoders
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
def get_encoders(self, filename=None):
|
|
|
|
"""Get a list of all encoders. If a `filename` is provided, only
|
|
|
|
encoders supporting that extension will be returned. An empty list
|
|
|
|
will be return if no encoders for that extension are available.
|
|
|
|
"""
|
|
|
|
if filename:
|
2023-06-27 01:05:51 +08:00
|
|
|
root, ext = os.path.splitext(filename)
|
|
|
|
extension = ext if ext else root # If only ".ext" is provided
|
|
|
|
return self._encoder_extensions.get(extension.lower(), [])
|
2021-04-16 23:21:06 +08:00
|
|
|
return self._encoders
|
|
|
|
|
|
|
|
def get_decoders(self, filename=None):
|
2022-04-08 23:07:41 +08:00
|
|
|
"""Get a list of all decoders. If a `filename` is provided, only
|
|
|
|
decoders supporting that extension will be returned. An empty list
|
|
|
|
will be return if no encoders for that extension are available.
|
2021-04-16 23:21:06 +08:00
|
|
|
"""
|
|
|
|
if filename:
|
2023-06-27 01:05:51 +08:00
|
|
|
root, ext = os.path.splitext(filename)
|
|
|
|
extension = ext if ext else root # If only ".ext" is provided
|
|
|
|
return self._decoder_extensions.get(extension.lower(), [])
|
2022-04-08 23:07:41 +08:00
|
|
|
return self._decoders
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
def add_decoders(self, module):
|
|
|
|
"""Add a decoder module. The module must define `get_decoders`. Once
|
|
|
|
added, the appropriate decoders defined in the codec will be returned by
|
2022-04-08 23:07:41 +08:00
|
|
|
CodecRegistry.get_decoders.
|
2021-04-16 23:21:06 +08:00
|
|
|
"""
|
|
|
|
for decoder in module.get_decoders():
|
|
|
|
self._decoders.append(decoder)
|
|
|
|
for extension in decoder.get_file_extensions():
|
|
|
|
if extension not in self._decoder_extensions:
|
|
|
|
self._decoder_extensions[extension] = []
|
|
|
|
self._decoder_extensions[extension].append(decoder)
|
|
|
|
|
|
|
|
def add_encoders(self, module):
|
|
|
|
"""Add an encoder module. The module must define `get_encoders`. Once
|
|
|
|
added, the appropriate encoders defined in the codec will be returned by
|
2022-04-08 23:07:41 +08:00
|
|
|
CodecRegistry.get_encoders.
|
2021-04-16 23:21:06 +08:00
|
|
|
"""
|
|
|
|
for encoder in module.get_encoders():
|
|
|
|
self._encoders.append(encoder)
|
|
|
|
for extension in encoder.get_file_extensions():
|
|
|
|
if extension not in self._encoder_extensions:
|
|
|
|
self._encoder_extensions[extension] = []
|
|
|
|
self._encoder_extensions[extension].append(encoder)
|
|
|
|
|
2022-04-08 23:07:41 +08:00
|
|
|
def decode(self, filename, file, **kwargs):
|
|
|
|
"""Attempt to decode a file, using the available registered decoders.
|
|
|
|
Any decoders that match the file extension will be tried first. If no
|
|
|
|
decoders match the extension, all decoders will then be tried in order.
|
|
|
|
"""
|
|
|
|
first_exception = None
|
|
|
|
|
|
|
|
for decoder in self.get_decoders(filename):
|
|
|
|
try:
|
|
|
|
return decoder.decode(filename, file, **kwargs)
|
|
|
|
except DecodeException as e:
|
|
|
|
if not first_exception:
|
|
|
|
first_exception = e
|
|
|
|
if file:
|
|
|
|
file.seek(0)
|
|
|
|
|
|
|
|
for decoder in self.get_decoders():
|
|
|
|
try:
|
|
|
|
return decoder.decode(filename, file, **kwargs)
|
|
|
|
except DecodeException:
|
|
|
|
if file:
|
|
|
|
file.seek(0)
|
|
|
|
|
|
|
|
if not first_exception:
|
|
|
|
raise DecodeException(f"No decoders available for this file type: {filename}")
|
|
|
|
raise first_exception
|
|
|
|
|
|
|
|
def encode(self, media, filename, file=None, **kwargs):
|
|
|
|
"""Attempt to encode a pyglet object to a specified format. All registered
|
|
|
|
encoders that advertise support for the specific file extension will be tried.
|
|
|
|
If no encoders are available, an EncodeException will be raised.
|
|
|
|
"""
|
|
|
|
|
|
|
|
first_exception = None
|
|
|
|
for encoder in self.get_encoders(filename):
|
|
|
|
|
|
|
|
try:
|
|
|
|
return encoder.encode(media, filename, file, **kwargs)
|
|
|
|
except EncodeException as e:
|
|
|
|
first_exception = first_exception or e
|
|
|
|
|
|
|
|
if not first_exception:
|
|
|
|
raise EncodeException(f"No Encoders are available for this extension: '{filename}'")
|
|
|
|
raise first_exception
|
|
|
|
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
class Decoder:
|
|
|
|
def get_file_extensions(self):
|
|
|
|
"""Return a list or tuple of accepted file extensions, e.g. ['.wav', '.ogg']
|
|
|
|
Lower-case only.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def decode(self, *args, **kwargs):
|
|
|
|
"""Read and decode the given file object and return an approprite
|
|
|
|
pyglet object. Throws DecodeException if there is an error.
|
|
|
|
`filename` can be a file type hint.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.__class__.__name__)
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return self.__class__.__name__ == other.__class__.__name__
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "{0}{1}".format(self.__class__.__name__, self.get_file_extensions())
|
|
|
|
|
|
|
|
|
|
|
|
class Encoder:
|
|
|
|
def get_file_extensions(self):
|
|
|
|
"""Return a list or tuple of accepted file extensions, e.g. ['.wav', '.ogg']
|
|
|
|
Lower-case only.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2022-04-08 23:07:41 +08:00
|
|
|
def encode(self, media, filename, file):
|
2021-04-16 23:21:06 +08:00
|
|
|
"""Encode the given media type to the given file. `filename`
|
|
|
|
provides a hint to the file format desired. options are
|
|
|
|
encoder-specific, and unknown options should be ignored or
|
|
|
|
issue warnings.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.__class__.__name__)
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return self.__class__.__name__ == other.__class__.__name__
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "{0}{1}".format(self.__class__.__name__, self.get_file_extensions())
|
|
|
|
|
|
|
|
|
|
|
|
class DecodeException(Exception):
|
2022-04-08 23:07:41 +08:00
|
|
|
__module__ = "CodecRegistry"
|
2021-04-16 23:21:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
class EncodeException(Exception):
|
2022-04-08 23:07:41 +08:00
|
|
|
__module__ = "CodecRegistry"
|