tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
L\¬Qc@sdZddd„ƒYZdS(sSimple class to read IFF chunks.
 
An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File
Format)) has the following structure:
 
+----------------+
| ID (4 bytes)   |
+----------------+
| size (4 bytes) |
+----------------+
| data           |
| ...            |
+----------------+
 
The ID is a 4-byte string which identifies the type of chunk.
 
The size field (a 32-bit value, encoded using big-endian byte order)
gives the size of the whole chunk, including the 8-byte header.
 
Usually an IFF-type file consists of one or more chunks.  The proposed
usage of the Chunk class defined here is to instantiate an instance at
the start of each chunk and read from the instance until it reaches
the end, after which a new instance can be instantiated.  At the end
of the file, creating a new instance will fail with a EOFError
exception.
 
Usage:
while True:
    try:
        chunk = Chunk(file)
    except EOFError:
        break
    chunktype = chunk.getname()
    while True:
        data = chunk.read(nbytes)
        if not data:
            pass
        # do something with data
 
The interface is file-like.  The implemented methods are:
read, close, seek, tell, isatty.
Extra methods are: skip() (called by close, skips to the end of the chunk),
getname() (returns the name (ID) of the chunk)
 
The __init__ method has one required argument, a file-like object
(including a chunk instance), and one optional argument, a flag which
specifies whether or not chunks are aligned on 2-byte boundaries.  The
default is 1, i.e. aligned.
tChunkcBsheZeeed„Zd„Zd„Zd„Zd„Zdd„Z    d„Z
dd    „Z d
„Z RS( cCsddl}t|_||_|r-d}nd}||_|jdƒ|_t|jƒdkrlt‚ny*|j    |d|jdƒƒd|_
Wn|j k
r²t‚nX|rÌ|j
d|_
nd|_ y|jj ƒ|_Wn ttfk
r t|_n
Xt|_dS(Niÿÿÿÿt>t<itLii(tstructtFalsetclosedtaligntfiletreadt    chunknametlentEOFErrortunpackt    chunksizeterrort    size_readttelltoffsettAttributeErrortIOErrortseekabletTrue(tselfRRt    bigendiant
inclheaderRtstrflag((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyt__init__4s,                     *
     cCs|jS(s*Return the name (ID) of the current chunk.(R
(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pytgetnameNscCs|jS(s%Return the size of the current chunk.(R(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pytgetsizeRscCs#|js|jƒt|_ndS(N(RtskipR(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pytcloseVs    
cCs|jrtd‚ntS(NsI/O operation on closed file(Rt
ValueErrorR(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pytisatty[s     icCs­|jrtd‚n|js*td‚n|dkrF||j}n|dkrb||j}n|dks}||jkr†t‚n|jj|j    |dƒ||_dS(s¦Seek to specified position into the chunk.
        Default position is 0 (start of chunk).
        If the file is not seekable, this will result in an error.
        sI/O operation on closed files cannot seekiiiN(
RR RRRRt RuntimeErrorRtseekR(Rtpostwhence((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyR#`s                cCs|jrtd‚n|jS(NsI/O operation on closed file(RR R(R((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyRss     iÿÿÿÿcCsò|jrtd‚n|j|jkr+dS|dkrJ|j|j}n||j|jkrs|j|j}n|jj|ƒ}|jt|ƒ|_|j|jkrî|jrî|jd@rî|jjdƒ}|jt|ƒ|_n|S(sRead at most size bytes from the chunk.
        If size is omitted or negative, read until the end
        of the chunk.
        sI/O operation on closed filetii(RR RRRR    R R(Rtsizetdatatdummy((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyR    xs            cCsç|jrtd‚n|jr“y^|j|j}|jrT|jd@rT|d}n|jj|dƒ|j||_dSWq“tk
rq“XnxM|j|jkrât    d|j|jƒ}|j
|ƒ}|s–t ‚q–q–WdS(sÉSkip the rest of the chunk.
        If you are not interested in the contents of the chunk,
        this method should be called so that the file points to
        the start of the next chunk.
        sI/O operation on closed fileiNi ( RR RRRRRR#RtminR    R (RtnR)((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyRs"           ( t__name__t
__module__RRRRRRR!R#RR    R(((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyR3s                      N((t__doc__R(((sM/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/chunk.pyt<module>1s