diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e0a93b9 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python Debugger: Current File with Arguments", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "args": "${command:pickArgs}" + } + ] +} \ No newline at end of file diff --git a/error.py b/error.py new file mode 100644 index 0000000..0cc3cfe --- /dev/null +++ b/error.py @@ -0,0 +1,6 @@ +""" Package specific exceptions. """ + + +class Ai1wmError(Exception): + """ Exceptions raised from this package. """ + pass diff --git a/header.py b/header.py new file mode 100644 index 0000000..6153e64 --- /dev/null +++ b/header.py @@ -0,0 +1,120 @@ +""" 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('