Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 18.218.230.170
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : chunk.cpython-32.pyo
l
��bc@sdZGd�d�ZdS(uSimple 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.
cBsn|EeZddd
d�Zd�Zd�Zd�Zd�Zdd�Z	d�Z
dd	�Zd
�ZdS(cCsddl}d|_||_|r-d}nd}||_|jd�|_t|j�dkrlt�ny*|j	|d|jd��d|_
Wn|jk
r�t�YnX|r�|j
d|_
nd|_y|jj
�|_Wn!ttfk
rd|_Yn
Xd|_dS(	Niu>u<iuLiFT(ustructuFalseuclosedualignufileureadu	chunknameulenuEOFErroruunpack_fromu	chunksizeuerroru	size_readutelluoffsetuAttributeErroruIOErroruseekableuTrue(uselfufileualignu	bigendianu
inclheaderustructustrflag((u,/usr/local/python-3.2/lib/python3.2/chunk.pyu__init__4s,					*	cCs|jS(u*Return the name (ID) of the current chunk.(u	chunkname(uself((u,/usr/local/python-3.2/lib/python3.2/chunk.pyugetnameNscCs|jS(u%Return the size of the current chunk.(u	chunksize(uself((u,/usr/local/python-3.2/lib/python3.2/chunk.pyugetsizeRscCs#|js|j�d|_ndS(NT(ucloseduskipuTrue(uself((u,/usr/local/python-3.2/lib/python3.2/chunk.pyucloseVs	
cCs|jrtd��ndS(NuI/O operation on closed fileF(uclosedu
ValueErroruFalse(uself((u,/usr/local/python-3.2/lib/python3.2/chunk.pyuisatty[s	icCs�|jrtd��n|js0td��n|dkrL||j}n|dkrh||j}n|dks�||jkr�t�n|jj|j	|d�||_dS(u�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.
        uI/O operation on closed fileucannot seekiiiN(
uclosedu
ValueErroruseekableuIOErroru	size_readu	chunksizeuRuntimeErrorufileuseekuoffset(uselfuposuwhence((u,/usr/local/python-3.2/lib/python3.2/chunk.pyuseek`s			cCs|jrtd��n|jS(NuI/O operation on closed file(uclosedu
ValueErroru	size_read(uself((u,/usr/local/python-3.2/lib/python3.2/chunk.pyutellss	icCs�|jrtd��n|j|jkr.dS|dkrM|j|j}n||j|jkrv|j|j}n|jj|�}|jt|�|_|j|jkr�|jr�|jd@r�|jjd�}|jt|�|_n|S(u�Read at most size bytes from the chunk.
        If size is omitted or negative, read until the end
        of the chunk.
        uI/O operation on closed fileuii(uclosedu
ValueErroru	size_readu	chunksizeufileureadulenualign(uselfusizeudataudummy((u,/usr/local/python-3.2/lib/python3.2/chunk.pyureadxs 		
cCs�|jrtd��n|jr�y^|j|j}|jrW|jd@rW|d}n|jj|d�|j||_dSWq�tk
r�Yq�XnxM|j|jkr�t	d|j|j�}|j
|�}|s�t�q�q�WdS(u�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.
        uI/O operation on closed fileiNi (uclosedu
ValueErroruseekableu	chunksizeu	size_readualignufileuseekuIOErroruminureaduEOFError(uselfunudummy((u,/usr/local/python-3.2/lib/python3.2/chunk.pyuskip�s"		

NTFi����(
u__name__u
__module__uTrueuFalseu__init__ugetnameugetsizeucloseuisattyuseekutellureaduskip(u
__locals__((u,/usr/local/python-3.2/lib/python3.2/chunk.pyuChunk3s
					uChunkN(u__doc__uChunk(((u,/usr/local/python-3.2/lib/python3.2/chunk.pyu<module>1s
© 2025 GrazzMean