Uname: Linux server.digisquadtech.com 4.18.0-553.100.1.el8_10.x86_64 #1 SMP Mon Feb 2 04:13:33 EST 2026 x86_64
User: 1091 (madhavfluid)
Group: 1090 (madhavfluid)
Disabled functions: NONE
Safe mode: On[ PHPinfo ]
//usr/lib64/python3.6///__pycache__      ( Reset | Go to )
File Name: chunk.cpython-36.pyc
3

 \1@sdZGdddZdS)aSimple 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 an 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.
c@sZeZdZdddZddZddZd    d
Zd d ZdddZddZ    dddZ
ddZ dS)ChunkTFcCsddl}d|_||_|rd}nd}||_|jd|_t|jdkrFty |j|d|jdd|_    Wn|j
k
rtYnX|r|j    d|_    d|_ y|jj |_ Wnttfk
rd|_YnXd|_dS)    NF><LT)structclosedalignfileread    chunknamelenEOFErrorZ unpack_from    chunksizeerror    size_readtelloffsetAttributeErrorOSErrorseekable)selfr r
Z    bigendianZ
inclheaderrZstrflagr/usr/lib64/python3.6/chunk.py__init__4s,  
  zChunk.__init__cCs|jS)z*Return the name (ID) of the current chunk.)r )rrrrgetnameNsz Chunk.getnamecCs|jS)z%Return the size of the current chunk.)r)rrrrgetsizeRsz Chunk.getsizec Cs |jsz |jWdd|_XdS)NT)r    skip)rrrrcloseVs z Chunk.closecCs|jrtddS)NzI/O operation on closed fileF)r    
ValueError)rrrrisatty]sz Chunk.isattyrcCsv|jrtd|jstd|dkr0||j}n|dkrB||j}|dksT||jkrXt|jj|j    |d||_dS)zSeek 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.
        zI/O operation on closed filez cannot seekrN)
r    r rrrr RuntimeErrorr seekr)rposwhencerrrr%bs 
z
Chunk.seekcCs|jrtd|jS)NzI/O operation on closed file)r    r r)rrrrrusz
Chunk.tellr"cCs|jrtd|j|jkrdS|dkr2|j|j}||j|jkrN|j|j}|jj|}|jt||_|j|jkr|jr|jd@r|jjd}|jt||_|S)zRead at most size bytes from the chunk.
        If size is omitted or negative, read until the end
        of the chunk.
        zI/O operation on closed filerr")r    r rrr r rr
)rsizedatadummyrrrr zs      
 z
Chunk.readc Cs|jrtd|jrlyB|j|j}|jr:|jd@r:|d}|jj|d|j||_dStk
rjYnXx4|j|jkrt    d|j|j}|j
|}|snt qnWdS)zSkip 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.
        zI/O operation on closed filer"Ni ) r    r rrrr
r r%rminr r)rnr+rrrrs"  
z
Chunk.skipN)TTF)r)r.) __name__
__module__ __qualname__rrrrr!r%rr rrrrrr3s


rN)__doc__rrrrr<module>1s

All system for education purposes only. For more tools: Telegram @jackleet

Mr.X Private Shell

Logo
-
New File | New Folder
Command
SQL