From 22b290e3cae2fda2cfedc06522044dbe842990a2 Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Wed, 19 Jul 2017 22:29:09 -0700 Subject: [PATCH] Remove 2img code, use ByteBuffer instead One thing both AppleCommander and CiderPress do is wrap 2img is effectively treat 2img files as containers. That's a good idea. We need to start using our buffer code before it begins making sense, but that means this 2img code has to go as it's kind of just bolted on to the side for now. Instead we'll put the image we load into a buffer. How we do that is likely to change, but this gets us to the point we can start using it. --- blocksfree/diskimg.py | 84 ++----------------------------------------- 1 file changed, 2 insertions(+), 82 deletions(-) diff --git a/blocksfree/diskimg.py b/blocksfree/diskimg.py index 89cae1c..dead566 100644 --- a/blocksfree/diskimg.py +++ b/blocksfree/diskimg.py @@ -18,40 +18,11 @@ import os import struct -from collections import namedtuple +from .buffer.bytebuffer import ByteBuffer # FIXME Move to_sys_name from . import legacy -### NEW DISK CLASSES - -TWOIMG_V1_UNPACK = ( - '<' # use little-endian numbers - '4s' # magic string '2IMG' - '4s' # creator string - 'H' # header length - 'H' # 2mg version - 'L' # image format - 'L' # flags (we unpack it into "vol") - 'L' # number of 512 blocks - 'L' # image data offset - 'L' # image data length - 'L' # comment offset - 'L' # comment length - 'L' # creator private use offset - 'L' # creator private use length - '16x' # reserved for future use - ) -TWOIMG_V1_ATTRS = ( - 'magic', 'creator', 'hdr_len', 'version', - 'img_fmt', 'flags', 'num_blocks', - 'data_offset', 'data_len', - 'comment_offset', 'comment_len', - 'creator_offset', 'creator_len' - ) - -TwoImgV1 = namedtuple('TwoImgV1', TWOIMG_V1_ATTRS) - class Disk: def __init__(self, name=None): if name is not None: @@ -61,55 +32,4 @@ class Disk: self.ext = os.path.splitext(name)[1].lower() # FIXME: Handle compressed images? with open(legacy.to_sys_name(name), "rb") as f: - self.image = f.read() - - if self.ext in ('.2mg', '.2img'): - self._parse_2mg() - - def _parse_2mg(self): - self.twoimg = None - self.twoimg_comment = None - self.twoimg_creator = None - self.twoimg_locked = None - hdr = TwoImgV1(*struct.unpack_from(TWOIMG_V1_UNPACK, self.image)) - if hdr.magic == b'2IMG': - self._raw_twoimg = self.image[:hdr.hdr_len] - if hdr.version == 1: - if hdr.hdr_len == 64: - # Extract comment (if it exists and is valid) - if hdr.comment_offset and hdr.comment_len: - self.twoimg_comment = self.image[ - hdr.comment_offset - : hdr.comment_offset + hdr.comment_len] - if len(self.twoimg_comment) != hdr.comment_len: - LOG.warn('invalid 2mg comment: {} bytes ' - '(expected {} bytes)'.format( - len(self.twoimg_comment), - hdr.comment_len)) - self.twoimg_comment = None - - # Extract creator area (if it exists and is valid) - if hdr.creator_offset and hdr.creator_len: - self.twoimg_creator = self.image[ - hdr.creator_offset - : hdr.creator_offset + hdr.creator_len] - if len(self.twoimg_creator) != hdr.creator_len: - LOG.warn('invalid 2mg creator: {} bytes ' - '(expected {} bytes)'.format( - len(self.twoimg_creator), - hdr.creator_len)) - self.twoimg_creator = None - - self.twoimg_locked = bool(hdr.flags & 0x80000000) - - self.twoimg = hdr - else: - LOG.warn('2mg header length: {} (expected 64 ' - 'for version 1)'.format(hdr.hdr_len)) - else: - LOG.warn('2mg version unsupported: {} (only support ' - 'version 1)'.format(hdr.version)) - else: - LOG.warn('2mg header not found: magic is {}'.format(hdr.magic)) - self._raw_twoimg = None - + self.buffer = ByteBuffer(f.read())