b374k
m1n1 1.01
Apache/2.2.15 (CentOS)
Linux obd60-6c49958d75-2q7cw 5.4.0-174-generic #193-Ubuntu SMP Thu Mar 7 14:29:28 UTC 2024 x86_64
uid=48(apache) gid=48(apache) groups=48(apache)
server ip : 172.67.192.52 | your ip : 10.244.126.0
safemode OFF
 >  / usr / lib64 / python2.6 /
Filename/usr/lib64/python2.6/chunk.pyo
Size5.51 kb
Permissionrw-r--r--
Ownerapache
Create time23-Dec-2025 17:41
Last modified20-Jun-2019 19:45
Last accessed22-Apr-2026 05:27
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
Ñò
§ÚêLc@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( c
Cs%ddk}t|_||_|o
d}nd}||_|id�|_t|i�djo
t�ny*|i |d|id��d|_
Wn|i j
o
t�nX|o|i
d|_
nd|_ y|ii
�|_Wn"ttfj
ot|_n Xt|_dS(Niÿÿÿÿt>t<itLii(tstructtFalsetclosedtaligntfiletreadt chunknametlentEOFErrortunpackt chunksizeterrort size_readttelltoffsettAttributeErrortIOErrortseekabletTrue(tselfRRt bigendiant
inclheaderRtstrflag((s/usr/lib64/python2.6/chunk.pyt__init__4s,   
 
*  cCs|iS(s*Return the name (ID) of the current chunk.(R
(R((s/usr/lib64/python2.6/chunk.pytgetnameNscCs|iS(s%Return the size of the current chunk.(R(R((s/usr/lib64/python2.6/chunk.pytgetsizeRscCs%|ip|i�t|_ndS(N(RtskipR(R((s/usr/lib64/python2.6/chunk.pytcloseVs

cCs|io
td�ntS(NsI/O operation on closed file(Rt
ValueErrorR(R((s/usr/lib64/python2.6/chunk.pytisatty[s

icCs¸|io
td�n|ip
td�n|djo||i}n|djo||i}n|djp||ijo
t�n|ii|i |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((s/usr/lib64/python2.6/chunk.pyR#`s






cCs|io
td�n|iS(NsI/O operation on closed file(RR R(R((s/usr/lib64/python2.6/chunk.pyRss

iÿÿÿÿcCsþ|io
td�n|i|ijodS|djo|i|i}n||i|ijo|i|i}n|ii|�}|it|�|_|i|ijoD|io:|id@o,|iid�}|it|�|_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((s/usr/lib64/python2.6/chunk.pyR xs 



cCsô|io
td�n|io{ya|i|i}|io|id@o|d}n|ii|d�|i||_dSWq�tj
oq�XnxQ|i|ijo=t d|i|i�}|i
|�}|p
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)((s/usr/lib64/python2.6/chunk.pyR�s$


 (
t__name__t
__module__RRRRRRR!R#RR R(((s/usr/lib64/python2.6/chunk.pyR3s       N((t__doc__R(((s/usr/lib64/python2.6/chunk.pyt<module>1s