157 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
 | 
						|
import json
 | 
						|
import zipfile
 | 
						|
 | 
						|
from typing import ClassVar, Dict, Tuple, Any, Optional, Union, BinaryIO
 | 
						|
 | 
						|
import bsdiff4
 | 
						|
 | 
						|
 | 
						|
class AutoPatchRegister(type):
 | 
						|
    patch_types: ClassVar[Dict[str, AutoPatchRegister]] = {}
 | 
						|
    file_endings: ClassVar[Dict[str, AutoPatchRegister]] = {}
 | 
						|
 | 
						|
    def __new__(mcs, name: str, bases: Tuple[type, ...], dct: Dict[str, Any]) -> AutoPatchRegister:
 | 
						|
        # construct class
 | 
						|
        new_class = super().__new__(mcs, name, bases, dct)
 | 
						|
        if "game" in dct:
 | 
						|
            AutoPatchRegister.patch_types[dct["game"]] = new_class
 | 
						|
            if not dct["patch_file_ending"]:
 | 
						|
                raise Exception(f"Need an expected file ending for {name}")
 | 
						|
            AutoPatchRegister.file_endings[dct["patch_file_ending"]] = new_class
 | 
						|
        return new_class
 | 
						|
 | 
						|
    @staticmethod
 | 
						|
    def get_handler(file: str) -> Optional[AutoPatchRegister]:
 | 
						|
        for file_ending, handler in AutoPatchRegister.file_endings.items():
 | 
						|
            if file.endswith(file_ending):
 | 
						|
                return handler
 | 
						|
        return None
 | 
						|
 | 
						|
 | 
						|
current_patch_version: int = 5
 | 
						|
 | 
						|
 | 
						|
class APContainer:
 | 
						|
    """A zipfile containing at least archipelago.json"""
 | 
						|
    version: int = current_patch_version
 | 
						|
    compression_level: int = 9
 | 
						|
    compression_method: int = zipfile.ZIP_DEFLATED
 | 
						|
    game: Optional[str] = None
 | 
						|
 | 
						|
    # instance attributes:
 | 
						|
    path: Optional[str]
 | 
						|
    player: Optional[int]
 | 
						|
    player_name: str
 | 
						|
    server: str
 | 
						|
 | 
						|
    def __init__(self, path: Optional[str] = None, player: Optional[int] = None,
 | 
						|
                 player_name: str = "", server: str = ""):
 | 
						|
        self.path = path
 | 
						|
        self.player = player
 | 
						|
        self.player_name = player_name
 | 
						|
        self.server = server
 | 
						|
 | 
						|
    def write(self, file: Optional[Union[str, BinaryIO]] = None) -> None:
 | 
						|
        zip_file = file if file else self.path
 | 
						|
        if not zip_file:
 | 
						|
            raise FileNotFoundError(f"Cannot write {self.__class__.__name__} due to no path provided.")
 | 
						|
        with zipfile.ZipFile(zip_file, "w", self.compression_method, True, self.compression_level) \
 | 
						|
                as zf:
 | 
						|
            if file:
 | 
						|
                self.path = zf.filename
 | 
						|
            self.write_contents(zf)
 | 
						|
 | 
						|
    def write_contents(self, opened_zipfile: zipfile.ZipFile) -> None:
 | 
						|
        manifest = self.get_manifest()
 | 
						|
        try:
 | 
						|
            manifest_str = json.dumps(manifest)
 | 
						|
        except Exception as e:
 | 
						|
            raise Exception(f"Manifest {manifest} did not convert to json.") from e
 | 
						|
        else:
 | 
						|
            opened_zipfile.writestr("archipelago.json", manifest_str)
 | 
						|
 | 
						|
    def read(self, file: Optional[Union[str, BinaryIO]] = None) -> None:
 | 
						|
        """Read data into patch object. file can be file-like, such as an outer zip file's stream."""
 | 
						|
        zip_file = file if file else self.path
 | 
						|
        if not zip_file:
 | 
						|
            raise FileNotFoundError(f"Cannot read {self.__class__.__name__} due to no path provided.")
 | 
						|
        with zipfile.ZipFile(zip_file, "r") as zf:
 | 
						|
            if file:
 | 
						|
                self.path = zf.filename
 | 
						|
            self.read_contents(zf)
 | 
						|
 | 
						|
    def read_contents(self, opened_zipfile: zipfile.ZipFile) -> None:
 | 
						|
        with opened_zipfile.open("archipelago.json", "r") as f:
 | 
						|
            manifest = json.load(f)
 | 
						|
        if manifest["compatible_version"] > self.version:
 | 
						|
            raise Exception(f"File (version: {manifest['compatible_version']}) too new "
 | 
						|
                            f"for this handler (version: {self.version})")
 | 
						|
        self.player = manifest["player"]
 | 
						|
        self.server = manifest["server"]
 | 
						|
        self.player_name = manifest["player_name"]
 | 
						|
 | 
						|
    def get_manifest(self) -> Dict[str, Any]:
 | 
						|
        return {
 | 
						|
            "server": self.server,  # allow immediate connection to server in multiworld. Empty string otherwise
 | 
						|
            "player": self.player,
 | 
						|
            "player_name": self.player_name,
 | 
						|
            "game": self.game,
 | 
						|
            # minimum version of patch system expected for patching to be successful
 | 
						|
            "compatible_version": 5,
 | 
						|
            "version": current_patch_version,
 | 
						|
        }
 | 
						|
 | 
						|
 | 
						|
class APDeltaPatch(APContainer, metaclass=AutoPatchRegister):
 | 
						|
    """An APContainer that additionally has delta.bsdiff4
 | 
						|
    containing a delta patch to get the desired file, often a rom."""
 | 
						|
 | 
						|
    hash: Optional[str]  # base checksum of source file
 | 
						|
    patch_file_ending: str = ""
 | 
						|
    delta: Optional[bytes] = None
 | 
						|
    result_file_ending: str = ".sfc"
 | 
						|
    source_data: bytes
 | 
						|
 | 
						|
    def __init__(self, *args: Any, patched_path: str = "", **kwargs: Any) -> None:
 | 
						|
        self.patched_path = patched_path
 | 
						|
        super(APDeltaPatch, self).__init__(*args, **kwargs)
 | 
						|
 | 
						|
    def get_manifest(self) -> Dict[str, Any]:
 | 
						|
        manifest = super(APDeltaPatch, self).get_manifest()
 | 
						|
        manifest["base_checksum"] = self.hash
 | 
						|
        manifest["result_file_ending"] = self.result_file_ending
 | 
						|
        manifest["patch_file_ending"] = self.patch_file_ending
 | 
						|
        return manifest
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def get_source_data(cls) -> bytes:
 | 
						|
        """Get Base data"""
 | 
						|
        raise NotImplementedError()
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def get_source_data_with_cache(cls) -> bytes:
 | 
						|
        if not hasattr(cls, "source_data"):
 | 
						|
            cls.source_data = cls.get_source_data()
 | 
						|
        return cls.source_data
 | 
						|
 | 
						|
    def write_contents(self, opened_zipfile: zipfile.ZipFile):
 | 
						|
        super(APDeltaPatch, self).write_contents(opened_zipfile)
 | 
						|
        # write Delta
 | 
						|
        opened_zipfile.writestr("delta.bsdiff4",
 | 
						|
                                bsdiff4.diff(self.get_source_data_with_cache(), open(self.patched_path, "rb").read()),
 | 
						|
                                compress_type=zipfile.ZIP_STORED)  # bsdiff4 is a format with integrated compression
 | 
						|
 | 
						|
    def read_contents(self, opened_zipfile: zipfile.ZipFile):
 | 
						|
        super(APDeltaPatch, self).read_contents(opened_zipfile)
 | 
						|
        self.delta = opened_zipfile.read("delta.bsdiff4")
 | 
						|
 | 
						|
    def patch(self, target: str):
 | 
						|
        """Base + Delta -> Patched"""
 | 
						|
        if not self.delta:
 | 
						|
            self.read()
 | 
						|
        result = bsdiff4.patch(self.get_source_data_with_cache(), self.delta)
 | 
						|
        with open(target, "wb") as f:
 | 
						|
            f.write(result)
 |