FireBot/overrides.py

49 lines
1.5 KiB
Python
Raw Normal View History

2023-11-05 01:37:35 +00:00
#!/usr/bin/python3
from builtins import bytes as bbytes
from typing import TypeVar, Type, Any
_T = TypeVar("_T")
class bytes(bbytes):
"""Local override of builtin bytes class to add "lazy_decode"
2023-11-08 03:23:59 +00:00
bytes(iterable_of_ints) -> bytes
bytes(string, encoding[, errors]) -> bytes
bytes(bytes_or_buffer) -> immutable copy of bytes_or_buffer
bytes(int) -> bytes object of size given by the parameter initialized with null bytes
bytes() -> empty bytes object
2023-11-08 03:23:59 +00:00
Construct an immutable array of bytes from:
- an iterable yielding integers in range(256)
- a text string encoded using the specified encoding
- any object implementing the buffer API.
- an integer
"""
2023-11-05 01:37:35 +00:00
def __new__(
cls: Type[_T],
thing: Any = None,
encoding: str = "UTF-8",
errors: str = "strict",
) -> _T:
if type(thing) == str:
2023-11-09 21:37:08 +00:00
cls.value = super().__new__(cls, thing, encoding, errors) # type: ignore
2023-11-05 01:37:35 +00:00
elif thing == None:
2023-11-09 21:37:08 +00:00
cls.value = super().__new__(cls) # type: ignore
2023-11-05 01:37:35 +00:00
elif thing != None:
2023-11-09 21:37:08 +00:00
cls.value = super().__new__(cls, thing) # type: ignore
2023-11-05 01:37:35 +00:00
else:
2023-11-09 03:20:50 +00:00
raise AttributeError("This shouldn't happen")
2023-11-09 21:37:08 +00:00
return cls.value # type: ignore
2023-11-05 01:37:35 +00:00
@classmethod
2023-11-09 03:41:07 +00:00
def lazy_decode(cls):
2023-11-14 22:09:38 +00:00
"Lazily decode the bytes object using string manipulation"
2023-11-09 03:41:07 +00:00
return str(cls.value)[2:-1]
2023-11-14 22:09:38 +00:00
@classmethod
def safe_decode(cls):
'Calls cls.decode(cls, errors = "ignore")'
return cls.decode(cls, errors = "ignore") # type: ignore