From bc16aae3b4ea47ed3ab261abc087049f7801a471 Mon Sep 17 00:00:00 2001 From: Lilfade Date: Wed, 24 Apr 2024 01:30:00 -0500 Subject: [PATCH] update files --- error.py | 6 -- header.py | 120 -------------------------------------- main.py | 18 +++++- tools.py | 36 ------------ unpacker.py | 163 +++++++++++++++++++++++++++++++++++++++++++++++++--- 5 files changed, 170 insertions(+), 173 deletions(-) delete mode 100644 error.py delete mode 100644 header.py delete mode 100644 tools.py diff --git a/error.py b/error.py deleted file mode 100644 index 0cc3cfe..0000000 --- a/error.py +++ /dev/null @@ -1,6 +0,0 @@ -""" Package specific exceptions. """ - - -class Ai1wmError(Exception): - """ Exceptions raised from this package. """ - pass diff --git a/header.py b/header.py deleted file mode 100644 index 6153e64..0000000 --- a/header.py +++ /dev/null @@ -1,120 +0,0 @@ -""" Parses ai1wm file header. """ - -import collections -import struct -from error import Ai1wmError -from tools import b__, s__ - - -class Ai1wmHeader(tuple): - """ Parses an `All-in-One WP Migration` header. """ - - SIZE = 4377 - EOF = b'\x00' * SIZE - - _Location = collections.namedtuple('_Location', ['offset', 'size']) - _LOC_NAME = _Location(0, 255) # File name - _LOC_SIZE = _Location(255, 14) # File size - _LOC_TIME = _Location(269, 12) # Last modified time - _LOC_PATH = _Location(281, 4096) # File path - - def __new__(cls, path=None, name=None, size=None, time=None): - """ Returns a new instance of the object. """ - - if path or name or size or time: - if not isinstance(path, str) or path == '': - raise ValueError(' must be a nonempty string') - if not isinstance(name, str) or name == '': - raise ValueError(' must be a nonempty string') - if not isinstance(size, int) or size < 0: - raise ValueError(' must be a non-negative integer') - if not isinstance(time, int) or time < 0: - raise ValueError('