blob: 50b6979f836c4fc137bc77c1dc38a3b4582d76d4 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`chunk` --- Read IFF chunked data
2======================================
3
4.. module:: chunk
5 :synopsis: Module to read IFF chunks.
6.. moduleauthor:: Sjoerd Mullender <sjoerd@acm.org>
7.. sectionauthor:: Sjoerd Mullender <sjoerd@acm.org>
8
9
10.. index::
11 single: Audio Interchange File Format
12 single: AIFF
13 single: AIFF-C
14 single: Real Media File Format
15 single: RMFF
16
17This module provides an interface for reading files that use EA IFF 85 chunks.
18[#]_ This format is used in at least the Audio Interchange File Format
19(AIFF/AIFF-C) and the Real Media File Format (RMFF). The WAVE audio file format
20is closely related and can also be read using this module.
21
22A chunk has the following structure:
23
24+---------+--------+-------------------------------+
25| Offset | Length | Contents |
26+=========+========+===============================+
27| 0 | 4 | Chunk ID |
28+---------+--------+-------------------------------+
29| 4 | 4 | Size of chunk in big-endian |
30| | | byte order, not including the |
31| | | header |
32+---------+--------+-------------------------------+
33| 8 | *n* | Data bytes, where *n* is the |
34| | | size given in the preceding |
35| | | field |
36+---------+--------+-------------------------------+
37| 8 + *n* | 0 or 1 | Pad byte needed if *n* is odd |
38| | | and chunk alignment is used |
39+---------+--------+-------------------------------+
40
41The ID is a 4-byte string which identifies the type of chunk.
42
43The size field (a 32-bit value, encoded using big-endian byte order) gives the
44size of the chunk data, not including the 8-byte header.
45
46Usually an IFF-type file consists of one or more chunks. The proposed usage of
47the :class:`Chunk` class defined here is to instantiate an instance at the start
48of each chunk and read from the instance until it reaches the end, after which a
49new instance can be instantiated. At the end of the file, creating a new
50instance will fail with a :exc:`EOFError` exception.
51
52
Georg Brandl0d8f0732009-04-05 22:20:44 +000053.. class:: Chunk(file, align=True, bigendian=True, inclheader=False)
Georg Brandl116aa622007-08-15 14:28:22 +000054
55 Class which represents a chunk. The *file* argument is expected to be a
56 file-like object. An instance of this class is specifically allowed. The
Serhiy Storchakabfdcd432013-10-13 23:09:14 +030057 only method that is needed is :meth:`~io.IOBase.read`. If the methods
58 :meth:`~io.IOBase.seek` and :meth:`~io.IOBase.tell` are present and don't
59 raise an exception, they are also used.
Georg Brandl116aa622007-08-15 14:28:22 +000060 If these methods are present and raise an exception, they are expected to not
61 have altered the object. If the optional argument *align* is true, chunks
62 are assumed to be aligned on 2-byte boundaries. If *align* is false, no
63 alignment is assumed. The default value is true. If the optional argument
64 *bigendian* is false, the chunk size is assumed to be in little-endian order.
65 This is needed for WAVE audio files. The default value is true. If the
66 optional argument *inclheader* is true, the size given in the chunk header
67 includes the size of the header. The default value is false.
68
Benjamin Petersone41251e2008-04-25 01:59:09 +000069 A :class:`Chunk` object supports the following methods:
Georg Brandl116aa622007-08-15 14:28:22 +000070
71
Benjamin Petersone41251e2008-04-25 01:59:09 +000072 .. method:: getname()
Georg Brandl116aa622007-08-15 14:28:22 +000073
Benjamin Petersone41251e2008-04-25 01:59:09 +000074 Returns the name (ID) of the chunk. This is the first 4 bytes of the
75 chunk.
Georg Brandl116aa622007-08-15 14:28:22 +000076
77
Benjamin Petersone41251e2008-04-25 01:59:09 +000078 .. method:: getsize()
Georg Brandl116aa622007-08-15 14:28:22 +000079
Benjamin Petersone41251e2008-04-25 01:59:09 +000080 Returns the size of the chunk.
Georg Brandl116aa622007-08-15 14:28:22 +000081
82
Benjamin Petersone41251e2008-04-25 01:59:09 +000083 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +000084
Benjamin Petersone41251e2008-04-25 01:59:09 +000085 Close and skip to the end of the chunk. This does not close the
86 underlying file.
Georg Brandl116aa622007-08-15 14:28:22 +000087
Antoine Pitrou4272d6a2011-10-12 19:10:10 +020088 The remaining methods will raise :exc:`OSError` if called after the
89 :meth:`close` method has been called. Before Python 3.3, they used to
90 raise :exc:`IOError`, now an alias of :exc:`OSError`.
Georg Brandl116aa622007-08-15 14:28:22 +000091
92
Benjamin Petersone41251e2008-04-25 01:59:09 +000093 .. method:: isatty()
Georg Brandl116aa622007-08-15 14:28:22 +000094
Benjamin Petersone41251e2008-04-25 01:59:09 +000095 Returns ``False``.
Georg Brandl116aa622007-08-15 14:28:22 +000096
97
Georg Brandl0d8f0732009-04-05 22:20:44 +000098 .. method:: seek(pos, whence=0)
Georg Brandl116aa622007-08-15 14:28:22 +000099
Benjamin Petersone41251e2008-04-25 01:59:09 +0000100 Set the chunk's current position. The *whence* argument is optional and
101 defaults to ``0`` (absolute file positioning); other values are ``1``
102 (seek relative to the current position) and ``2`` (seek relative to the
103 file's end). There is no return value. If the underlying file does not
104 allow seek, only forward seeks are allowed.
Georg Brandl116aa622007-08-15 14:28:22 +0000105
106
Benjamin Petersone41251e2008-04-25 01:59:09 +0000107 .. method:: tell()
Georg Brandl116aa622007-08-15 14:28:22 +0000108
Benjamin Petersone41251e2008-04-25 01:59:09 +0000109 Return the current position into the chunk.
Georg Brandl116aa622007-08-15 14:28:22 +0000110
111
Georg Brandl0d8f0732009-04-05 22:20:44 +0000112 .. method:: read(size=-1)
Georg Brandl116aa622007-08-15 14:28:22 +0000113
Benjamin Petersone41251e2008-04-25 01:59:09 +0000114 Read at most *size* bytes from the chunk (less if the read hits the end of
115 the chunk before obtaining *size* bytes). If the *size* argument is
Serhiy Storchaka5e028ae2014-02-06 21:10:41 +0200116 negative or omitted, read all data until the end of the chunk. An empty
117 bytes object is returned when the end of the chunk is encountered
118 immediately.
Georg Brandl116aa622007-08-15 14:28:22 +0000119
120
Benjamin Petersone41251e2008-04-25 01:59:09 +0000121 .. method:: skip()
Georg Brandl116aa622007-08-15 14:28:22 +0000122
Benjamin Petersone41251e2008-04-25 01:59:09 +0000123 Skip to the end of the chunk. All further calls to :meth:`read` for the
Serhiy Storchaka5e028ae2014-02-06 21:10:41 +0200124 chunk will return ``b''``. If you are not interested in the contents of
Benjamin Petersone41251e2008-04-25 01:59:09 +0000125 the chunk, this method should be called so that the file points to the
126 start of the next chunk.
127
Georg Brandl116aa622007-08-15 14:28:22 +0000128
129.. rubric:: Footnotes
130
131.. [#] "EA IFF 85" Standard for Interchange Format Files, Jerry Morrison, Electronic
132 Arts, January 1985.
133