blob: d3558a4d63bf332cb92276cb07c89a23d84dac7f [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
57 only method that is needed is :meth:`read`. If the methods :meth:`seek` and
58 :meth:`tell` are present and don't raise an exception, they are also used.
59 If these methods are present and raise an exception, they are expected to not
60 have altered the object. If the optional argument *align* is true, chunks
61 are assumed to be aligned on 2-byte boundaries. If *align* is false, no
62 alignment is assumed. The default value is true. If the optional argument
63 *bigendian* is false, the chunk size is assumed to be in little-endian order.
64 This is needed for WAVE audio files. The default value is true. If the
65 optional argument *inclheader* is true, the size given in the chunk header
66 includes the size of the header. The default value is false.
67
Benjamin Petersone41251e2008-04-25 01:59:09 +000068 A :class:`Chunk` object supports the following methods:
Georg Brandl116aa622007-08-15 14:28:22 +000069
70
Benjamin Petersone41251e2008-04-25 01:59:09 +000071 .. method:: getname()
Georg Brandl116aa622007-08-15 14:28:22 +000072
Benjamin Petersone41251e2008-04-25 01:59:09 +000073 Returns the name (ID) of the chunk. This is the first 4 bytes of the
74 chunk.
Georg Brandl116aa622007-08-15 14:28:22 +000075
76
Benjamin Petersone41251e2008-04-25 01:59:09 +000077 .. method:: getsize()
Georg Brandl116aa622007-08-15 14:28:22 +000078
Benjamin Petersone41251e2008-04-25 01:59:09 +000079 Returns the size of the chunk.
Georg Brandl116aa622007-08-15 14:28:22 +000080
81
Benjamin Petersone41251e2008-04-25 01:59:09 +000082 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +000083
Benjamin Petersone41251e2008-04-25 01:59:09 +000084 Close and skip to the end of the chunk. This does not close the
85 underlying file.
Georg Brandl116aa622007-08-15 14:28:22 +000086
Benjamin Petersone41251e2008-04-25 01:59:09 +000087 The remaining methods will raise :exc:`IOError` if called after the
88 :meth:`close` method has been called.
Georg Brandl116aa622007-08-15 14:28:22 +000089
90
Benjamin Petersone41251e2008-04-25 01:59:09 +000091 .. method:: isatty()
Georg Brandl116aa622007-08-15 14:28:22 +000092
Benjamin Petersone41251e2008-04-25 01:59:09 +000093 Returns ``False``.
Georg Brandl116aa622007-08-15 14:28:22 +000094
95
Georg Brandl0d8f0732009-04-05 22:20:44 +000096 .. method:: seek(pos, whence=0)
Georg Brandl116aa622007-08-15 14:28:22 +000097
Benjamin Petersone41251e2008-04-25 01:59:09 +000098 Set the chunk's current position. The *whence* argument is optional and
99 defaults to ``0`` (absolute file positioning); other values are ``1``
100 (seek relative to the current position) and ``2`` (seek relative to the
101 file's end). There is no return value. If the underlying file does not
102 allow seek, only forward seeks are allowed.
Georg Brandl116aa622007-08-15 14:28:22 +0000103
104
Benjamin Petersone41251e2008-04-25 01:59:09 +0000105 .. method:: tell()
Georg Brandl116aa622007-08-15 14:28:22 +0000106
Benjamin Petersone41251e2008-04-25 01:59:09 +0000107 Return the current position into the chunk.
Georg Brandl116aa622007-08-15 14:28:22 +0000108
109
Georg Brandl0d8f0732009-04-05 22:20:44 +0000110 .. method:: read(size=-1)
Georg Brandl116aa622007-08-15 14:28:22 +0000111
Benjamin Petersone41251e2008-04-25 01:59:09 +0000112 Read at most *size* bytes from the chunk (less if the read hits the end of
113 the chunk before obtaining *size* bytes). If the *size* argument is
114 negative or omitted, read all data until the end of the chunk. The bytes
115 are returned as a string object. An empty string is returned when the end
116 of the chunk is encountered immediately.
Georg Brandl116aa622007-08-15 14:28:22 +0000117
118
Benjamin Petersone41251e2008-04-25 01:59:09 +0000119 .. method:: skip()
Georg Brandl116aa622007-08-15 14:28:22 +0000120
Benjamin Petersone41251e2008-04-25 01:59:09 +0000121 Skip to the end of the chunk. All further calls to :meth:`read` for the
122 chunk will return ``''``. If you are not interested in the contents of
123 the chunk, this method should be called so that the file points to the
124 start of the next chunk.
125
Georg Brandl116aa622007-08-15 14:28:22 +0000126
127.. rubric:: Footnotes
128
129.. [#] "EA IFF 85" Standard for Interchange Format Files, Jerry Morrison, Electronic
130 Arts, January 1985.
131