Your IP : 3.147.84.33


Current Path : /lib64/python3.6/__pycache__/
Upload File :
Current File : //lib64/python3.6/__pycache__/lzma.cpython-36.opt-1.pyc

3


 \�2�$@s�dZddddddddd	d
ddd
ddddddddddddddddddd d!d"d#d$g$Zd%d&lZd%d&lZd%d&lZd%d'lTd%d(lmZmZd%d&lZd%Z	d)Z
d*ZGd+d�dej�Z
d1d&d2d&d&d&d&d&d-�d.d!�Zed3d&d&fd/d"�Zed&d&fd0d#�Zd&S)4aSInterface to the liblzma compression library.

This module provides a class for reading and writing compressed files,
classes for incremental (de)compression, and convenience functions for
one-shot (de)compression.

These classes and functions support both the XZ and legacy LZMA
container formats, as well as raw compressed data streams.
Z
CHECK_NONEZCHECK_CRC32ZCHECK_CRC64ZCHECK_SHA256ZCHECK_ID_MAXZ
CHECK_UNKNOWNZFILTER_LZMA1ZFILTER_LZMA2ZFILTER_DELTAZ
FILTER_X86ZFILTER_IA64Z
FILTER_ARMZFILTER_ARMTHUMBZFILTER_POWERPCZFILTER_SPARC�FORMAT_AUTO�	FORMAT_XZZFORMAT_ALONEZ
FORMAT_RAWZMF_HC3ZMF_HC4ZMF_BT2ZMF_BT3ZMF_BT4Z	MODE_FASTZMODE_NORMALZPRESET_DEFAULTZPRESET_EXTREME�LZMACompressor�LZMADecompressor�LZMAFile�	LZMAError�open�compress�
decompressZis_check_supported�N)�*)�_encode_filter_properties�_decode_filter_properties��c@s�eZdZdZd"dd#ddd�dd�Zdd	�Zed
d��Zdd
�Zdd�Z	dd�Z
dd�Zd%dd�Zd'dd�Z
d)dd�Zd+dd�Zdd�Zejfdd�Zd d!�ZdS),ra@A file object providing transparent LZMA (de)compression.

    An LZMAFile can act as a wrapper for an existing file object, or
    refer directly to a named file on disk.

    Note that LZMAFile provides a *binary* file interface - data read
    is returned as bytes, and data to be written must be given as bytes.
    N�rr)�format�check�preset�filtersc	Cs&d|_d|_t|_|dkrL|dkr*td��|dk	r:td��|dkrFt}t}n@|dkr~|dkr`t}t}t	||||d�|_
d|_ntdj|���t
|tttjf�r�d|kr�|d7}tj||�|_d|_||_n*t|d�s�t|d�r�||_||_ntd��|jtk�r"tj|jtt||d�}tj|�|_dS)a�Open an LZMA-compressed file in binary mode.

        filename can be either an actual file name (given as a str,
        bytes, or PathLike object), in which case the named file is
        opened, or it can be an existing file object to read from or
        write to.

        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" respectively.

        format specifies the container format to use for the file.
        If mode is "r", this defaults to FORMAT_AUTO. Otherwise, the
        default is FORMAT_XZ.

        check specifies the integrity check to use. This argument can
        only be used when opening a file for writing. For FORMAT_XZ,
        the default is CHECK_CRC64. FORMAT_ALONE and FORMAT_RAW do not
        support integrity checks - for these formats, check must be
        omitted, or be CHECK_NONE.

        When opening a file for reading, the *preset* argument is not
        meaningful, and should be omitted. The *filters* argument should
        also be omitted, except when format is FORMAT_RAW (in which case
        it is required).

        When opening a file for writing, the settings used by the
        compressor can be specified either as a preset compression
        level (with the *preset* argument), or in detail as a custom
        filter chain (with the *filters* argument). For FORMAT_XZ and
        FORMAT_ALONE, the default is to use the PRESET_DEFAULT preset
        level. For FORMAT_RAW, the caller must always specify a filter
        chain; the raw compressor does not support preset compression
        levels.

        preset (if provided) should be an integer in the range 0-9,
        optionally OR-ed with the constant PRESET_EXTREME.

        filters (if provided) should be a sequence of dicts. Each dict
        should have an entry for "id" indicating ID of the filter, plus
        additional entries for options to the filter.
        NFr�rbrzACannot specify an integrity check when opening a file for readingzICannot specify a preset compression level when opening a file for reading�w�wb�a�ab�x�xb)rrrrr
zInvalid mode: {!r}�bT�read�writez6filename must be a str, bytes, file or PathLike object)Ztrailing_errorrr)rr���)rrrrrr)�_fp�_closefp�_MODE_CLOSED�_mode�
ValueErrorr�
_MODE_READr�_MODE_WRITEr�_compressor�_posr�
isinstance�str�bytes�os�PathLike�builtinsr�hasattr�	TypeError�_compressionZDecompressReaderrr�io�BufferedReader�_buffer)	�self�filename�moderrrrZ	mode_code�raw�r9�/usr/lib64/python3.6/lzma.py�__init__1sB,
zLZMAFile.__init__cCs�|jtkrdSzB|jtkr,|jj�d|_n"|jtkrN|jj|jj	��d|_Wdz|j
rd|jj�Wdd|_d|_
t|_XXdS)z�Flush and close the file.

        May be called more than once without error. Once the file is
        closed, any other operation on it will raise a ValueError.
        NF)r#r"r%r4�closer&r rr'�flushr!)r5r9r9r:r<�s




zLZMAFile.closecCs
|jtkS)zTrue if this file is closed.)r#r")r5r9r9r:�closed�szLZMAFile.closedcCs|j�|jj�S)z3Return the file descriptor for the underlying file.)�_check_not_closedr �fileno)r5r9r9r:r@�szLZMAFile.filenocCs|j�o|jj�S)z)Return whether the file supports seeking.)�readabler4�seekable)r5r9r9r:rB�szLZMAFile.seekablecCs|j�|jtkS)z/Return whether the file was opened for reading.)r?r#r%)r5r9r9r:rA�szLZMAFile.readablecCs|j�|jtkS)z/Return whether the file was opened for writing.)r?r#r&)r5r9r9r:�writable�szLZMAFile.writablecCs|j�|jj|�S)z�Return buffered data without advancing the file position.

        Always returns at least one byte of data, unless at EOF.
        The exact number of bytes returned is unspecified.
        )�_check_can_readr4�peek)r5�sizer9r9r:rE�sz
LZMAFile.peekcCs|j�|jj|�S)z�Read up to size uncompressed bytes from the file.

        If size is negative or omitted, read until EOF is reached.
        Returns b"" if the file is already at EOF.
        )rDr4r)r5rFr9r9r:r�sz
LZMAFile.readcCs"|j�|dkrtj}|jj|�S)z�Read up to size uncompressed bytes, while trying to avoid
        making multiple reads from the underlying stream. Reads up to a
        buffer's worth of data if size is negative.

        Returns b"" if the file is at EOF.
        r
)rDr2�DEFAULT_BUFFER_SIZEr4�read1)r5rFr9r9r:rH�szLZMAFile.read1cCs|j�|jj|�S)a
Read a line of uncompressed bytes from the file.

        The terminating newline (if present) is retained. If size is
        non-negative, no more than size bytes will be read (in which
        case the line may be incomplete). Returns b'' if already at EOF.
        )rDr4�readline)r5rFr9r9r:rI�szLZMAFile.readlinecCs:|j�|jj|�}|jj|�|jt|�7_t|�S)z�Write a bytes object to the file.

        Returns the number of uncompressed bytes written, which is
        always len(data). Note that due to buffering, the file on disk
        may not reflect the data written until close() is called.
        )Z_check_can_writer'rr rr(�len)r5�dataZ
compressedr9r9r:r�s
zLZMAFile.writecCs|j�|jj||�S)a�Change the file position.

        The new position is specified by offset, relative to the
        position indicated by whence. Possible values for whence are:

            0: start of stream (default): offset must not be negative
            1: current stream position
            2: end of stream; offset must not be positive

        Returns the new file position.

        Note that seeking is emulated, so depending on the parameters,
        this operation may be extremely slow.
        )Z_check_can_seekr4�seek)r5�offset�whencer9r9r:rL�sz
LZMAFile.seekcCs"|j�|jtkr|jj�S|jS)z!Return the current file position.)r?r#r%r4�tellr()r5r9r9r:rO�s

z
LZMAFile.tell)Nrrr)rr)rr)rr)r)�__name__�
__module__�__qualname__�__doc__r;r<�propertyr>r@rBrArCrErrHrIrr2�SEEK_SETrLrOr9r9r9r:r&s 	T

	



r)rrrr�encoding�errors�newlinecCs�d|kr d|krPtd|f��n0|dk	r0td��|dk	r@td��|dk	rPtd��|jdd�}	t||	||||d	�}
d|kr�tj|
|||�S|
SdS)
a�Open an LZMA-compressed file in binary or text mode.

    filename can be either an actual file name (given as a str, bytes,
    or PathLike object), in which case the named file is opened, or it
    can be an existing file object to read from or write to.

    The mode argument can be "r", "rb" (default), "w", "wb", "x", "xb",
    "a", or "ab" for binary mode, or "rt", "wt", "xt", or "at" for text
    mode.

    The format, check, preset and filters arguments specify the
    compression settings, as for LZMACompressor, LZMADecompressor and
    LZMAFile.

    For binary mode, this function is equivalent to the LZMAFile
    constructor: LZMAFile(filename, mode, ...). In this case, the
    encoding, errors and newline arguments must not be provided.

    For text mode, an LZMAFile object is created, and wrapped in an
    io.TextIOWrapper instance with the specified encoding, error
    handling behavior, and line ending(s).

    �trzInvalid mode: %rNz0Argument 'encoding' not supported in binary modez.Argument 'errors' not supported in binary modez/Argument 'newline' not supported in binary mode�)rrrr)r$�replacerr2�
TextIOWrapper)r6r7rrrrrVrWrXZlz_modeZbinary_filer9r9r:rs

cCs t||||�}|j|�|j�S)z�Compress a block of data.

    Refer to LZMACompressor's docstring for a description of the
    optional arguments *format*, *check*, *preset* and *filters*.

    For incremental compression, use an LZMACompressor instead.
    )rrr=)rKrrrr�compr9r9r:r6scCsrg}xbt|||�}y|j|�}Wntk
r>|r8Pn�YnX|j|�|jsXtd��|j}|sPqWdj|�S)z�Decompress a block of data.

    Refer to LZMADecompressor's docstring for a description of the
    optional arguments *format*, *check* and *filters*.

    For incremental decompression, use an LZMADecompressor instead.
    zACompressed data ended before the end-of-stream marker was reached�)rr	r�append�eofZunused_data�join)rKrZmemlimitr�resultsZdecomp�resr9r9r:r	Bs 
)rrr)rS�__all__r.r2r,Z_lzmarr
r1r"r%r&Z
BaseStreamrrrrrr	r9r9r9r:�<module>	s2

b-