mirror of
https://github.com/platomav/BIOSUtilities.git
synced 2025-05-13 06:34:42 -04:00

Added graceful exception hanlding during "main" flow Improved and cleaned 7-Zip and EFI compression logic Improved too aggressive extraction directory handling Fixed input name detection at VAIO Package Extractor Fixed Intel IBIOSI detection at Apple EFI Identifier
31 lines
982 B
Python
31 lines
982 B
Python
#!/usr/bin/env python3 -B
|
|
# coding=utf-8
|
|
|
|
"""
|
|
Copyright (C) 2022-2024 Plato Mavropoulos
|
|
"""
|
|
|
|
from biosutilities.common.texts import file_to_bytes
|
|
|
|
|
|
class BIOSUtility:
|
|
""" Base class for BIOSUtilities """
|
|
|
|
TITLE: str = 'BIOS Utility'
|
|
|
|
def __init__(self, input_object: str | bytes | bytearray = b'', extract_path: str = '', padding: int = 0) -> None:
|
|
self.input_object: str | bytes | bytearray = input_object
|
|
self.extract_path: str = extract_path
|
|
self.padding: int = padding
|
|
|
|
self.input_buffer: bytes = file_to_bytes(in_object=self.input_object)
|
|
|
|
def check_format(self) -> bool:
|
|
""" Check if input object is of specific supported format """
|
|
|
|
raise NotImplementedError(f'Method "check_format" not implemented at {__name__}')
|
|
|
|
def parse_format(self) -> bool:
|
|
""" Process input object as a specific supported format """
|
|
|
|
raise NotImplementedError(f'Method "parse_format" not implemented at {__name__}')
|