3 \2$@sdZddddddddd d d d d ddddddddddddddddddd d!d"d#d$g$Zd%d&lZd%d&lZd%d&lZd%d'lTd%d(lmZmZd%d&lZd%Z d)Z d*Z Gd+ddej 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_NONEZ CHECK_CRC32Z CHECK_CRC64Z CHECK_SHA256Z CHECK_ID_MAXZ CHECK_UNKNOWNZ FILTER_LZMA1Z FILTER_LZMA2Z FILTER_DELTAZ FILTER_X86Z FILTER_IA64Z FILTER_ARMZFILTER_ARMTHUMBZFILTER_POWERPCZ FILTER_SPARC FORMAT_AUTO FORMAT_XZZ FORMAT_ALONEZ FORMAT_RAWZMF_HC3ZMF_HC4ZMF_BT2ZMF_BT3ZMF_BT4Z MODE_FASTZ MODE_NORMALZPRESET_DEFAULTZPRESET_EXTREMELZMACompressorLZMADecompressorLZMAFile LZMAErroropencompress decompressZis_check_supportedN)*)_encode_filter_properties_decode_filter_propertiesc@seZdZdZd"dd#dddddZdd Zed d Zd d ZddZ ddZ ddZ d%ddZ d'ddZ d)ddZd+ddZddZejfddZd 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. Nrr)formatcheckpresetfiltersc Cs&d|_d|_t|_|dkrL|dkr*td|dk r:td|dkrFt}t}n@|dkr~|dkr`t}t}t ||||d|_ d|_ ntdj |t |tttjfrd|kr|d7}tj|||_d|_||_n*t|dst|dr||_||_ntd|jtkr"tj|jtt||d}tj||_dS)aOpen 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. NFrrbrzACannot specify an integrity check when opening a file for readingzICannot specify a preset compression level when opening a file for readingwwbaabxxb)rrrrr zInvalid mode: {!r}bTreadwritez6filename 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 isinstancestrbytesosPathLikebuiltinsrhasattr TypeError _compressionZDecompressReaderrrioBufferedReader_buffer) selffilenamemoderrrrZ mode_coderawr9/usr/lib64/python3.6/lzma.py__init__1sB,    zLZMAFile.__init__cCs|jtkrdSzB|jtkr,|jjd|_n"|jtkrN|jj|jj d|_Wdz|j rd|jjWdd|_d|_ t|_XXdS)zFlush 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%r4closer&r rr'flushr!)r5r9r9r:r<s     zLZMAFile.closecCs |jtkS)zTrue if this file is closed.)r#r")r5r9r9r:closedszLZMAFile.closedcCs|j|jjS)z3Return the file descriptor for the underlying file.)_check_not_closedr fileno)r5r9r9r:r@szLZMAFile.filenocCs|jo|jjS)z)Return whether the file supports seeking.)readabler4seekable)r5r9r9r:rBszLZMAFile.seekablecCs|j|jtkS)z/Return whether the file was opened for reading.)r?r#r%)r5r9r9r:rAszLZMAFile.readablecCs|j|jtkS)z/Return whether the file was opened for writing.)r?r#r&)r5r9r9r:writableszLZMAFile.writablecCs|j|jj|S)zReturn 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_readr4peek)r5sizer9r9r:rEsz LZMAFile.peekcCs|j|jj|S)zRead 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:rsz LZMAFile.readcCs"|j|dkrtj}|jj|S)zRead 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 )rDr2DEFAULT_BUFFER_SIZEr4read1)r5rFr9r9r:rHszLZMAFile.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. )rDr4readline)r5rFr9r9r:rIszLZMAFile.readlinecCs:|j|jj|}|jj||jt|7_t|S)zWrite 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)r5dataZ compressedr9r9r:rs   zLZMAFile.writecCs|j|jj||S)aChange 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_seekr4seek)r5offsetwhencer9r9r:rLsz LZMAFile.seekcCs"|j|jtkr|jjS|jS)z!Return the current file position.)r?r#r%r4tellr()r5r9r9r:rOs  z LZMAFile.tell)Nrrr)rr)rr)rr)r)__name__ __module__ __qualname____doc__r;r<propertyr>r@rBrArCrErrHrIrr2SEEK_SETrLrOr9r9r9r:r&s  T   r)rrrrencodingerrorsnewlinec Csd|kr d|krPtd|fn0|dk r0td|dk r@td|dk rPtd|jdd} t|| ||||d } d|krtj| |||S| SdS) aOpen 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_modeZ binary_filer9r9r:rs   cCs t||||}|j||jS)zCompress 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=)rKrrrrcompr9r9r:r6sc Csrg}xbt|||}y|j|}Wntk r>|r8PnYnX|j||jsXtd|j}|sPqWdj|S)zDecompress 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 rappendeofZ unused_datajoin)rKrZmemlimitrresultsZdecompresr9r9r:r Bs   )rrr)rS__all__r.r2r,Z_lzmar r r1r"r%r&Z BaseStreamrrrrrr r9r9r9r: s2   b-