Qf3 dZgdZddlZddlZddlZddlddlmZmZddlZdZ dZ dZ Gdd ejZ ddd dddddd d Zed ddfd ZeddfdZy)aSInterface 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. )$ CHECK_NONE CHECK_CRC32 CHECK_CRC64 CHECK_SHA256 CHECK_ID_MAX CHECK_UNKNOWN FILTER_LZMA1 FILTER_LZMA2 FILTER_DELTA FILTER_X86 FILTER_IA64 FILTER_ARMFILTER_ARMTHUMBFILTER_POWERPC FILTER_SPARC FORMAT_AUTO FORMAT_XZ FORMAT_ALONE FORMAT_RAWMF_HC3MF_HC4MF_BT2MF_BT3MF_BT4 MODE_FAST MODE_NORMALPRESET_DEFAULTPRESET_EXTREMELZMACompressorLZMADecompressorLZMAFile LZMAErroropencompress decompressis_check_supportedN)*)_encode_filter_properties_decode_filter_propertiesceZdZdZdddddddZdZedZdZd Z d Z d Z dd Z dd Z ddZddZdZej$fdZdZy)r a@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. Nformatcheckpresetfilterscd|_d|_t|_|dvr,|dk7r t d| t d|t }t }nH|dvr*|t}t}t|||||_ d |_ nt d j|t|ttt j"fr3d |vr|d z }t%j&|||_d |_||_n2t)|d s t)|dr||_||_n t+d|jt k(rGt-j.|jt0t2||}t5j6||_yy)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. NF)rrbr-zACannot specify an integrity check when opening a file for readingzICannot specify a preset compression level when opening a file for reading)wwbaabxxbr.r&zInvalid mode: {!r}bTreadwritez6filename must be a str, bytes, file or PathLike object)trailing_errorr/r2)_fp_closefp _MODE_CLOSED_mode ValueErrorr _MODE_READr _MODE_WRITEr _compressor_posr/ isinstancestrbytesosPathLikebuiltinsr"hasattr TypeError _compressionDecompressReaderrr!ioBufferedReader_buffer) selffilenamemoder/r0r1r2 mode_coderaws +/opt/alt/python312/lib64/python3.12/lzma.py__init__zLZMAFile.__init__1skX ! ; { "CDD! "IJJ~$"I 6 6~"#I-V55;W ND DI188>? ? heR[[ 9 :$ }}Xt4DH DM"DJ Xv &'(G*DDH"DJTU U :: #//:J(JC,,S1DL $c|jtk(ry |jtk(r"|jj d|_nM|jt k(r:|j j|jjd|_ |jr|j j d|_d|_ t|_y#d|_d|_ t|_wxYw# |jr|j j d|_d|_ t|_w#d|_d|_ t|_wxYwxYw)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) rCrBrErUcloserFr@r>rGflushrArVs r[r_zLZMAFile.closes :: %  *zzZ' ""$# {*t//5578#'  *==HHNN$ % )   % )  *==HHNN$ % )   % ) s0BC7&CC47E9&D9E9EEc(|jtk(S)zTrue if this file is closed.)rCrBras r[closedzLZMAFile.closedszz\))r]cV|j|jjS)z3Return the file descriptor for the underlying file.)_check_not_closedr@filenoras r[rfzLZMAFile.filenos  xx  r]cZ|jxr|jjS)z)Return whether the file supports seeking.)readablerUseekableras r[rizLZMAFile.seekables }}:4<<#8#8#::r]cH|j|jtk(S)z/Return whether the file was opened for reading.)rerCrEras r[rhzLZMAFile.readables  zzZ''r]cH|j|jtk(S)z/Return whether the file was opened for writing.)rerCrFras r[writablezLZMAFile.writables  zz[((r]cX|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_readrUpeekrVsizes r[roz LZMAFile.peeks' ||  &&r]cX|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. )rnrUr=rps r[r=z LZMAFile.reads% ||  &&r]c|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&)rnrSDEFAULT_BUFFER_SIZErUread1rps r[ruzLZMAFile.read1s7  !8))D||!!$''r]cX|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. )rnrUreadlinerps r[rwzLZMAFile.readlines% ||$$T**r]c.|jt|ttfr t |}nt |}|j }|jj|}|jj||xj|z c_ |S)aWrite a bytes object to the file. Returns the number of uncompressed bytes written, which is always the length of data in bytes. Note that due to buffering, the file on disk may not reflect the data written until close() is called. ) _check_can_writerIrK bytearraylen memoryviewnbytesrGr#r@r>rH)rVdatalength compresseds r[r>zLZMAFile.writesv  dUI. /YFd#D[[F%%..t4  z" V  r]cZ|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. )_check_can_seekrUseek)rVoffsetwhences r[rz LZMAFile.seeks' ||  00r]c|j|jtk(r|jj S|j S)z!Return the current file position.)rerCrErUtellrHras r[rz LZMAFile.tells7  :: #<<$$& &yyr])Nr4)r-)__name__ __module__ __qualname____doc__r\r_propertyrcrfrirhrlror=rurwr>rSSEEK_SETrrr]r[r r &svS2BtTS2j*0**! ;( ) '' (+*#%++1$r]r r-)r/r0r1r2encodingerrorsnewlinec(d|vrd|vr5td|| td| td| td|jdd} t|| ||||} d|vr-tj|}tj | |||S| S) 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). tr<zInvalid mode: z0Argument 'encoding' not supported in binary modez.Argument 'errors' not supported in binary modez/Argument 'newline' not supported in binary moder.)rDreplacer rS text_encoding TextIOWrapper) rWrXr/r0r1r2rrrlz_mode binary_files r[r"r"s4 d{ $;49: :  OP P  MN N  NO Oll3#G8WV5"(';K d{##H- XvwGGr]cbt||||}|j||jzS)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. )rr#r`)r~r/r0r1r2comps r[r#r#?s. &% 9D ==  --r]cg} t|||} |j|}|j||js td|j }|snWdj |S#t$r|rYwxYw)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 reachedr])rr$r!appendeof unused_datajoin)r~r/memlimitr2resultsdecompress r[r$r$KsG !&(G< ##D)C szz?@ @!!   88G    sA,, A;9A;)r5)r__all__rNrSrL_lzmar(r)rQrBrErF BaseStreamr r"rr#rr$rr]r[rs  F   f|&&fR-BtTtT-`$2dD .($r]