removed CRs
authorEli Bendersky <eliben@gmail.com>
Thu, 8 Sep 2011 17:12:44 +0000 (20:12 +0300)
committerEli Bendersky <eliben@gmail.com>
Thu, 8 Sep 2011 17:12:44 +0000 (20:12 +0300)
22 files changed:
binfiles/z32.elf [new file with mode: 0755]
elftools/common/exceptions.py
elftools/common/utils.py
elftools/construct/__init__.py
elftools/construct/adapters.py
elftools/construct/core.py
elftools/construct/debug.py
elftools/construct/lib/__init__.py
elftools/construct/lib/binary.py
elftools/construct/lib/bitstream.py
elftools/construct/lib/container.py
elftools/construct/lib/hex.py
elftools/construct/lib/utils.py
elftools/construct/macros.py
elftools/construct/text.py
elftools/elf/constants.py
elftools/elf/elffile.py
elftools/elf/enums.py
elftools/elf/sections.py
elftools/elf/segments.py
elftools/elf/structs.py
z.py

diff --git a/binfiles/z32.elf b/binfiles/z32.elf
new file mode 100755 (executable)
index 0000000..d6b3cd1
Binary files /dev/null and b/binfiles/z32.elf differ
index a4df58271f7d197b5783dfdbabc5e1033f8887ea..8a40877f76e5027b2fb873c9e576075f6609ca0c 100644 (file)
@@ -1,14 +1,14 @@
-#-------------------------------------------------------------------------------\r
-# elftools: common/exceptions.py\r
-#\r
-# Exception classes for elftools\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-class ELFError(Exception): \r
+#-------------------------------------------------------------------------------
+# elftools: common/exceptions.py
+#
+# Exception classes for elftools
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+class ELFError(Exception): 
     pass
-\r
-class ELFParseError(ELFError):\r
-    pass\r
-\r
+
+class ELFParseError(ELFError):
+    pass
+
index 230ba96c387248016835091fc425825ebb8a1037..666176f6b8c71d13c6b7eccb89f4b6535f065d5e 100644 (file)
@@ -1,32 +1,32 @@
-#-------------------------------------------------------------------------------\r
-# elftools: common/utils.py\r
-#\r
-# Miscellaneous utilities for elftools\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-from .exceptions import ELFParseError, ELFError\r
-\r
-\r
-def struct_parse(struct, stream, stream_pos=None):\r
-    """ Convenience function for using the given struct to parse a stream (at\r
-        its current location).\r
-        If stream_pos is provided, the stream is seeked to this position before\r
-        the parsing is done.\r
-        Wraps the error thrown by construct with our own error.\r
-    """\r
-    try:\r
-        if stream_pos is not None:\r
-            stream.seek(stream_pos)\r
-        return struct.parse_stream(stream)\r
-    except ConstructError as e:\r
-        raise ELFParseError(e.message)\r
-    \r
-\r
+#-------------------------------------------------------------------------------
+# elftools: common/utils.py
+#
+# Miscellaneous utilities for elftools
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+from .exceptions import ELFParseError, ELFError
+
+
+def struct_parse(struct, stream, stream_pos=None):
+    """ Convenience function for using the given struct to parse a stream (at
+        its current location).
+        If stream_pos is provided, the stream is seeked to this position before
+        the parsing is done.
+        Wraps the error thrown by construct with our own error.
+    """
+    try:
+        if stream_pos is not None:
+            stream.seek(stream_pos)
+        return struct.parse_stream(stream)
+    except ConstructError as e:
+        raise ELFParseError(e.message)
+    
+
 def elf_assert(cond, msg=''):
-    """ Assert that cond is True, otherwise raise ELFError(msg)\r
-    """\r
-    if not cond:\r
-        raise ELFError(msg)\r
-\r
+    """ Assert that cond is True, otherwise raise ELFError(msg)
+    """
+    if not cond:
+        raise ELFError(msg)
+
index 0b97feb806cd9c1428a55e11878a2c4c7e31a234..4814bcc22c444bcd32e4b5af85bcf1b373090e44 100644 (file)
@@ -1,81 +1,81 @@
-"""\r
-Construct 2.00 -- parsing made even more fun (and faster)\r
-\r
-Homepage:\r
-http://construct.wikispaces.com\r
-\r
-Typical usage:\r
->>> from construct import *\r
-\r
-Example:\r
->>> from construct import *\r
->>>\r
->>> s = Struct("foo",\r
-...     UBInt8("a"),\r
-...     UBInt16("b"),\r
-... )\r
->>>\r
->>> s.parse("\x01\x02\x03")\r
-Container(a = 1, b = 515)\r
->>> print s.parse("\x01\x02\x03")\r
-Container:\r
-    a = 1\r
-    b = 515\r
->>> s.build(Container(a = 1, b = 0x0203))\r
-"\x01\x02\x03"\r
-"""\r
-from core import *\r
-from adapters import *\r
-from macros import *\r
-from debug import Probe, Debugger\r
-\r
-\r
-#===============================================================================\r
-# meta data\r
-#===============================================================================\r
-__author__ = "tomer filiba (tomerfiliba [at] gmail.com)"\r
-__version__ = "2.00"\r
-\r
-#===============================================================================\r
-# shorthands\r
-#===============================================================================\r
-Bits = BitField\r
-Byte = UBInt8\r
-Bytes = Field\r
-Const = ConstAdapter\r
-Tunnel = TunnelAdapter\r
-Embed = Embedded\r
-\r
-#===============================================================================\r
-# backward compatibility with RC1\r
-#===============================================================================\r
-MetaField = Field\r
-MetaBytes = Field\r
-GreedyRepeater = GreedyRange\r
-OptionalGreedyRepeater = OptionalGreedyRange\r
-Repeater = Array\r
-StrictRepeater = Array\r
-MetaRepeater = Array\r
-OneOfValidator = OneOf\r
-NoneOfValidator = NoneOf\r
-\r
-#===============================================================================\r
-# don't want to leek these out...\r
-#===============================================================================\r
-del encode_bin, decode_bin, int_to_bin, bin_to_int, swap_bytes\r
-del Packer, StringIO\r
-del HexString, LazyContainer, AttrDict\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+"""
+Construct 2.00 -- parsing made even more fun (and faster)
+
+Homepage:
+http://construct.wikispaces.com
+
+Typical usage:
+>>> from construct import *
+
+Example:
+>>> from construct import *
+>>>
+>>> s = Struct("foo",
+...     UBInt8("a"),
+...     UBInt16("b"),
+... )
+>>>
+>>> s.parse("\x01\x02\x03")
+Container(a = 1, b = 515)
+>>> print s.parse("\x01\x02\x03")
+Container:
+    a = 1
+    b = 515
+>>> s.build(Container(a = 1, b = 0x0203))
+"\x01\x02\x03"
+"""
+from core import *
+from adapters import *
+from macros import *
+from debug import Probe, Debugger
+
+
+#===============================================================================
+# meta data
+#===============================================================================
+__author__ = "tomer filiba (tomerfiliba [at] gmail.com)"
+__version__ = "2.00"
+
+#===============================================================================
+# shorthands
+#===============================================================================
+Bits = BitField
+Byte = UBInt8
+Bytes = Field
+Const = ConstAdapter
+Tunnel = TunnelAdapter
+Embed = Embedded
+
+#===============================================================================
+# backward compatibility with RC1
+#===============================================================================
+MetaField = Field
+MetaBytes = Field
+GreedyRepeater = GreedyRange
+OptionalGreedyRepeater = OptionalGreedyRange
+Repeater = Array
+StrictRepeater = Array
+MetaRepeater = Array
+OneOfValidator = OneOf
+NoneOfValidator = NoneOf
+
+#===============================================================================
+# don't want to leek these out...
+#===============================================================================
+del encode_bin, decode_bin, int_to_bin, bin_to_int, swap_bytes
+del Packer, StringIO
+del HexString, LazyContainer, AttrDict
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index 69c84d91debe82dede12cfecd4cdf10db650ae8d..182e1086830888d4c058d11c34502014db554472 100644 (file)
-from core import Adapter, AdaptationError, Pass\r
-from lib import int_to_bin, bin_to_int, swap_bytes, StringIO\r
-from lib import FlagsContainer, HexString\r
-\r
-\r
-#===============================================================================\r
-# exceptions\r
-#===============================================================================\r
-class BitIntegerError(AdaptationError):\r
-    __slots__ = []\r
-class MappingError(AdaptationError):\r
-    __slots__ = []\r
-class ConstError(AdaptationError):\r
-    __slots__ = []\r
-class ValidationError(AdaptationError):\r
-    __slots__ = []\r
-class PaddingError(AdaptationError):\r
-    __slots__ = []\r
-\r
-#===============================================================================\r
-# adapters\r
-#===============================================================================\r
-class BitIntegerAdapter(Adapter):\r
-    """\r
-    Adapter for bit-integers (converts bitstrings to integers, and vice versa).\r
-    See BitField.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to adapt\r
-    * width - the size of the subcon, in bits\r
-    * swapped - whether to swap byte order (little endian/big endian). \r
-      default is False (big endian)\r
-    * signed - whether the value is signed (two's complement). the default\r
-      is False (unsigned)\r
-    * bytesize - number of bits per byte, used for byte-swapping (if swapped).\r
-      default is 8.\r
-    """\r
-    __slots__ = ["width", "swapped", "signed", "bytesize"]\r
-    def __init__(self, subcon, width, swapped = False, signed = False, \r
-                 bytesize = 8):\r
-        Adapter.__init__(self, subcon)\r
-        self.width = width\r
-        self.swapped = swapped\r
-        self.signed = signed\r
-        self.bytesize = bytesize\r
-    def _encode(self, obj, context):\r
-        if obj < 0 and not self.signed:\r
-            raise BitIntegerError("object is negative, but field is not signed",\r
-                obj)\r
-        obj2 = int_to_bin(obj, width = self.width)\r
-        if self.swapped:\r
-            obj2 = swap_bytes(obj2, bytesize = self.bytesize)\r
-        return obj2\r
-    def _decode(self, obj, context):\r
-        if self.swapped:\r
-            obj = swap_bytes(obj, bytesize = self.bytesize)\r
-        return bin_to_int(obj, signed = self.signed)\r
-\r
-class MappingAdapter(Adapter):\r
-    """\r
-    Adapter that maps objects to other objects.\r
-    See SymmetricMapping and Enum.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to map\r
-    * decoding - the decoding (parsing) mapping (a dict)\r
-    * encoding - the encoding (building) mapping (a dict)\r
-    * decdefault - the default return value when the object is not found\r
-      in the decoding mapping. if no object is given, an exception is raised.\r
-      if `Pass` is used, the unmapped object will be passed as-is\r
-    * encdefault - the default return value when the object is not found\r
-      in the encoding mapping. if no object is given, an exception is raised.\r
-      if `Pass` is used, the unmapped object will be passed as-is\r
-    """\r
-    __slots__ = ["encoding", "decoding", "encdefault", "decdefault"]\r
-    def __init__(self, subcon, decoding, encoding, \r
-                 decdefault = NotImplemented, encdefault = NotImplemented):\r
-        Adapter.__init__(self, subcon)\r
-        self.decoding = decoding\r
-        self.encoding = encoding\r
-        self.decdefault = decdefault\r
-        self.encdefault = encdefault\r
-    def _encode(self, obj, context):\r
-        try:\r
-            return self.encoding[obj]\r
-        except (KeyError, TypeError):\r
-            if self.encdefault is NotImplemented:\r
-                raise MappingError("no encoding mapping for %r [%s]" % (\r
-                    obj, self.subcon.name))\r
-            if self.encdefault is Pass:\r
-                return obj\r
-            return self.encdefault\r
-    def _decode(self, obj, context):\r
-        try:\r
-            return self.decoding[obj]\r
-        except (KeyError, TypeError):\r
-            if self.decdefault is NotImplemented:\r
-                raise MappingError("no decoding mapping for %r [%s]"  % (\r
-                    obj, self.subcon.name))\r
-            if self.decdefault is Pass:\r
-                return obj\r
-            return self.decdefault\r
-\r
-class FlagsAdapter(Adapter):\r
-    """\r
-    Adapter for flag fields. Each flag is extracted from the number, resulting\r
-    in a FlagsContainer object. Not intended for direct usage.\r
-    See FlagsEnum.\r
-    \r
-    Parameters\r
-    * subcon - the subcon to extract\r
-    * flags - a dictionary mapping flag-names to their value\r
-    """\r
-    __slots__ = ["flags"]\r
-    def __init__(self, subcon, flags):\r
-        Adapter.__init__(self, subcon)\r
-        self.flags = flags\r
-    def _encode(self, obj, context):\r
-        flags = 0\r
-        for name, value in self.flags.iteritems():\r
-            if getattr(obj, name, False):\r
-                flags |= value\r
-        return flags\r
-    def _decode(self, obj, context):\r
-        obj2 = FlagsContainer()\r
-        for name, value in self.flags.iteritems():\r
-            setattr(obj2, name, bool(obj & value))\r
-        return obj2\r
-\r
-class StringAdapter(Adapter):\r
-    """\r
-    Adapter for strings. Converts a sequence of characters into a python \r
-    string, and optionally handles character encoding.\r
-    See String.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to convert\r
-    * encoding - the character encoding name (e.g., "utf8"), or None to \r
-      return raw bytes (usually 8-bit ASCII).\r
-    """\r
-    __slots__ = ["encoding"]\r
-    def __init__(self, subcon, encoding = None):\r
-        Adapter.__init__(self, subcon)\r
-        self.encoding = encoding\r
-    def _encode(self, obj, context):\r
-        if self.encoding:\r
-            obj = obj.encode(self.encoding)\r
-        return obj\r
-    def _decode(self, obj, context):\r
-        obj = "".join(obj)\r
-        if self.encoding:\r
-            obj = obj.decode(self.encoding)\r
-        return obj\r
-\r
-class PaddedStringAdapter(Adapter):\r
-    r"""\r
-    Adapter for padded strings.\r
-    See String.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to adapt\r
-    * padchar - the padding character. default is "\x00".\r
-    * paddir - the direction where padding is placed ("right", "left", or \r
-      "center"). the default is "right". \r
-    * trimdir - the direction where trimming will take place ("right" or \r
-      "left"). the default is "right". trimming is only meaningful for\r
-      building, when the given string is too long. \r
-    """\r
-    __slots__ = ["padchar", "paddir", "trimdir"]\r
-    def __init__(self, subcon, padchar = "\x00", paddir = "right", \r
-                 trimdir = "right"):\r
-        if paddir not in ("right", "left", "center"):\r
-            raise ValueError("paddir must be 'right', 'left' or 'center'", \r
-                paddir)\r
-        if trimdir not in ("right", "left"):\r
-            raise ValueError("trimdir must be 'right' or 'left'", trimdir)\r
-        Adapter.__init__(self, subcon)\r
-        self.padchar = padchar\r
-        self.paddir = paddir\r
-        self.trimdir = trimdir\r
-    def _decode(self, obj, context):\r
-        if self.paddir == "right":\r
-            obj = obj.rstrip(self.padchar)\r
-        elif self.paddir == "left":\r
-            obj = obj.lstrip(self.padchar)\r
-        else:\r
-            obj = obj.strip(self.padchar)\r
-        return obj\r
-    def _encode(self, obj, context):\r
-        size = self._sizeof(context)\r
-        if self.paddir == "right":\r
-            obj = obj.ljust(size, self.padchar)\r
-        elif self.paddir == "left":\r
-            obj = obj.rjust(size, self.padchar)\r
-        else:\r
-            obj = obj.center(size, self.padchar)\r
-        if len(obj) > size:\r
-            if self.trimdir == "right":\r
-                obj = obj[:size]\r
-            else:\r
-                obj = obj[-size:]\r
-        return obj\r
-\r
-class LengthValueAdapter(Adapter):\r
-    """\r
-    Adapter for length-value pairs. It extracts only the value from the \r
-    pair, and calculates the length based on the value.\r
-    See PrefixedArray and PascalString.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon returning a length-value pair\r
-    """\r
-    __slots__ = []\r
-    def _encode(self, obj, context):\r
-        return (len(obj), obj)\r
-    def _decode(self, obj, context):\r
-        return obj[1]\r
-\r
-class CStringAdapter(StringAdapter):\r
-    r"""\r
-    Adapter for C-style strings (strings terminated by a terminator char).\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to convert\r
-    * terminators - a sequence of terminator chars. default is "\x00".\r
-    * encoding - the character encoding to use (e.g., "utf8"), or None to\r
-      return raw-bytes. the terminator characters are not affected by the \r
-      encoding.\r
-    """\r
-    __slots__ = ["terminators"]\r
-    def __init__(self, subcon, terminators = "\x00", encoding = None):\r
-        StringAdapter.__init__(self, subcon, encoding = encoding)\r
-        self.terminators = terminators\r
-    def _encode(self, obj, context):\r
-        return StringAdapter._encode(self, obj, context) + self.terminators[0]\r
-    def _decode(self, obj, context):\r
-        return StringAdapter._decode(self, obj[:-1], context)\r
-\r
-class TunnelAdapter(Adapter):\r
-    """\r
-    Adapter for tunneling (as in protocol tunneling). A tunnel is construct\r
-    nested upon another (layering). For parsing, the lower layer first parses\r
-    the data (note: it must return a string!), then the upper layer is called\r
-    to parse that data (bottom-up). For building it works in a top-down manner;\r
-    first the upper layer builds the data, then the lower layer takes it and\r
-    writes it to the stream.\r
-    \r
-    Parameters:\r
-    * subcon - the lower layer subcon\r
-    * inner_subcon - the upper layer (tunneled/nested) subcon\r
-    \r
-    Example:\r
-    # a pascal string containing compressed data (zlib encoding), so first\r
-    # the string is read, decompressed, and finally re-parsed as an array\r
-    # of UBInt16\r
-    TunnelAdapter(\r
-        PascalString("data", encoding = "zlib"),\r
-        GreedyRange(UBInt16("elements"))\r
-    )\r
-    """\r
-    __slots__ = ["inner_subcon"]\r
-    def __init__(self, subcon, inner_subcon):\r
-        Adapter.__init__(self, subcon)\r
-        self.inner_subcon = inner_subcon\r
-    def _decode(self, obj, context):\r
-        return self.inner_subcon._parse(StringIO(obj), context)\r
-    def _encode(self, obj, context):\r
-        stream = StringIO()\r
-        self.inner_subcon._build(obj, stream, context)\r
-        return stream.getvalue()\r
-\r
-class ExprAdapter(Adapter):\r
-    """\r
-    A generic adapter that accepts 'encoder' and 'decoder' as parameters. You\r
-    can use ExprAdapter instead of writing a full-blown class when only a \r
-    simple expression is needed.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to adapt\r
-    * encoder - a function that takes (obj, context) and returns an encoded \r
-      version of obj\r
-    * decoder - a function that takes (obj, context) and returns an decoded \r
-      version of obj\r
-    \r
-    Example:\r
-    ExprAdapter(UBInt8("foo"), \r
-        encoder = lambda obj, ctx: obj / 4,\r
-        decoder = lambda obj, ctx: obj * 4,\r
-    )\r
-    """\r
-    __slots__ = ["_encode", "_decode"]\r
-    def __init__(self, subcon, encoder, decoder):\r
-        Adapter.__init__(self, subcon)\r
-        self._encode = encoder\r
-        self._decode = decoder\r
-\r
-class HexDumpAdapter(Adapter):\r
-    """\r
-    Adapter for hex-dumping strings. It returns a HexString, which is a string\r
-    """\r
-    __slots__ = ["linesize"]\r
-    def __init__(self, subcon, linesize = 16):\r
-        Adapter.__init__(self, subcon)\r
-        self.linesize = linesize\r
-    def _encode(self, obj, context):\r
-        return obj\r
-    def _decode(self, obj, context):\r
-        return HexString(obj, linesize = self.linesize)\r
-\r
-class ConstAdapter(Adapter):\r
-    """\r
-    Adapter for enforcing a constant value ("magic numbers"). When decoding,\r
-    the return value is checked; when building, the value is substituted in.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to validate\r
-    * value - the expected value\r
-    \r
-    Example:\r
-    Const(Field("signature", 2), "MZ")\r
-    """\r
-    __slots__ = ["value"]\r
-    def __init__(self, subcon, value):\r
-        Adapter.__init__(self, subcon)\r
-        self.value = value\r
-    def _encode(self, obj, context):\r
-        if obj is None or obj == self.value:\r
-            return self.value\r
-        else:\r
-            raise ConstError("expected %r, found %r" % (self.value, obj))\r
-    def _decode(self, obj, context):\r
-        if obj != self.value:\r
-            raise ConstError("expected %r, found %r" % (self.value, obj))\r
-        return obj\r
-\r
-class SlicingAdapter(Adapter):\r
-    """\r
-    Adapter for slicing a list (getting a slice from that list)\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to slice\r
-    * start - start index\r
-    * stop - stop index (or None for up-to-end)\r
-    * step - step (or None for every element)\r
-    """\r
-    __slots__ = ["start", "stop", "step"]\r
-    def __init__(self, subcon, start, stop = None):\r
-        Adapter.__init__(self, subcon)\r
-        self.start = start\r
-        self.stop = stop\r
-    def _encode(self, obj, context):\r
-        if self.start is None:\r
-            return obj\r
-        return [None] * self.start + obj\r
-    def _decode(self, obj, context):\r
-        return obj[self.start:self.stop]\r
-\r
-class IndexingAdapter(Adapter):\r
-    """\r
-    Adapter for indexing a list (getting a single item from that list)\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to index\r
-    * index - the index of the list to get\r
-    """\r
-    __slots__ = ["index"]\r
-    def __init__(self, subcon, index):\r
-        Adapter.__init__(self, subcon)\r
-        if type(index) is not int:\r
-            raise TypeError("index must be an integer", type(index))\r
-        self.index = index\r
-    def _encode(self, obj, context):\r
-        return [None] * self.index + [obj]\r
-    def _decode(self, obj, context):\r
-        return obj[self.index]\r
-\r
-class PaddingAdapter(Adapter):\r
-    r"""\r
-    Adapter for padding.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to pad\r
-    * pattern - the padding pattern (character). default is "\x00")\r
-    * strict - whether or not to verify, during parsing, that the given \r
-      padding matches the padding pattern. default is False (unstrict)\r
-    """\r
-    __slots__ = ["pattern", "strict"]\r
-    def __init__(self, subcon, pattern = "\x00", strict = False):\r
-        Adapter.__init__(self, subcon)\r
-        self.pattern = pattern\r
-        self.strict = strict\r
-    def _encode(self, obj, context):\r
-        return self._sizeof(context) * self.pattern\r
-    def _decode(self, obj, context):\r
-        if self.strict:\r
-            expected = self._sizeof(context) * self.pattern\r
-            if obj != expected:\r
-                raise PaddingError("expected %r, found %r" % (expected, obj))\r
-        return obj\r
-\r
-\r
-#===============================================================================\r
-# validators\r
-#===============================================================================\r
-class Validator(Adapter):\r
-    """\r
-    Abstract class: validates a condition on the encoded/decoded object. \r
-    Override _validate(obj, context) in deriving classes.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to validate\r
-    """\r
-    __slots__ = []\r
-    def _decode(self, obj, context):\r
-        if not self._validate(obj, context):\r
-            raise ValidationError("invalid object", obj)\r
-        return obj\r
-    def _encode(self, obj, context):\r
-        return self._decode(obj, context)\r
-    def _validate(self, obj, context):\r
-        raise NotImplementedError()\r
-\r
-class OneOf(Validator):\r
-    """\r
-    Validates that the value is one of the listed values\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to validate\r
-    * valids - a set of valid values\r
-    """\r
-    __slots__ = ["valids"]\r
-    def __init__(self, subcon, valids):\r
-        Validator.__init__(self, subcon)\r
-        self.valids = valids\r
-    def _validate(self, obj, context):\r
-        return obj in self.valids\r
-\r
-class NoneOf(Validator):\r
-    """\r
-    Validates that the value is none of the listed values\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to validate\r
-    * invalids - a set of invalid values\r
-    """\r
-    __slots__ = ["invalids"]\r
-    def __init__(self, subcon, invalids):\r
-        Validator.__init__(self, subcon)\r
-        self.invalids = invalids\r
-    def _validate(self, obj, context):\r
-        return obj not in self.invalids\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+from core import Adapter, AdaptationError, Pass
+from lib import int_to_bin, bin_to_int, swap_bytes, StringIO
+from lib import FlagsContainer, HexString
+
+
+#===============================================================================
+# exceptions
+#===============================================================================
+class BitIntegerError(AdaptationError):
+    __slots__ = []
+class MappingError(AdaptationError):
+    __slots__ = []
+class ConstError(AdaptationError):
+    __slots__ = []
+class ValidationError(AdaptationError):
+    __slots__ = []
+class PaddingError(AdaptationError):
+    __slots__ = []
+
+#===============================================================================
+# adapters
+#===============================================================================
+class BitIntegerAdapter(Adapter):
+    """
+    Adapter for bit-integers (converts bitstrings to integers, and vice versa).
+    See BitField.
+    
+    Parameters:
+    * subcon - the subcon to adapt
+    * width - the size of the subcon, in bits
+    * swapped - whether to swap byte order (little endian/big endian). 
+      default is False (big endian)
+    * signed - whether the value is signed (two's complement). the default
+      is False (unsigned)
+    * bytesize - number of bits per byte, used for byte-swapping (if swapped).
+      default is 8.
+    """
+    __slots__ = ["width", "swapped", "signed", "bytesize"]
+    def __init__(self, subcon, width, swapped = False, signed = False, 
+                 bytesize = 8):
+        Adapter.__init__(self, subcon)
+        self.width = width
+        self.swapped = swapped
+        self.signed = signed
+        self.bytesize = bytesize
+    def _encode(self, obj, context):
+        if obj < 0 and not self.signed:
+            raise BitIntegerError("object is negative, but field is not signed",
+                obj)
+        obj2 = int_to_bin(obj, width = self.width)
+        if self.swapped:
+            obj2 = swap_bytes(obj2, bytesize = self.bytesize)
+        return obj2
+    def _decode(self, obj, context):
+        if self.swapped:
+            obj = swap_bytes(obj, bytesize = self.bytesize)
+        return bin_to_int(obj, signed = self.signed)
+
+class MappingAdapter(Adapter):
+    """
+    Adapter that maps objects to other objects.
+    See SymmetricMapping and Enum.
+    
+    Parameters:
+    * subcon - the subcon to map
+    * decoding - the decoding (parsing) mapping (a dict)
+    * encoding - the encoding (building) mapping (a dict)
+    * decdefault - the default return value when the object is not found
+      in the decoding mapping. if no object is given, an exception is raised.
+      if `Pass` is used, the unmapped object will be passed as-is
+    * encdefault - the default return value when the object is not found
+      in the encoding mapping. if no object is given, an exception is raised.
+      if `Pass` is used, the unmapped object will be passed as-is
+    """
+    __slots__ = ["encoding", "decoding", "encdefault", "decdefault"]
+    def __init__(self, subcon, decoding, encoding, 
+                 decdefault = NotImplemented, encdefault = NotImplemented):
+        Adapter.__init__(self, subcon)
+        self.decoding = decoding
+        self.encoding = encoding
+        self.decdefault = decdefault
+        self.encdefault = encdefault
+    def _encode(self, obj, context):
+        try:
+            return self.encoding[obj]
+        except (KeyError, TypeError):
+            if self.encdefault is NotImplemented:
+                raise MappingError("no encoding mapping for %r [%s]" % (
+                    obj, self.subcon.name))
+            if self.encdefault is Pass:
+                return obj
+            return self.encdefault
+    def _decode(self, obj, context):
+        try:
+            return self.decoding[obj]
+        except (KeyError, TypeError):
+            if self.decdefault is NotImplemented:
+                raise MappingError("no decoding mapping for %r [%s]"  % (
+                    obj, self.subcon.name))
+            if self.decdefault is Pass:
+                return obj
+            return self.decdefault
+
+class FlagsAdapter(Adapter):
+    """
+    Adapter for flag fields. Each flag is extracted from the number, resulting
+    in a FlagsContainer object. Not intended for direct usage.
+    See FlagsEnum.
+    
+    Parameters
+    * subcon - the subcon to extract
+    * flags - a dictionary mapping flag-names to their value
+    """
+    __slots__ = ["flags"]
+    def __init__(self, subcon, flags):
+        Adapter.__init__(self, subcon)
+        self.flags = flags
+    def _encode(self, obj, context):
+        flags = 0
+        for name, value in self.flags.iteritems():
+            if getattr(obj, name, False):
+                flags |= value
+        return flags
+    def _decode(self, obj, context):
+        obj2 = FlagsContainer()
+        for name, value in self.flags.iteritems():
+            setattr(obj2, name, bool(obj & value))
+        return obj2
+
+class StringAdapter(Adapter):
+    """
+    Adapter for strings. Converts a sequence of characters into a python 
+    string, and optionally handles character encoding.
+    See String.
+    
+    Parameters:
+    * subcon - the subcon to convert
+    * encoding - the character encoding name (e.g., "utf8"), or None to 
+      return raw bytes (usually 8-bit ASCII).
+    """
+    __slots__ = ["encoding"]
+    def __init__(self, subcon, encoding = None):
+        Adapter.__init__(self, subcon)
+        self.encoding = encoding
+    def _encode(self, obj, context):
+        if self.encoding:
+            obj = obj.encode(self.encoding)
+        return obj
+    def _decode(self, obj, context):
+        obj = "".join(obj)
+        if self.encoding:
+            obj = obj.decode(self.encoding)
+        return obj
+
+class PaddedStringAdapter(Adapter):
+    r"""
+    Adapter for padded strings.
+    See String.
+    
+    Parameters:
+    * subcon - the subcon to adapt
+    * padchar - the padding character. default is "\x00".
+    * paddir - the direction where padding is placed ("right", "left", or 
+      "center"). the default is "right". 
+    * trimdir - the direction where trimming will take place ("right" or 
+      "left"). the default is "right". trimming is only meaningful for
+      building, when the given string is too long. 
+    """
+    __slots__ = ["padchar", "paddir", "trimdir"]
+    def __init__(self, subcon, padchar = "\x00", paddir = "right", 
+                 trimdir = "right"):
+        if paddir not in ("right", "left", "center"):
+            raise ValueError("paddir must be 'right', 'left' or 'center'", 
+                paddir)
+        if trimdir not in ("right", "left"):
+            raise ValueError("trimdir must be 'right' or 'left'", trimdir)
+        Adapter.__init__(self, subcon)
+        self.padchar = padchar
+        self.paddir = paddir
+        self.trimdir = trimdir
+    def _decode(self, obj, context):
+        if self.paddir == "right":
+            obj = obj.rstrip(self.padchar)
+        elif self.paddir == "left":
+            obj = obj.lstrip(self.padchar)
+        else:
+            obj = obj.strip(self.padchar)
+        return obj
+    def _encode(self, obj, context):
+        size = self._sizeof(context)
+        if self.paddir == "right":
+            obj = obj.ljust(size, self.padchar)
+        elif self.paddir == "left":
+            obj = obj.rjust(size, self.padchar)
+        else:
+            obj = obj.center(size, self.padchar)
+        if len(obj) > size:
+            if self.trimdir == "right":
+                obj = obj[:size]
+            else:
+                obj = obj[-size:]
+        return obj
+
+class LengthValueAdapter(Adapter):
+    """
+    Adapter for length-value pairs. It extracts only the value from the 
+    pair, and calculates the length based on the value.
+    See PrefixedArray and PascalString.
+    
+    Parameters:
+    * subcon - the subcon returning a length-value pair
+    """
+    __slots__ = []
+    def _encode(self, obj, context):
+        return (len(obj), obj)
+    def _decode(self, obj, context):
+        return obj[1]
+
+class CStringAdapter(StringAdapter):
+    r"""
+    Adapter for C-style strings (strings terminated by a terminator char).
+    
+    Parameters:
+    * subcon - the subcon to convert
+    * terminators - a sequence of terminator chars. default is "\x00".
+    * encoding - the character encoding to use (e.g., "utf8"), or None to
+      return raw-bytes. the terminator characters are not affected by the 
+      encoding.
+    """
+    __slots__ = ["terminators"]
+    def __init__(self, subcon, terminators = "\x00", encoding = None):
+        StringAdapter.__init__(self, subcon, encoding = encoding)
+        self.terminators = terminators
+    def _encode(self, obj, context):
+        return StringAdapter._encode(self, obj, context) + self.terminators[0]
+    def _decode(self, obj, context):
+        return StringAdapter._decode(self, obj[:-1], context)
+
+class TunnelAdapter(Adapter):
+    """
+    Adapter for tunneling (as in protocol tunneling). A tunnel is construct
+    nested upon another (layering). For parsing, the lower layer first parses
+    the data (note: it must return a string!), then the upper layer is called
+    to parse that data (bottom-up). For building it works in a top-down manner;
+    first the upper layer builds the data, then the lower layer takes it and
+    writes it to the stream.
+    
+    Parameters:
+    * subcon - the lower layer subcon
+    * inner_subcon - the upper layer (tunneled/nested) subcon
+    
+    Example:
+    # a pascal string containing compressed data (zlib encoding), so first
+    # the string is read, decompressed, and finally re-parsed as an array
+    # of UBInt16
+    TunnelAdapter(
+        PascalString("data", encoding = "zlib"),
+        GreedyRange(UBInt16("elements"))
+    )
+    """
+    __slots__ = ["inner_subcon"]
+    def __init__(self, subcon, inner_subcon):
+        Adapter.__init__(self, subcon)
+        self.inner_subcon = inner_subcon
+    def _decode(self, obj, context):
+        return self.inner_subcon._parse(StringIO(obj), context)
+    def _encode(self, obj, context):
+        stream = StringIO()
+        self.inner_subcon._build(obj, stream, context)
+        return stream.getvalue()
+
+class ExprAdapter(Adapter):
+    """
+    A generic adapter that accepts 'encoder' and 'decoder' as parameters. You
+    can use ExprAdapter instead of writing a full-blown class when only a 
+    simple expression is needed.
+    
+    Parameters:
+    * subcon - the subcon to adapt
+    * encoder - a function that takes (obj, context) and returns an encoded 
+      version of obj
+    * decoder - a function that takes (obj, context) and returns an decoded 
+      version of obj
+    
+    Example:
+    ExprAdapter(UBInt8("foo"), 
+        encoder = lambda obj, ctx: obj / 4,
+        decoder = lambda obj, ctx: obj * 4,
+    )
+    """
+    __slots__ = ["_encode", "_decode"]
+    def __init__(self, subcon, encoder, decoder):
+        Adapter.__init__(self, subcon)
+        self._encode = encoder
+        self._decode = decoder
+
+class HexDumpAdapter(Adapter):
+    """
+    Adapter for hex-dumping strings. It returns a HexString, which is a string
+    """
+    __slots__ = ["linesize"]
+    def __init__(self, subcon, linesize = 16):
+        Adapter.__init__(self, subcon)
+        self.linesize = linesize
+    def _encode(self, obj, context):
+        return obj
+    def _decode(self, obj, context):
+        return HexString(obj, linesize = self.linesize)
+
+class ConstAdapter(Adapter):
+    """
+    Adapter for enforcing a constant value ("magic numbers"). When decoding,
+    the return value is checked; when building, the value is substituted in.
+    
+    Parameters:
+    * subcon - the subcon to validate
+    * value - the expected value
+    
+    Example:
+    Const(Field("signature", 2), "MZ")
+    """
+    __slots__ = ["value"]
+    def __init__(self, subcon, value):
+        Adapter.__init__(self, subcon)
+        self.value = value
+    def _encode(self, obj, context):
+        if obj is None or obj == self.value:
+            return self.value
+        else:
+            raise ConstError("expected %r, found %r" % (self.value, obj))
+    def _decode(self, obj, context):
+        if obj != self.value:
+            raise ConstError("expected %r, found %r" % (self.value, obj))
+        return obj
+
+class SlicingAdapter(Adapter):
+    """
+    Adapter for slicing a list (getting a slice from that list)
+    
+    Parameters:
+    * subcon - the subcon to slice
+    * start - start index
+    * stop - stop index (or None for up-to-end)
+    * step - step (or None for every element)
+    """
+    __slots__ = ["start", "stop", "step"]
+    def __init__(self, subcon, start, stop = None):
+        Adapter.__init__(self, subcon)
+        self.start = start
+        self.stop = stop
+    def _encode(self, obj, context):
+        if self.start is None:
+            return obj
+        return [None] * self.start + obj
+    def _decode(self, obj, context):
+        return obj[self.start:self.stop]
+
+class IndexingAdapter(Adapter):
+    """
+    Adapter for indexing a list (getting a single item from that list)
+    
+    Parameters:
+    * subcon - the subcon to index
+    * index - the index of the list to get
+    """
+    __slots__ = ["index"]
+    def __init__(self, subcon, index):
+        Adapter.__init__(self, subcon)
+        if type(index) is not int:
+            raise TypeError("index must be an integer", type(index))
+        self.index = index
+    def _encode(self, obj, context):
+        return [None] * self.index + [obj]
+    def _decode(self, obj, context):
+        return obj[self.index]
+
+class PaddingAdapter(Adapter):
+    r"""
+    Adapter for padding.
+    
+    Parameters:
+    * subcon - the subcon to pad
+    * pattern - the padding pattern (character). default is "\x00")
+    * strict - whether or not to verify, during parsing, that the given 
+      padding matches the padding pattern. default is False (unstrict)
+    """
+    __slots__ = ["pattern", "strict"]
+    def __init__(self, subcon, pattern = "\x00", strict = False):
+        Adapter.__init__(self, subcon)
+        self.pattern = pattern
+        self.strict = strict
+    def _encode(self, obj, context):
+        return self._sizeof(context) * self.pattern
+    def _decode(self, obj, context):
+        if self.strict:
+            expected = self._sizeof(context) * self.pattern
+            if obj != expected:
+                raise PaddingError("expected %r, found %r" % (expected, obj))
+        return obj
+
+
+#===============================================================================
+# validators
+#===============================================================================
+class Validator(Adapter):
+    """
+    Abstract class: validates a condition on the encoded/decoded object. 
+    Override _validate(obj, context) in deriving classes.
+    
+    Parameters:
+    * subcon - the subcon to validate
+    """
+    __slots__ = []
+    def _decode(self, obj, context):
+        if not self._validate(obj, context):
+            raise ValidationError("invalid object", obj)
+        return obj
+    def _encode(self, obj, context):
+        return self._decode(obj, context)
+    def _validate(self, obj, context):
+        raise NotImplementedError()
+
+class OneOf(Validator):
+    """
+    Validates that the value is one of the listed values
+    
+    Parameters:
+    * subcon - the subcon to validate
+    * valids - a set of valid values
+    """
+    __slots__ = ["valids"]
+    def __init__(self, subcon, valids):
+        Validator.__init__(self, subcon)
+        self.valids = valids
+    def _validate(self, obj, context):
+        return obj in self.valids
+
+class NoneOf(Validator):
+    """
+    Validates that the value is none of the listed values
+    
+    Parameters:
+    * subcon - the subcon to validate
+    * invalids - a set of invalid values
+    """
+    __slots__ = ["invalids"]
+    def __init__(self, subcon, invalids):
+        Validator.__init__(self, subcon)
+        self.invalids = invalids
+    def _validate(self, obj, context):
+        return obj not in self.invalids
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index b09382fd1dee5fe1b3791346f9efc7d7a1309c19..773d830ed0f3cd38d21f8038a0bf1ce6821f021a 100644 (file)
-from lib import StringIO, Packer\r
-from lib import Container, ListContainer, AttrDict, LazyContainer\r
-\r
-\r
-#===============================================================================\r
-# exceptions\r
-#===============================================================================\r
-class ConstructError(Exception):\r
-    __slots__ = []\r
-class FieldError(ConstructError):\r
-    __slots__ = []\r
-class SizeofError(ConstructError):\r
-    __slots__ = []\r
-class AdaptationError(ConstructError):\r
-    __slots__ = []\r
-class ArrayError(ConstructError):\r
-    __slots__ = []\r
-class RangeError(ConstructError):\r
-    __slots__ = []\r
-class SwitchError(ConstructError):\r
-    __slots__ = []\r
-class SelectError(ConstructError):\r
-    __slots__ = []\r
-class TerminatorError(ConstructError):\r
-    __slots__ = []\r
-\r
-#===============================================================================\r
-# abstract constructs\r
-#===============================================================================\r
-class Construct(object):\r
-    """\r
-    The mother of all constructs!\r
-    \r
-    User API:\r
-    * parse(buf) - parses an in-memory buffer (usually a string)\r
-    * parse_stream(stream) - parses a stream (in-memory, file, pipe, ...)\r
-    * build(obj) - builds the object into an in-memory buffer (a string)\r
-    * build_stream(obj, stream) - builds the object into the given stream\r
-    * sizeof(context) - calculates the size of the construct, if possible,\r
-      based on the context\r
-    \r
-    Overriable methods for subclassing:\r
-    * _parse(stream, context) - low-level parse from stream\r
-    * _build(obj, stream, context) - low-level build to stream\r
-    * _sizeof(context) - low-level compute size\r
-    \r
-    Flags API:\r
-    * _set_flag(flag) - sets the given flag/flags\r
-    * _clear_flag(flag) - clears the given flag/flags\r
-    * _inherit_flags(*subcons) - inherits the flag of subcons\r
-    * _is_flag(flag) - is the flag set? (predicate)\r
-    \r
-    Overridable methods for the copy-API:\r
-    * __getstate__() - returns a dict of the attributes of self\r
-    * __setstate__(attrs) - sets the attrs to self\r
-    \r
-    Attributes:\r
-    All constructs have a name and flags. The name is used for naming \r
-    struct-members and context dicts. Note that the name must be a string or\r
-    None (if the name is not needed). A single underscore ("_") is a reserved\r
-    name, and so are names starting with a less-than character ("<"). The name\r
-    should be descriptive, short, and valid as a python identifier (although\r
-    these rules are not enforced). \r
-    \r
-    The flags specify additional behavioral information about this construct.\r
-    The flags are used by enclosing constructs to determine a proper course \r
-    of action. Usually, flags are "inherited", i.e., an enclosing construct\r
-    inherits the flags of its subconstruct. The enclosing construct may\r
-    set new flags or clear existing ones, as necessary.\r
-        \r
-    For example, if FLAG_COPY_CONTEXT is set, repeaters will pass a copy of \r
-    the context for each iteration, which is necessary for OnDemand parsing.\r
-    """\r
-    FLAG_COPY_CONTEXT          = 0x0001\r
-    FLAG_DYNAMIC               = 0x0002\r
-    FLAG_EMBED                 = 0x0004\r
-    FLAG_NESTING               = 0x0008\r
-    \r
-    __slots__ = ["name", "conflags"]\r
-    def __init__(self, name, flags = 0):\r
-        if name is not None:\r
-            if type(name) is not str:\r
-                raise TypeError("name must be a string or None", name)\r
-            if name == "_" or name.startswith("<"):\r
-                raise ValueError("reserved name", name)\r
-        self.name = name\r
-        self.conflags = flags\r
-    def __repr__(self):\r
-        return "%s(%r)" % (self.__class__.__name__, self.name)\r
-    \r
-    def _set_flag(self, flag):\r
-        self.conflags |= flag\r
-    def _clear_flag(self, flag):\r
-        self.conflags &= ~flag\r
-    def _inherit_flags(self, *subcons):\r
-        for sc in subcons:\r
-            self._set_flag(sc.conflags)\r
-    def _is_flag(self, flag):\r
-        return bool(self.conflags & flag)\r
-    \r
-    def __getstate__(self):\r
-        attrs = {}\r
-        if hasattr(self, "__dict__"):\r
-            attrs.update(self.__dict__)\r
-        slots = []\r
-        c = self.__class__\r
-        while c is not None:\r
-            if hasattr(c, "__slots__"):\r
-                slots.extend(c.__slots__)\r
-            c = c.__base__\r
-        for name in slots:\r
-            if hasattr(self, name):\r
-                attrs[name] = getattr(self, name)\r
-        return attrs\r
-    def __setstate__(self, attrs):\r
-        for name, value in attrs.iteritems():\r
-            setattr(self, name, value)\r
-    def __copy__(self):\r
-        """returns a copy of this construct"""\r
-        self2 = object.__new__(self.__class__)\r
-        self2.__setstate__(self.__getstate__())\r
-        return self2\r
-    \r
-    def parse(self, data):\r
-        """parses data given as a buffer or a string (in-memory)"""\r
-        return self.parse_stream(StringIO(data))\r
-    def parse_stream(self, stream):\r
-        """parses data read directly from a stream"""\r
-        return self._parse(stream, AttrDict())\r
-    def _parse(self, stream, context):\r
-        raise NotImplementedError()\r
-    \r
-    def build(self, obj):\r
-        """builds an object in a string (in memory)"""\r
-        stream = StringIO()\r
-        self.build_stream(obj, stream)\r
-        return stream.getvalue()\r
-    def build_stream(self, obj, stream):\r
-        """builds an object into a stream"""\r
-        self._build(obj, stream, AttrDict())\r
-    def _build(self, obj, stream, context):\r
-        raise NotImplementedError()\r
-    \r
-    def sizeof(self, context = None):\r
-        """calculates the size of the construct (if possible) using the \r
-        given context"""\r
-        if context is None:\r
-            context = AttrDict()\r
-        return self._sizeof(context)\r
-    def _sizeof(self, context):\r
-        raise SizeofError("can't calculate size")\r
-\r
-class Subconstruct(Construct):\r
-    """\r
-    Abstract subconstruct (wraps an inner construct, inheriting it's \r
-    name and flags). \r
-    \r
-    Parameters:\r
-    * subcon - the construct to wrap\r
-    """\r
-    __slots__ = ["subcon"]\r
-    def __init__(self, subcon):\r
-        Construct.__init__(self, subcon.name, subcon.conflags)\r
-        self.subcon = subcon\r
-    def _parse(self, stream, context):\r
-        return self.subcon._parse(stream, context)\r
-    def _build(self, obj, stream, context):\r
-        self.subcon._build(obj, stream, context)\r
-    def _sizeof(self, context):\r
-        return self.subcon._sizeof(context)\r
-\r
-class Adapter(Subconstruct):\r
-    """\r
-    Abstract adapter: calls _decode for parsing and _encode for building.\r
-    \r
-    Parameters:\r
-    * subcon - the construct to wrap\r
-    """\r
-    __slots__ = []\r
-    def _parse(self, stream, context):\r
-        return self._decode(self.subcon._parse(stream, context), context)\r
-    def _build(self, obj, stream, context):\r
-        self.subcon._build(self._encode(obj, context), stream, context)\r
-    def _decode(self, obj, context):\r
-        raise NotImplementedError()\r
-    def _encode(self, obj, context):\r
-        raise NotImplementedError()\r
-\r
-\r
-#===============================================================================\r
-# primitives\r
-#===============================================================================\r
-def _read_stream(stream, length):\r
-    if length < 0:\r
-        raise ValueError("length must be >= 0", length)\r
-    data = stream.read(length)\r
-    if len(data) != length:\r
-        raise FieldError("expected %d, found %d" % (length, len(data)))\r
-    return data\r
-\r
-def _write_stream(stream, length, data):\r
-    if length < 0:\r
-        raise ValueError("length must be >= 0", length)\r
-    if len(data) != length:\r
-        raise FieldError("expected %d, found %d" % (length, len(data)))\r
-    stream.write(data)\r
-\r
-class StaticField(Construct):\r
-    """\r
-    A field of a fixed size\r
-    \r
-    Parameters:\r
-    * name - the name of the field\r
-    * length - the length (an integer)\r
-    \r
-    Example:\r
-    StaticField("foo", 5)\r
-    """\r
-    __slots__ = ["length"]\r
-    def __init__(self, name, length):\r
-        Construct.__init__(self, name)\r
-        self.length = length\r
-    def _parse(self, stream, context):\r
-        return _read_stream(stream, self.length)\r
-    def _build(self, obj, stream, context):\r
-        _write_stream(stream, self.length, obj)\r
-    def _sizeof(self, context):\r
-        return self.length\r
-\r
-class FormatField(StaticField):\r
-    """\r
-    A field that uses python's built-in struct module to pack/unpack data\r
-    according to a format string.\r
-    Note: this field has been originally implemented as an Adapter, but it \r
-    was made a construct for performance reasons.\r
-    \r
-    Parameters:\r
-    * name - the name\r
-    * endianity - "<" for little endian, ">" for big endian, or "=" for native\r
-    * format - a single format character\r
-    \r
-    Example:\r
-    FormatField("foo", ">", "L")\r
-    """\r
-    __slots__ = ["packer"]\r
-    def __init__(self, name, endianity, format):\r
-        if endianity not in (">", "<", "="):\r
-            raise ValueError("endianity must be be '=', '<', or '>'", \r
-                endianity)\r
-        if len(format) != 1:\r
-            raise ValueError("must specify one and only one format char")\r
-        self.packer = Packer(endianity + format)\r
-        StaticField.__init__(self, name, self.packer.size)\r
-    def __getstate__(self):\r
-        attrs = StaticField.__getstate__(self)\r
-        attrs["packer"] = attrs["packer"].format\r
-        return attrs\r
-    def __setstate__(self, attrs):\r
-        attrs["packer"] = Packer(attrs["packer"])\r
-        return StaticField.__setstate__(attrs)\r
-    def _parse(self, stream, context):\r
-        try:\r
-            return self.packer.unpack(_read_stream(stream, self.length))[0]\r
-        except Exception, ex:\r
-            raise FieldError(ex)\r
-    def _build(self, obj, stream, context):\r
-        try:\r
-            _write_stream(stream, self.length, self.packer.pack(obj))\r
-        except Exception, ex:\r
-            raise FieldError(ex)\r
-\r
-class MetaField(Construct):\r
-    """\r
-    A field of a meta-length. The length is computed at runtime based on\r
-    the context.\r
-    \r
-    Parameters:\r
-    * name - the name of the field\r
-    * lengthfunc - a function that takes the context as a parameter and return\r
-      the length of the field\r
-    \r
-    Example:\r
-    MetaField("foo", lambda ctx: 5)\r
-    """\r
-    __slots__ = ["lengthfunc"]\r
-    def __init__(self, name, lengthfunc):\r
-        Construct.__init__(self, name)\r
-        self.lengthfunc = lengthfunc\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        return _read_stream(stream, self.lengthfunc(context))\r
-    def _build(self, obj, stream, context):\r
-        _write_stream(stream, self.lengthfunc(context), obj)\r
-    def _sizeof(self, context):\r
-        return self.lengthfunc(context)\r
-\r
-\r
-#===============================================================================\r
-# arrays and repeaters\r
-#===============================================================================\r
-class MetaArray(Subconstruct):\r
-    """\r
-    An array (repeater) of a meta-count. The array will iterate exactly \r
-    `countfunc()` times. Will raise ArrayError if less elements are found.\r
-    See also Array, Range and RepeatUntil.\r
-    \r
-    Parameters:\r
-    * countfunc - a function that takes the context as a parameter and returns\r
-      the number of elements of the array (count)\r
-    * subcon - the subcon to repeat `countfunc()` times\r
-    \r
-    Example:\r
-    MetaArray(lambda ctx: 5, UBInt8("foo"))\r
-    """\r
-    __slots__ = ["countfunc"]\r
-    def __init__(self, countfunc, subcon):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.countfunc = countfunc\r
-        self._clear_flag(self.FLAG_COPY_CONTEXT)\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        obj = ListContainer()\r
-        c = 0\r
-        count = self.countfunc(context)\r
-        try:\r
-            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:\r
-                while c < count:\r
-                    obj.append(self.subcon._parse(stream, context.__copy__()))\r
-                    c += 1\r
-            else:\r
-                while c < count:\r
-                    obj.append(self.subcon._parse(stream, context))\r
-                    c += 1\r
-        except ConstructError, ex:\r
-            raise ArrayError("expected %d, found %d" % (count, c), ex)\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        count = self.countfunc(context)\r
-        if len(obj) != count:\r
-            raise ArrayError("expected %d, found %d" % (count, len(obj)))\r
-        if self.subcon.conflags & self.FLAG_COPY_CONTEXT:\r
-            for subobj in obj:\r
-                self.subcon._build(subobj, stream, context.__copy__())\r
-        else:\r
-            for subobj in obj:\r
-                self.subcon._build(subobj, stream, context)\r
-    def _sizeof(self, context):\r
-        return self.subcon._sizeof(context) * self.countfunc(context)\r
-\r
-class Range(Subconstruct):\r
-    """\r
-    A range-array. The subcon will iterate between `mincount` to `maxcount`\r
-    times. If less than `mincount` elements are found, raises RangeError.\r
-    See also GreedyRange and OptionalGreedyRange.\r
-    \r
-    Notes:\r
-    * requires a seekable stream.\r
-    \r
-    Parameters:\r
-    * mincount - the minimal count (an integer)\r
-    * maxcount - the maximal count (an integer)\r
-    * subcon - the subcon to repeat\r
-    \r
-    Example:\r
-    Range(5, 8, UBInt8("foo"))\r
-    """\r
-    __slots__ = ["mincount", "maxcout"]\r
-    def __init__(self, mincount, maxcout, subcon):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.mincount = mincount\r
-        self.maxcout = maxcout\r
-        self._clear_flag(self.FLAG_COPY_CONTEXT)\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        obj = ListContainer()\r
-        c = 0\r
-        try:\r
-            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:\r
-                while c < self.maxcout:\r
-                    pos = stream.tell()\r
-                    obj.append(self.subcon._parse(stream, context.__copy__()))\r
-                    c += 1\r
-            else:\r
-                while c < self.maxcout:\r
-                    pos = stream.tell()\r
-                    obj.append(self.subcon._parse(stream, context))\r
-                    c += 1\r
-        except ConstructError:\r
-            if c < self.mincount:\r
-                raise RangeError("expected %d to %d, found %d" % \r
-                    (self.mincount, self.maxcout, c))\r
-            stream.seek(pos)\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        if len(obj) < self.mincount or len(obj) > self.maxcout:\r
-            raise RangeError("expected %d to %d, found %d" % \r
-                (self.mincount, self.maxcout, len(obj)))\r
-        cnt = 0\r
-        try:\r
-            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:\r
-                for subobj in obj:\r
-                    self.subcon._build(subobj, stream, context.__copy__())\r
-                    cnt += 1\r
-            else:\r
-                for subobj in obj:\r
-                    self.subcon._build(subobj, stream, context)\r
-                    cnt += 1\r
-        except ConstructError:\r
-            if cnt < self.mincount:\r
-                raise RangeError("expected %d to %d, found %d" % \r
-                    (self.mincount, self.maxcout, len(obj)))\r
-    def _sizeof(self, context):\r
-        raise SizeofError("can't calculate size")\r
-\r
-class RepeatUntil(Subconstruct):\r
-    """\r
-    An array that repeat until the predicate indicates it to stop. Note that\r
-    the last element (which caused the repeat to exit) is included in the \r
-    return value.\r
-    \r
-    Parameters:\r
-    * predicate - a predicate function that takes (obj, context) and returns\r
-      True if the stop-condition is met, or False to continue.\r
-    * subcon - the subcon to repeat.\r
-    \r
-    Example:\r
-    # will read chars until \x00 (inclusive)\r
-    RepeatUntil(lambda obj, ctx: obj == "\x00",\r
-        Field("chars", 1)\r
-    )\r
-    """\r
-    __slots__ = ["predicate"]\r
-    def __init__(self, predicate, subcon):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.predicate = predicate\r
-        self._clear_flag(self.FLAG_COPY_CONTEXT)\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        obj = []\r
-        try:\r
-            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:\r
-                while True:\r
-                    subobj = self.subcon._parse(stream, context.__copy__())\r
-                    obj.append(subobj)\r
-                    if self.predicate(subobj, context):\r
-                        break\r
-            else:\r
-                while True:\r
-                    subobj = self.subcon._parse(stream, context)\r
-                    obj.append(subobj)\r
-                    if self.predicate(subobj, context):\r
-                        break\r
-        except ConstructError, ex:\r
-            raise ArrayError("missing terminator", ex)\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        terminated = False\r
-        if self.subcon.conflags & self.FLAG_COPY_CONTEXT:\r
-            for subobj in obj:\r
-                self.subcon._build(subobj, stream, context.__copy__())\r
-                if self.predicate(subobj, context):\r
-                    terminated = True\r
-                    break\r
-        else:\r
-            for subobj in obj:\r
-                self.subcon._build(subobj, stream, context.__copy__())\r
-                if self.predicate(subobj, context):\r
-                    terminated = True\r
-                    break\r
-        if not terminated:\r
-            raise ArrayError("missing terminator")\r
-    def _sizeof(self, context):\r
-        raise SizeofError("can't calculate size")\r
-\r
-\r
-#===============================================================================\r
-# structures and sequences\r
-#===============================================================================\r
-class Struct(Construct):\r
-    """\r
-    A sequence of named constructs, similar to structs in C. The elements are\r
-    parsed and built in the order they are defined.\r
-    See also Embedded.\r
-    \r
-    Parameters:\r
-    * name - the name of the structure\r
-    * subcons - a sequence of subconstructs that make up this structure.\r
-    * nested - a keyword-only argument that indicates whether this struct \r
-      creates a nested context. The default is True. This parameter is \r
-      considered "advanced usage", and may be removed in the future.\r
-    \r
-    Example:\r
-    Struct("foo",\r
-        UBInt8("first_element"),\r
-        UBInt16("second_element"),\r
-        Padding(2),\r
-        UBInt8("third_element"),\r
-    )\r
-    """\r
-    __slots__ = ["subcons", "nested"]\r
-    def __init__(self, name, *subcons, **kw):\r
-        self.nested = kw.pop("nested", True)\r
-        if kw:\r
-            raise TypeError("the only keyword argument accepted is 'nested'", kw)\r
-        Construct.__init__(self, name)\r
-        self.subcons = subcons\r
-        self._inherit_flags(*subcons)\r
-        self._clear_flag(self.FLAG_EMBED)\r
-    def _parse(self, stream, context):\r
-        if "<obj>" in context:\r
-            obj = context["<obj>"]\r
-            del context["<obj>"]\r
-        else:\r
-            obj = Container()\r
-            if self.nested:\r
-                context = AttrDict(_ = context)\r
-        for sc in self.subcons:\r
-            if sc.conflags & self.FLAG_EMBED:\r
-                context["<obj>"] = obj\r
-                sc._parse(stream, context)\r
-            else:\r
-                subobj = sc._parse(stream, context)\r
-                if sc.name is not None:\r
-                    obj[sc.name] = subobj\r
-                    context[sc.name] = subobj\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        if "<unnested>" in context:\r
-            del context["<unnested>"]\r
-        elif self.nested:\r
-            context = AttrDict(_ = context)\r
-        for sc in self.subcons:\r
-            if sc.conflags & self.FLAG_EMBED:\r
-                context["<unnested>"] = True\r
-                subobj = obj\r
-            elif sc.name is None:\r
-                subobj = None\r
-            else:\r
-                subobj = getattr(obj, sc.name)\r
-                context[sc.name] = subobj\r
-            sc._build(subobj, stream, context)\r
-    def _sizeof(self, context):\r
-        if self.nested:\r
-            context = AttrDict(_ = context)\r
-        return sum(sc._sizeof(context) for sc in self.subcons)\r
-\r
-class Sequence(Struct):\r
-    """\r
-    A sequence of unnamed constructs. The elements are parsed and built in the\r
-    order they are defined.\r
-    See also Embedded.\r
-    \r
-    Parameters:\r
-    * name - the name of the structure\r
-    * subcons - a sequence of subconstructs that make up this structure.\r
-    * nested - a keyword-only argument that indicates whether this struct \r
-      creates a nested context. The default is True. This parameter is \r
-      considered "advanced usage", and may be removed in the future.\r
-    \r
-    Example:\r
-    Sequence("foo",\r
-        UBInt8("first_element"),\r
-        UBInt16("second_element"),\r
-        Padding(2),\r
-        UBInt8("third_element"),\r
-    )\r
-    """\r
-    __slots__ = []\r
-    def _parse(self, stream, context):\r
-        if "<obj>" in context:\r
-            obj = context["<obj>"]\r
-            del context["<obj>"]\r
-        else:\r
-            obj = ListContainer()\r
-            if self.nested:\r
-                context = AttrDict(_ = context)\r
-        for sc in self.subcons:\r
-            if sc.conflags & self.FLAG_EMBED:\r
-                context["<obj>"] = obj\r
-                sc._parse(stream, context)\r
-            else:\r
-                subobj = sc._parse(stream, context)\r
-                if sc.name is not None:\r
-                    obj.append(subobj)\r
-                    context[sc.name] = subobj\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        if "<unnested>" in context:\r
-            del context["<unnested>"]\r
-        elif self.nested:\r
-            context = AttrDict(_ = context)\r
-        objiter = iter(obj)\r
-        for sc in self.subcons:\r
-            if sc.conflags & self.FLAG_EMBED:\r
-                context["<unnested>"] = True\r
-                subobj = objiter\r
-            elif sc.name is None:\r
-                subobj = None\r
-            else:\r
-                subobj = objiter.next()\r
-                context[sc.name] = subobj\r
-            sc._build(subobj, stream, context)\r
-\r
-class Union(Construct):\r
-    """\r
-    a set of overlapping fields (like unions in C). when parsing, \r
-    all fields read the same data; when building, only the first subcon\r
-    (called "master") is used. \r
-    \r
-    Parameters:\r
-    * name - the name of the union\r
-    * master - the master subcon, i.e., the subcon used for building and \r
-      calculating the total size\r
-    * subcons - additional subcons\r
-    \r
-    Example:\r
-    Union("what_are_four_bytes",\r
-        UBInt32("one_dword"),\r
-        Struct("two_words", UBInt16("first"), UBInt16("second")),\r
-        Struct("four_bytes", \r
-            UBInt8("a"), \r
-            UBInt8("b"), \r
-            UBInt8("c"), \r
-            UBInt8("d")\r
-        ),\r
-    )\r
-    """\r
-    __slots__ = ["parser", "builder"]\r
-    def __init__(self, name, master, *subcons, **kw):\r
-        Construct.__init__(self, name)\r
-        args = [Peek(sc) for sc in subcons]\r
-        args.append(MetaField(None, lambda ctx: master._sizeof(ctx)))\r
-        self.parser = Struct(name, Peek(master, perform_build = True), *args)\r
-        self.builder = Struct(name, master)\r
-    def _parse(self, stream, context):\r
-        return self.parser._parse(stream, context)\r
-    def _build(self, obj, stream, context):\r
-        return self.builder._build(obj, stream, context)\r
-    def _sizeof(self, context):\r
-        return self.builder._sizeof(context)\r
-\r
-#===============================================================================\r
-# conditional\r
-#===============================================================================\r
-class Switch(Construct):\r
-    """\r
-    A conditional branch. Switch will choose the case to follow based on\r
-    the return value of keyfunc. If no case is matched, and no default value \r
-    is given, SwitchError will be raised.\r
-    See also Pass.\r
-    \r
-    Parameters:\r
-    * name - the name of the construct\r
-    * keyfunc - a function that takes the context and returns a key, which \r
-      will ne used to choose the relevant case.\r
-    * cases - a dictionary mapping keys to constructs. the keys can be any \r
-      values that may be returned by keyfunc.\r
-    * default - a default value to use when the key is not found in the cases.\r
-      if not supplied, an exception will be raised when the key is not found.\r
-      You can use the builtin construct Pass for 'do-nothing'.\r
-    * include_key - whether or not to include the key in the return value\r
-      of parsing. defualt is False.\r
-    \r
-    Example:\r
-    Struct("foo",\r
-        UBInt8("type"),\r
-        Switch("value", lambda ctx: ctx.type, {\r
-                1 : UBInt8("spam"),\r
-                2 : UBInt16("spam"),\r
-                3 : UBInt32("spam"),\r
-                4 : UBInt64("spam"),\r
-            }\r
-        ),\r
-    )\r
-    """\r
-    \r
-    class NoDefault(Construct):\r
-        def _parse(self, stream, context):\r
-            raise SwitchError("no default case defined")\r
-        def _build(self, obj, stream, context):\r
-            raise SwitchError("no default case defined")\r
-        def _sizeof(self, context):\r
-            raise SwitchError("no default case defined")\r
-    NoDefault = NoDefault("NoDefault")\r
-    \r
-    __slots__ = ["subcons", "keyfunc", "cases", "default", "include_key"]\r
-    \r
-    def __init__(self, name, keyfunc, cases, default = NoDefault, \r
-                 include_key = False):\r
-        Construct.__init__(self, name)\r
-        self._inherit_flags(*cases.values())\r
-        self.keyfunc = keyfunc\r
-        self.cases = cases\r
-        self.default = default\r
-        self.include_key = include_key\r
-        self._inherit_flags(*cases.values())\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        key = self.keyfunc(context)\r
-        obj = self.cases.get(key, self.default)._parse(stream, context)\r
-        if self.include_key:\r
-            return key, obj\r
-        else:\r
-            return obj\r
-    def _build(self, obj, stream, context):\r
-        if self.include_key:\r
-            key, obj = obj\r
-        else:\r
-            key = self.keyfunc(context)\r
-        case = self.cases.get(key, self.default)\r
-        case._build(obj, stream, context)\r
-    def _sizeof(self, context):\r
-        case = self.cases.get(self.keyfunc(context), self.default)\r
-        return case._sizeof(context)\r
-\r
-class Select(Construct):\r
-    """\r
-    Selects the first matching subconstruct. It will literally try each of\r
-    the subconstructs, until one matches.\r
-    \r
-    Notes:\r
-    * requires a seekable stream.\r
-    \r
-    Parameters:\r
-    * name - the name of the construct\r
-    * subcons - the subcons to try (order-sensitive)\r
-    * include_name - a keyword only argument, indicating whether to include \r
-      the name of the selected subcon in the return value of parsing. default\r
-      is false.\r
-    \r
-    Example:\r
-    Select("foo",\r
-        UBInt64("large"),\r
-        UBInt32("medium"),\r
-        UBInt16("small"),\r
-        UBInt8("tiny"),\r
-    )\r
-    """\r
-    __slots__ = ["subcons", "include_name"]\r
-    def __init__(self, name, *subcons, **kw):\r
-        include_name = kw.pop("include_name", False)\r
-        if kw:\r
-            raise TypeError("the only keyword argument accepted "\r
-                "is 'include_name'", kw)\r
-        Construct.__init__(self, name)\r
-        self.subcons = subcons\r
-        self.include_name = include_name\r
-        self._inherit_flags(*subcons)\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        for sc in self.subcons:\r
-            pos = stream.tell()\r
-            context2 = context.__copy__()\r
-            try:\r
-                obj = sc._parse(stream, context2)\r
-            except ConstructError:\r
-                stream.seek(pos)\r
-            else:\r
-                context.__update__(context2)\r
-                if self.include_name:\r
-                    return sc.name, obj\r
-                else:\r
-                    return obj\r
-        raise SelectError("no subconstruct matched")\r
-    def _build(self, obj, stream, context):\r
-        if self.include_name:\r
-            name, obj = obj\r
-            for sc in self.subcons:\r
-                if sc.name == name:\r
-                    sc._build(obj, stream, context)\r
-                    return\r
-        else: \r
-            for sc in self.subcons:\r
-                stream2 = StringIO()\r
-                context2 = context.__copy__()\r
-                try:\r
-                    sc._build(obj, stream2, context2)\r
-                except Exception:\r
-                    pass\r
-                else:\r
-                    context.__update__(context2)\r
-                    stream.write(stream2.getvalue())\r
-                    return\r
-        raise SelectError("no subconstruct matched", obj)\r
-    def _sizeof(self, context):\r
-        raise SizeofError("can't calculate size")\r
-\r
-\r
-#===============================================================================\r
-# stream manipulation\r
-#===============================================================================\r
-class Pointer(Subconstruct):\r
-    """\r
-    Changes the stream position to a given offset, where the construction\r
-    should take place, and restores the stream position when finished.\r
-    See also Anchor, OnDemand and OnDemandPointer.\r
-    \r
-    Notes:\r
-    * requires a seekable stream.\r
-    \r
-    Parameters:\r
-    * offsetfunc: a function that takes the context and returns an absolute \r
-      stream position, where the construction would take place\r
-    * subcon - the subcon to use at `offsetfunc()`\r
-    \r
-    Example:\r
-    Struct("foo",\r
-        UBInt32("spam_pointer"),\r
-        Pointer(lambda ctx: ctx.spam_pointer,\r
-            Array(5, UBInt8("spam"))\r
-        )\r
-    )\r
-    """\r
-    __slots__ = ["offsetfunc"]\r
-    def __init__(self, offsetfunc, subcon):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.offsetfunc = offsetfunc\r
-    def _parse(self, stream, context):\r
-        newpos = self.offsetfunc(context)\r
-        origpos = stream.tell()\r
-        stream.seek(newpos)\r
-        obj = self.subcon._parse(stream, context)\r
-        stream.seek(origpos)\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        newpos = self.offsetfunc(context)\r
-        origpos = stream.tell()\r
-        stream.seek(newpos)\r
-        self.subcon._build(obj, stream, context)\r
-        stream.seek(origpos)\r
-    def _sizeof(self, context):\r
-        return 0\r
-\r
-class Peek(Subconstruct):\r
-    """\r
-    Peeks at the stream: parses without changing the stream position.\r
-    See also Union. If the end of the stream is reached when peeking,\r
-    returns None.\r
-    \r
-    Notes:\r
-    * requires a seekable stream.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to peek at\r
-    * perform_build - whether or not to perform building. by default this \r
-      parameter is set to False, meaning building is a no-op.\r
-    \r
-    Example:\r
-    Peek(UBInt8("foo"))\r
-    """\r
-    __slots__ = ["perform_build"]\r
-    def __init__(self, subcon, perform_build = False):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.perform_build = perform_build\r
-    def _parse(self, stream, context):\r
-        pos = stream.tell()\r
-        try:\r
-            try:\r
-                return self.subcon._parse(stream, context)\r
-            except FieldError:\r
-                pass\r
-        finally:\r
-            stream.seek(pos)\r
-    def _build(self, obj, stream, context):\r
-        if self.perform_build:\r
-            self.subcon._build(obj, stream, context)\r
-    def _sizeof(self, context):\r
-        return 0\r
-\r
-class OnDemand(Subconstruct):\r
-    """\r
-    Allows for on-demand (lazy) parsing. When parsing, it will return a \r
-    LazyContainer that represents a pointer to the data, but does not actually\r
-    parses it from stream until it's "demanded".\r
-    By accessing the 'value' property of LazyContainers, you will demand the \r
-    data from the stream. The data will be parsed and cached for later use.\r
-    You can use the 'has_value' property to know whether the data has already \r
-    been demanded.\r
-    See also OnDemandPointer.\r
-    \r
-    Notes:\r
-    * requires a seekable stream.\r
-    \r
-    Parameters:\r
-    * subcon - \r
-    * advance_stream - whether or not to advance the stream position. by \r
-      default this is True, but if subcon is a pointer, this should be False.\r
-    * force_build - whether or not to force build. If set to False, and the\r
-      LazyContainer has not been demaned, building is a no-op.\r
-    \r
-    Example:\r
-    OnDemand(Array(10000, UBInt8("foo"))\r
-    """\r
-    __slots__ = ["advance_stream", "force_build"]\r
-    def __init__(self, subcon, advance_stream = True, force_build = True):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.advance_stream = advance_stream\r
-        self.force_build = force_build\r
-    def _parse(self, stream, context):\r
-        obj = LazyContainer(self.subcon, stream, stream.tell(), context)\r
-        if self.advance_stream:\r
-            stream.seek(self.subcon._sizeof(context), 1)\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        if not isinstance(obj, LazyContainer):\r
-            self.subcon._build(obj, stream, context)\r
-        elif self.force_build or obj.has_value:\r
-            self.subcon._build(obj.value, stream, context)\r
-        elif self.advance_stream:\r
-            stream.seek(self.subcon._sizeof(context), 1)\r
-\r
-class Buffered(Subconstruct):\r
-    """\r
-    Creates an in-memory buffered stream, which can undergo encoding and \r
-    decoding prior to being passed on to the subconstruct.\r
-    See also Bitwise.\r
-    \r
-    Note:\r
-    * Do not use pointers inside Buffered\r
-    \r
-    Parameters:\r
-    * subcon - the subcon which will operate on the buffer\r
-    * encoder - a function that takes a string and returns an encoded\r
-      string (used after building)\r
-    * decoder - a function that takes a string and returns a decoded\r
-      string (used before parsing)\r
-    * resizer - a function that takes the size of the subcon and "adjusts"\r
-      or "resizes" it according to the encoding/decoding process.\r
-    \r
-    Example:\r
-    Buffered(BitField("foo", 16),\r
-        encoder = decode_bin,\r
-        decoder = encode_bin,\r
-        resizer = lambda size: size / 8,\r
-    )\r
-    """\r
-    __slots__ = ["encoder", "decoder", "resizer"]\r
-    def __init__(self, subcon, decoder, encoder, resizer):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.encoder = encoder\r
-        self.decoder = decoder\r
-        self.resizer = resizer\r
-    def _parse(self, stream, context):\r
-        data = _read_stream(stream, self._sizeof(context))\r
-        stream2 = StringIO(self.decoder(data))\r
-        return self.subcon._parse(stream2, context)\r
-    def _build(self, obj, stream, context):\r
-        size = self._sizeof(context)\r
-        stream2 = StringIO()\r
-        self.subcon._build(obj, stream2, context)\r
-        data = self.encoder(stream2.getvalue())\r
-        assert len(data) == size\r
-        _write_stream(stream, self._sizeof(context), data)\r
-    def _sizeof(self, context):\r
-        return self.resizer(self.subcon._sizeof(context))\r
-\r
-class Restream(Subconstruct):\r
-    """\r
-    Wraps the stream with a read-wrapper (for parsing) or a \r
-    write-wrapper (for building). The stream wrapper can buffer the data\r
-    internally, reading it from- or writing it to the underlying stream \r
-    as needed. For example, BitStreamReader reads whole bytes from the \r
-    underlying stream, but returns them as individual bits. \r
-    See also Bitwise.\r
-    \r
-    When the parsing or building is done, the stream's close method \r
-    will be invoked. It can perform any finalization needed for the stream\r
-    wrapper, but it must not close the underlying stream.\r
-    \r
-    Note:\r
-    * Do not use pointers inside Restream\r
-    \r
-    Parameters:\r
-    * subcon - the subcon\r
-    * stream_reader - the read-wrapper\r
-    * stream_writer - the write wrapper\r
-    * resizer - a function that takes the size of the subcon and "adjusts"\r
-      or "resizes" it according to the encoding/decoding process.\r
-    \r
-    Example:\r
-    Restream(BitField("foo", 16),\r
-        stream_reader = BitStreamReader,\r
-        stream_writer = BitStreamWriter,\r
-        resizer = lambda size: size / 8,\r
-    )\r
-    """\r
-    __slots__ = ["stream_reader", "stream_writer", "resizer"]\r
-    def __init__(self, subcon, stream_reader, stream_writer, resizer):\r
-        Subconstruct.__init__(self, subcon)\r
-        self.stream_reader = stream_reader\r
-        self.stream_writer = stream_writer\r
-        self.resizer = resizer\r
-    def _parse(self, stream, context):\r
-        stream2 = self.stream_reader(stream)\r
-        obj = self.subcon._parse(stream2, context)\r
-        stream2.close()\r
-        return obj\r
-    def _build(self, obj, stream, context):\r
-        stream2 = self.stream_writer(stream)\r
-        self.subcon._build(obj, stream2, context)\r
-        stream2.close()\r
-    def _sizeof(self, context):\r
-        return self.resizer(self.subcon._sizeof(context))\r
-\r
-\r
-#===============================================================================\r
-# miscellaneous\r
-#===============================================================================\r
-class Reconfig(Subconstruct):\r
-    """\r
-    Reconfigures a subconstruct. Reconfig can be used to change the name and\r
-    set and clear flags of the inner subcon.\r
-    \r
-    Parameters:\r
-    * name - the new name\r
-    * subcon - the subcon to reconfigure\r
-    * setflags - the flags to set (default is 0)\r
-    * clearflags - the flags to clear (default is 0)\r
-    \r
-    Example:\r
-    Reconfig("foo", UBInt8("bar"))\r
-    """\r
-    __slots__ = []\r
-    def __init__(self, name, subcon, setflags = 0, clearflags = 0):\r
-        Construct.__init__(self, name, subcon.conflags)\r
-        self.subcon = subcon\r
-        self._set_flag(setflags)\r
-        self._clear_flag(clearflags)\r
-\r
-class Anchor(Construct):\r
-    """\r
-    Returns the "anchor" (stream position) at the point where it's inserted.\r
-    Useful for adjusting relative offsets to absolute positions, or to measure\r
-    sizes of constructs.\r
-    absolute pointer = anchor + relative offset\r
-    size = anchor_after - anchor_before\r
-    See also Pointer.\r
-    \r
-    Notes:\r
-    * requires a seekable stream.\r
-    \r
-    Parameters:\r
-    * name - the name of the anchor\r
-    \r
-    Example:\r
-    Struct("foo",\r
-        Anchor("base"),\r
-        UBInt8("relative_offset"),\r
-        Pointer(lambda ctx: ctx.relative_offset + ctx.base,\r
-            UBInt8("data")\r
-        )\r
-    )\r
-    """\r
-    __slots__ = []\r
-    def _parse(self, stream, context):\r
-        return stream.tell()\r
-    def _build(self, obj, stream, context):\r
-        context[self.name] = stream.tell()\r
-    def _sizeof(self, context):\r
-        return 0\r
-\r
-class Value(Construct):\r
-    """\r
-    A computed value.\r
-    \r
-    Parameters:\r
-    * name - the name of the value\r
-    * func - a function that takes the context and return the computed value\r
-    \r
-    Example:\r
-    Struct("foo",\r
-        UBInt8("width"),\r
-        UBInt8("height"),\r
-        Value("total_pixels", lambda ctx: ctx.width * ctx.height),\r
-    )\r
-    """\r
-    __slots__ = ["func"]\r
-    def __init__(self, name, func):\r
-        Construct.__init__(self, name)\r
-        self.func = func\r
-        self._set_flag(self.FLAG_DYNAMIC)\r
-    def _parse(self, stream, context):\r
-        return self.func(context)\r
-    def _build(self, obj, stream, context):\r
-        context[self.name] = self.func(context)\r
-    def _sizeof(self, context):\r
-        return 0\r
-\r
-#class Dynamic(Construct):\r
-#    """\r
-#    Dynamically creates a construct and uses it for parsing and building.\r
-#    This allows you to create change the construction tree on the fly.\r
-#    Deprecated.\r
-#    \r
-#    Parameters:\r
-#    * name - the name of the construct\r
-#    * factoryfunc - a function that takes the context and returns a new \r
-#      construct object which will be used for parsing and building.\r
-#    \r
-#    Example:\r
-#    def factory(ctx):\r
-#        if ctx.bar == 8:\r
-#            return UBInt8("spam")\r
-#        if ctx.bar == 9:\r
-#            return String("spam", 9)\r
-#    \r
-#    Struct("foo",\r
-#        UBInt8("bar"),\r
-#        Dynamic("spam", factory),\r
-#    )\r
-#    """\r
-#    __slots__ = ["factoryfunc"]\r
-#    def __init__(self, name, factoryfunc):\r
-#        Construct.__init__(self, name, self.FLAG_COPY_CONTEXT)\r
-#        self.factoryfunc = factoryfunc\r
-#        self._set_flag(self.FLAG_DYNAMIC)\r
-#    def _parse(self, stream, context):\r
-#        return self.factoryfunc(context)._parse(stream, context)\r
-#    def _build(self, obj, stream, context):\r
-#        return self.factoryfunc(context)._build(obj, stream, context)\r
-#    def _sizeof(self, context):\r
-#        return self.factoryfunc(context)._sizeof(context)\r
-\r
-class LazyBound(Construct):\r
-    """\r
-    Lazily bound construct, useful for constructs that need to make cyclic \r
-    references (linked-lists, expression trees, etc.).\r
-    \r
-    Parameters:\r
-    \r
-    \r
-    Example:\r
-    foo = Struct("foo",\r
-        UBInt8("bar"),\r
-        LazyBound("next", lambda: foo),\r
-    )\r
-    """\r
-    __slots__ = ["bindfunc", "bound"]\r
-    def __init__(self, name, bindfunc):\r
-        Construct.__init__(self, name)\r
-        self.bound = None\r
-        self.bindfunc = bindfunc\r
-    def _parse(self, stream, context):\r
-        if self.bound is None:\r
-            self.bound = self.bindfunc()\r
-        return self.bound._parse(stream, context)\r
-    def _build(self, obj, stream, context):\r
-        if self.bound is None:\r
-            self.bound = self.bindfunc()\r
-        self.bound._build(obj, stream, context)\r
-    def _sizeof(self, context):\r
-        if self.bound is None:\r
-            self.bound = self.bindfunc()\r
-        return self.bound._sizeof(context)\r
-\r
-class Pass(Construct):\r
-    """\r
-    A do-nothing construct, useful as the default case for Switch, or\r
-    to indicate Enums.\r
-    See also Switch and Enum.\r
-    \r
-    Notes:\r
-    * this construct is a singleton. do not try to instatiate it, as it \r
-      will not work :)\r
-    \r
-    Example:\r
-    Pass\r
-    """\r
-    __slots__ = []\r
-    def _parse(self, stream, context):\r
-        pass\r
-    def _build(self, obj, stream, context):\r
-        assert obj is None\r
-    def _sizeof(self, context):\r
-        return 0\r
-Pass = Pass(None)\r
-\r
-class Terminator(Construct):\r
-    """\r
-    Asserts the end of the stream has been reached at the point it's placed.\r
-    You can use this to ensure no more unparsed data follows.\r
-    \r
-    Notes:\r
-    * this construct is a singleton. do not try to instatiate it, as it \r
-      will not work :)\r
-    \r
-    Example:\r
-    Terminator\r
-    """\r
-    __slots__ = []\r
-    def _parse(self, stream, context):\r
-        if stream.read(1):\r
-            raise TerminatorError("expected end of stream")\r
-    def _build(self, obj, stream, context):\r
-        assert obj is None\r
-    def _sizeof(self, context):\r
-        return 0\r
-Terminator = Terminator(None)\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+from lib import StringIO, Packer
+from lib import Container, ListContainer, AttrDict, LazyContainer
+
+
+#===============================================================================
+# exceptions
+#===============================================================================
+class ConstructError(Exception):
+    __slots__ = []
+class FieldError(ConstructError):
+    __slots__ = []
+class SizeofError(ConstructError):
+    __slots__ = []
+class AdaptationError(ConstructError):
+    __slots__ = []
+class ArrayError(ConstructError):
+    __slots__ = []
+class RangeError(ConstructError):
+    __slots__ = []
+class SwitchError(ConstructError):
+    __slots__ = []
+class SelectError(ConstructError):
+    __slots__ = []
+class TerminatorError(ConstructError):
+    __slots__ = []
+
+#===============================================================================
+# abstract constructs
+#===============================================================================
+class Construct(object):
+    """
+    The mother of all constructs!
+    
+    User API:
+    * parse(buf) - parses an in-memory buffer (usually a string)
+    * parse_stream(stream) - parses a stream (in-memory, file, pipe, ...)
+    * build(obj) - builds the object into an in-memory buffer (a string)
+    * build_stream(obj, stream) - builds the object into the given stream
+    * sizeof(context) - calculates the size of the construct, if possible,
+      based on the context
+    
+    Overriable methods for subclassing:
+    * _parse(stream, context) - low-level parse from stream
+    * _build(obj, stream, context) - low-level build to stream
+    * _sizeof(context) - low-level compute size
+    
+    Flags API:
+    * _set_flag(flag) - sets the given flag/flags
+    * _clear_flag(flag) - clears the given flag/flags
+    * _inherit_flags(*subcons) - inherits the flag of subcons
+    * _is_flag(flag) - is the flag set? (predicate)
+    
+    Overridable methods for the copy-API:
+    * __getstate__() - returns a dict of the attributes of self
+    * __setstate__(attrs) - sets the attrs to self
+    
+    Attributes:
+    All constructs have a name and flags. The name is used for naming 
+    struct-members and context dicts. Note that the name must be a string or
+    None (if the name is not needed). A single underscore ("_") is a reserved
+    name, and so are names starting with a less-than character ("<"). The name
+    should be descriptive, short, and valid as a python identifier (although
+    these rules are not enforced). 
+    
+    The flags specify additional behavioral information about this construct.
+    The flags are used by enclosing constructs to determine a proper course 
+    of action. Usually, flags are "inherited", i.e., an enclosing construct
+    inherits the flags of its subconstruct. The enclosing construct may
+    set new flags or clear existing ones, as necessary.
+        
+    For example, if FLAG_COPY_CONTEXT is set, repeaters will pass a copy of 
+    the context for each iteration, which is necessary for OnDemand parsing.
+    """
+    FLAG_COPY_CONTEXT          = 0x0001
+    FLAG_DYNAMIC               = 0x0002
+    FLAG_EMBED                 = 0x0004
+    FLAG_NESTING               = 0x0008
+    
+    __slots__ = ["name", "conflags"]
+    def __init__(self, name, flags = 0):
+        if name is not None:
+            if type(name) is not str:
+                raise TypeError("name must be a string or None", name)
+            if name == "_" or name.startswith("<"):
+                raise ValueError("reserved name", name)
+        self.name = name
+        self.conflags = flags
+    def __repr__(self):
+        return "%s(%r)" % (self.__class__.__name__, self.name)
+    
+    def _set_flag(self, flag):
+        self.conflags |= flag
+    def _clear_flag(self, flag):
+        self.conflags &= ~flag
+    def _inherit_flags(self, *subcons):
+        for sc in subcons:
+            self._set_flag(sc.conflags)
+    def _is_flag(self, flag):
+        return bool(self.conflags & flag)
+    
+    def __getstate__(self):
+        attrs = {}
+        if hasattr(self, "__dict__"):
+            attrs.update(self.__dict__)
+        slots = []
+        c = self.__class__
+        while c is not None:
+            if hasattr(c, "__slots__"):
+                slots.extend(c.__slots__)
+            c = c.__base__
+        for name in slots:
+            if hasattr(self, name):
+                attrs[name] = getattr(self, name)
+        return attrs
+    def __setstate__(self, attrs):
+        for name, value in attrs.iteritems():
+            setattr(self, name, value)
+    def __copy__(self):
+        """returns a copy of this construct"""
+        self2 = object.__new__(self.__class__)
+        self2.__setstate__(self.__getstate__())
+        return self2
+    
+    def parse(self, data):
+        """parses data given as a buffer or a string (in-memory)"""
+        return self.parse_stream(StringIO(data))
+    def parse_stream(self, stream):
+        """parses data read directly from a stream"""
+        return self._parse(stream, AttrDict())
+    def _parse(self, stream, context):
+        raise NotImplementedError()
+    
+    def build(self, obj):
+        """builds an object in a string (in memory)"""
+        stream = StringIO()
+        self.build_stream(obj, stream)
+        return stream.getvalue()
+    def build_stream(self, obj, stream):
+        """builds an object into a stream"""
+        self._build(obj, stream, AttrDict())
+    def _build(self, obj, stream, context):
+        raise NotImplementedError()
+    
+    def sizeof(self, context = None):
+        """calculates the size of the construct (if possible) using the 
+        given context"""
+        if context is None:
+            context = AttrDict()
+        return self._sizeof(context)
+    def _sizeof(self, context):
+        raise SizeofError("can't calculate size")
+
+class Subconstruct(Construct):
+    """
+    Abstract subconstruct (wraps an inner construct, inheriting it's 
+    name and flags). 
+    
+    Parameters:
+    * subcon - the construct to wrap
+    """
+    __slots__ = ["subcon"]
+    def __init__(self, subcon):
+        Construct.__init__(self, subcon.name, subcon.conflags)
+        self.subcon = subcon
+    def _parse(self, stream, context):
+        return self.subcon._parse(stream, context)
+    def _build(self, obj, stream, context):
+        self.subcon._build(obj, stream, context)
+    def _sizeof(self, context):
+        return self.subcon._sizeof(context)
+
+class Adapter(Subconstruct):
+    """
+    Abstract adapter: calls _decode for parsing and _encode for building.
+    
+    Parameters:
+    * subcon - the construct to wrap
+    """
+    __slots__ = []
+    def _parse(self, stream, context):
+        return self._decode(self.subcon._parse(stream, context), context)
+    def _build(self, obj, stream, context):
+        self.subcon._build(self._encode(obj, context), stream, context)
+    def _decode(self, obj, context):
+        raise NotImplementedError()
+    def _encode(self, obj, context):
+        raise NotImplementedError()
+
+
+#===============================================================================
+# primitives
+#===============================================================================
+def _read_stream(stream, length):
+    if length < 0:
+        raise ValueError("length must be >= 0", length)
+    data = stream.read(length)
+    if len(data) != length:
+        raise FieldError("expected %d, found %d" % (length, len(data)))
+    return data
+
+def _write_stream(stream, length, data):
+    if length < 0:
+        raise ValueError("length must be >= 0", length)
+    if len(data) != length:
+        raise FieldError("expected %d, found %d" % (length, len(data)))
+    stream.write(data)
+
+class StaticField(Construct):
+    """
+    A field of a fixed size
+    
+    Parameters:
+    * name - the name of the field
+    * length - the length (an integer)
+    
+    Example:
+    StaticField("foo", 5)
+    """
+    __slots__ = ["length"]
+    def __init__(self, name, length):
+        Construct.__init__(self, name)
+        self.length = length
+    def _parse(self, stream, context):
+        return _read_stream(stream, self.length)
+    def _build(self, obj, stream, context):
+        _write_stream(stream, self.length, obj)
+    def _sizeof(self, context):
+        return self.length
+
+class FormatField(StaticField):
+    """
+    A field that uses python's built-in struct module to pack/unpack data
+    according to a format string.
+    Note: this field has been originally implemented as an Adapter, but it 
+    was made a construct for performance reasons.
+    
+    Parameters:
+    * name - the name
+    * endianity - "<" for little endian, ">" for big endian, or "=" for native
+    * format - a single format character
+    
+    Example:
+    FormatField("foo", ">", "L")
+    """
+    __slots__ = ["packer"]
+    def __init__(self, name, endianity, format):
+        if endianity not in (">", "<", "="):
+            raise ValueError("endianity must be be '=', '<', or '>'", 
+                endianity)
+        if len(format) != 1:
+            raise ValueError("must specify one and only one format char")
+        self.packer = Packer(endianity + format)
+        StaticField.__init__(self, name, self.packer.size)
+    def __getstate__(self):
+        attrs = StaticField.__getstate__(self)
+        attrs["packer"] = attrs["packer"].format
+        return attrs
+    def __setstate__(self, attrs):
+        attrs["packer"] = Packer(attrs["packer"])
+        return StaticField.__setstate__(attrs)
+    def _parse(self, stream, context):
+        try:
+            return self.packer.unpack(_read_stream(stream, self.length))[0]
+        except Exception, ex:
+            raise FieldError(ex)
+    def _build(self, obj, stream, context):
+        try:
+            _write_stream(stream, self.length, self.packer.pack(obj))
+        except Exception, ex:
+            raise FieldError(ex)
+
+class MetaField(Construct):
+    """
+    A field of a meta-length. The length is computed at runtime based on
+    the context.
+    
+    Parameters:
+    * name - the name of the field
+    * lengthfunc - a function that takes the context as a parameter and return
+      the length of the field
+    
+    Example:
+    MetaField("foo", lambda ctx: 5)
+    """
+    __slots__ = ["lengthfunc"]
+    def __init__(self, name, lengthfunc):
+        Construct.__init__(self, name)
+        self.lengthfunc = lengthfunc
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        return _read_stream(stream, self.lengthfunc(context))
+    def _build(self, obj, stream, context):
+        _write_stream(stream, self.lengthfunc(context), obj)
+    def _sizeof(self, context):
+        return self.lengthfunc(context)
+
+
+#===============================================================================
+# arrays and repeaters
+#===============================================================================
+class MetaArray(Subconstruct):
+    """
+    An array (repeater) of a meta-count. The array will iterate exactly 
+    `countfunc()` times. Will raise ArrayError if less elements are found.
+    See also Array, Range and RepeatUntil.
+    
+    Parameters:
+    * countfunc - a function that takes the context as a parameter and returns
+      the number of elements of the array (count)
+    * subcon - the subcon to repeat `countfunc()` times
+    
+    Example:
+    MetaArray(lambda ctx: 5, UBInt8("foo"))
+    """
+    __slots__ = ["countfunc"]
+    def __init__(self, countfunc, subcon):
+        Subconstruct.__init__(self, subcon)
+        self.countfunc = countfunc
+        self._clear_flag(self.FLAG_COPY_CONTEXT)
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        obj = ListContainer()
+        c = 0
+        count = self.countfunc(context)
+        try:
+            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:
+                while c < count:
+                    obj.append(self.subcon._parse(stream, context.__copy__()))
+                    c += 1
+            else:
+                while c < count:
+                    obj.append(self.subcon._parse(stream, context))
+                    c += 1
+        except ConstructError, ex:
+            raise ArrayError("expected %d, found %d" % (count, c), ex)
+        return obj
+    def _build(self, obj, stream, context):
+        count = self.countfunc(context)
+        if len(obj) != count:
+            raise ArrayError("expected %d, found %d" % (count, len(obj)))
+        if self.subcon.conflags & self.FLAG_COPY_CONTEXT:
+            for subobj in obj:
+                self.subcon._build(subobj, stream, context.__copy__())
+        else:
+            for subobj in obj:
+                self.subcon._build(subobj, stream, context)
+    def _sizeof(self, context):
+        return self.subcon._sizeof(context) * self.countfunc(context)
+
+class Range(Subconstruct):
+    """
+    A range-array. The subcon will iterate between `mincount` to `maxcount`
+    times. If less than `mincount` elements are found, raises RangeError.
+    See also GreedyRange and OptionalGreedyRange.
+    
+    Notes:
+    * requires a seekable stream.
+    
+    Parameters:
+    * mincount - the minimal count (an integer)
+    * maxcount - the maximal count (an integer)
+    * subcon - the subcon to repeat
+    
+    Example:
+    Range(5, 8, UBInt8("foo"))
+    """
+    __slots__ = ["mincount", "maxcout"]
+    def __init__(self, mincount, maxcout, subcon):
+        Subconstruct.__init__(self, subcon)
+        self.mincount = mincount
+        self.maxcout = maxcout
+        self._clear_flag(self.FLAG_COPY_CONTEXT)
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        obj = ListContainer()
+        c = 0
+        try:
+            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:
+                while c < self.maxcout:
+                    pos = stream.tell()
+                    obj.append(self.subcon._parse(stream, context.__copy__()))
+                    c += 1
+            else:
+                while c < self.maxcout:
+                    pos = stream.tell()
+                    obj.append(self.subcon._parse(stream, context))
+                    c += 1
+        except ConstructError:
+            if c < self.mincount:
+                raise RangeError("expected %d to %d, found %d" % 
+                    (self.mincount, self.maxcout, c))
+            stream.seek(pos)
+        return obj
+    def _build(self, obj, stream, context):
+        if len(obj) < self.mincount or len(obj) > self.maxcout:
+            raise RangeError("expected %d to %d, found %d" % 
+                (self.mincount, self.maxcout, len(obj)))
+        cnt = 0
+        try:
+            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:
+                for subobj in obj:
+                    self.subcon._build(subobj, stream, context.__copy__())
+                    cnt += 1
+            else:
+                for subobj in obj:
+                    self.subcon._build(subobj, stream, context)
+                    cnt += 1
+        except ConstructError:
+            if cnt < self.mincount:
+                raise RangeError("expected %d to %d, found %d" % 
+                    (self.mincount, self.maxcout, len(obj)))
+    def _sizeof(self, context):
+        raise SizeofError("can't calculate size")
+
+class RepeatUntil(Subconstruct):
+    """
+    An array that repeat until the predicate indicates it to stop. Note that
+    the last element (which caused the repeat to exit) is included in the 
+    return value.
+    
+    Parameters:
+    * predicate - a predicate function that takes (obj, context) and returns
+      True if the stop-condition is met, or False to continue.
+    * subcon - the subcon to repeat.
+    
+    Example:
+    # will read chars until \x00 (inclusive)
+    RepeatUntil(lambda obj, ctx: obj == "\x00",
+        Field("chars", 1)
+    )
+    """
+    __slots__ = ["predicate"]
+    def __init__(self, predicate, subcon):
+        Subconstruct.__init__(self, subcon)
+        self.predicate = predicate
+        self._clear_flag(self.FLAG_COPY_CONTEXT)
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        obj = []
+        try:
+            if self.subcon.conflags & self.FLAG_COPY_CONTEXT:
+                while True:
+                    subobj = self.subcon._parse(stream, context.__copy__())
+                    obj.append(subobj)
+                    if self.predicate(subobj, context):
+                        break
+            else:
+                while True:
+                    subobj = self.subcon._parse(stream, context)
+                    obj.append(subobj)
+                    if self.predicate(subobj, context):
+                        break
+        except ConstructError, ex:
+            raise ArrayError("missing terminator", ex)
+        return obj
+    def _build(self, obj, stream, context):
+        terminated = False
+        if self.subcon.conflags & self.FLAG_COPY_CONTEXT:
+            for subobj in obj:
+                self.subcon._build(subobj, stream, context.__copy__())
+                if self.predicate(subobj, context):
+                    terminated = True
+                    break
+        else:
+            for subobj in obj:
+                self.subcon._build(subobj, stream, context.__copy__())
+                if self.predicate(subobj, context):
+                    terminated = True
+                    break
+        if not terminated:
+            raise ArrayError("missing terminator")
+    def _sizeof(self, context):
+        raise SizeofError("can't calculate size")
+
+
+#===============================================================================
+# structures and sequences
+#===============================================================================
+class Struct(Construct):
+    """
+    A sequence of named constructs, similar to structs in C. The elements are
+    parsed and built in the order they are defined.
+    See also Embedded.
+    
+    Parameters:
+    * name - the name of the structure
+    * subcons - a sequence of subconstructs that make up this structure.
+    * nested - a keyword-only argument that indicates whether this struct 
+      creates a nested context. The default is True. This parameter is 
+      considered "advanced usage", and may be removed in the future.
+    
+    Example:
+    Struct("foo",
+        UBInt8("first_element"),
+        UBInt16("second_element"),
+        Padding(2),
+        UBInt8("third_element"),
+    )
+    """
+    __slots__ = ["subcons", "nested"]
+    def __init__(self, name, *subcons, **kw):
+        self.nested = kw.pop("nested", True)
+        if kw:
+            raise TypeError("the only keyword argument accepted is 'nested'", kw)
+        Construct.__init__(self, name)
+        self.subcons = subcons
+        self._inherit_flags(*subcons)
+        self._clear_flag(self.FLAG_EMBED)
+    def _parse(self, stream, context):
+        if "<obj>" in context:
+            obj = context["<obj>"]
+            del context["<obj>"]
+        else:
+            obj = Container()
+            if self.nested:
+                context = AttrDict(_ = context)
+        for sc in self.subcons:
+            if sc.conflags & self.FLAG_EMBED:
+                context["<obj>"] = obj
+                sc._parse(stream, context)
+            else:
+                subobj = sc._parse(stream, context)
+                if sc.name is not None:
+                    obj[sc.name] = subobj
+                    context[sc.name] = subobj
+        return obj
+    def _build(self, obj, stream, context):
+        if "<unnested>" in context:
+            del context["<unnested>"]
+        elif self.nested:
+            context = AttrDict(_ = context)
+        for sc in self.subcons:
+            if sc.conflags & self.FLAG_EMBED:
+                context["<unnested>"] = True
+                subobj = obj
+            elif sc.name is None:
+                subobj = None
+            else:
+                subobj = getattr(obj, sc.name)
+                context[sc.name] = subobj
+            sc._build(subobj, stream, context)
+    def _sizeof(self, context):
+        if self.nested:
+            context = AttrDict(_ = context)
+        return sum(sc._sizeof(context) for sc in self.subcons)
+
+class Sequence(Struct):
+    """
+    A sequence of unnamed constructs. The elements are parsed and built in the
+    order they are defined.
+    See also Embedded.
+    
+    Parameters:
+    * name - the name of the structure
+    * subcons - a sequence of subconstructs that make up this structure.
+    * nested - a keyword-only argument that indicates whether this struct 
+      creates a nested context. The default is True. This parameter is 
+      considered "advanced usage", and may be removed in the future.
+    
+    Example:
+    Sequence("foo",
+        UBInt8("first_element"),
+        UBInt16("second_element"),
+        Padding(2),
+        UBInt8("third_element"),
+    )
+    """
+    __slots__ = []
+    def _parse(self, stream, context):
+        if "<obj>" in context:
+            obj = context["<obj>"]
+            del context["<obj>"]
+        else:
+            obj = ListContainer()
+            if self.nested:
+                context = AttrDict(_ = context)
+        for sc in self.subcons:
+            if sc.conflags & self.FLAG_EMBED:
+                context["<obj>"] = obj
+                sc._parse(stream, context)
+            else:
+                subobj = sc._parse(stream, context)
+                if sc.name is not None:
+                    obj.append(subobj)
+                    context[sc.name] = subobj
+        return obj
+    def _build(self, obj, stream, context):
+        if "<unnested>" in context:
+            del context["<unnested>"]
+        elif self.nested:
+            context = AttrDict(_ = context)
+        objiter = iter(obj)
+        for sc in self.subcons:
+            if sc.conflags & self.FLAG_EMBED:
+                context["<unnested>"] = True
+                subobj = objiter
+            elif sc.name is None:
+                subobj = None
+            else:
+                subobj = objiter.next()
+                context[sc.name] = subobj
+            sc._build(subobj, stream, context)
+
+class Union(Construct):
+    """
+    a set of overlapping fields (like unions in C). when parsing, 
+    all fields read the same data; when building, only the first subcon
+    (called "master") is used. 
+    
+    Parameters:
+    * name - the name of the union
+    * master - the master subcon, i.e., the subcon used for building and 
+      calculating the total size
+    * subcons - additional subcons
+    
+    Example:
+    Union("what_are_four_bytes",
+        UBInt32("one_dword"),
+        Struct("two_words", UBInt16("first"), UBInt16("second")),
+        Struct("four_bytes", 
+            UBInt8("a"), 
+            UBInt8("b"), 
+            UBInt8("c"), 
+            UBInt8("d")
+        ),
+    )
+    """
+    __slots__ = ["parser", "builder"]
+    def __init__(self, name, master, *subcons, **kw):
+        Construct.__init__(self, name)
+        args = [Peek(sc) for sc in subcons]
+        args.append(MetaField(None, lambda ctx: master._sizeof(ctx)))
+        self.parser = Struct(name, Peek(master, perform_build = True), *args)
+        self.builder = Struct(name, master)
+    def _parse(self, stream, context):
+        return self.parser._parse(stream, context)
+    def _build(self, obj, stream, context):
+        return self.builder._build(obj, stream, context)
+    def _sizeof(self, context):
+        return self.builder._sizeof(context)
+
+#===============================================================================
+# conditional
+#===============================================================================
+class Switch(Construct):
+    """
+    A conditional branch. Switch will choose the case to follow based on
+    the return value of keyfunc. If no case is matched, and no default value 
+    is given, SwitchError will be raised.
+    See also Pass.
+    
+    Parameters:
+    * name - the name of the construct
+    * keyfunc - a function that takes the context and returns a key, which 
+      will ne used to choose the relevant case.
+    * cases - a dictionary mapping keys to constructs. the keys can be any 
+      values that may be returned by keyfunc.
+    * default - a default value to use when the key is not found in the cases.
+      if not supplied, an exception will be raised when the key is not found.
+      You can use the builtin construct Pass for 'do-nothing'.
+    * include_key - whether or not to include the key in the return value
+      of parsing. defualt is False.
+    
+    Example:
+    Struct("foo",
+        UBInt8("type"),
+        Switch("value", lambda ctx: ctx.type, {
+                1 : UBInt8("spam"),
+                2 : UBInt16("spam"),
+                3 : UBInt32("spam"),
+                4 : UBInt64("spam"),
+            }
+        ),
+    )
+    """
+    
+    class NoDefault(Construct):
+        def _parse(self, stream, context):
+            raise SwitchError("no default case defined")
+        def _build(self, obj, stream, context):
+            raise SwitchError("no default case defined")
+        def _sizeof(self, context):
+            raise SwitchError("no default case defined")
+    NoDefault = NoDefault("NoDefault")
+    
+    __slots__ = ["subcons", "keyfunc", "cases", "default", "include_key"]
+    
+    def __init__(self, name, keyfunc, cases, default = NoDefault, 
+                 include_key = False):
+        Construct.__init__(self, name)
+        self._inherit_flags(*cases.values())
+        self.keyfunc = keyfunc
+        self.cases = cases
+        self.default = default
+        self.include_key = include_key
+        self._inherit_flags(*cases.values())
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        key = self.keyfunc(context)
+        obj = self.cases.get(key, self.default)._parse(stream, context)
+        if self.include_key:
+            return key, obj
+        else:
+            return obj
+    def _build(self, obj, stream, context):
+        if self.include_key:
+            key, obj = obj
+        else:
+            key = self.keyfunc(context)
+        case = self.cases.get(key, self.default)
+        case._build(obj, stream, context)
+    def _sizeof(self, context):
+        case = self.cases.get(self.keyfunc(context), self.default)
+        return case._sizeof(context)
+
+class Select(Construct):
+    """
+    Selects the first matching subconstruct. It will literally try each of
+    the subconstructs, until one matches.
+    
+    Notes:
+    * requires a seekable stream.
+    
+    Parameters:
+    * name - the name of the construct
+    * subcons - the subcons to try (order-sensitive)
+    * include_name - a keyword only argument, indicating whether to include 
+      the name of the selected subcon in the return value of parsing. default
+      is false.
+    
+    Example:
+    Select("foo",
+        UBInt64("large"),
+        UBInt32("medium"),
+        UBInt16("small"),
+        UBInt8("tiny"),
+    )
+    """
+    __slots__ = ["subcons", "include_name"]
+    def __init__(self, name, *subcons, **kw):
+        include_name = kw.pop("include_name", False)
+        if kw:
+            raise TypeError("the only keyword argument accepted "
+                "is 'include_name'", kw)
+        Construct.__init__(self, name)
+        self.subcons = subcons
+        self.include_name = include_name
+        self._inherit_flags(*subcons)
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        for sc in self.subcons:
+            pos = stream.tell()
+            context2 = context.__copy__()
+            try:
+                obj = sc._parse(stream, context2)
+            except ConstructError:
+                stream.seek(pos)
+            else:
+                context.__update__(context2)
+                if self.include_name:
+                    return sc.name, obj
+                else:
+                    return obj
+        raise SelectError("no subconstruct matched")
+    def _build(self, obj, stream, context):
+        if self.include_name:
+            name, obj = obj
+            for sc in self.subcons:
+                if sc.name == name:
+                    sc._build(obj, stream, context)
+                    return
+        else: 
+            for sc in self.subcons:
+                stream2 = StringIO()
+                context2 = context.__copy__()
+                try:
+                    sc._build(obj, stream2, context2)
+                except Exception:
+                    pass
+                else:
+                    context.__update__(context2)
+                    stream.write(stream2.getvalue())
+                    return
+        raise SelectError("no subconstruct matched", obj)
+    def _sizeof(self, context):
+        raise SizeofError("can't calculate size")
+
+
+#===============================================================================
+# stream manipulation
+#===============================================================================
+class Pointer(Subconstruct):
+    """
+    Changes the stream position to a given offset, where the construction
+    should take place, and restores the stream position when finished.
+    See also Anchor, OnDemand and OnDemandPointer.
+    
+    Notes:
+    * requires a seekable stream.
+    
+    Parameters:
+    * offsetfunc: a function that takes the context and returns an absolute 
+      stream position, where the construction would take place
+    * subcon - the subcon to use at `offsetfunc()`
+    
+    Example:
+    Struct("foo",
+        UBInt32("spam_pointer"),
+        Pointer(lambda ctx: ctx.spam_pointer,
+            Array(5, UBInt8("spam"))
+        )
+    )
+    """
+    __slots__ = ["offsetfunc"]
+    def __init__(self, offsetfunc, subcon):
+        Subconstruct.__init__(self, subcon)
+        self.offsetfunc = offsetfunc
+    def _parse(self, stream, context):
+        newpos = self.offsetfunc(context)
+        origpos = stream.tell()
+        stream.seek(newpos)
+        obj = self.subcon._parse(stream, context)
+        stream.seek(origpos)
+        return obj
+    def _build(self, obj, stream, context):
+        newpos = self.offsetfunc(context)
+        origpos = stream.tell()
+        stream.seek(newpos)
+        self.subcon._build(obj, stream, context)
+        stream.seek(origpos)
+    def _sizeof(self, context):
+        return 0
+
+class Peek(Subconstruct):
+    """
+    Peeks at the stream: parses without changing the stream position.
+    See also Union. If the end of the stream is reached when peeking,
+    returns None.
+    
+    Notes:
+    * requires a seekable stream.
+    
+    Parameters:
+    * subcon - the subcon to peek at
+    * perform_build - whether or not to perform building. by default this 
+      parameter is set to False, meaning building is a no-op.
+    
+    Example:
+    Peek(UBInt8("foo"))
+    """
+    __slots__ = ["perform_build"]
+    def __init__(self, subcon, perform_build = False):
+        Subconstruct.__init__(self, subcon)
+        self.perform_build = perform_build
+    def _parse(self, stream, context):
+        pos = stream.tell()
+        try:
+            try:
+                return self.subcon._parse(stream, context)
+            except FieldError:
+                pass
+        finally:
+            stream.seek(pos)
+    def _build(self, obj, stream, context):
+        if self.perform_build:
+            self.subcon._build(obj, stream, context)
+    def _sizeof(self, context):
+        return 0
+
+class OnDemand(Subconstruct):
+    """
+    Allows for on-demand (lazy) parsing. When parsing, it will return a 
+    LazyContainer that represents a pointer to the data, but does not actually
+    parses it from stream until it's "demanded".
+    By accessing the 'value' property of LazyContainers, you will demand the 
+    data from the stream. The data will be parsed and cached for later use.
+    You can use the 'has_value' property to know whether the data has already 
+    been demanded.
+    See also OnDemandPointer.
+    
+    Notes:
+    * requires a seekable stream.
+    
+    Parameters:
+    * subcon - 
+    * advance_stream - whether or not to advance the stream position. by 
+      default this is True, but if subcon is a pointer, this should be False.
+    * force_build - whether or not to force build. If set to False, and the
+      LazyContainer has not been demaned, building is a no-op.
+    
+    Example:
+    OnDemand(Array(10000, UBInt8("foo"))
+    """
+    __slots__ = ["advance_stream", "force_build"]
+    def __init__(self, subcon, advance_stream = True, force_build = True):
+        Subconstruct.__init__(self, subcon)
+        self.advance_stream = advance_stream
+        self.force_build = force_build
+    def _parse(self, stream, context):
+        obj = LazyContainer(self.subcon, stream, stream.tell(), context)
+        if self.advance_stream:
+            stream.seek(self.subcon._sizeof(context), 1)
+        return obj
+    def _build(self, obj, stream, context):
+        if not isinstance(obj, LazyContainer):
+            self.subcon._build(obj, stream, context)
+        elif self.force_build or obj.has_value:
+            self.subcon._build(obj.value, stream, context)
+        elif self.advance_stream:
+            stream.seek(self.subcon._sizeof(context), 1)
+
+class Buffered(Subconstruct):
+    """
+    Creates an in-memory buffered stream, which can undergo encoding and 
+    decoding prior to being passed on to the subconstruct.
+    See also Bitwise.
+    
+    Note:
+    * Do not use pointers inside Buffered
+    
+    Parameters:
+    * subcon - the subcon which will operate on the buffer
+    * encoder - a function that takes a string and returns an encoded
+      string (used after building)
+    * decoder - a function that takes a string and returns a decoded
+      string (used before parsing)
+    * resizer - a function that takes the size of the subcon and "adjusts"
+      or "resizes" it according to the encoding/decoding process.
+    
+    Example:
+    Buffered(BitField("foo", 16),
+        encoder = decode_bin,
+        decoder = encode_bin,
+        resizer = lambda size: size / 8,
+    )
+    """
+    __slots__ = ["encoder", "decoder", "resizer"]
+    def __init__(self, subcon, decoder, encoder, resizer):
+        Subconstruct.__init__(self, subcon)
+        self.encoder = encoder
+        self.decoder = decoder
+        self.resizer = resizer
+    def _parse(self, stream, context):
+        data = _read_stream(stream, self._sizeof(context))
+        stream2 = StringIO(self.decoder(data))
+        return self.subcon._parse(stream2, context)
+    def _build(self, obj, stream, context):
+        size = self._sizeof(context)
+        stream2 = StringIO()
+        self.subcon._build(obj, stream2, context)
+        data = self.encoder(stream2.getvalue())
+        assert len(data) == size
+        _write_stream(stream, self._sizeof(context), data)
+    def _sizeof(self, context):
+        return self.resizer(self.subcon._sizeof(context))
+
+class Restream(Subconstruct):
+    """
+    Wraps the stream with a read-wrapper (for parsing) or a 
+    write-wrapper (for building). The stream wrapper can buffer the data
+    internally, reading it from- or writing it to the underlying stream 
+    as needed. For example, BitStreamReader reads whole bytes from the 
+    underlying stream, but returns them as individual bits. 
+    See also Bitwise.
+    
+    When the parsing or building is done, the stream's close method 
+    will be invoked. It can perform any finalization needed for the stream
+    wrapper, but it must not close the underlying stream.
+    
+    Note:
+    * Do not use pointers inside Restream
+    
+    Parameters:
+    * subcon - the subcon
+    * stream_reader - the read-wrapper
+    * stream_writer - the write wrapper
+    * resizer - a function that takes the size of the subcon and "adjusts"
+      or "resizes" it according to the encoding/decoding process.
+    
+    Example:
+    Restream(BitField("foo", 16),
+        stream_reader = BitStreamReader,
+        stream_writer = BitStreamWriter,
+        resizer = lambda size: size / 8,
+    )
+    """
+    __slots__ = ["stream_reader", "stream_writer", "resizer"]
+    def __init__(self, subcon, stream_reader, stream_writer, resizer):
+        Subconstruct.__init__(self, subcon)
+        self.stream_reader = stream_reader
+        self.stream_writer = stream_writer
+        self.resizer = resizer
+    def _parse(self, stream, context):
+        stream2 = self.stream_reader(stream)
+        obj = self.subcon._parse(stream2, context)
+        stream2.close()
+        return obj
+    def _build(self, obj, stream, context):
+        stream2 = self.stream_writer(stream)
+        self.subcon._build(obj, stream2, context)
+        stream2.close()
+    def _sizeof(self, context):
+        return self.resizer(self.subcon._sizeof(context))
+
+
+#===============================================================================
+# miscellaneous
+#===============================================================================
+class Reconfig(Subconstruct):
+    """
+    Reconfigures a subconstruct. Reconfig can be used to change the name and
+    set and clear flags of the inner subcon.
+    
+    Parameters:
+    * name - the new name
+    * subcon - the subcon to reconfigure
+    * setflags - the flags to set (default is 0)
+    * clearflags - the flags to clear (default is 0)
+    
+    Example:
+    Reconfig("foo", UBInt8("bar"))
+    """
+    __slots__ = []
+    def __init__(self, name, subcon, setflags = 0, clearflags = 0):
+        Construct.__init__(self, name, subcon.conflags)
+        self.subcon = subcon
+        self._set_flag(setflags)
+        self._clear_flag(clearflags)
+
+class Anchor(Construct):
+    """
+    Returns the "anchor" (stream position) at the point where it's inserted.
+    Useful for adjusting relative offsets to absolute positions, or to measure
+    sizes of constructs.
+    absolute pointer = anchor + relative offset
+    size = anchor_after - anchor_before
+    See also Pointer.
+    
+    Notes:
+    * requires a seekable stream.
+    
+    Parameters:
+    * name - the name of the anchor
+    
+    Example:
+    Struct("foo",
+        Anchor("base"),
+        UBInt8("relative_offset"),
+        Pointer(lambda ctx: ctx.relative_offset + ctx.base,
+            UBInt8("data")
+        )
+    )
+    """
+    __slots__ = []
+    def _parse(self, stream, context):
+        return stream.tell()
+    def _build(self, obj, stream, context):
+        context[self.name] = stream.tell()
+    def _sizeof(self, context):
+        return 0
+
+class Value(Construct):
+    """
+    A computed value.
+    
+    Parameters:
+    * name - the name of the value
+    * func - a function that takes the context and return the computed value
+    
+    Example:
+    Struct("foo",
+        UBInt8("width"),
+        UBInt8("height"),
+        Value("total_pixels", lambda ctx: ctx.width * ctx.height),
+    )
+    """
+    __slots__ = ["func"]
+    def __init__(self, name, func):
+        Construct.__init__(self, name)
+        self.func = func
+        self._set_flag(self.FLAG_DYNAMIC)
+    def _parse(self, stream, context):
+        return self.func(context)
+    def _build(self, obj, stream, context):
+        context[self.name] = self.func(context)
+    def _sizeof(self, context):
+        return 0
+
+#class Dynamic(Construct):
+#    """
+#    Dynamically creates a construct and uses it for parsing and building.
+#    This allows you to create change the construction tree on the fly.
+#    Deprecated.
+#    
+#    Parameters:
+#    * name - the name of the construct
+#    * factoryfunc - a function that takes the context and returns a new 
+#      construct object which will be used for parsing and building.
+#    
+#    Example:
+#    def factory(ctx):
+#        if ctx.bar == 8:
+#            return UBInt8("spam")
+#        if ctx.bar == 9:
+#            return String("spam", 9)
+#    
+#    Struct("foo",
+#        UBInt8("bar"),
+#        Dynamic("spam", factory),
+#    )
+#    """
+#    __slots__ = ["factoryfunc"]
+#    def __init__(self, name, factoryfunc):
+#        Construct.__init__(self, name, self.FLAG_COPY_CONTEXT)
+#        self.factoryfunc = factoryfunc
+#        self._set_flag(self.FLAG_DYNAMIC)
+#    def _parse(self, stream, context):
+#        return self.factoryfunc(context)._parse(stream, context)
+#    def _build(self, obj, stream, context):
+#        return self.factoryfunc(context)._build(obj, stream, context)
+#    def _sizeof(self, context):
+#        return self.factoryfunc(context)._sizeof(context)
+
+class LazyBound(Construct):
+    """
+    Lazily bound construct, useful for constructs that need to make cyclic 
+    references (linked-lists, expression trees, etc.).
+    
+    Parameters:
+    
+    
+    Example:
+    foo = Struct("foo",
+        UBInt8("bar"),
+        LazyBound("next", lambda: foo),
+    )
+    """
+    __slots__ = ["bindfunc", "bound"]
+    def __init__(self, name, bindfunc):
+        Construct.__init__(self, name)
+        self.bound = None
+        self.bindfunc = bindfunc
+    def _parse(self, stream, context):
+        if self.bound is None:
+            self.bound = self.bindfunc()
+        return self.bound._parse(stream, context)
+    def _build(self, obj, stream, context):
+        if self.bound is None:
+            self.bound = self.bindfunc()
+        self.bound._build(obj, stream, context)
+    def _sizeof(self, context):
+        if self.bound is None:
+            self.bound = self.bindfunc()
+        return self.bound._sizeof(context)
+
+class Pass(Construct):
+    """
+    A do-nothing construct, useful as the default case for Switch, or
+    to indicate Enums.
+    See also Switch and Enum.
+    
+    Notes:
+    * this construct is a singleton. do not try to instatiate it, as it 
+      will not work :)
+    
+    Example:
+    Pass
+    """
+    __slots__ = []
+    def _parse(self, stream, context):
+        pass
+    def _build(self, obj, stream, context):
+        assert obj is None
+    def _sizeof(self, context):
+        return 0
+Pass = Pass(None)
+
+class Terminator(Construct):
+    """
+    Asserts the end of the stream has been reached at the point it's placed.
+    You can use this to ensure no more unparsed data follows.
+    
+    Notes:
+    * this construct is a singleton. do not try to instatiate it, as it 
+      will not work :)
+    
+    Example:
+    Terminator
+    """
+    __slots__ = []
+    def _parse(self, stream, context):
+        if stream.read(1):
+            raise TerminatorError("expected end of stream")
+    def _build(self, obj, stream, context):
+        assert obj is None
+    def _sizeof(self, context):
+        return 0
+Terminator = Terminator(None)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index 47e47c6eb94beab7e06913065097e4eb97d41641..b2df46558273ae9e2603c0420af2886157c6358c 100644 (file)
-"""\r
-Debugging utilities for constructs\r
-"""\r
-import sys\r
-import traceback\r
-import pdb\r
-import inspect\r
-from core import Construct, Subconstruct\r
-from lib import HexString, Container, ListContainer, AttrDict\r
-\r
-\r
-class Probe(Construct):\r
-    """\r
-    A probe: dumps the context, stack frames, and stream content to the screen\r
-    to aid the debugging process.\r
-    See also Debugger.\r
-    \r
-    Parameters:\r
-    * name - the display name\r
-    * show_stream - whether or not to show stream contents. default is True. \r
-      the stream must be seekable.\r
-    * show_context - whether or not to show the context. default is True.\r
-    * show_stack - whether or not to show the upper stack frames. default \r
-      is True.\r
-    * stream_lookahead - the number of bytes to dump when show_stack is set.\r
-      default is 100.\r
-    \r
-    Example:\r
-    Struct("foo",\r
-        UBInt8("a"),\r
-        Probe("between a and b"),\r
-        UBInt8("b"),\r
-    )\r
-    """\r
-    __slots__ = [\r
-        "printname", "show_stream", "show_context", "show_stack", \r
-        "stream_lookahead"\r
-    ]\r
-    counter = 0\r
-    \r
-    def __init__(self, name = None, show_stream = True, \r
-                 show_context = True, show_stack = True, \r
-                 stream_lookahead = 100):\r
-        Construct.__init__(self, None)\r
-        if name is None:\r
-            Probe.counter += 1\r
-            name = "<unnamed %d>" % (Probe.counter,)\r
-        self.printname = name\r
-        self.show_stream = show_stream\r
-        self.show_context = show_context\r
-        self.show_stack = show_stack\r
-        self.stream_lookahead = stream_lookahead\r
-    def __repr__(self):\r
-        return "%s(%r)" % (self.__class__.__name__, self.printname)\r
-    def _parse(self, stream, context):\r
-        self.printout(stream, context)\r
-    def _build(self, obj, stream, context):\r
-        self.printout(stream, context)\r
-    def _sizeof(self, context):\r
-        return 0\r
-    \r
-    def printout(self, stream, context):\r
-        obj = Container()\r
-        if self.show_stream:\r
-            obj.stream_position = stream.tell()\r
-            follows = stream.read(self.stream_lookahead)\r
-            if not follows:\r
-                obj.following_stream_data = "EOF reached"\r
-            else:\r
-                stream.seek(-len(follows), 1)\r
-                obj.following_stream_data = HexString(follows)\r
-            print\r
-        \r
-        if self.show_context:\r
-            obj.context = context\r
-        \r
-        if self.show_stack:\r
-            obj.stack = ListContainer()\r
-            frames = [s[0] for s in inspect.stack()][1:-1]\r
-            frames.reverse()\r
-            for f in frames:\r
-                a = AttrDict()\r
-                a.__update__(f.f_locals)\r
-                obj.stack.append(a)\r
-        \r
-        print "=" * 80\r
-        print "Probe", self.printname\r
-        print obj\r
-        print "=" * 80\r
-\r
-class Debugger(Subconstruct):\r
-    """\r
-    A pdb-based debugger. When an exception occurs in the subcon, a debugger\r
-    will appear and allow you to debug the error (and even fix on-the-fly).\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to debug\r
-    \r
-    Example:\r
-    Debugger(\r
-        Enum(UBInt8("foo"),\r
-            a = 1,\r
-            b = 2,\r
-            c = 3\r
-        )\r
-    )\r
-    """\r
-    __slots__ = ["retval"]\r
-    def _parse(self, stream, context):\r
-        try:\r
-            return self.subcon._parse(stream, context)\r
-        except Exception:\r
-            self.retval = NotImplemented\r
-            self.handle_exc("(you can set the value of 'self.retval', "\r
-                "which will be returned)")\r
-            if self.retval is NotImplemented:\r
-                raise\r
-            else:\r
-                return self.retval\r
-    def _build(self, obj, stream, context):\r
-        try:\r
-            self.subcon._build(obj, stream, context)\r
-        except Exception:\r
-            self.handle_exc()\r
-    def handle_exc(self, msg = None):\r
-        print "=" * 80\r
-        print "Debugging exception of %s:" % (self.subcon,)\r
-        print "".join(traceback.format_exception(*sys.exc_info())[1:])\r
-        if msg:\r
-            print msg\r
-        pdb.post_mortem(sys.exc_info()[2])\r
-        print "=" * 80\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+"""
+Debugging utilities for constructs
+"""
+import sys
+import traceback
+import pdb
+import inspect
+from core import Construct, Subconstruct
+from lib import HexString, Container, ListContainer, AttrDict
+
+
+class Probe(Construct):
+    """
+    A probe: dumps the context, stack frames, and stream content to the screen
+    to aid the debugging process.
+    See also Debugger.
+    
+    Parameters:
+    * name - the display name
+    * show_stream - whether or not to show stream contents. default is True. 
+      the stream must be seekable.
+    * show_context - whether or not to show the context. default is True.
+    * show_stack - whether or not to show the upper stack frames. default 
+      is True.
+    * stream_lookahead - the number of bytes to dump when show_stack is set.
+      default is 100.
+    
+    Example:
+    Struct("foo",
+        UBInt8("a"),
+        Probe("between a and b"),
+        UBInt8("b"),
+    )
+    """
+    __slots__ = [
+        "printname", "show_stream", "show_context", "show_stack", 
+        "stream_lookahead"
+    ]
+    counter = 0
+    
+    def __init__(self, name = None, show_stream = True, 
+                 show_context = True, show_stack = True, 
+                 stream_lookahead = 100):
+        Construct.__init__(self, None)
+        if name is None:
+            Probe.counter += 1
+            name = "<unnamed %d>" % (Probe.counter,)
+        self.printname = name
+        self.show_stream = show_stream
+        self.show_context = show_context
+        self.show_stack = show_stack
+        self.stream_lookahead = stream_lookahead
+    def __repr__(self):
+        return "%s(%r)" % (self.__class__.__name__, self.printname)
+    def _parse(self, stream, context):
+        self.printout(stream, context)
+    def _build(self, obj, stream, context):
+        self.printout(stream, context)
+    def _sizeof(self, context):
+        return 0
+    
+    def printout(self, stream, context):
+        obj = Container()
+        if self.show_stream:
+            obj.stream_position = stream.tell()
+            follows = stream.read(self.stream_lookahead)
+            if not follows:
+                obj.following_stream_data = "EOF reached"
+            else:
+                stream.seek(-len(follows), 1)
+                obj.following_stream_data = HexString(follows)
+            print
+        
+        if self.show_context:
+            obj.context = context
+        
+        if self.show_stack:
+            obj.stack = ListContainer()
+            frames = [s[0] for s in inspect.stack()][1:-1]
+            frames.reverse()
+            for f in frames:
+                a = AttrDict()
+                a.__update__(f.f_locals)
+                obj.stack.append(a)
+        
+        print "=" * 80
+        print "Probe", self.printname
+        print obj
+        print "=" * 80
+
+class Debugger(Subconstruct):
+    """
+    A pdb-based debugger. When an exception occurs in the subcon, a debugger
+    will appear and allow you to debug the error (and even fix on-the-fly).
+    
+    Parameters:
+    * subcon - the subcon to debug
+    
+    Example:
+    Debugger(
+        Enum(UBInt8("foo"),
+            a = 1,
+            b = 2,
+            c = 3
+        )
+    )
+    """
+    __slots__ = ["retval"]
+    def _parse(self, stream, context):
+        try:
+            return self.subcon._parse(stream, context)
+        except Exception:
+            self.retval = NotImplemented
+            self.handle_exc("(you can set the value of 'self.retval', "
+                "which will be returned)")
+            if self.retval is NotImplemented:
+                raise
+            else:
+                return self.retval
+    def _build(self, obj, stream, context):
+        try:
+            self.subcon._build(obj, stream, context)
+        except Exception:
+            self.handle_exc()
+    def handle_exc(self, msg = None):
+        print "=" * 80
+        print "Debugging exception of %s:" % (self.subcon,)
+        print "".join(traceback.format_exception(*sys.exc_info())[1:])
+        if msg:
+            print msg
+        pdb.post_mortem(sys.exc_info()[2])
+        print "=" * 80
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index 23f08202427f20da2a4bccc58ad74344d1c28fa8..84d88dbe9ea95a1339bd954a79e6cc11cde75d08 100644 (file)
@@ -1,10 +1,10 @@
-from binary import int_to_bin, bin_to_int, swap_bytes, encode_bin, decode_bin\r
-from bitstream import BitStreamReader, BitStreamWriter\r
-from container import (Container, AttrDict, FlagsContainer, \r
-    ListContainer, LazyContainer)\r
-from hex import HexString, hexdump\r
-from utils import Packer, StringIO\r
-\r
-\r
-\r
-\r
+from binary import int_to_bin, bin_to_int, swap_bytes, encode_bin, decode_bin
+from bitstream import BitStreamReader, BitStreamWriter
+from container import (Container, AttrDict, FlagsContainer, 
+    ListContainer, LazyContainer)
+from hex import HexString, hexdump
+from utils import Packer, StringIO
+
+
+
+
index 971882ea4893a72c669ed36957c6a80ccd977e53..b348da24a53f3d3bff6a67eac5b6d042b3a646db 100644 (file)
@@ -1,61 +1,61 @@
-def int_to_bin(number, width = 32):\r
-    if number < 0:\r
-        number += 1 << width\r
-    i = width - 1\r
-    bits = ["\x00"] * width\r
-    while number and i >= 0:\r
-        bits[i] = "\x00\x01"[number & 1]\r
-        number >>= 1\r
-        i -= 1\r
-    return "".join(bits)\r
-\r
-_bit_values = {"\x00" : 0, "\x01" : 1, "0" : 0, "1" : 1}\r
-def bin_to_int(bits, signed = False):\r
-    number = 0\r
-    bias = 0\r
-    if signed and _bit_values[bits[0]] == 1:\r
-        bits = bits[1:]\r
-        bias = 1 << len(bits)\r
-    for b in bits:\r
-        number <<= 1\r
-        number |= _bit_values[b]\r
-    return number - bias\r
-\r
-def swap_bytes(bits, bytesize = 8):\r
-    i = 0\r
-    l = len(bits)\r
-    output = [""] * ((l // bytesize) + 1)\r
-    j = len(output) - 1\r
-    while i < l:\r
-        output[j] = bits[i : i + bytesize]\r
-        i += bytesize\r
-        j -= 1\r
-    return "".join(output)\r
-\r
-_char_to_bin = {}\r
-_bin_to_char = {}\r
-for i in range(256):\r
-    ch = chr(i)\r
-    bin = int_to_bin(i, 8)\r
-    _char_to_bin[ch] = bin\r
-    _bin_to_char[bin] = ch\r
-    _bin_to_char[bin] = ch\r
-\r
-def encode_bin(data):\r
-    return "".join(_char_to_bin[ch] for ch in data)\r
-\r
-def decode_bin(data):\r
-    assert len(data) & 7 == 0, "data length must be a multiple of 8"\r
-    i = 0\r
-    j = 0\r
-    l = len(data) // 8\r
-    chars = [""] * l\r
-    while j < l:\r
-        chars[j] = _bin_to_char[data[i:i+8]]\r
-        i += 8\r
-        j += 1\r
-    return "".join(chars)\r
-\r
-\r
-\r
-\r
+def int_to_bin(number, width = 32):
+    if number < 0:
+        number += 1 << width
+    i = width - 1
+    bits = ["\x00"] * width
+    while number and i >= 0:
+        bits[i] = "\x00\x01"[number & 1]
+        number >>= 1
+        i -= 1
+    return "".join(bits)
+
+_bit_values = {"\x00" : 0, "\x01" : 1, "0" : 0, "1" : 1}
+def bin_to_int(bits, signed = False):
+    number = 0
+    bias = 0
+    if signed and _bit_values[bits[0]] == 1:
+        bits = bits[1:]
+        bias = 1 << len(bits)
+    for b in bits:
+        number <<= 1
+        number |= _bit_values[b]
+    return number - bias
+
+def swap_bytes(bits, bytesize = 8):
+    i = 0
+    l = len(bits)
+    output = [""] * ((l // bytesize) + 1)
+    j = len(output) - 1
+    while i < l:
+        output[j] = bits[i : i + bytesize]
+        i += bytesize
+        j -= 1
+    return "".join(output)
+
+_char_to_bin = {}
+_bin_to_char = {}
+for i in range(256):
+    ch = chr(i)
+    bin = int_to_bin(i, 8)
+    _char_to_bin[ch] = bin
+    _bin_to_char[bin] = ch
+    _bin_to_char[bin] = ch
+
+def encode_bin(data):
+    return "".join(_char_to_bin[ch] for ch in data)
+
+def decode_bin(data):
+    assert len(data) & 7 == 0, "data length must be a multiple of 8"
+    i = 0
+    j = 0
+    l = len(data) // 8
+    chars = [""] * l
+    while j < l:
+        chars[j] = _bin_to_char[data[i:i+8]]
+        i += 8
+        j += 1
+    return "".join(chars)
+
+
+
+
index ff56be6f604ef152dd041897c6fa45d5e022e539..e4738648d2a5a07d20646643ca62f6cc5837874a 100644 (file)
@@ -1,80 +1,80 @@
-from binary import encode_bin, decode_bin\r
-\r
-\r
-class BitStreamReader(object):\r
-    __slots__ = ["substream", "buffer", "total_size"]\r
-    def __init__(self, substream):\r
-        self.substream = substream\r
-        self.total_size = 0\r
-        self.buffer = ""\r
-    def close(self):\r
-        if self.total_size % 8 != 0:\r
-            raise ValueError("total size of read data must be a multiple of 8",\r
-                self.total_size)\r
-    def tell(self):\r
-        return self.substream.tell()\r
-    def seek(self, pos, whence = 0):\r
-        self.buffer = ""\r
-        self.total_size = 0\r
-        self.substream.seek(pos, whence)\r
-    def read(self, count):\r
-        assert count >= 0\r
-        l = len(self.buffer)\r
-        if count == 0:\r
-            data = ""\r
-        elif count <= l:\r
-            data = self.buffer[:count]\r
-            self.buffer = self.buffer[count:]\r
-        else:\r
-            data = self.buffer\r
-            count -= l\r
-            bytes = count // 8\r
-            if count & 7: \r
-                bytes += 1\r
-            buf = encode_bin(self.substream.read(bytes))\r
-            data += buf[:count]\r
-            self.buffer = buf[count:]\r
-        self.total_size += len(data)\r
-        return data\r
-\r
-\r
-class BitStreamWriter(object):\r
-    __slots__ = ["substream", "buffer", "pos"]\r
-    def __init__(self, substream):\r
-        self.substream = substream\r
-        self.buffer = []\r
-        self.pos = 0\r
-    def close(self):\r
-        self.flush()\r
-    def flush(self):\r
-        bytes = decode_bin("".join(self.buffer))\r
-        self.substream.write(bytes)\r
-        self.buffer = []\r
-        self.pos = 0\r
-    def tell(self):\r
-        return self.substream.tell() + self.pos // 8\r
-    def seek(self, pos, whence = 0):\r
-        self.flush()\r
-        self.substream.seek(pos, whence)\r
-    def write(self, data):\r
-        if not data:\r
-            return\r
-        if type(data) is not str:\r
-            raise TypeError("data must be a string, not %r" % (type(data),))\r
-        self.buffer.append(data)\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+from binary import encode_bin, decode_bin
+
+
+class BitStreamReader(object):
+    __slots__ = ["substream", "buffer", "total_size"]
+    def __init__(self, substream):
+        self.substream = substream
+        self.total_size = 0
+        self.buffer = ""
+    def close(self):
+        if self.total_size % 8 != 0:
+            raise ValueError("total size of read data must be a multiple of 8",
+                self.total_size)
+    def tell(self):
+        return self.substream.tell()
+    def seek(self, pos, whence = 0):
+        self.buffer = ""
+        self.total_size = 0
+        self.substream.seek(pos, whence)
+    def read(self, count):
+        assert count >= 0
+        l = len(self.buffer)
+        if count == 0:
+            data = ""
+        elif count <= l:
+            data = self.buffer[:count]
+            self.buffer = self.buffer[count:]
+        else:
+            data = self.buffer
+            count -= l
+            bytes = count // 8
+            if count & 7: 
+                bytes += 1
+            buf = encode_bin(self.substream.read(bytes))
+            data += buf[:count]
+            self.buffer = buf[count:]
+        self.total_size += len(data)
+        return data
+
+
+class BitStreamWriter(object):
+    __slots__ = ["substream", "buffer", "pos"]
+    def __init__(self, substream):
+        self.substream = substream
+        self.buffer = []
+        self.pos = 0
+    def close(self):
+        self.flush()
+    def flush(self):
+        bytes = decode_bin("".join(self.buffer))
+        self.substream.write(bytes)
+        self.buffer = []
+        self.pos = 0
+    def tell(self):
+        return self.substream.tell() + self.pos // 8
+    def seek(self, pos, whence = 0):
+        self.flush()
+        self.substream.seek(pos, whence)
+    def write(self, data):
+        if not data:
+            return
+        if type(data) is not str:
+            raise TypeError("data must be a string, not %r" % (type(data),))
+        self.buffer.append(data)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index 66f8ab46d054cd475b2c74b85eb4a3c7c6670177..4b2f727225216e25ecdf67794af720635793a0cb 100644 (file)
-def recursion_lock(retval, lock_name = "__recursion_lock__"):\r
-    def decorator(func):\r
-        def wrapper(self, *args, **kw):\r
-            if getattr(self, lock_name, False):\r
-                return retval\r
-            setattr(self, lock_name, True)\r
-            try:\r
-                return func(self, *args, **kw)\r
-            finally:\r
-                setattr(self, lock_name, False)\r
-        wrapper.__name__ = func.__name__\r
-        return wrapper\r
-    return decorator\r
-\r
-class Container(object):\r
-    """\r
-    A generic container of attributes\r
-    """\r
-    __slots__ = ["__dict__", "__attrs__"]\r
-    def __init__(self, **kw):\r
-        self.__dict__.update(kw)\r
-        object.__setattr__(self, "__attrs__", kw.keys())\r
-    \r
-    def __eq__(self, other):\r
-        try:\r
-            return self.__dict__ == other.__dict__\r
-        except AttributeError:\r
-            return False\r
-    def __ne__(self, other):\r
-        return not (self == other)\r
-    \r
-    def __delattr__(self, name):\r
-        object.__delattr__(self, name)\r
-        self.__attrs__.remove(name)\r
-    def __setattr__(self, name, value):\r
-        d = self.__dict__\r
-        if name not in d:\r
-            self.__attrs__.append(name)\r
-        d[name] = value\r
-    def __getitem__(self, name):\r
-        return self.__dict__[name]\r
-    def __delitem__(self, name):\r
-        self.__delattr__(name)\r
-    def __setitem__(self, name, value):\r
-        self.__setattr__(name, value)\r
-    def __update__(self, obj):\r
-        for name in obj.__attrs__:\r
-            self[name] = obj[name]\r
-    def __copy__(self):\r
-        new = self.__class__()\r
-        new.__attrs__ = self.__attrs__[:]\r
-        new.__dict__ = self.__dict__.copy()\r
-        return new\r
-    \r
-    @recursion_lock("<...>")\r
-    def __repr__(self):\r
-        attrs = sorted("%s = %r" % (k, v) \r
-            for k, v in self.__dict__.iteritems() \r
-            if not k.startswith("_"))\r
-        return "%s(%s)" % (self.__class__.__name__, ", ".join(attrs))\r
-    def __str__(self):\r
-        return self.__pretty_str__()\r
-    @recursion_lock("<...>")\r
-    def __pretty_str__(self, nesting = 1, indentation = "    "):\r
-        attrs = []\r
-        ind = indentation * nesting\r
-        for k in self.__attrs__:\r
-            v = self.__dict__[k]\r
-            if not k.startswith("_"):\r
-                text = [ind, k, " = "]\r
-                if hasattr(v, "__pretty_str__"):\r
-                    text.append(v.__pretty_str__(nesting + 1, indentation))\r
-                else:\r
-                    text.append(repr(v))\r
-                attrs.append("".join(text))\r
-        if not attrs:\r
-            return "%s()" % (self.__class__.__name__,)\r
-        attrs.insert(0, self.__class__.__name__ + ":")\r
-        return "\n".join(attrs)\r
-\r
-class FlagsContainer(Container):\r
-    """\r
-    A container providing pretty-printing for flags. Only set flags are \r
-    displayed. \r
-    """\r
-    def __pretty_str__(self, nesting = 1, indentation = "    "):\r
-        attrs = []\r
-        ind = indentation * nesting\r
-        for k in self.__attrs__:\r
-            v = self.__dict__[k]\r
-            if not k.startswith("_") and v:\r
-                attrs.append(ind + k)\r
-        if not attrs:\r
-            return "%s()" % (self.__class__.__name__,)\r
-        attrs.insert(0, self.__class__.__name__+ ":")\r
-        return "\n".join(attrs)\r
-\r
-class ListContainer(list):\r
-    """\r
-    A container for lists\r
-    """\r
-    __slots__ = ["__recursion_lock__"]\r
-    def __str__(self):\r
-        return self.__pretty_str__()\r
-    @recursion_lock("[...]")\r
-    def __pretty_str__(self, nesting = 1, indentation = "    "):\r
-        if not self:\r
-            return "[]"\r
-        ind = indentation * nesting\r
-        lines = ["["]\r
-        for elem in self:\r
-            lines.append("\n")\r
-            lines.append(ind)\r
-            if hasattr(elem, "__pretty_str__"):\r
-                lines.append(elem.__pretty_str__(nesting + 1, indentation))\r
-            else:\r
-                lines.append(repr(elem))\r
-        lines.append("\n")\r
-        lines.append(indentation * (nesting - 1))\r
-        lines.append("]")\r
-        return "".join(lines)\r
-\r
-class AttrDict(object):\r
-    """\r
-    A dictionary that can be accessed both using indexing and attributes,\r
-    i.e., \r
-        x = AttrDict()\r
-        x.foo = 5\r
-        print x["foo"]\r
-    """\r
-    __slots__ = ["__dict__"]\r
-    def __init__(self, **kw):\r
-        self.__dict__ = kw\r
-    def __contains__(self, key):\r
-        return key in self.__dict__\r
-    def __nonzero__(self):\r
-        return bool(self.__dict__)\r
-    def __repr__(self):\r
-        return repr(self.__dict__)\r
-    def __str__(self):\r
-        return self.__pretty_str__()\r
-    def __pretty_str__(self, nesting = 1, indentation = "    "):\r
-        if not self:\r
-            return "{}"\r
-        text = ["{\n"]\r
-        ind = nesting * indentation\r
-        for k in sorted(self.__dict__.keys()):\r
-            v = self.__dict__[k]\r
-            text.append(ind)\r
-            text.append(repr(k))\r
-            text.append(" : ")\r
-            if hasattr(v, "__pretty_str__"):\r
-                try:\r
-                    text.append(v.__pretty_str__(nesting+1, indentation))\r
-                except Exception:\r
-                    text.append(repr(v))\r
-            else:\r
-                text.append(repr(v))\r
-            text.append("\n")\r
-        text.append((nesting-1) * indentation)\r
-        text.append("}")\r
-        return "".join(text)\r
-    def __delitem__(self, key):\r
-        del self.__dict__[key]\r
-    def __getitem__(self, key):\r
-        return self.__dict__[key]\r
-    def __setitem__(self, key, value):\r
-        self.__dict__[key] = value\r
-    def __copy__(self):\r
-        new = self.__class__()\r
-        new.__dict__ = self.__dict__.copy()\r
-        return new\r
-    def __update__(self, other):\r
-        if isinstance(other, dict):\r
-            self.__dict__.update(other)\r
-        else:\r
-            self.__dict__.update(other.__dict__)\r
-\r
-class LazyContainer(object):\r
-    __slots__ = ["subcon", "stream", "pos", "context", "_value"]\r
-    def __init__(self, subcon, stream, pos, context):\r
-        self.subcon = subcon\r
-        self.stream = stream\r
-        self.pos = pos\r
-        self.context = context\r
-        self._value = NotImplemented\r
-    def __eq__(self, other):\r
-        try:\r
-            return self._value == other._value\r
-        except AttributeError:\r
-            return False\r
-    def __ne__(self, other):\r
-        return not (self == other)\r
-    def __str__(self):\r
-        return self.__pretty_str__()\r
-    def __pretty_str__(self, nesting = 1, indentation = "    "):\r
-        if self._value is NotImplemented:\r
-            text = "<unread>"\r
-        elif hasattr(self._value, "__pretty_str__"):\r
-            text = self._value.__pretty_str__(nesting, indentation)\r
-        else:\r
-            text = repr(self._value)\r
-        return "%s: %s" % (self.__class__.__name__, text)\r
-    def read(self):\r
-        self.stream.seek(self.pos)\r
-        return self.subcon._parse(self.stream, self.context)\r
-    def dispose(self):\r
-        self.subcon = None\r
-        self.stream = None\r
-        self.context = None\r
-        self.pos = None\r
-    def _get_value(self):\r
-        if self._value is NotImplemented:\r
-            self._value = self.read()\r
-        return self._value\r
-    value = property(_get_value)\r
-    has_value = property(lambda self: self._value is not NotImplemented)\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+def recursion_lock(retval, lock_name = "__recursion_lock__"):
+    def decorator(func):
+        def wrapper(self, *args, **kw):
+            if getattr(self, lock_name, False):
+                return retval
+            setattr(self, lock_name, True)
+            try:
+                return func(self, *args, **kw)
+            finally:
+                setattr(self, lock_name, False)
+        wrapper.__name__ = func.__name__
+        return wrapper
+    return decorator
+
+class Container(object):
+    """
+    A generic container of attributes
+    """
+    __slots__ = ["__dict__", "__attrs__"]
+    def __init__(self, **kw):
+        self.__dict__.update(kw)
+        object.__setattr__(self, "__attrs__", kw.keys())
+    
+    def __eq__(self, other):
+        try:
+            return self.__dict__ == other.__dict__
+        except AttributeError:
+            return False
+    def __ne__(self, other):
+        return not (self == other)
+    
+    def __delattr__(self, name):
+        object.__delattr__(self, name)
+        self.__attrs__.remove(name)
+    def __setattr__(self, name, value):
+        d = self.__dict__
+        if name not in d:
+            self.__attrs__.append(name)
+        d[name] = value
+    def __getitem__(self, name):
+        return self.__dict__[name]
+    def __delitem__(self, name):
+        self.__delattr__(name)
+    def __setitem__(self, name, value):
+        self.__setattr__(name, value)
+    def __update__(self, obj):
+        for name in obj.__attrs__:
+            self[name] = obj[name]
+    def __copy__(self):
+        new = self.__class__()
+        new.__attrs__ = self.__attrs__[:]
+        new.__dict__ = self.__dict__.copy()
+        return new
+    
+    @recursion_lock("<...>")
+    def __repr__(self):
+        attrs = sorted("%s = %r" % (k, v) 
+            for k, v in self.__dict__.iteritems() 
+            if not k.startswith("_"))
+        return "%s(%s)" % (self.__class__.__name__, ", ".join(attrs))
+    def __str__(self):
+        return self.__pretty_str__()
+    @recursion_lock("<...>")
+    def __pretty_str__(self, nesting = 1, indentation = "    "):
+        attrs = []
+        ind = indentation * nesting
+        for k in self.__attrs__:
+            v = self.__dict__[k]
+            if not k.startswith("_"):
+                text = [ind, k, " = "]
+                if hasattr(v, "__pretty_str__"):
+                    text.append(v.__pretty_str__(nesting + 1, indentation))
+                else:
+                    text.append(repr(v))
+                attrs.append("".join(text))
+        if not attrs:
+            return "%s()" % (self.__class__.__name__,)
+        attrs.insert(0, self.__class__.__name__ + ":")
+        return "\n".join(attrs)
+
+class FlagsContainer(Container):
+    """
+    A container providing pretty-printing for flags. Only set flags are 
+    displayed. 
+    """
+    def __pretty_str__(self, nesting = 1, indentation = "    "):
+        attrs = []
+        ind = indentation * nesting
+        for k in self.__attrs__:
+            v = self.__dict__[k]
+            if not k.startswith("_") and v:
+                attrs.append(ind + k)
+        if not attrs:
+            return "%s()" % (self.__class__.__name__,)
+        attrs.insert(0, self.__class__.__name__+ ":")
+        return "\n".join(attrs)
+
+class ListContainer(list):
+    """
+    A container for lists
+    """
+    __slots__ = ["__recursion_lock__"]
+    def __str__(self):
+        return self.__pretty_str__()
+    @recursion_lock("[...]")
+    def __pretty_str__(self, nesting = 1, indentation = "    "):
+        if not self:
+            return "[]"
+        ind = indentation * nesting
+        lines = ["["]
+        for elem in self:
+            lines.append("\n")
+            lines.append(ind)
+            if hasattr(elem, "__pretty_str__"):
+                lines.append(elem.__pretty_str__(nesting + 1, indentation))
+            else:
+                lines.append(repr(elem))
+        lines.append("\n")
+        lines.append(indentation * (nesting - 1))
+        lines.append("]")
+        return "".join(lines)
+
+class AttrDict(object):
+    """
+    A dictionary that can be accessed both using indexing and attributes,
+    i.e., 
+        x = AttrDict()
+        x.foo = 5
+        print x["foo"]
+    """
+    __slots__ = ["__dict__"]
+    def __init__(self, **kw):
+        self.__dict__ = kw
+    def __contains__(self, key):
+        return key in self.__dict__
+    def __nonzero__(self):
+        return bool(self.__dict__)
+    def __repr__(self):
+        return repr(self.__dict__)
+    def __str__(self):
+        return self.__pretty_str__()
+    def __pretty_str__(self, nesting = 1, indentation = "    "):
+        if not self:
+            return "{}"
+        text = ["{\n"]
+        ind = nesting * indentation
+        for k in sorted(self.__dict__.keys()):
+            v = self.__dict__[k]
+            text.append(ind)
+            text.append(repr(k))
+            text.append(" : ")
+            if hasattr(v, "__pretty_str__"):
+                try:
+                    text.append(v.__pretty_str__(nesting+1, indentation))
+                except Exception:
+                    text.append(repr(v))
+            else:
+                text.append(repr(v))
+            text.append("\n")
+        text.append((nesting-1) * indentation)
+        text.append("}")
+        return "".join(text)
+    def __delitem__(self, key):
+        del self.__dict__[key]
+    def __getitem__(self, key):
+        return self.__dict__[key]
+    def __setitem__(self, key, value):
+        self.__dict__[key] = value
+    def __copy__(self):
+        new = self.__class__()
+        new.__dict__ = self.__dict__.copy()
+        return new
+    def __update__(self, other):
+        if isinstance(other, dict):
+            self.__dict__.update(other)
+        else:
+            self.__dict__.update(other.__dict__)
+
+class LazyContainer(object):
+    __slots__ = ["subcon", "stream", "pos", "context", "_value"]
+    def __init__(self, subcon, stream, pos, context):
+        self.subcon = subcon
+        self.stream = stream
+        self.pos = pos
+        self.context = context
+        self._value = NotImplemented
+    def __eq__(self, other):
+        try:
+            return self._value == other._value
+        except AttributeError:
+            return False
+    def __ne__(self, other):
+        return not (self == other)
+    def __str__(self):
+        return self.__pretty_str__()
+    def __pretty_str__(self, nesting = 1, indentation = "    "):
+        if self._value is NotImplemented:
+            text = "<unread>"
+        elif hasattr(self._value, "__pretty_str__"):
+            text = self._value.__pretty_str__(nesting, indentation)
+        else:
+            text = repr(self._value)
+        return "%s: %s" % (self.__class__.__name__, text)
+    def read(self):
+        self.stream.seek(self.pos)
+        return self.subcon._parse(self.stream, self.context)
+    def dispose(self):
+        self.subcon = None
+        self.stream = None
+        self.context = None
+        self.pos = None
+    def _get_value(self):
+        if self._value is NotImplemented:
+            self._value = self.read()
+        return self._value
+    value = property(_get_value)
+    has_value = property(lambda self: self._value is not NotImplemented)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index e392bd3c0bf64fb0fc3b364bf015aa4bc5f0b8d7..0bb2f023cb757a907f8fe98a69e530452b2b27e1 100644 (file)
@@ -1,34 +1,34 @@
-_printable = dict((chr(i), ".") for i in range(256))\r
-_printable.update((chr(i), chr(i)) for i in range(32, 128))\r
-\r
-def hexdump(data, linesize = 16):\r
-    prettylines = []\r
-    if len(data) < 65536:\r
-        fmt = "%%04X   %%-%ds   %%s"\r
-    else:\r
-        fmt = "%%08X   %%-%ds   %%s"\r
-    fmt = fmt % (3 * linesize - 1,)\r
-    for i in xrange(0, len(data), linesize):\r
-        line = data[i : i + linesize]\r
-        hextext = " ".join(b.encode("hex") for b in line)\r
-        rawtext = "".join(_printable[b] for b in line)\r
-        prettylines.append(fmt % (i, hextext, rawtext))\r
-    return prettylines\r
-\r
-class HexString(str):\r
-    """\r
-    represents a string that will be hex-dumped (only via __pretty_str__).\r
-    this class derives of str, and behaves just like a normal string in all\r
-    other contexts.\r
-    """\r
-    def __init__(self, data, linesize = 16):\r
-        str.__init__(self, data)\r
-        self.linesize = linesize\r
-    def __new__(cls, data, *args, **kwargs):\r
-        return str.__new__(cls, data)\r
-    def __pretty_str__(self, nesting = 1, indentation = "    "):\r
-        sep = "\n" + indentation * nesting\r
-        return sep + sep.join(hexdump(self))\r
-\r
-\r
-\r
+_printable = dict((chr(i), ".") for i in range(256))
+_printable.update((chr(i), chr(i)) for i in range(32, 128))
+
+def hexdump(data, linesize = 16):
+    prettylines = []
+    if len(data) < 65536:
+        fmt = "%%04X   %%-%ds   %%s"
+    else:
+        fmt = "%%08X   %%-%ds   %%s"
+    fmt = fmt % (3 * linesize - 1,)
+    for i in xrange(0, len(data), linesize):
+        line = data[i : i + linesize]
+        hextext = " ".join(b.encode("hex") for b in line)
+        rawtext = "".join(_printable[b] for b in line)
+        prettylines.append(fmt % (i, hextext, rawtext))
+    return prettylines
+
+class HexString(str):
+    """
+    represents a string that will be hex-dumped (only via __pretty_str__).
+    this class derives of str, and behaves just like a normal string in all
+    other contexts.
+    """
+    def __init__(self, data, linesize = 16):
+        str.__init__(self, data)
+        self.linesize = linesize
+    def __new__(cls, data, *args, **kwargs):
+        return str.__new__(cls, data)
+    def __pretty_str__(self, nesting = 1, indentation = "    "):
+        sep = "\n" + indentation * nesting
+        return sep + sep.join(hexdump(self))
+
+
+
index 968dc265568c5d2e2d894c909ede850b131d34af..86d8b03a6f41e0caf433bbc335c367fe846bbd35 100644 (file)
@@ -1,22 +1,22 @@
-try:\r
-    from cStringIO import StringIO\r
-except ImportError:\r
-    from StringIO import StringIO\r
-\r
-\r
-try:\r
-    from struct import Struct as Packer\r
-except ImportError:\r
-    from struct import pack, unpack, calcsize\r
-    class Packer(object):\r
-        __slots__ = ["format", "size"]\r
-        def __init__(self, format):\r
-            self.format = format\r
-            self.size = calcsize(format)\r
-        def pack(self, *args):\r
-            return pack(self.format, *args)\r
-        def unpack(self, data):\r
-            return unpack(self.format, data)\r
-\r
-\r
-\r
+try:
+    from cStringIO import StringIO
+except ImportError:
+    from StringIO import StringIO
+
+
+try:
+    from struct import Struct as Packer
+except ImportError:
+    from struct import pack, unpack, calcsize
+    class Packer(object):
+        __slots__ = ["format", "size"]
+        def __init__(self, format):
+            self.format = format
+            self.size = calcsize(format)
+        def pack(self, *args):
+            return pack(self.format, *args)
+        def unpack(self, data):
+            return unpack(self.format, data)
+
+
+
index 35e689a2703efbac3a4de2a64a1dedb99f1ab2eb..dcffb0e7bfc06ff6ff8c0ef984f7dfdfbf37e425 100644 (file)
-from lib import BitStreamReader, BitStreamWriter, encode_bin, decode_bin\r
-from core import *\r
-from adapters import *\r
-\r
-\r
-#===============================================================================\r
-# fields\r
-#===============================================================================\r
-def Field(name, length):\r
-    """a field\r
-    * name - the name of the field\r
-    * length - the length of the field. the length can be either an integer\r
-      (StaticField), or a function that takes the context as an argument and \r
-      returns the length (MetaField)\r
-    """\r
-    if callable(length):\r
-        return MetaField(name, length)\r
-    else:\r
-        return StaticField(name, length)\r
-\r
-def BitField(name, length, swapped = False, signed = False, bytesize = 8):\r
-    """a bit field; must be enclosed in a BitStruct\r
-    * name - the name of the field\r
-    * length - the length of the field in bits. the length can be either \r
-      an integer, or a function that takes the context as an argument and \r
-      returns the length\r
-    * swapped - whether the value is byte-swapped (little endian). the \r
-      default is False.\r
-    * signed - whether the value of the bitfield is a signed integer. the \r
-      default is False.\r
-    * bytesize - the number of bits in a byte (used for byte-swapping). the\r
-      default is 8.\r
-    """\r
-    return BitIntegerAdapter(Field(name, length), \r
-        length,\r
-        swapped = swapped, \r
-        signed = signed,\r
-        bytesize = bytesize\r
-    )\r
-\r
-def Padding(length, pattern = "\x00", strict = False):\r
-    r"""a padding field (value is discarded)\r
-    * length - the length of the field. the length can be either an integer,\r
-      or a function that takes the context as an argument and returns the \r
-      length\r
-    * pattern - the padding pattern (character) to use. default is "\x00"\r
-    * strict - whether or not to raise an exception is the actual padding \r
-      pattern mismatches the desired pattern. default is False.\r
-    """\r
-    return PaddingAdapter(Field(None, length), \r
-        pattern = pattern, \r
-        strict = strict,\r
-    )\r
-\r
-def Flag(name, truth = 1, falsehood = 0, default = False):\r
-    """a flag field (True or False)\r
-    * name - the name of the field\r
-    * truth - the numeric value of truth. the default is 1.\r
-    * falsehood - the numeric value of falsehood. the default is 0.\r
-    * default - the default value to assume, when the value is neither \r
-      `truth` nor `falsehood`. the default is False.\r
-    """\r
-    return SymmetricMapping(Field(name, 1), \r
-        {True : chr(truth), False : chr(falsehood)},\r
-        default = default,\r
-    )\r
-\r
-#===============================================================================\r
-# field shortcuts\r
-#===============================================================================\r
-def Bit(name):\r
-    """a 1-bit BitField; must be enclosed in a BitStruct"""\r
-    return BitField(name, 1)\r
-def Nibble(name):\r
-    """a 4-bit BitField; must be enclosed in a BitStruct"""\r
-    return BitField(name, 4)\r
-def Octet(name):\r
-    """an 8-bit BitField; must be enclosed in a BitStruct"""\r
-    return BitField(name, 8)\r
-\r
-def UBInt8(name):\r
-    """unsigned, big endian 8-bit integer"""\r
-    return FormatField(name, ">", "B")\r
-def UBInt16(name):\r
-    """unsigned, big endian 16-bit integer"""\r
-    return FormatField(name, ">", "H")\r
-def UBInt32(name):\r
-    """unsigned, big endian 32-bit integer"""\r
-    return FormatField(name, ">", "L")\r
-def UBInt64(name):\r
-    """unsigned, big endian 64-bit integer"""\r
-    return FormatField(name, ">", "Q")\r
-\r
-def SBInt8(name):\r
-    """signed, big endian 8-bit integer"""\r
-    return FormatField(name, ">", "b")\r
-def SBInt16(name):\r
-    """signed, big endian 16-bit integer"""\r
-    return FormatField(name, ">", "h")\r
-def SBInt32(name):\r
-    """signed, big endian 32-bit integer"""\r
-    return FormatField(name, ">", "l")\r
-def SBInt64(name):\r
-    """signed, big endian 64-bit integer"""\r
-    return FormatField(name, ">", "q")\r
-\r
-def ULInt8(name):\r
-    """unsigned, little endian 8-bit integer"""\r
-    return FormatField(name, "<", "B")\r
-def ULInt16(name):\r
-    """unsigned, little endian 16-bit integer"""\r
-    return FormatField(name, "<", "H")\r
-def ULInt32(name):\r
-    """unsigned, little endian 32-bit integer"""\r
-    return FormatField(name, "<", "L")\r
-def ULInt64(name):\r
-    """unsigned, little endian 64-bit integer"""\r
-    return FormatField(name, "<", "Q")\r
-\r
-def SLInt8(name):\r
-    """signed, little endian 8-bit integer"""\r
-    return FormatField(name, "<", "b")\r
-def SLInt16(name):\r
-    """signed, little endian 16-bit integer"""\r
-    return FormatField(name, "<", "h")\r
-def SLInt32(name):\r
-    """signed, little endian 32-bit integer"""\r
-    return FormatField(name, "<", "l")\r
-def SLInt64(name):\r
-    """signed, little endian 64-bit integer"""\r
-    return FormatField(name, "<", "q")\r
-\r
-def UNInt8(name):\r
-    """unsigned, native endianity 8-bit integer"""\r
-    return FormatField(name, "=", "B")\r
-def UNInt16(name):\r
-    """unsigned, native endianity 16-bit integer"""\r
-    return FormatField(name, "=", "H")\r
-def UNInt32(name):\r
-    """unsigned, native endianity 32-bit integer"""\r
-    return FormatField(name, "=", "L")\r
-def UNInt64(name):\r
-    """unsigned, native endianity 64-bit integer"""\r
-    return FormatField(name, "=", "Q")\r
-\r
-def SNInt8(name):\r
-    """signed, native endianity 8-bit integer"""\r
-    return FormatField(name, "=", "b")\r
-def SNInt16(name):\r
-    """signed, native endianity 16-bit integer"""\r
-    return FormatField(name, "=", "h")\r
-def SNInt32(name):\r
-    """signed, native endianity 32-bit integer"""\r
-    return FormatField(name, "=", "l")\r
-def SNInt64(name):\r
-    """signed, native endianity 64-bit integer"""\r
-    return FormatField(name, "=", "q")\r
-\r
-def BFloat32(name):\r
-    """big endian, 32-bit IEEE floating point number"""\r
-    return FormatField(name, ">", "f")\r
-def LFloat32(name):\r
-    """little endian, 32-bit IEEE floating point number"""\r
-    return FormatField(name, "<", "f")\r
-def NFloat32(name):\r
-    """native endianity, 32-bit IEEE floating point number"""\r
-    return FormatField(name, "=", "f")\r
-\r
-def BFloat64(name):\r
-    """big endian, 64-bit IEEE floating point number"""\r
-    return FormatField(name, ">", "d")\r
-def LFloat64(name):\r
-    """little endian, 64-bit IEEE floating point number"""\r
-    return FormatField(name, "<", "d")\r
-def NFloat64(name):\r
-    """native endianity, 64-bit IEEE floating point number"""\r
-    return FormatField(name, "=", "d")\r
-\r
-\r
-#===============================================================================\r
-# arrays\r
-#===============================================================================\r
-def Array(count, subcon):\r
-    """array of subcon repeated count times.\r
-    * subcon - the subcon.\r
-    * count - an integer, or a function taking the context as an argument, \r
-      returning the count\r
-    """\r
-    if callable(count):\r
-        con = MetaArray(count, subcon)\r
-    else:\r
-        con = MetaArray(lambda ctx: count, subcon)\r
-        con._clear_flag(con.FLAG_DYNAMIC)\r
-    return con\r
-\r
-def PrefixedArray(subcon, length_field = UBInt8("length")):\r
-    """an array prefixed by a length field.\r
-    * subcon - the subcon to be repeated\r
-    * length_field - an integer construct\r
-    """\r
-    return LengthValueAdapter(\r
-        Sequence(subcon.name, \r
-            length_field, \r
-            Array(lambda ctx: ctx[length_field.name], subcon),\r
-            nested = False\r
-        )\r
-    )\r
-\r
-def OpenRange(mincount, subcon):\r
-    from sys import maxint\r
-    return Range(mincount, maxint, subcon)\r
-\r
-def GreedyRange(subcon):\r
-    """an open range (1 or more times) of repeated subcon.\r
-    * subcon - the subcon to repeat"""\r
-    return OpenRange(1, subcon)\r
-\r
-def OptionalGreedyRange(subcon):\r
-    """an open range (0 or more times) of repeated subcon.\r
-    * subcon - the subcon to repeat"""\r
-    return OpenRange(0, subcon)\r
-\r
-\r
-#===============================================================================\r
-# subconstructs\r
-#===============================================================================\r
-def Optional(subcon):\r
-    """an optional construct. if parsing fails, returns None.\r
-    * subcon - the subcon to optionally parse or build\r
-    """\r
-    return Select(subcon.name, subcon, Pass)\r
-\r
-def Bitwise(subcon):\r
-    """converts the stream to bits, and passes the bitstream to subcon\r
-    * subcon - a bitwise construct (usually BitField)\r
-    """\r
-    # subcons larger than MAX_BUFFER will be wrapped by Restream instead \r
-    # of Buffered. implementation details, don't stick your nose :)\r
-    MAX_BUFFER = 1024 * 8\r
-    def resizer(length):\r
-        if length & 7:\r
-            raise SizeofError("size must be a multiple of 8", length)\r
-        return length >> 3\r
-    if not subcon._is_flag(subcon.FLAG_DYNAMIC) and subcon.sizeof() < MAX_BUFFER:\r
-        con = Buffered(subcon, \r
-            encoder = decode_bin, \r
-            decoder = encode_bin, \r
-            resizer = resizer\r
-        )\r
-    else:\r
-        con = Restream(subcon, \r
-            stream_reader = BitStreamReader, \r
-            stream_writer = BitStreamWriter, \r
-            resizer = resizer)\r
-    return con\r
-\r
-def Aligned(subcon, modulus = 4, pattern = "\x00"):\r
-    r"""aligns subcon to modulus boundary using padding pattern\r
-    * subcon - the subcon to align\r
-    * modulus - the modulus boundary (default is 4)\r
-    * pattern - the padding pattern (default is \x00)\r
-    """\r
-    if modulus < 2:\r
-        raise ValueError("modulus must be >= 2", modulus)\r
-    if modulus in (2, 4, 8, 16, 32, 64, 128, 256, 512, 1024):\r
-        def padlength(ctx):\r
-            m1 = modulus - 1\r
-            return (modulus - (subcon._sizeof(ctx) & m1)) & m1\r
-    else:\r
-        def padlength(ctx):\r
-            return (modulus - (subcon._sizeof(ctx) % modulus)) % modulus\r
-    return IndexingAdapter(\r
-        Sequence(subcon.name, \r
-            subcon, \r
-            Padding(padlength, pattern = pattern),\r
-            nested = False,\r
-        ),\r
-        0\r
-    )\r
-\r
-def Embedded(subcon):\r
-    """embeds a struct into the enclosing struct.\r
-    * subcon - the struct to embed\r
-    """\r
-    return Reconfig(subcon.name, subcon, subcon.FLAG_EMBED)\r
-\r
-def Rename(newname, subcon):\r
-    """renames an existing construct\r
-    * newname - the new name\r
-    * subcon - the subcon to rename\r
-    """\r
-    return Reconfig(newname, subcon)\r
-\r
-def Alias(newname, oldname):\r
-    """creates an alias for an existing element in a struct\r
-    * newname - the new name\r
-    * oldname - the name of an existing element\r
-    """\r
-    return Value(newname, lambda ctx: ctx[oldname])\r
-\r
-\r
-#===============================================================================\r
-# mapping\r
-#===============================================================================\r
-def SymmetricMapping(subcon, mapping, default = NotImplemented):\r
-    """defines a symmetrical mapping: a->b, b->a.\r
-    * subcon - the subcon to map\r
-    * mapping - the encoding mapping (a dict); the decoding mapping is \r
-      achieved by reversing this mapping\r
-    * default - the default value to use when no mapping is found. if no \r
-      default value is given, and exception is raised. setting to Pass would\r
-      return the value "as is" (unmapped)\r
-    """\r
-    reversed_mapping = dict((v, k) for k, v in mapping.iteritems())\r
-    return MappingAdapter(subcon, \r
-        encoding = mapping, \r
-        decoding = reversed_mapping, \r
-        encdefault = default,\r
-        decdefault = default, \r
-    )\r
-\r
-def Enum(subcon, **kw):\r
-    """a set of named values mapping. \r
-    * subcon - the subcon to map\r
-    * kw - keyword arguments which serve as the encoding mapping\r
-    * _default_ - an optional, keyword-only argument that specifies the \r
-      default value to use when the mapping is undefined. if not given,\r
-      and exception is raised when the mapping is undefined. use `Pass` to\r
-      pass the unmapped value as-is\r
-    """\r
-    return SymmetricMapping(subcon, kw, kw.pop("_default_", NotImplemented))\r
-\r
-def FlagsEnum(subcon, **kw):\r
-    """a set of flag values mapping.\r
-    * subcon - the subcon to map\r
-    * kw - keyword arguments which serve as the encoding mapping\r
-    """\r
-    return FlagsAdapter(subcon, kw)\r
-\r
-\r
-#===============================================================================\r
-# structs\r
-#===============================================================================\r
-def AlignedStruct(name, *subcons, **kw):\r
-    """a struct of aligned fields\r
-    * name - the name of the struct\r
-    * subcons - the subcons that make up this structure\r
-    * kw - keyword arguments to pass to Aligned: 'modulus' and 'pattern'\r
-    """\r
-    return Struct(name, *(Aligned(sc, **kw) for sc in subcons))\r
-\r
-def BitStruct(name, *subcons):\r
-    """a struct of bitwise fields\r
-    * name - the name of the struct\r
-    * subcons - the subcons that make up this structure\r
-    """\r
-    return Bitwise(Struct(name, *subcons))\r
-\r
-def EmbeddedBitStruct(*subcons):\r
-    """an embedded BitStruct. no name is necessary.\r
-    * subcons - the subcons that make up this structure\r
-    """\r
-    return Bitwise(Embedded(Struct(None, *subcons)))\r
-\r
-#===============================================================================\r
-# strings\r
-#===============================================================================\r
-def String(name, length, encoding = None, padchar = None, \r
-           paddir = "right", trimdir = "right"):\r
-    """a fixed-length, optionally padded string of characters\r
-    * name - the name of the field\r
-    * length - the length (integer)\r
-    * encoding - the encoding to use (e.g., "utf8"), or None, for raw bytes.\r
-      default is None\r
-    * padchar - the padding character (commonly "\x00"), or None to \r
-      disable padding. default is None\r
-    * paddir - the direction where padding is placed ("right", "left", or \r
-      "center"). the default is "right". this argument is meaningless if \r
-      padchar is None.\r
-    * trimdir - the direction where trimming will take place ("right" or \r
-      "left"). the default is "right". trimming is only meaningful for\r
-      building, when the given string is too long. this argument is \r
-      meaningless if padchar is None.\r
-    """\r
-    con = StringAdapter(Field(name, length), encoding = encoding)\r
-    if padchar is not None:\r
-        con = PaddedStringAdapter(con, \r
-            padchar = padchar, \r
-            paddir = paddir, \r
-            trimdir = trimdir\r
-        )\r
-    return con\r
-\r
-def PascalString(name, length_field = UBInt8("length"), encoding = None):\r
-    """a string prefixed with a length field. the data must directly follow \r
-    the length field.\r
-    * name - the name of the \r
-    * length_field - a numeric construct (i.e., UBInt8) that holds the \r
-      length. default is an unsigned, 8-bit integer field. note that this\r
-      argument must pass an instance of a construct, not a class \r
-      (`UBInt8("length")` rather than `UBInt8`)\r
-    * encoding - the encoding to use (e.g., "utf8"), or None, for raw bytes.\r
-      default is None\r
-    """\r
-    return StringAdapter(\r
-        LengthValueAdapter(\r
-            Sequence(name,\r
-                length_field,\r
-                Field("data", lambda ctx: ctx[length_field.name]),\r
-            )\r
-        ),\r
-        encoding = encoding,\r
-    )\r
-\r
-def CString(name, terminators = "\x00", encoding = None, \r
-            char_field = Field(None, 1)):\r
-    r"""a c-style string (string terminated by a terminator char)\r
-    * name - the name fo the string\r
-    * terminators - a sequence of terminator chars. default is "\x00".\r
-    * encoding - the encoding to use (e.g., "utf8"), or None, for raw bytes.\r
-      default is None\r
-    * char_field - the construct that represents a single character. default\r
-      is a one-byte character. note that this argument must be an instance\r
-      of a construct, not a construct class (`Field("char", 1)` rather than\r
-      `Field`)\r
-    """\r
-    return Rename(name,\r
-        CStringAdapter(\r
-            RepeatUntil(lambda obj, ctx: obj in terminators, \r
-                char_field,\r
-            ),\r
-            terminators = terminators,\r
-            encoding = encoding,\r
-        )\r
-    )\r
-\r
-\r
-#===============================================================================\r
-# conditional\r
-#===============================================================================\r
-def IfThenElse(name, predicate, then_subcon, else_subcon):\r
-    """an if-then-else conditional construct: if the predicate indicates True,\r
-    `then_subcon` will be used; otherwise `else_subcon`\r
-    * name - the name of the construct\r
-    * predicate - a function taking the context as an argument and returning\r
-      True or False\r
-    * then_subcon - the subcon that will be used if the predicate returns True\r
-    * else_subcon - the subcon that will be used if the predicate returns False\r
-    """\r
-    return Switch(name, lambda ctx: bool(predicate(ctx)),\r
-        {\r
-            True : then_subcon,\r
-            False : else_subcon,\r
-        }\r
-    )\r
-\r
-def If(predicate, subcon, elsevalue = None):\r
-    """an if-then conditional construct: if the predicate indicates True,\r
-    subcon will be used; otherwise, `elsevalue` will be returned instead.\r
-    * predicate - a function taking the context as an argument and returning\r
-      True or False\r
-    * subcon - the subcon that will be used if the predicate returns True\r
-    * elsevalue - the value that will be used should the predicate return False.\r
-      by default this value is None.\r
-    """\r
-    return IfThenElse(subcon.name, \r
-        predicate, \r
-        subcon, \r
-        Value("elsevalue", lambda ctx: elsevalue)\r
-    )\r
-\r
-\r
-#===============================================================================\r
-# misc\r
-#===============================================================================\r
-def OnDemandPointer(offsetfunc, subcon, force_build = True):\r
-    """an on-demand pointer. \r
-    * offsetfunc - a function taking the context as an argument and returning \r
-      the absolute stream position\r
-    * subcon - the subcon that will be parsed from the `offsetfunc()` stream \r
-      position on demand\r
-    * force_build - see OnDemand. by default True.\r
-    """\r
-    return OnDemand(Pointer(offsetfunc, subcon), \r
-        advance_stream = False, \r
-        force_build = force_build\r
-    )\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+from lib import BitStreamReader, BitStreamWriter, encode_bin, decode_bin
+from core import *
+from adapters import *
+
+
+#===============================================================================
+# fields
+#===============================================================================
+def Field(name, length):
+    """a field
+    * name - the name of the field
+    * length - the length of the field. the length can be either an integer
+      (StaticField), or a function that takes the context as an argument and 
+      returns the length (MetaField)
+    """
+    if callable(length):
+        return MetaField(name, length)
+    else:
+        return StaticField(name, length)
+
+def BitField(name, length, swapped = False, signed = False, bytesize = 8):
+    """a bit field; must be enclosed in a BitStruct
+    * name - the name of the field
+    * length - the length of the field in bits. the length can be either 
+      an integer, or a function that takes the context as an argument and 
+      returns the length
+    * swapped - whether the value is byte-swapped (little endian). the 
+      default is False.
+    * signed - whether the value of the bitfield is a signed integer. the 
+      default is False.
+    * bytesize - the number of bits in a byte (used for byte-swapping). the
+      default is 8.
+    """
+    return BitIntegerAdapter(Field(name, length), 
+        length,
+        swapped = swapped, 
+        signed = signed,
+        bytesize = bytesize
+    )
+
+def Padding(length, pattern = "\x00", strict = False):
+    r"""a padding field (value is discarded)
+    * length - the length of the field. the length can be either an integer,
+      or a function that takes the context as an argument and returns the 
+      length
+    * pattern - the padding pattern (character) to use. default is "\x00"
+    * strict - whether or not to raise an exception is the actual padding 
+      pattern mismatches the desired pattern. default is False.
+    """
+    return PaddingAdapter(Field(None, length), 
+        pattern = pattern, 
+        strict = strict,
+    )
+
+def Flag(name, truth = 1, falsehood = 0, default = False):
+    """a flag field (True or False)
+    * name - the name of the field
+    * truth - the numeric value of truth. the default is 1.
+    * falsehood - the numeric value of falsehood. the default is 0.
+    * default - the default value to assume, when the value is neither 
+      `truth` nor `falsehood`. the default is False.
+    """
+    return SymmetricMapping(Field(name, 1), 
+        {True : chr(truth), False : chr(falsehood)},
+        default = default,
+    )
+
+#===============================================================================
+# field shortcuts
+#===============================================================================
+def Bit(name):
+    """a 1-bit BitField; must be enclosed in a BitStruct"""
+    return BitField(name, 1)
+def Nibble(name):
+    """a 4-bit BitField; must be enclosed in a BitStruct"""
+    return BitField(name, 4)
+def Octet(name):
+    """an 8-bit BitField; must be enclosed in a BitStruct"""
+    return BitField(name, 8)
+
+def UBInt8(name):
+    """unsigned, big endian 8-bit integer"""
+    return FormatField(name, ">", "B")
+def UBInt16(name):
+    """unsigned, big endian 16-bit integer"""
+    return FormatField(name, ">", "H")
+def UBInt32(name):
+    """unsigned, big endian 32-bit integer"""
+    return FormatField(name, ">", "L")
+def UBInt64(name):
+    """unsigned, big endian 64-bit integer"""
+    return FormatField(name, ">", "Q")
+
+def SBInt8(name):
+    """signed, big endian 8-bit integer"""
+    return FormatField(name, ">", "b")
+def SBInt16(name):
+    """signed, big endian 16-bit integer"""
+    return FormatField(name, ">", "h")
+def SBInt32(name):
+    """signed, big endian 32-bit integer"""
+    return FormatField(name, ">", "l")
+def SBInt64(name):
+    """signed, big endian 64-bit integer"""
+    return FormatField(name, ">", "q")
+
+def ULInt8(name):
+    """unsigned, little endian 8-bit integer"""
+    return FormatField(name, "<", "B")
+def ULInt16(name):
+    """unsigned, little endian 16-bit integer"""
+    return FormatField(name, "<", "H")
+def ULInt32(name):
+    """unsigned, little endian 32-bit integer"""
+    return FormatField(name, "<", "L")
+def ULInt64(name):
+    """unsigned, little endian 64-bit integer"""
+    return FormatField(name, "<", "Q")
+
+def SLInt8(name):
+    """signed, little endian 8-bit integer"""
+    return FormatField(name, "<", "b")
+def SLInt16(name):
+    """signed, little endian 16-bit integer"""
+    return FormatField(name, "<", "h")
+def SLInt32(name):
+    """signed, little endian 32-bit integer"""
+    return FormatField(name, "<", "l")
+def SLInt64(name):
+    """signed, little endian 64-bit integer"""
+    return FormatField(name, "<", "q")
+
+def UNInt8(name):
+    """unsigned, native endianity 8-bit integer"""
+    return FormatField(name, "=", "B")
+def UNInt16(name):
+    """unsigned, native endianity 16-bit integer"""
+    return FormatField(name, "=", "H")
+def UNInt32(name):
+    """unsigned, native endianity 32-bit integer"""
+    return FormatField(name, "=", "L")
+def UNInt64(name):
+    """unsigned, native endianity 64-bit integer"""
+    return FormatField(name, "=", "Q")
+
+def SNInt8(name):
+    """signed, native endianity 8-bit integer"""
+    return FormatField(name, "=", "b")
+def SNInt16(name):
+    """signed, native endianity 16-bit integer"""
+    return FormatField(name, "=", "h")
+def SNInt32(name):
+    """signed, native endianity 32-bit integer"""
+    return FormatField(name, "=", "l")
+def SNInt64(name):
+    """signed, native endianity 64-bit integer"""
+    return FormatField(name, "=", "q")
+
+def BFloat32(name):
+    """big endian, 32-bit IEEE floating point number"""
+    return FormatField(name, ">", "f")
+def LFloat32(name):
+    """little endian, 32-bit IEEE floating point number"""
+    return FormatField(name, "<", "f")
+def NFloat32(name):
+    """native endianity, 32-bit IEEE floating point number"""
+    return FormatField(name, "=", "f")
+
+def BFloat64(name):
+    """big endian, 64-bit IEEE floating point number"""
+    return FormatField(name, ">", "d")
+def LFloat64(name):
+    """little endian, 64-bit IEEE floating point number"""
+    return FormatField(name, "<", "d")
+def NFloat64(name):
+    """native endianity, 64-bit IEEE floating point number"""
+    return FormatField(name, "=", "d")
+
+
+#===============================================================================
+# arrays
+#===============================================================================
+def Array(count, subcon):
+    """array of subcon repeated count times.
+    * subcon - the subcon.
+    * count - an integer, or a function taking the context as an argument, 
+      returning the count
+    """
+    if callable(count):
+        con = MetaArray(count, subcon)
+    else:
+        con = MetaArray(lambda ctx: count, subcon)
+        con._clear_flag(con.FLAG_DYNAMIC)
+    return con
+
+def PrefixedArray(subcon, length_field = UBInt8("length")):
+    """an array prefixed by a length field.
+    * subcon - the subcon to be repeated
+    * length_field - an integer construct
+    """
+    return LengthValueAdapter(
+        Sequence(subcon.name, 
+            length_field, 
+            Array(lambda ctx: ctx[length_field.name], subcon),
+            nested = False
+        )
+    )
+
+def OpenRange(mincount, subcon):
+    from sys import maxint
+    return Range(mincount, maxint, subcon)
+
+def GreedyRange(subcon):
+    """an open range (1 or more times) of repeated subcon.
+    * subcon - the subcon to repeat"""
+    return OpenRange(1, subcon)
+
+def OptionalGreedyRange(subcon):
+    """an open range (0 or more times) of repeated subcon.
+    * subcon - the subcon to repeat"""
+    return OpenRange(0, subcon)
+
+
+#===============================================================================
+# subconstructs
+#===============================================================================
+def Optional(subcon):
+    """an optional construct. if parsing fails, returns None.
+    * subcon - the subcon to optionally parse or build
+    """
+    return Select(subcon.name, subcon, Pass)
+
+def Bitwise(subcon):
+    """converts the stream to bits, and passes the bitstream to subcon
+    * subcon - a bitwise construct (usually BitField)
+    """
+    # subcons larger than MAX_BUFFER will be wrapped by Restream instead 
+    # of Buffered. implementation details, don't stick your nose :)
+    MAX_BUFFER = 1024 * 8
+    def resizer(length):
+        if length & 7:
+            raise SizeofError("size must be a multiple of 8", length)
+        return length >> 3
+    if not subcon._is_flag(subcon.FLAG_DYNAMIC) and subcon.sizeof() < MAX_BUFFER:
+        con = Buffered(subcon, 
+            encoder = decode_bin, 
+            decoder = encode_bin, 
+            resizer = resizer
+        )
+    else:
+        con = Restream(subcon, 
+            stream_reader = BitStreamReader, 
+            stream_writer = BitStreamWriter, 
+            resizer = resizer)
+    return con
+
+def Aligned(subcon, modulus = 4, pattern = "\x00"):
+    r"""aligns subcon to modulus boundary using padding pattern
+    * subcon - the subcon to align
+    * modulus - the modulus boundary (default is 4)
+    * pattern - the padding pattern (default is \x00)
+    """
+    if modulus < 2:
+        raise ValueError("modulus must be >= 2", modulus)
+    if modulus in (2, 4, 8, 16, 32, 64, 128, 256, 512, 1024):
+        def padlength(ctx):
+            m1 = modulus - 1
+            return (modulus - (subcon._sizeof(ctx) & m1)) & m1
+    else:
+        def padlength(ctx):
+            return (modulus - (subcon._sizeof(ctx) % modulus)) % modulus
+    return IndexingAdapter(
+        Sequence(subcon.name, 
+            subcon, 
+            Padding(padlength, pattern = pattern),
+            nested = False,
+        ),
+        0
+    )
+
+def Embedded(subcon):
+    """embeds a struct into the enclosing struct.
+    * subcon - the struct to embed
+    """
+    return Reconfig(subcon.name, subcon, subcon.FLAG_EMBED)
+
+def Rename(newname, subcon):
+    """renames an existing construct
+    * newname - the new name
+    * subcon - the subcon to rename
+    """
+    return Reconfig(newname, subcon)
+
+def Alias(newname, oldname):
+    """creates an alias for an existing element in a struct
+    * newname - the new name
+    * oldname - the name of an existing element
+    """
+    return Value(newname, lambda ctx: ctx[oldname])
+
+
+#===============================================================================
+# mapping
+#===============================================================================
+def SymmetricMapping(subcon, mapping, default = NotImplemented):
+    """defines a symmetrical mapping: a->b, b->a.
+    * subcon - the subcon to map
+    * mapping - the encoding mapping (a dict); the decoding mapping is 
+      achieved by reversing this mapping
+    * default - the default value to use when no mapping is found. if no 
+      default value is given, and exception is raised. setting to Pass would
+      return the value "as is" (unmapped)
+    """
+    reversed_mapping = dict((v, k) for k, v in mapping.iteritems())
+    return MappingAdapter(subcon, 
+        encoding = mapping, 
+        decoding = reversed_mapping, 
+        encdefault = default,
+        decdefault = default, 
+    )
+
+def Enum(subcon, **kw):
+    """a set of named values mapping. 
+    * subcon - the subcon to map
+    * kw - keyword arguments which serve as the encoding mapping
+    * _default_ - an optional, keyword-only argument that specifies the 
+      default value to use when the mapping is undefined. if not given,
+      and exception is raised when the mapping is undefined. use `Pass` to
+      pass the unmapped value as-is
+    """
+    return SymmetricMapping(subcon, kw, kw.pop("_default_", NotImplemented))
+
+def FlagsEnum(subcon, **kw):
+    """a set of flag values mapping.
+    * subcon - the subcon to map
+    * kw - keyword arguments which serve as the encoding mapping
+    """
+    return FlagsAdapter(subcon, kw)
+
+
+#===============================================================================
+# structs
+#===============================================================================
+def AlignedStruct(name, *subcons, **kw):
+    """a struct of aligned fields
+    * name - the name of the struct
+    * subcons - the subcons that make up this structure
+    * kw - keyword arguments to pass to Aligned: 'modulus' and 'pattern'
+    """
+    return Struct(name, *(Aligned(sc, **kw) for sc in subcons))
+
+def BitStruct(name, *subcons):
+    """a struct of bitwise fields
+    * name - the name of the struct
+    * subcons - the subcons that make up this structure
+    """
+    return Bitwise(Struct(name, *subcons))
+
+def EmbeddedBitStruct(*subcons):
+    """an embedded BitStruct. no name is necessary.
+    * subcons - the subcons that make up this structure
+    """
+    return Bitwise(Embedded(Struct(None, *subcons)))
+
+#===============================================================================
+# strings
+#===============================================================================
+def String(name, length, encoding = None, padchar = None, 
+           paddir = "right", trimdir = "right"):
+    """a fixed-length, optionally padded string of characters
+    * name - the name of the field
+    * length - the length (integer)
+    * encoding - the encoding to use (e.g., "utf8"), or None, for raw bytes.
+      default is None
+    * padchar - the padding character (commonly "\x00"), or None to 
+      disable padding. default is None
+    * paddir - the direction where padding is placed ("right", "left", or 
+      "center"). the default is "right". this argument is meaningless if 
+      padchar is None.
+    * trimdir - the direction where trimming will take place ("right" or 
+      "left"). the default is "right". trimming is only meaningful for
+      building, when the given string is too long. this argument is 
+      meaningless if padchar is None.
+    """
+    con = StringAdapter(Field(name, length), encoding = encoding)
+    if padchar is not None:
+        con = PaddedStringAdapter(con, 
+            padchar = padchar, 
+            paddir = paddir, 
+            trimdir = trimdir
+        )
+    return con
+
+def PascalString(name, length_field = UBInt8("length"), encoding = None):
+    """a string prefixed with a length field. the data must directly follow 
+    the length field.
+    * name - the name of the 
+    * length_field - a numeric construct (i.e., UBInt8) that holds the 
+      length. default is an unsigned, 8-bit integer field. note that this
+      argument must pass an instance of a construct, not a class 
+      (`UBInt8("length")` rather than `UBInt8`)
+    * encoding - the encoding to use (e.g., "utf8"), or None, for raw bytes.
+      default is None
+    """
+    return StringAdapter(
+        LengthValueAdapter(
+            Sequence(name,
+                length_field,
+                Field("data", lambda ctx: ctx[length_field.name]),
+            )
+        ),
+        encoding = encoding,
+    )
+
+def CString(name, terminators = "\x00", encoding = None, 
+            char_field = Field(None, 1)):
+    r"""a c-style string (string terminated by a terminator char)
+    * name - the name fo the string
+    * terminators - a sequence of terminator chars. default is "\x00".
+    * encoding - the encoding to use (e.g., "utf8"), or None, for raw bytes.
+      default is None
+    * char_field - the construct that represents a single character. default
+      is a one-byte character. note that this argument must be an instance
+      of a construct, not a construct class (`Field("char", 1)` rather than
+      `Field`)
+    """
+    return Rename(name,
+        CStringAdapter(
+            RepeatUntil(lambda obj, ctx: obj in terminators, 
+                char_field,
+            ),
+            terminators = terminators,
+            encoding = encoding,
+        )
+    )
+
+
+#===============================================================================
+# conditional
+#===============================================================================
+def IfThenElse(name, predicate, then_subcon, else_subcon):
+    """an if-then-else conditional construct: if the predicate indicates True,
+    `then_subcon` will be used; otherwise `else_subcon`
+    * name - the name of the construct
+    * predicate - a function taking the context as an argument and returning
+      True or False
+    * then_subcon - the subcon that will be used if the predicate returns True
+    * else_subcon - the subcon that will be used if the predicate returns False
+    """
+    return Switch(name, lambda ctx: bool(predicate(ctx)),
+        {
+            True : then_subcon,
+            False : else_subcon,
+        }
+    )
+
+def If(predicate, subcon, elsevalue = None):
+    """an if-then conditional construct: if the predicate indicates True,
+    subcon will be used; otherwise, `elsevalue` will be returned instead.
+    * predicate - a function taking the context as an argument and returning
+      True or False
+    * subcon - the subcon that will be used if the predicate returns True
+    * elsevalue - the value that will be used should the predicate return False.
+      by default this value is None.
+    """
+    return IfThenElse(subcon.name, 
+        predicate, 
+        subcon, 
+        Value("elsevalue", lambda ctx: elsevalue)
+    )
+
+
+#===============================================================================
+# misc
+#===============================================================================
+def OnDemandPointer(offsetfunc, subcon, force_build = True):
+    """an on-demand pointer. 
+    * offsetfunc - a function taking the context as an argument and returning 
+      the absolute stream position
+    * subcon - the subcon that will be parsed from the `offsetfunc()` stream 
+      position on demand
+    * force_build - see OnDemand. by default True.
+    """
+    return OnDemand(Pointer(offsetfunc, subcon), 
+        advance_stream = False, 
+        force_build = force_build
+    )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index dee47a18f60b8a9c7793423d13112efae525b32a..e461dffc63b2ee74294921dce440a39e46df128d 100644 (file)
-from core import *\r
-from adapters import *\r
-from macros import *\r
-\r
-\r
-#===============================================================================\r
-# exceptions\r
-#===============================================================================\r
-class QuotedStringError(ConstructError):\r
-    __slots__ = []\r
-\r
-\r
-#===============================================================================\r
-# constructs\r
-#===============================================================================\r
-class QuotedString(Construct):\r
-    r"""\r
-    A quoted string (begins with an opening-quote, terminated by a \r
-    closing-quote, which may be escaped by an escape character)\r
-    \r
-    Parameters:\r
-    * name - the name of the field\r
-    * start_quote - the opening quote character. default is '"'\r
-    * end_quote - the closing quote character. default is '"'\r
-    * esc_char - the escape character, or None to disable escaping. defualt\r
-      is "\" (backslash)\r
-    * encoding - the character encoding (e.g., "utf8"), or None to return\r
-      raw bytes. defualt is None.\r
-    * allow_eof - whether to allow EOF before the closing quote is matched.\r
-      if False, an exception will be raised when EOF is reached by the closing\r
-      quote is missing. default is False.\r
-    \r
-    Example:\r
-    QuotedString("foo", start_quote = "{", end_quote = "}", esc_char = None)\r
-    """\r
-    __slots__ = [\r
-        "start_quote", "end_quote", "char", "esc_char", "encoding", \r
-        "allow_eof"\r
-    ]\r
-    def __init__(self, name, start_quote = '"', end_quote = None, \r
-                 esc_char = '\\', encoding = None, allow_eof = False):\r
-        Construct.__init__(self, name)\r
-        if end_quote is None:\r
-            end_quote = start_quote\r
-        self.start_quote = Literal(start_quote)\r
-        self.char = Char("char")\r
-        self.end_quote = end_quote\r
-        self.esc_char = esc_char\r
-        self.encoding = encoding\r
-        self.allow_eof = allow_eof\r
-    \r
-    def _parse(self, stream, context):\r
-        self.start_quote._parse(stream, context)\r
-        text = []\r
-        escaped = False\r
-        try:\r
-            while True:\r
-                ch = self.char._parse(stream, context)\r
-                if ch == self.esc_char:\r
-                    if escaped:\r
-                        text.append(ch)\r
-                        escaped = False\r
-                    else:\r
-                        escaped = True\r
-                elif ch == self.end_quote and not escaped:\r
-                    break\r
-                else:\r
-                    text.append(ch)\r
-                    escaped = False\r
-        except FieldError:\r
-            if not self.allow_eof:\r
-                raise\r
-        text = "".join(text)\r
-        if self.encoding is not None:\r
-            text = text.decode(self.encoding)\r
-        return text\r
-    \r
-    def _build(self, obj, stream, context):\r
-        self.start_quote._build(None, stream, context)\r
-        if self.encoding:\r
-            obj = obj.encode(self.encoding)\r
-        for ch in obj:\r
-            if ch == self.esc_char:\r
-                self.char._build(self.esc_char, stream, context)\r
-            elif ch == self.end_quote:\r
-                if self.esc_char is None:\r
-                    raise QuotedStringError("found ending quote in data, "\r
-                        "but no escape char defined", ch)\r
-                else:\r
-                    self.char._build(self.esc_char, stream, context)\r
-            self.char._build(ch, stream, context)\r
-        self.char._build(self.end_quote, stream, context)\r
-    \r
-    def _sizeof(self, context):\r
-        raise SizeofError("can't calculate size")\r
-\r
-\r
-#===============================================================================\r
-# macros\r
-#===============================================================================\r
-class WhitespaceAdapter(Adapter):\r
-    """\r
-    Adapter for whitespace sequences; do not use directly.\r
-    See Whitespace.\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to adapt\r
-    * build_char - the character used for encoding (building)\r
-    """\r
-    __slots__ = ["build_char"]\r
-    def __init__(self, subcon, build_char):\r
-        Adapter.__init__(self, subcon)\r
-        self.build_char = build_char\r
-    def _encode(self, obj, context):\r
-        return self.build_char\r
-    def _decode(self, obj, context):\r
-        return None\r
-\r
-def Whitespace(charset = " \t", optional = True):\r
-    """whitespace (space that is ignored between tokens). when building, the\r
-    first character of the charset is used.\r
-    * charset - the set of characters that are considered whitespace. default\r
-      is space and tab.\r
-    * optional - whether or not whitespace is optional. default is True.\r
-    """\r
-    con = CharOf(None, charset)\r
-    if optional:\r
-        con = OptionalGreedyRange(con)\r
-    else:\r
-        con = GreedyRange(con)\r
-    return WhitespaceAdapter(con, build_char = charset[0])\r
-\r
-def Literal(text):\r
-    """matches a literal string in the text\r
-    * text - the text (string) to match\r
-    """\r
-    return ConstAdapter(Field(None, len(text)), text)\r
-\r
-def Char(name):\r
-    """a one-byte character"""\r
-    return Field(name, 1)\r
-\r
-def CharOf(name, charset):\r
-    """matches only characters of a given charset\r
-    * name - the name of the field\r
-    * charset - the set of valid characters\r
-    """\r
-    return OneOf(Char(name), charset)\r
-\r
-def CharNoneOf(name, charset):\r
-    """matches only characters that do not belong to a given charset\r
-    * name - the name of the field\r
-    * charset - the set of invalid characters\r
-    """\r
-    return NoneOf(Char(name), charset)\r
-\r
-def Alpha(name):\r
-    """a letter character (A-Z, a-z)"""\r
-    return CharOf(name, set('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'))\r
-\r
-def Digit(name):\r
-    """a digit character (0-9)"""\r
-    return CharOf(name, set('0123456789'))\r
-\r
-def AlphaDigit(name):\r
-    """an alphanumeric character (A-Z, a-z, 0-9)"""\r
-    return CharOf(name, set("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"))\r
-\r
-def BinDigit(name):\r
-    """a binary digit (0-1)"""\r
-    return CharOf(name, set('01'))\r
-\r
-def HexDigit(name):\r
-    """a hexadecimal digit (0-9, A-F, a-f)"""\r
-    return CharOf(name, set('0123456789abcdefABCDEF'))\r
-\r
-def Word(name):\r
-    """a sequence of letters"""\r
-    return StringAdapter(GreedyRange(Alpha(name)))\r
-\r
-class TextualIntAdapter(Adapter):\r
-    """\r
-    Adapter for textual integers\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to adapt\r
-    * radix - the base of the integer (decimal, hexadecimal, binary, ...)\r
-    * digits - the sequence of digits of that radix\r
-    """\r
-    __slots__ = ["radix", "digits"]\r
-    def __init__(self, subcon, radix = 10, digits = "0123456789abcdef"):\r
-        Adapter.__init__(self, subcon)\r
-        if radix > len(digits):\r
-            raise ValueError("not enough digits for radix %d" % (radix,))\r
-        self.radix = radix\r
-        self.digits = digits\r
-    def _encode(self, obj, context):\r
-        chars = []\r
-        if obj < 0:\r
-            chars.append("-")\r
-            n = -obj\r
-        else:\r
-            n = obj\r
-        r = self.radix\r
-        digs = self.digits\r
-        while n > 0:\r
-            n, d = divmod(n, r)\r
-            chars.append(digs[d])\r
-        # obj2 = "".join(reversed(chars))\r
-        # filler = digs[0] * (self._sizeof(context) - len(obj2))\r
-        # return filler + obj2\r
-        return "".join(reversed(chars))\r
-    def _decode(self, obj, context):\r
-        return int("".join(obj), self.radix)\r
-\r
-def DecNumber(name):\r
-    """decimal number"""\r
-    return TextualIntAdapter(GreedyRange(Digit(name)))\r
-\r
-def BinNumber(name):\r
-    """binary number"""\r
-    return TextualIntAdapter(GreedyRange(Digit(name)), 2)\r
-\r
-def HexNumber(name):\r
-    """hexadecimal number"""\r
-    return TextualIntAdapter(GreedyRange(Digit(name)), 16)\r
-\r
-def StringUpto(name, charset):\r
-    """a string that stretches up to a terminator, or EOF. unlike CString, \r
-    StringUpto will no consume the terminator char.\r
-    * name - the name of the field\r
-    * charset - the set of terminator characters"""\r
-    return StringAdapter(OptionalGreedyRange(CharNoneOf(name, charset)))\r
-\r
-def Line(name):\r
-    r"""a textual line (up to "\n")"""\r
-    return StringUpto(name, "\n")\r
-\r
-class IdentifierAdapter(Adapter):\r
-    """\r
-    Adapter for programmatic identifiers\r
-    \r
-    Parameters:\r
-    * subcon - the subcon to adapt\r
-    """\r
-    def _encode(self, obj, context):\r
-        return obj[0], obj[1:]\r
-    def _decode(self, obj, context):\r
-        return obj[0] + "".join(obj[1])\r
-\r
-def Identifier(name, \r
-               headset = set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_"), \r
-               tailset = set("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_")\r
-    ):\r
-    """a programmatic identifier (symbol). must start with a char of headset,\r
-    followed by a sequence of tailset characters\r
-    * name - the name of the field\r
-    * headset - charset for the first character. default is A-Z, a-z, and _\r
-    * tailset - charset for the tail. default is A-Z, a-z, 0-9 and _\r
-    """\r
-    return IdentifierAdapter(\r
-        Sequence(name,\r
-            CharOf("head", headset),\r
-            OptionalGreedyRange(CharOf("tail", tailset)),\r
-        )\r
-    )\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
+from core import *
+from adapters import *
+from macros import *
+
+
+#===============================================================================
+# exceptions
+#===============================================================================
+class QuotedStringError(ConstructError):
+    __slots__ = []
+
+
+#===============================================================================
+# constructs
+#===============================================================================
+class QuotedString(Construct):
+    r"""
+    A quoted string (begins with an opening-quote, terminated by a 
+    closing-quote, which may be escaped by an escape character)
+    
+    Parameters:
+    * name - the name of the field
+    * start_quote - the opening quote character. default is '"'
+    * end_quote - the closing quote character. default is '"'
+    * esc_char - the escape character, or None to disable escaping. defualt
+      is "\" (backslash)
+    * encoding - the character encoding (e.g., "utf8"), or None to return
+      raw bytes. defualt is None.
+    * allow_eof - whether to allow EOF before the closing quote is matched.
+      if False, an exception will be raised when EOF is reached by the closing
+      quote is missing. default is False.
+    
+    Example:
+    QuotedString("foo", start_quote = "{", end_quote = "}", esc_char = None)
+    """
+    __slots__ = [
+        "start_quote", "end_quote", "char", "esc_char", "encoding", 
+        "allow_eof"
+    ]
+    def __init__(self, name, start_quote = '"', end_quote = None, 
+                 esc_char = '\\', encoding = None, allow_eof = False):
+        Construct.__init__(self, name)
+        if end_quote is None:
+            end_quote = start_quote
+        self.start_quote = Literal(start_quote)
+        self.char = Char("char")
+        self.end_quote = end_quote
+        self.esc_char = esc_char
+        self.encoding = encoding
+        self.allow_eof = allow_eof
+    
+    def _parse(self, stream, context):
+        self.start_quote._parse(stream, context)
+        text = []
+        escaped = False
+        try:
+            while True:
+                ch = self.char._parse(stream, context)
+                if ch == self.esc_char:
+                    if escaped:
+                        text.append(ch)
+                        escaped = False
+                    else:
+                        escaped = True
+                elif ch == self.end_quote and not escaped:
+                    break
+                else:
+                    text.append(ch)
+                    escaped = False
+        except FieldError:
+            if not self.allow_eof:
+                raise
+        text = "".join(text)
+        if self.encoding is not None:
+            text = text.decode(self.encoding)
+        return text
+    
+    def _build(self, obj, stream, context):
+        self.start_quote._build(None, stream, context)
+        if self.encoding:
+            obj = obj.encode(self.encoding)
+        for ch in obj:
+            if ch == self.esc_char:
+                self.char._build(self.esc_char, stream, context)
+            elif ch == self.end_quote:
+                if self.esc_char is None:
+                    raise QuotedStringError("found ending quote in data, "
+                        "but no escape char defined", ch)
+                else:
+                    self.char._build(self.esc_char, stream, context)
+            self.char._build(ch, stream, context)
+        self.char._build(self.end_quote, stream, context)
+    
+    def _sizeof(self, context):
+        raise SizeofError("can't calculate size")
+
+
+#===============================================================================
+# macros
+#===============================================================================
+class WhitespaceAdapter(Adapter):
+    """
+    Adapter for whitespace sequences; do not use directly.
+    See Whitespace.
+    
+    Parameters:
+    * subcon - the subcon to adapt
+    * build_char - the character used for encoding (building)
+    """
+    __slots__ = ["build_char"]
+    def __init__(self, subcon, build_char):
+        Adapter.__init__(self, subcon)
+        self.build_char = build_char
+    def _encode(self, obj, context):
+        return self.build_char
+    def _decode(self, obj, context):
+        return None
+
+def Whitespace(charset = " \t", optional = True):
+    """whitespace (space that is ignored between tokens). when building, the
+    first character of the charset is used.
+    * charset - the set of characters that are considered whitespace. default
+      is space and tab.
+    * optional - whether or not whitespace is optional. default is True.
+    """
+    con = CharOf(None, charset)
+    if optional:
+        con = OptionalGreedyRange(con)
+    else:
+        con = GreedyRange(con)
+    return WhitespaceAdapter(con, build_char = charset[0])
+
+def Literal(text):
+    """matches a literal string in the text
+    * text - the text (string) to match
+    """
+    return ConstAdapter(Field(None, len(text)), text)
+
+def Char(name):
+    """a one-byte character"""
+    return Field(name, 1)
+
+def CharOf(name, charset):
+    """matches only characters of a given charset
+    * name - the name of the field
+    * charset - the set of valid characters
+    """
+    return OneOf(Char(name), charset)
+
+def CharNoneOf(name, charset):
+    """matches only characters that do not belong to a given charset
+    * name - the name of the field
+    * charset - the set of invalid characters
+    """
+    return NoneOf(Char(name), charset)
+
+def Alpha(name):
+    """a letter character (A-Z, a-z)"""
+    return CharOf(name, set('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'))
+
+def Digit(name):
+    """a digit character (0-9)"""
+    return CharOf(name, set('0123456789'))
+
+def AlphaDigit(name):
+    """an alphanumeric character (A-Z, a-z, 0-9)"""
+    return CharOf(name, set("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"))
+
+def BinDigit(name):
+    """a binary digit (0-1)"""
+    return CharOf(name, set('01'))
+
+def HexDigit(name):
+    """a hexadecimal digit (0-9, A-F, a-f)"""
+    return CharOf(name, set('0123456789abcdefABCDEF'))
+
+def Word(name):
+    """a sequence of letters"""
+    return StringAdapter(GreedyRange(Alpha(name)))
+
+class TextualIntAdapter(Adapter):
+    """
+    Adapter for textual integers
+    
+    Parameters:
+    * subcon - the subcon to adapt
+    * radix - the base of the integer (decimal, hexadecimal, binary, ...)
+    * digits - the sequence of digits of that radix
+    """
+    __slots__ = ["radix", "digits"]
+    def __init__(self, subcon, radix = 10, digits = "0123456789abcdef"):
+        Adapter.__init__(self, subcon)
+        if radix > len(digits):
+            raise ValueError("not enough digits for radix %d" % (radix,))
+        self.radix = radix
+        self.digits = digits
+    def _encode(self, obj, context):
+        chars = []
+        if obj < 0:
+            chars.append("-")
+            n = -obj
+        else:
+            n = obj
+        r = self.radix
+        digs = self.digits
+        while n > 0:
+            n, d = divmod(n, r)
+            chars.append(digs[d])
+        # obj2 = "".join(reversed(chars))
+        # filler = digs[0] * (self._sizeof(context) - len(obj2))
+        # return filler + obj2
+        return "".join(reversed(chars))
+    def _decode(self, obj, context):
+        return int("".join(obj), self.radix)
+
+def DecNumber(name):
+    """decimal number"""
+    return TextualIntAdapter(GreedyRange(Digit(name)))
+
+def BinNumber(name):
+    """binary number"""
+    return TextualIntAdapter(GreedyRange(Digit(name)), 2)
+
+def HexNumber(name):
+    """hexadecimal number"""
+    return TextualIntAdapter(GreedyRange(Digit(name)), 16)
+
+def StringUpto(name, charset):
+    """a string that stretches up to a terminator, or EOF. unlike CString, 
+    StringUpto will no consume the terminator char.
+    * name - the name of the field
+    * charset - the set of terminator characters"""
+    return StringAdapter(OptionalGreedyRange(CharNoneOf(name, charset)))
+
+def Line(name):
+    r"""a textual line (up to "\n")"""
+    return StringUpto(name, "\n")
+
+class IdentifierAdapter(Adapter):
+    """
+    Adapter for programmatic identifiers
+    
+    Parameters:
+    * subcon - the subcon to adapt
+    """
+    def _encode(self, obj, context):
+        return obj[0], obj[1:]
+    def _decode(self, obj, context):
+        return obj[0] + "".join(obj[1])
+
+def Identifier(name, 
+               headset = set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_"), 
+               tailset = set("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_")
+    ):
+    """a programmatic identifier (symbol). must start with a char of headset,
+    followed by a sequence of tailset characters
+    * name - the name of the field
+    * headset - charset for the first character. default is A-Z, a-z, and _
+    * tailset - charset for the tail. default is A-Z, a-z, 0-9 and _
+    """
+    return IdentifierAdapter(
+        Sequence(name,
+            CharOf("head", headset),
+            OptionalGreedyRange(CharOf("tail", tailset)),
+        )
+    )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index cd21e09b682f45c4a65895df2f1961e5fac7a6ed..1d49d2bad156e3edc5777ddee6f8db721419b749 100644 (file)
@@ -1,46 +1,46 @@
-#-------------------------------------------------------------------------------\r
-# elftools: elf/constants.py\r
-#\r
-# Constants and flags, placed into classes for namespacing\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-class SHN_INDICES(object):\r
+#-------------------------------------------------------------------------------
+# elftools: elf/constants.py
+#
+# Constants and flags, placed into classes for namespacing
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+class SHN_INDICES(object):
     """ Special section indices
-    """\r
-    SHN_UNDEF=0\r
-    SHN_LORESERVE=0xff00\r
-    SHN_LOPROC=0xff00\r
-    SHN_HIPROC=0xff1f\r
-    SHN_ABS=0xfff1\r
-    SHN_COMMON=0xfff2\r
+    """
+    SHN_UNDEF=0
+    SHN_LORESERVE=0xff00
+    SHN_LOPROC=0xff00
+    SHN_HIPROC=0xff1f
+    SHN_ABS=0xfff1
+    SHN_COMMON=0xfff2
     SHN_HIRESERVE=0xffff
-\r
-\r
-class SH_FLAGS(object):\r
+
+
+class SH_FLAGS(object):
     """ Flag values for the sh_flags field of section headers
-    """\r
-    SHF_WRITE=0x1\r
-    SHF_ALLOC=0x2\r
-    SHF_EXECINSTR=0x4\r
-    SHF_MERGE=0x10\r
-    SHF_STRINGS=0x20\r
-    SHF_INFO_LINK=0x40\r
-    SHF_LINK_ORDER=0x80\r
-    SHF_OS_NONCONFORMING=0x100\r
-    SHF_GROUP=0x200\r
-    SHF_TLS=0x400\r
-    SHF_MASKOS=0x0ff00000\r
-    SHF_MASKPROC=0xf0000000\r
-\r
-\r
-class P_FLAGS(object):\r
+    """
+    SHF_WRITE=0x1
+    SHF_ALLOC=0x2
+    SHF_EXECINSTR=0x4
+    SHF_MERGE=0x10
+    SHF_STRINGS=0x20
+    SHF_INFO_LINK=0x40
+    SHF_LINK_ORDER=0x80
+    SHF_OS_NONCONFORMING=0x100
+    SHF_GROUP=0x200
+    SHF_TLS=0x400
+    SHF_MASKOS=0x0ff00000
+    SHF_MASKPROC=0xf0000000
+
+
+class P_FLAGS(object):
     """ Flag values for the p_flags field of program headers
-    """\r
-    PF_X=0x1\r
-    PF_W=0x2\r
-    PF_R=0x4\r
-    PF_MASKOS=0x00FF0000\r
-    PF_MASKPROC=0xFF000000\r
-\r
+    """
+    PF_X=0x1
+    PF_W=0x2
+    PF_R=0x4
+    PF_MASKOS=0x00FF0000
+    PF_MASKPROC=0xFF000000
+
index 6f2e7235417820adb2172537d9e08be9b5e2b2bc..dc1b246d2d9c02f8841d6160b49d9544708aba30 100644 (file)
-#-------------------------------------------------------------------------------\r
-# elftools: elf/elffile.py\r
-#\r
-# ELFFile - main class for accessing ELF files\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-from ..common.exceptions import ELFError\r
-from ..common.utils import struct_parse, elf_assert\r
-from ..construct import ConstructError\r
-from .structs import ELFStructs\r
-from .sections import Section, StringTableSection, SymbolTableSection\r
-from .segments import Segment\r
-\r
-\r
-class ELFFile(object):\r
-    """ Accessible attributes:\r
-        \r
-            elfclass: \r
-                32 or 64 - specifies the word size of the target machine\r
-            \r
-            little_endian:\r
-                boolean - specifies the target machine's endianness     \r
-\r
-            header:\r
-                the complete ELF file header\r
+#-------------------------------------------------------------------------------
+# elftools: elf/elffile.py
+#
+# ELFFile - main class for accessing ELF files
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+from ..common.exceptions import ELFError
+from ..common.utils import struct_parse, elf_assert
+from ..construct import ConstructError
+from .structs import ELFStructs
+from .sections import Section, StringTableSection, SymbolTableSection
+from .segments import Segment
+
+
+class ELFFile(object):
+    """ Accessible attributes:
+        
+            elfclass: 
+                32 or 64 - specifies the word size of the target machine
+            
+            little_endian:
+                boolean - specifies the target machine's endianness     
+
+            header:
+                the complete ELF file header
     """
     def __init__(self, stream):
-        self.stream = stream\r
-        self._identify_file()\r
-        self.structs = ELFStructs(\r
-            little_endian=self.little_endian,\r
-            elfclass=self.elfclass)\r
-        self.header = self._parse_elf_header()\r
-        \r
-        self._file_stringtable_section = self._get_file_stringtable()\r
-    \r
+        self.stream = stream
+        self._identify_file()
+        self.structs = ELFStructs(
+            little_endian=self.little_endian,
+            elfclass=self.elfclass)
+        self.header = self._parse_elf_header()
+        
+        self._file_stringtable_section = self._get_file_stringtable()
+    
     def num_sections(self):
         """ Number of sections in the file
-        """\r
-        return self['e_shnum']\r
-    \r
+        """
+        return self['e_shnum']
+    
     def get_section(self, n):
-        """ Get the section at index #n from the file (Section object or a\r
+        """ Get the section at index #n from the file (Section object or a
             subclass)
-        """\r
-        section_header = self._get_section_header(n)\r
-        return self._make_section(section_header)\r
-    \r
+        """
+        section_header = self._get_section_header(n)
+        return self._make_section(section_header)
+    
     def iter_sections(self):
         """ Yield all the sections in the file
-        """\r
-        for i in range(self.num_sections()):\r
-            yield self.get_section(i)\r
-    \r
+        """
+        for i in range(self.num_sections()):
+            yield self.get_section(i)
+    
     def num_segments(self):
         """ Number of segments in the file
-        """\r
-        return self['e_phnum']\r
-    \r
+        """
+        return self['e_phnum']
+    
     def get_segment(self, n):
         """ Get the segment at index #n from the file (Segment object)
-        """\r
-        segment_header = self._get_segment_header(n)\r
-        return Segment(segment_header, self.stream)\r
-    \r
+        """
+        segment_header = self._get_segment_header(n)
+        return Segment(segment_header, self.stream)
+    
     def iter_segments(self):
         """ Yield all the segments in the file
-        """\r
-        for i in range(self.num_segments()):\r
-            yield self.get_segment(i)\r
-    \r
-    #-------------------------------- PRIVATE --------------------------------#\r
-    \r
+        """
+        for i in range(self.num_segments()):
+            yield self.get_segment(i)
+    
+    #-------------------------------- PRIVATE --------------------------------#
+    
     def __getitem__(self, name):
         """ Implement dict-like access to header entries
-        """\r
-        return self.header[name]\r
-        \r
+        """
+        return self.header[name]
+        
     def _identify_file(self):
         """ Verify the ELF file and identify its class and endianness.
-        """\r
-        # Note: this code reads the stream directly, without using ELFStructs,\r
-        # since we don't yet know its exact format. ELF was designed to be \r
-        # read like this - its e_ident field is word-size and endian agnostic.\r
-        #\r
-        self.stream.seek(0)\r
-        magic = self.stream.read(4)\r
-        elf_assert(magic == '\x7fELF', 'Magic number does not match')\r
-        \r
-        ei_class = self.stream.read(1)\r
-        if ei_class == '\x01':\r
-            self.elfclass = 32\r
-        elif ei_class == '\x02':\r
-            self.elfclass = 64\r
-        else:\r
-            raise ELFError('Invalid EI_CLASS %s' % repr(ei_class))\r
-        \r
-        ei_data = self.stream.read(1)\r
-        if ei_data == '\x01':\r
-            self.little_endian = True\r
-        elif ei_data == '\x02':\r
-            self.little_endian = False\r
-        else:\r
-            raise ELFError('Invalid EI_DATA %s' % repr(ei_data))\r
-    \r
+        """
+        # Note: this code reads the stream directly, without using ELFStructs,
+        # since we don't yet know its exact format. ELF was designed to be 
+        # read like this - its e_ident field is word-size and endian agnostic.
+        #
+        self.stream.seek(0)
+        magic = self.stream.read(4)
+        elf_assert(magic == '\x7fELF', 'Magic number does not match')
+        
+        ei_class = self.stream.read(1)
+        if ei_class == '\x01':
+            self.elfclass = 32
+        elif ei_class == '\x02':
+            self.elfclass = 64
+        else:
+            raise ELFError('Invalid EI_CLASS %s' % repr(ei_class))
+        
+        ei_data = self.stream.read(1)
+        if ei_data == '\x01':
+            self.little_endian = True
+        elif ei_data == '\x02':
+            self.little_endian = False
+        else:
+            raise ELFError('Invalid EI_DATA %s' % repr(ei_data))
+    
     def _section_offset(self, n):
         """ Compute the offset of section #n in the file
-        """\r
-        return self['e_shoff'] + n * self['e_shentsize']\r
-    \r
+        """
+        return self['e_shoff'] + n * self['e_shentsize']
+    
     def _segment_offset(self, n):
         """ Compute the offset of segment #n in the file
-        """\r
-        return self['e_phoff'] + n * self['e_phentsize']\r
-    \r
+        """
+        return self['e_phoff'] + n * self['e_phentsize']
+    
     def _get_section_header(self, n):
         """ Find the header of section #n, parse it and return the struct 
-        """\r
-        return struct_parse(\r
-            self.structs.Elf_Shdr,\r
-            self.stream,\r
-            stream_pos=self._section_offset(n))\r
-    \r
-    def _get_section_name(self, section_header):\r
-        """ Given a section header, find this section's name in the file's\r
-            string table\r
-        """\r
-        name_offset = section_header['sh_name']\r
-        return self._file_stringtable_section.get_string(name_offset)\r
-\r
+        """
+        return struct_parse(
+            self.structs.Elf_Shdr,
+            self.stream,
+            stream_pos=self._section_offset(n))
+    
+    def _get_section_name(self, section_header):
+        """ Given a section header, find this section's name in the file's
+            string table
+        """
+        name_offset = section_header['sh_name']
+        return self._file_stringtable_section.get_string(name_offset)
+
     def _make_section(self, section_header):
         """ Create a section object of the appropriate type
-        """\r
-        name = self._get_section_name(section_header)\r
-        sectype = section_header['sh_type']\r
-        \r
-        if sectype == 'SHT_STRTAB':\r
-            return StringTableSection(section_header, name, self.stream)\r
-        elif sectype in ('SHT_SYMTAB', 'SHT_DYNSYM'):\r
-            return self._make_symbol_table_section(section_header, name)\r
-        else:\r
-            return Section(section_header, name, self.stream)\r
-\r
+        """
+        name = self._get_section_name(section_header)
+        sectype = section_header['sh_type']
+        
+        if sectype == 'SHT_STRTAB':
+            return StringTableSection(section_header, name, self.stream)
+        elif sectype in ('SHT_SYMTAB', 'SHT_DYNSYM'):
+            return self._make_symbol_table_section(section_header, name)
+        else:
+            return Section(section_header, name, self.stream)
+
     def _make_symbol_table_section(self, section_header, name):
         """ Create a SymbolTableSection
-        """\r
-        linked_strtab_index = section_header['sh_link']\r
-        strtab_section = self.get_section(linked_strtab_index)\r
-        return SymbolTableSection(\r
-            section_header, name, self.stream,\r
-            stringtable=strtab_section)\r
-\r
+        """
+        linked_strtab_index = section_header['sh_link']
+        strtab_section = self.get_section(linked_strtab_index)
+        return SymbolTableSection(
+            section_header, name, self.stream,
+            stringtable=strtab_section)
+
     def _get_segment_header(self, n):
         """ Find the header of segment #n, parse it and return the struct
-        """\r
-        return struct_parse(\r
-            self.structs.Elf_Phdr,\r
-            self.stream,\r
-            stream_pos=self._segment_offset(n))\r
-    \r
+        """
+        return struct_parse(
+            self.structs.Elf_Phdr,
+            self.stream,
+            stream_pos=self._segment_offset(n))
+    
     def _get_file_stringtable(self):
         """ Find the file's string table section
-        """\r
-        stringtable_section_num = self['e_shstrndx']\r
-        return StringTableSection(\r
-                header=self._get_section_header(stringtable_section_num),\r
-                name='',\r
-                stream=self.stream)\r
-    \r
+        """
+        stringtable_section_num = self['e_shstrndx']
+        return StringTableSection(
+                header=self._get_section_header(stringtable_section_num),
+                name='',
+                stream=self.stream)
+    
     def _parse_elf_header(self):
-        """ Parses the ELF file header and assigns the result to attributes\r
+        """ Parses the ELF file header and assigns the result to attributes
             of this object.
-        """\r
-        return struct_parse(self.structs.Elf_Ehdr, self.stream, stream_pos=0)\r
-\r
+        """
+        return struct_parse(self.structs.Elf_Ehdr, self.stream, stream_pos=0)
+
index cdaf31611e2d4827802025022ba703562f652b3a..31647ac61df1e3df6ff763e7fed36b11f6e15c63 100644 (file)
-#-------------------------------------------------------------------------------\r
-# elftools: elf/enums.py\r
-#\r
-# Mappings of enum names to values\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-\r
-# e_ident[EI_CLASS] in the ELF header\r
-ENUM_EI_CLASS = dict(\r
-    ELFCLASSNONE=0,\r
-    ELFCLASS32=1,\r
-    ELFCLASS64=2\r
-)\r
-\r
-# e_ident[EI_DATA] in the ELF header\r
-ENUM_EI_DATA = dict(\r
-    ELFDATANONE=0,\r
-    ELFDATA2LSB=1,\r
-    ELFDATA2MSB=2\r
-)\r
-\r
-# e_version in the ELF header\r
-ENUM_E_VERSION = dict(\r
-    EV_NONE=0,\r
-    EV_CURRENT=1\r
-)\r
-\r
-# e_type in the ELF header\r
-ENUM_E_TYPE = dict(\r
-    ET_NONE=0,\r
-    ET_REL=1,\r
-    ET_EXEC=2,\r
-    ET_DYN=3,\r
-    ET_CORE=4,\r
-    ET_LOPROC=0xff00,\r
-    ET_HIPROC=0xffff,\r
-    _default_='PROC_SPECIFIC',\r
-)\r
-\r
-# e_machine in the ELF header\r
-# (this list is currently somewhat partial...)\r
-ENUM_E_MACHINE = dict(\r
-    EM_NONE=0,\r
-    EM_M32=1,\r
-    EM_SPARC=2,\r
-    EM_386=3,\r
-    EM_68K=4,\r
-    EM_88K=5,\r
-    EM_860=7,\r
-    EM_MIPS=8,\r
-    EM_S370=9,\r
-    EM_MIPS_RS4_BE=10,\r
-    EM_IA_64=50,\r
-    EM_X86_64=62,\r
-    EM_AVR=83,\r
-    _default_='RESERVED',\r
-)\r
-\r
-# sh_type in the section header\r
-ENUM_SH_TYPE = dict(\r
-    SHT_NULL=0,\r
-    SHT_PROGBITS=1,\r
-    SHT_SYMTAB=2,\r
-    SHT_STRTAB=3,\r
-    SHT_RELA=4,\r
-    SHT_HASH=5,\r
-    SHT_DYNAMIC=6,\r
-    SHT_NOTE=7,\r
-    SHT_NOBITS=8,\r
-    SHT_REL=9,\r
-    SHT_SHLIB=10,\r
-    SHT_DYNSYM=11,\r
-    SHT_INIT_ARRAY=14,\r
-    SHT_FINI_ARRAY=15,\r
-    SHT_PREINIT_ARRAY=16,\r
-    SHT_GROUP=17,\r
-    SHT_SYMTAB_SHNDX=18,\r
-    SHT_NUM=19,\r
-    SHT_LOOS=0x60000000,\r
-    SHT_HIOS=0x6fffffff,\r
-    SHT_LOPROC=0x70000000,\r
-    SHT_HIPROC=0x7fffffff,\r
-    SHT_LOUSER=0x80000000,\r
-    SHT_HIUSER=0xffffffff,\r
-    SHT_AMD64_UNWIND=0x70000001,\r
-    _default_='RESERVED',\r
-)\r
-\r
-# p_type in the program header\r
-# some values scavenged from the ELF headers in binutils-2.21\r
-ENUM_P_TYPE = dict(\r
-    PT_NULL=0,\r
-    PT_LOAD=1,\r
-    PT_DYNAMIC=2,\r
-    PT_INTERP=3,\r
-    PT_NOTE=4,\r
-    PT_SHLIB=5,\r
-    PT_PHDR=6,\r
-    PT_LOPROC=0x70000000,\r
-    PT_HIPROC=0x7fffffff,\r
-    PT_GNU_EH_FRAME=0x6474e550,\r
-    PT_GNU_STACK=0x6474e551,\r
-    PT_GNU_RELRO=0x6474e552,\r
-)\r
-\r
+#-------------------------------------------------------------------------------
+# elftools: elf/enums.py
+#
+# Mappings of enum names to values
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+
+# e_ident[EI_CLASS] in the ELF header
+ENUM_EI_CLASS = dict(
+    ELFCLASSNONE=0,
+    ELFCLASS32=1,
+    ELFCLASS64=2
+)
+
+# e_ident[EI_DATA] in the ELF header
+ENUM_EI_DATA = dict(
+    ELFDATANONE=0,
+    ELFDATA2LSB=1,
+    ELFDATA2MSB=2
+)
+
+# e_version in the ELF header
+ENUM_E_VERSION = dict(
+    EV_NONE=0,
+    EV_CURRENT=1
+)
+
+# e_type in the ELF header
+ENUM_E_TYPE = dict(
+    ET_NONE=0,
+    ET_REL=1,
+    ET_EXEC=2,
+    ET_DYN=3,
+    ET_CORE=4,
+    ET_LOPROC=0xff00,
+    ET_HIPROC=0xffff,
+    _default_='PROC_SPECIFIC',
+)
+
+# e_machine in the ELF header
+# (this list is currently somewhat partial...)
+ENUM_E_MACHINE = dict(
+    EM_NONE=0,
+    EM_M32=1,
+    EM_SPARC=2,
+    EM_386=3,
+    EM_68K=4,
+    EM_88K=5,
+    EM_860=7,
+    EM_MIPS=8,
+    EM_S370=9,
+    EM_MIPS_RS4_BE=10,
+    EM_IA_64=50,
+    EM_X86_64=62,
+    EM_AVR=83,
+    _default_='RESERVED',
+)
+
+# sh_type in the section header
+ENUM_SH_TYPE = dict(
+    SHT_NULL=0,
+    SHT_PROGBITS=1,
+    SHT_SYMTAB=2,
+    SHT_STRTAB=3,
+    SHT_RELA=4,
+    SHT_HASH=5,
+    SHT_DYNAMIC=6,
+    SHT_NOTE=7,
+    SHT_NOBITS=8,
+    SHT_REL=9,
+    SHT_SHLIB=10,
+    SHT_DYNSYM=11,
+    SHT_INIT_ARRAY=14,
+    SHT_FINI_ARRAY=15,
+    SHT_PREINIT_ARRAY=16,
+    SHT_GROUP=17,
+    SHT_SYMTAB_SHNDX=18,
+    SHT_NUM=19,
+    SHT_LOOS=0x60000000,
+    SHT_HIOS=0x6fffffff,
+    SHT_LOPROC=0x70000000,
+    SHT_HIPROC=0x7fffffff,
+    SHT_LOUSER=0x80000000,
+    SHT_HIUSER=0xffffffff,
+    SHT_AMD64_UNWIND=0x70000001,
+    _default_='RESERVED',
+)
+
+# p_type in the program header
+# some values scavenged from the ELF headers in binutils-2.21
+ENUM_P_TYPE = dict(
+    PT_NULL=0,
+    PT_LOAD=1,
+    PT_DYNAMIC=2,
+    PT_INTERP=3,
+    PT_NOTE=4,
+    PT_SHLIB=5,
+    PT_PHDR=6,
+    PT_LOPROC=0x70000000,
+    PT_HIPROC=0x7fffffff,
+    PT_GNU_EH_FRAME=0x6474e550,
+    PT_GNU_STACK=0x6474e551,
+    PT_GNU_RELRO=0x6474e552,
+)
+
index 6accf11fdea64c30f053696b2672422dc90bbd95..04410f30c720d6b254af4e86c77ef13ec23b44a9 100644 (file)
@@ -1,60 +1,60 @@
-#-------------------------------------------------------------------------------\r
-# elftools: elf/sections.py\r
-#\r
-# ELF sections\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-from ..construct import CString\r
-from ..common.utils import struct_parse, elf_assert\r
-\r
-\r
-class Section(object):\r
-    """ Base class for ELF sections. Also used for all sections types that have\r
-        no special functionality.\r
-        \r
-        Allows dictionary-like access to the section header. For example:\r
-         > sec = Section(...)\r
-         > sec['sh_type']  # section type\r
+#-------------------------------------------------------------------------------
+# elftools: elf/sections.py
+#
+# ELF sections
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+from ..construct import CString
+from ..common.utils import struct_parse, elf_assert
+
+
+class Section(object):
+    """ Base class for ELF sections. Also used for all sections types that have
+        no special functionality.
+        
+        Allows dictionary-like access to the section header. For example:
+         > sec = Section(...)
+         > sec['sh_type']  # section type
     """
     def __init__(self, header, name, stream):
-        self.header = header\r
-        self.name = name\r
-        self.stream = stream\r
-    \r
+        self.header = header
+        self.name = name
+        self.stream = stream
+    
     def data(self):
         """ The section data from the file.
-        """\r
-        self.stream.seek(self['sh_offset'])\r
+        """
+        self.stream.seek(self['sh_offset'])
         return self.stream.read(self['sh_size'])
-\r
-    def __getitem__(self, name):\r
-        """ Implement dict-like access to header entries\r
-        """\r
-        return self.header[name]\r
-\r
-\r
-class StringTableSection(Section):\r
+
+    def __getitem__(self, name):
+        """ Implement dict-like access to header entries
+        """
+        return self.header[name]
+
+
+class StringTableSection(Section):
     """ ELF string table section.
     """
     def __init__(self, header, name, stream):
-        super(StringTableSection, self).__init__(header, name, stream)\r
-        \r
-    def get_string(self, offset):\r
+        super(StringTableSection, self).__init__(header, name, stream)
+        
+    def get_string(self, offset):
         """ Get the string stored at the given offset in this string table.
-        """\r
-        table_offset = self['sh_offset']\r
-        return struct_parse(\r
-            CString(''),\r
-            self.stream,\r
-            stream_pos=table_offset + offset)\r
-\r
-\r
-class SymbolTableSection(Section):\r
-    """ ELF symbol table section. Has an associated StringTableSection that's\r
+        """
+        table_offset = self['sh_offset']
+        return struct_parse(
+            CString(''),
+            self.stream,
+            stream_pos=table_offset + offset)
+
+
+class SymbolTableSection(Section):
+    """ ELF symbol table section. Has an associated StringTableSection that's
         passed in the constructor.
     """
-    def __init__(self, header, name, stream, stringtable):\r
+    def __init__(self, header, name, stream, stringtable):
         super(SymbolTableSection, self).__init__(header, name, stream)
-        self.stringtable = stringtable\r
+        self.stringtable = stringtable
index 02a81ed04147c5f219096a5419a6082e1ac5c8fc..a583de0fe943318648244335fca8b1d81ecacbdc 100644 (file)
@@ -1,25 +1,25 @@
-#-------------------------------------------------------------------------------\r
-# elftools: elf/segments.py\r
-#\r
-# ELF segments\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-\r
-class Segment(object):\r
-    def __init__(self, header, stream):\r
-        self.header = header\r
-        self.stream = stream\r
-    \r
-    def data(self):\r
-        """ The segment data from the file.\r
-        """\r
-        self.stream.seek(self['p_offset'])\r
-        return self.stream.read(self['p_filesz'])\r
-\r
-    def __getitem__(self, name):\r
-        """ Implement dict-like access to header entries\r
-        """\r
-        return self.header[name]\r
-\r
+#-------------------------------------------------------------------------------
+# elftools: elf/segments.py
+#
+# ELF segments
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+
+class Segment(object):
+    def __init__(self, header, stream):
+        self.header = header
+        self.stream = stream
+    
+    def data(self):
+        """ The segment data from the file.
+        """
+        self.stream.seek(self['p_offset'])
+        return self.stream.read(self['p_filesz'])
+
+    def __getitem__(self, name):
+        """ Implement dict-like access to header entries
+        """
+        return self.header[name]
+
index 465a9c86cb1b287c8889d2c7bdb50fca267f6b51..c628c931db172d75c9934445ae23345e4d4e025e 100644 (file)
-#-------------------------------------------------------------------------------\r
-# elftools: elf/structs.py\r
-#\r
-# Encapsulation of Construct structs for parsing an ELF file, adjusted for\r
-# correct endianness and word-size.\r
-#\r
-# Eli Bendersky (eliben@gmail.com)\r
-# This code is in the public domain\r
-#-------------------------------------------------------------------------------\r
-from ..construct import (\r
-    UBInt8, UBInt16, UBInt32, UBInt64,\r
-    ULInt8, ULInt16, ULInt32, ULInt64,\r
-    SBInt32, SLInt32, SBInt64, SLInt64,\r
-    Struct, Array, Enum, Padding,\r
-    )\r
-\r
-from .enums import *\r
-\r
-\r
-class ELFStructs(object):\r
-    """ Accessible attributes:\r
-    \r
-            Elf_{byte|half|word|addr|offset|sword|xword|xsword}:\r
-                Data chunks, as specified by the ELF standard, adjusted for \r
-                correct endianness and word-size.\r
-            \r
-            Elf_Ehdr:\r
-                ELF file header\r
-            \r
-            Elf_Phdr:\r
-                Program header\r
-            \r
-            Elf_Shdr:\r
-                Section header\r
-            \r
-            Elf_Sym:\r
+#-------------------------------------------------------------------------------
+# elftools: elf/structs.py
+#
+# Encapsulation of Construct structs for parsing an ELF file, adjusted for
+# correct endianness and word-size.
+#
+# Eli Bendersky (eliben@gmail.com)
+# This code is in the public domain
+#-------------------------------------------------------------------------------
+from ..construct import (
+    UBInt8, UBInt16, UBInt32, UBInt64,
+    ULInt8, ULInt16, ULInt32, ULInt64,
+    SBInt32, SLInt32, SBInt64, SLInt64,
+    Struct, Array, Enum, Padding,
+    )
+
+from .enums import *
+
+
+class ELFStructs(object):
+    """ Accessible attributes:
+    
+            Elf_{byte|half|word|addr|offset|sword|xword|xsword}:
+                Data chunks, as specified by the ELF standard, adjusted for 
+                correct endianness and word-size.
+            
+            Elf_Ehdr:
+                ELF file header
+            
+            Elf_Phdr:
+                Program header
+            
+            Elf_Shdr:
+                Section header
+            
+            Elf_Sym:
                 Symbol table entry
     """
-    def __init__(self, little_endian=True, elfclass=32):\r
-        assert elfclass == 32 or elfclass == 64\r
-        self.little_endian = little_endian\r
-        self.elfclass = elfclass        \r
-        self._create_structs()\r
-    \r
+    def __init__(self, little_endian=True, elfclass=32):
+        assert elfclass == 32 or elfclass == 64
+        self.little_endian = little_endian
+        self.elfclass = elfclass        
+        self._create_structs()
+    
     def _create_structs(self):
-        if self.little_endian:\r
-            self.Elf_byte = ULInt8\r
-            self.Elf_half = ULInt16\r
-            self.Elf_word = ULInt32\r
-            self.Elf_addr = ULInt32 if self.elfclass == 32 else ULInt64\r
-            self.Elf_offset = self.Elf_addr\r
-            self.Elf_sword = SLInt32\r
-            self.Elf_xword = ULInt32 if self.elfclass == 32 else ULInt64\r
-            self.Elf_sxword = SLInt32 if self.elfclass == 32 else SLInt64\r
-        else:\r
-            self.Elf_byte = UBInt8\r
-            self.Elf_half = UBInt16\r
-            self.Elf_word = UBInt32\r
-            self.Elf_addr = UBInt32 if self.elfclass == 32 else UBInt64\r
-            self.Elf_offset = self.Elf_addr\r
-            self.Elf_sword = SBInt32\r
-            self.Elf_xword = UBInt32 if self.elfclass == 32 else UBInt64\r
-            self.Elf_sxword = SBInt32 if self.elfclass == 32 else SBInt64\r
-        \r
-        self._create_ehdr()\r
-        self._create_phdr()\r
-        self._create_shdr()\r
-        self._create_sym()\r
-    \r
+        if self.little_endian:
+            self.Elf_byte = ULInt8
+            self.Elf_half = ULInt16
+            self.Elf_word = ULInt32
+            self.Elf_addr = ULInt32 if self.elfclass == 32 else ULInt64
+            self.Elf_offset = self.Elf_addr
+            self.Elf_sword = SLInt32
+            self.Elf_xword = ULInt32 if self.elfclass == 32 else ULInt64
+            self.Elf_sxword = SLInt32 if self.elfclass == 32 else SLInt64
+        else:
+            self.Elf_byte = UBInt8
+            self.Elf_half = UBInt16
+            self.Elf_word = UBInt32
+            self.Elf_addr = UBInt32 if self.elfclass == 32 else UBInt64
+            self.Elf_offset = self.Elf_addr
+            self.Elf_sword = SBInt32
+            self.Elf_xword = UBInt32 if self.elfclass == 32 else UBInt64
+            self.Elf_sxword = SBInt32 if self.elfclass == 32 else SBInt64
+        
+        self._create_ehdr()
+        self._create_phdr()
+        self._create_shdr()
+        self._create_sym()
+    
     def _create_ehdr(self):
-        self.Elf_Ehdr = Struct('Elf_Ehdr',\r
-            Struct('e_ident',\r
-                Array(4, self.Elf_byte('EI_MAG')),\r
-                Enum(self.Elf_byte('EI_CLASS'), **ENUM_EI_CLASS),\r
-                Enum(self.Elf_byte('EI_DATA'), **ENUM_EI_DATA),\r
-                Enum(self.Elf_byte('EI_VERSION'), **ENUM_E_VERSION),\r
-                Padding(9)                \r
-            ),\r
-            Enum(self.Elf_half('e_type'), **ENUM_E_TYPE),\r
-            Enum(self.Elf_half('e_machine'), **ENUM_E_MACHINE),\r
-            Enum(self.Elf_word('e_version'), **ENUM_E_VERSION),\r
-            self.Elf_addr('e_entry'),\r
-            self.Elf_offset('e_phoff'),\r
-            self.Elf_offset('e_shoff'),\r
-            self.Elf_word('e_flags'),\r
-            self.Elf_half('e_ehsize'),\r
-            self.Elf_half('e_phentsize'),\r
-            self.Elf_half('e_phnum'),\r
-            self.Elf_half('e_shentsize'),\r
-            self.Elf_half('e_shnum'),\r
-            self.Elf_half('e_shstrndx'),\r
-        )\r
-    \r
-    def _create_phdr(self):\r
-        if self.elfclass == 32:\r
-            self.Elf_Phdr = Struct('Elf_Phdr',\r
-                Enum(self.Elf_word('p_type'), **ENUM_P_TYPE),\r
-                self.Elf_offset('p_offset'),\r
-                self.Elf_addr('p_vaddr'),\r
-                self.Elf_addr('p_paddr'),\r
-                self.Elf_word('p_filesz'),\r
-                self.Elf_word('p_memsz'),\r
-                self.Elf_word('p_flags'),\r
-                self.Elf_word('p_align'),\r
-            )\r
-        else:\r
-            self.Elf_Phdr = Struct('Elf_Phdr',\r
-                Enum(self.Elf_word('p_type'), **ENUM_P_TYPE),\r
-                self.Elf_word('p_flags'),\r
-                self.Elf_offset('p_offset'),\r
-                self.Elf_addr('p_vaddr'),\r
-                self.Elf_addr('p_paddr'),\r
-                self.Elf_word('p_filesz'),\r
-                self.Elf_word('p_memsz'),\r
-                self.Elf_word('p_align'),\r
-            )   \r
-        \r
+        self.Elf_Ehdr = Struct('Elf_Ehdr',
+            Struct('e_ident',
+                Array(4, self.Elf_byte('EI_MAG')),
+                Enum(self.Elf_byte('EI_CLASS'), **ENUM_EI_CLASS),
+                Enum(self.Elf_byte('EI_DATA'), **ENUM_EI_DATA),
+                Enum(self.Elf_byte('EI_VERSION'), **ENUM_E_VERSION),
+                Padding(9)                
+            ),
+            Enum(self.Elf_half('e_type'), **ENUM_E_TYPE),
+            Enum(self.Elf_half('e_machine'), **ENUM_E_MACHINE),
+            Enum(self.Elf_word('e_version'), **ENUM_E_VERSION),
+            self.Elf_addr('e_entry'),
+            self.Elf_offset('e_phoff'),
+            self.Elf_offset('e_shoff'),
+            self.Elf_word('e_flags'),
+            self.Elf_half('e_ehsize'),
+            self.Elf_half('e_phentsize'),
+            self.Elf_half('e_phnum'),
+            self.Elf_half('e_shentsize'),
+            self.Elf_half('e_shnum'),
+            self.Elf_half('e_shstrndx'),
+        )
+    
+    def _create_phdr(self):
+        if self.elfclass == 32:
+            self.Elf_Phdr = Struct('Elf_Phdr',
+                Enum(self.Elf_word('p_type'), **ENUM_P_TYPE),
+                self.Elf_offset('p_offset'),
+                self.Elf_addr('p_vaddr'),
+                self.Elf_addr('p_paddr'),
+                self.Elf_word('p_filesz'),
+                self.Elf_word('p_memsz'),
+                self.Elf_word('p_flags'),
+                self.Elf_word('p_align'),
+            )
+        else:
+            self.Elf_Phdr = Struct('Elf_Phdr',
+                Enum(self.Elf_word('p_type'), **ENUM_P_TYPE),
+                self.Elf_word('p_flags'),
+                self.Elf_offset('p_offset'),
+                self.Elf_addr('p_vaddr'),
+                self.Elf_addr('p_paddr'),
+                self.Elf_word('p_filesz'),
+                self.Elf_word('p_memsz'),
+                self.Elf_word('p_align'),
+            )   
+        
     def _create_shdr(self):
-        self.Elf_Shdr = Struct('Elf_Shdr',\r
-            self.Elf_word('sh_name'),\r
-            Enum(self.Elf_word('sh_type'), **ENUM_SH_TYPE),\r
-            self.Elf_xword('sh_flags'),\r
-            self.Elf_addr('sh_addr'),\r
-            self.Elf_offset('sh_offset'),\r
-            self.Elf_xword('sh_size'),\r
-            self.Elf_word('sh_link'),\r
-            self.Elf_word('sh_info'),\r
-            self.Elf_xword('sh_addralign'),\r
-            self.Elf_xword('sh_entsize'),\r
-        )\r
-    \r
+        self.Elf_Shdr = Struct('Elf_Shdr',
+            self.Elf_word('sh_name'),
+            Enum(self.Elf_word('sh_type'), **ENUM_SH_TYPE),
+            self.Elf_xword('sh_flags'),
+            self.Elf_addr('sh_addr'),
+            self.Elf_offset('sh_offset'),
+            self.Elf_xword('sh_size'),
+            self.Elf_word('sh_link'),
+            self.Elf_word('sh_info'),
+            self.Elf_xword('sh_addralign'),
+            self.Elf_xword('sh_entsize'),
+        )
+    
     def _create_sym(self):
-        if self.elfclass == 32:\r
-            self.Elf_Sym = Struct('Elf_Sym',\r
-                self.Elf_word('st_name'),\r
-                self.Elf_addr('st_value'),\r
-                self.Elf_word('st_size'),\r
-                self.Elf_byte('st_info'),\r
-                self.Elf_byte('st_other'),\r
-                self.Elf_half('st_shndx'),\r
-            )\r
-        else:\r
-            self.Elf_Sym = Struct('Elf_Sym',\r
-                self.Elf_word('st_name'),\r
-                self.Elf_byte('st_info'),\r
-                self.Elf_byte('st_other'),\r
-                self.Elf_half('st_shndx'),\r
-                self.Elf_addr('st_value'),\r
-                self.Elf_xword('st_size'),\r
-            )\r
-\r
-\r
-\r
+        if self.elfclass == 32:
+            self.Elf_Sym = Struct('Elf_Sym',
+                self.Elf_word('st_name'),
+                self.Elf_addr('st_value'),
+                self.Elf_word('st_size'),
+                self.Elf_byte('st_info'),
+                self.Elf_byte('st_other'),
+                self.Elf_half('st_shndx'),
+            )
+        else:
+            self.Elf_Sym = Struct('Elf_Sym',
+                self.Elf_word('st_name'),
+                self.Elf_byte('st_info'),
+                self.Elf_byte('st_other'),
+                self.Elf_half('st_shndx'),
+                self.Elf_addr('st_value'),
+                self.Elf_xword('st_size'),
+            )
+
+
+
diff --git a/z.py b/z.py
index 2a5485c02f70f01833d65db2e59552d1fb11b16e..fc295e7b941f9d3bad1f50b7a75410c3c40b1e5a 100644 (file)
--- a/z.py
+++ b/z.py
@@ -1,57 +1,58 @@
-import sys\r
-from elftools.elf.structs import ELFStructs\r
-from elftools.elf.elffile import ELFFile\r
-from elftools.elf.sections import *\r
-\r
-# read a little-endian, 64-bit file\r
-es = ELFStructs(True, 64)\r
-\r
-stream = open('binfiles/z.elf', 'rb')\r
-\r
-efile = ELFFile(stream)\r
-\r
-print '===> %s sections!' % efile.num_sections() \r
-print '===> %s segments!' % efile.num_segments()\r
-\r
-for sec in efile.iter_sections():\r
-    print type(sec), sec.name\r
-    if isinstance(sec, SymbolTableSection):\r
-        print '   linked string table:', sec.stringtable.name\r
-\r
-for seg in efile.iter_segments():\r
-    print seg['p_type'], seg['p_offset']\r
-\r
-\r
-#~ print 'num', efile.num_sections()\r
-#~ sec = efile.get_section(39)\r
-#~ print sec.header\r
-#~ print sec.name\r
-#~ print sec['sh_type']\r
-#~ print map(ord, sec.data())\r
-\r
-#~ print sec.stream\r
-#~ print map(ord, efile._stringtable)\r
-\r
-#~ print efile.header\r
-#~ print dir(efile)\r
-#~ print efile['e_type']\r
-\r
-#~ shtable_offset = efile['e_shoff']\r
-#~ strtable_section_offset = shtable_offset + efile['e_shstrndx'] * efile['e_shentsize']\r
-\r
-#~ # get to the section header for the sh string table\r
-#~ print strtable_section_offset\r
-#~ stream.seek(strtable_section_offset)\r
-#~ sheader = es.Elf_Shdr.parse_stream(stream)\r
-#~ print sheader\r
-\r
-#~ # yay, looks correct!!\r
-#~ stream.seek(sheader.sh_offset)\r
-#~ buf = stream.read(sheader.sh_size)\r
-#~ for c in buf:\r
-    #~ sys.stdout.write('%02X' % ord(c))\r
-\r
-\r
-\r
-\r
-#~ print es.Elf_Ehdr\r
+import sys
+from elftools.elf.structs import ELFStructs
+from elftools.elf.elffile import ELFFile
+from elftools.elf.sections import *
+
+# read a little-endian, 64-bit file
+es = ELFStructs(True, 64)
+
+stream = open('binfiles/z.elf', 'rb')
+#stream = open('binfiles/z32.elf', 'rb')
+
+efile = ELFFile(stream)
+
+print '===> %s sections!' % efile.num_sections() 
+print '===> %s segments!' % efile.num_segments()
+
+for sec in efile.iter_sections():
+    print type(sec), sec.name
+    if isinstance(sec, SymbolTableSection):
+        print '   linked string table:', sec.stringtable.name
+
+for seg in efile.iter_segments():
+    print seg['p_type'], seg['p_offset']
+
+
+#~ print 'num', efile.num_sections()
+#~ sec = efile.get_section(39)
+#~ print sec.header
+#~ print sec.name
+#~ print sec['sh_type']
+#~ print map(ord, sec.data())
+
+#~ print sec.stream
+#~ print map(ord, efile._stringtable)
+
+#~ print efile.header
+#~ print dir(efile)
+#~ print efile['e_type']
+
+#~ shtable_offset = efile['e_shoff']
+#~ strtable_section_offset = shtable_offset + efile['e_shstrndx'] * efile['e_shentsize']
+
+#~ # get to the section header for the sh string table
+#~ print strtable_section_offset
+#~ stream.seek(strtable_section_offset)
+#~ sheader = es.Elf_Shdr.parse_stream(stream)
+#~ print sheader
+
+#~ # yay, looks correct!!
+#~ stream.seek(sheader.sh_offset)
+#~ buf = stream.read(sheader.sh_size)
+#~ for c in buf:
+    #~ sys.stdout.write('%02X' % ord(c))
+
+
+
+
+#~ print es.Elf_Ehdr