%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/lib/python3.8/__pycache__/
Upload File :
Create Path :
Current File : //usr/local/lib/python3.8/__pycache__/chunk.cpython-38.pyc

U

na;@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
ZddZdddZddZ	dddZ
ddZdS)ChunkTFc	Csddl}d|_||_|rd}nd}||_|d|_t|jdkrFtz ||d|dd|_	Wn|j
k
rtdYnX|r|j	d|_	d|_z|j|_
Wnttfk
rd|_YnXd|_dS)	NF><LT)structclosedalignfileread	chunknamelenEOFErrorunpack_from	chunksizeerror	size_readtelloffsetAttributeErrorOSErrorseekable)selfrr
Z	bigendianZ
inclheaderrZstrflagr!/usr/local/lib/python3.8/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.)rrrrrgetsizeRsz
Chunk.getsizecCs |jsz|W5d|_XdS)NT)r	skiprrrrcloseVszChunk.closecCs|jrtddS)NI/O operation on closed fileF)r	
ValueErrorrrrrisatty]szChunk.isattyrcCsv|jrtd|jstd|dkr0||j}n|dkrB||j}|dksT||jkrXt|j|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.
        r"zcannot seekrN)
r	r#rrrrRuntimeErrorrseekr)rposwhencerrrr(bs
z
Chunk.seekcCs|jrtd|jS)Nr")r	r#rrrrrrusz
Chunk.tellcCs|jrtd|j|jkrdS|dkr2|j|j}||j|jkrN|j|j}|j|}|jt||_|j|jkr|jr|jd@r|jd}|jt||_|S)zRead at most size bytes from the chunk.
        If size is omitted or negative, read until the end
        of the chunk.
        r"rr%)r	r#rrrrrr
)rsizedatadummyrrrrzs$z
Chunk.readcCs|jrtd|jrnzD|j|j}|jr:|jd@r:|d}|j|d|j||_WdStk
rlYnX|j|jkrt	d|j|j}|
|}|sntqndS)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.
        r"r%Ni )r	r#rrrr
rr(rminrr)rnr/rrrr s"
z
Chunk.skipN)TTF)r)r+)__name__
__module____qualname__rrrr!r$r(rrr rrrrr3s


rN)__doc__rrrrr<module>s2

Zerion Mini Shell 1.0