File: //lib64/python3.9/__pycache__/bz2.cpython-39.opt-1.pyc
a
    �DOg�0  �                   @   s�   d Z g d�ZdZddlmZ ddlZddlZddlZddl	m
Z
 ddlmZm
Z
 dZdZd	ZG d
d� dej�Zddd�Zddd�Zdd� ZdS )z�Interface to the libbzip2 compression library.
This module provides a file interface, classes for incremental
(de)compression, and functions for one-shot (de)compression.
)�BZ2File�
BZ2Compressor�BZ2Decompressor�open�compress�
decompressz%Nadeem Vawda <nadeem.vawda@gmail.com>�    )r   N)�RLock)r   r   �   �   c                   @   s�   e Zd ZdZd*dd�dd�Zdd� Zed	d
� �Zdd� Zd
d� Z	dd� Z
dd� Zd+dd�Zd,dd�Z
d-dd�Zdd� Zd.dd�Zd/dd �Zd!d"� Zd#d$� Zejfd%d&�Zd'd(� Zd)S )0r   a@  A file object providing transparent bzip2 (de)compression.
    A BZ2File can act as a wrapper for an existing file object, or refer
    directly to a named file on disk.
    Note that BZ2File provides a *binary* file interface - data read is
    returned as bytes, and data to be written should be given as bytes.
    �r�	   ��
compresslevelc                C   s8  t � | _d| _d| _t| _d|  kr.dks8n td��|dv rJd}t}nb|dv rfd	}t}t	|�| _
nF|d
v r�d}t}t	|�| _
n*|dv r�d
}t}t	|�| _
ntd|f ��t|tt
tjf�r�t||�| _d| _|| _n*t|d�s�t|d�r�|| _|| _ntd��| jtk�r.tj| jttd�}t�|�| _nd| _dS )a  Open a bzip2-compressed file.
        If filename is a str, bytes, or PathLike object, it gives the
        name of the file to be opened. Otherwise, it should be a file
        object, which will be used to read or write the compressed data.
        mode can be 'r' for reading (default), 'w' for (over)writing,
        'x' for creating exclusively, or 'a' for appending. These can
        equivalently be given as 'rb', 'wb', 'xb', and 'ab'.
        If mode is 'w', 'x' or 'a', compresslevel can be a number between 1
        and 9 specifying the level of compression: 1 produces the least
        compression, and 9 (default) produces the most compression.
        If mode is 'r', the input file may be the concatenation of
        multiple compressed streams.
        NFr	   r   z%compresslevel must be between 1 and 9)� r   �rbr   )�w�wbr   )�x�xbr   )�a�abr   �Invalid mode: %rT�read�writez6filename must be a str, bytes, file or PathLike object)�trailing_errorr   )r   �_lock�_fp�_closefp�_MODE_CLOSED�_mode�
ValueError�
_MODE_READ�_MODE_WRITEr   �_compressor�
isinstance�str�bytes�os�PathLike�
_builtin_open�hasattr�	TypeError�_compression�DecompressReaderr   �OSError�io�BufferedReader�_buffer�_pos)�self�filename�moder   �	mode_code�raw� r8   �/usr/lib64/python3.9/bz2.py�__init__&