Critics have remarked that those four worthies were truly peerless throughout the ages; yet the present falls short of the pastβthe ancients favored unadorned simplicity, whereas the moderns prefer refined elegance. Styles of substance and ornament rise and fall in succession, shifting with the changing mores of the times; such evolution is simply the natural order of things. The ideal lies in honoring antiquity without clashing with the present, and embracing modernity without succumbing to its flawsβembodying that perfect balance of substance and refinement that defines the true gentleman. There is surely no need to abandon a carved palace in favor of a cave dwelling, or to trade a jade carriage for a primitive cart with solid wooden wheels.
Current path: lib64/python3.8/__pycache__/
β Cloned to:
β¬οΈ Go up: /lib64/python3.8
U
e5d; οΏ½ @ s d Z G ddοΏ½ dοΏ½ZdS )a Simple 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 @ sZ e Zd ZdddοΏ½ZddοΏ½ ZddοΏ½ Zd d
οΏ½ ZddοΏ½ ZdddοΏ½ZddοΏ½ Z dddοΏ½Z
ddοΏ½ ZdS )οΏ½ChunkTFc C sοΏ½ dd l }d| _|| _|rd}nd}|| _|οΏ½dοΏ½| _t| jοΏ½dk rFtοΏ½z |οΏ½|d |οΏ½dοΏ½οΏ½d | _ W n |j
k
rοΏ½ td οΏ½Y nX |rοΏ½| j d | _ d| _z| jοΏ½οΏ½ | _
W n ttfk
rοΏ½ d| _Y nX d| _d S ) NοΏ½ FοΏ½>οΏ½<οΏ½ οΏ½LοΏ½ T)οΏ½structοΏ½closedοΏ½alignοΏ½fileοΏ½readοΏ½ chunknameοΏ½lenοΏ½EOFErrorZunpack_fromοΏ½ chunksizeοΏ½errorοΏ½ size_readοΏ½tellοΏ½offsetοΏ½AttributeErrorοΏ½OSErrorοΏ½seekable)οΏ½selfr r
Z bigendianZ
inclheaderr ZstrflagοΏ½ r οΏ½/usr/lib64/python3.8/chunk.pyοΏ½__init__4 s, zChunk.__init__c C s | j S )z*Return the name (ID) of the current chunk.)r
οΏ½r r r r οΏ½getnameN s z
Chunk.getnamec C s | j S )z%Return the size of the current chunk.)r r r r r οΏ½getsizeR s z
Chunk.getsizec C s | j sz| οΏ½οΏ½ W 5 d| _ X d S )NT)r οΏ½skipr r r r οΏ½closeV s zChunk.closec C s | j rtdοΏ½οΏ½dS )NοΏ½I/O operation on closed fileF)r οΏ½
ValueErrorr r r r οΏ½isatty] s zChunk.isattyr c C sv | j rtdοΏ½οΏ½| jstdοΏ½οΏ½|dkr0|| j }n|dkrB|| j }|dk sT|| jkrXtοΏ½| jοΏ½| j | dοΏ½ || _dS )zοΏ½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.
r! zcannot seekοΏ½ οΏ½ r N)
r r"