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('