# -*- coding: utf-8 -*- import math import enum from ._brotlicffi import ffi, lib class error(Exception): """ Raised whenever an error is encountered with compressing or decompressing data using brotlicffi. .. versionadded:: 0.5.1 """ pass #: An alias of :class:`error ` that #: exists for compatibility with the original CFFI brotli module. #: #: .. versionadded: 0.8.0 Error = error class BrotliEncoderMode(enum.IntEnum): """ Compression modes for the Brotli encoder. .. versionadded:: 0.5.0 """ #: Default compression mode. The compressor does not know anything in #: advance about the properties of the input. GENERIC = lib.BROTLI_MODE_GENERIC #: Compression mode for UTF-8 format text input. TEXT = lib.BROTLI_MODE_TEXT #: Compression mode used in WOFF 2.0 FONT = lib.BROTLI_MODE_FONT # Define some names for compatibility with the C module. #: The default compression mode for brotli. DEFAULT_MODE = BrotliEncoderMode(lib.BROTLI_DEFAULT_MODE) #: A compression mode where the compressor does not know anything in advance #: about the properties of the input. #: #: .. note:: This name is defined for compatibility with the Brotli C #: extension. If you're not interested in that compatibility, it is #: recommended that you use :class:`BrotliEncoderMode #: ` instead. #: #: .. versionadded:: 0.5.0 MODE_GENERIC = BrotliEncoderMode.GENERIC #: A compression mode for UTF-8 format text input. #: #: .. note:: This name is defined for compatibility with the Brotli C #: extension. If you're not interested in that compatibility, it is #: recommended that you use :class:`BrotliEncoderMode #: ` instead. #: #: .. versionadded:: 0.5.0 MODE_TEXT = BrotliEncoderMode.TEXT #: The compression mode used in WOFF 2.0. #: #: .. note:: This name is defined for compatibility with the Brotli C #: extension. If you're not interested in that compatibility, it is #: recommended that you use :class:`BrotliEncoderMode #: ` instead. #: #: .. versionadded:: 0.5.0 MODE_FONT = BrotliEncoderMode.FONT def decompress(data): """ Decompress a complete Brotli-compressed string. :param data: A bytestring containing Brotli-compressed data. """ d = Decompressor() data = d.decompress(data) d.finish() return data def compress(data, mode=DEFAULT_MODE, quality=lib.BROTLI_DEFAULT_QUALITY, lgwin=lib.BROTLI_DEFAULT_WINDOW, lgblock=0): """ Compress a string using Brotli. .. versionchanged:: 0.5.0 Added ``mode``, ``quality``, `lgwin``, ``lgblock``, and ``dictionary`` parameters. :param data: A bytestring containing the data to compress. :type data: ``bytes`` :param mode: The encoder mode. :type mode: :class:`BrotliEncoderMode` or ``int`` :param quality: Controls the compression-speed vs compression-density tradeoffs. The higher the quality, the slower the compression. The range of this value is 0 to 11. :type quality: ``int`` :param lgwin: The base-2 logarithm of the sliding window size. The range of this value is 10 to 24. :type lgwin: ``int`` :param lgblock: The base-2 logarithm of the maximum input block size. The range of this value is 16 to 24. If set to 0, the value will be set based on ``quality``. :type lgblock: ``int`` :returns: The compressed bytestring. :rtype: ``bytes`` """ # This method uses private variables on the Compressor object, and # generally does a whole lot of stuff that's not supported by the public # API. The goal here is to minimise the number of allocations and copies # we have to do. Users should prefer this method over the Compressor if # they know they have single-shot data. compressor = Compressor( mode=mode, quality=quality, lgwin=lgwin, lgblock=lgblock ) compressed_data = compressor._compress(data, lib.BROTLI_OPERATION_FINISH) assert lib.BrotliEncoderIsFinished(compressor._encoder) == lib.BROTLI_TRUE assert ( lib.BrotliEncoderHasMoreOutput(compressor._encoder) == lib.BROTLI_FALSE ) return compressed_data def _validate_mode(val): """ Validate that the mode is valid. """ try: val = BrotliEncoderMode(val) except ValueError: raise error("%s is not a valid encoder mode" % val) def _validate_quality(val): """ Validate that the quality setting is valid. """ if not (0 <= val <= 11): raise error( "%d is not a valid quality, must be between 0 and 11" % val ) def _validate_lgwin(val): """ Validate that the lgwin setting is valid. """ if not (10 <= val <= 24): raise error("%d is not a valid lgwin, must be between 10 and 24" % val) def _validate_lgblock(val): """ Validate that the lgblock setting is valid. """ if (val != 0) and not (16 <= val <= 24): raise error( "%d is not a valid lgblock, must be either 0 or between 16 and 24" % val ) def _set_parameter(encoder, parameter, parameter_name, val): """ This helper function sets a specific Brotli encoder parameter, checking the return code and raising :class:`Error ` if it is invalid. """ rc = lib.BrotliEncoderSetParameter(encoder, parameter, val) if parameter == lib.BROTLI_PARAM_MODE: _validate_mode(val) elif parameter == lib.BROTLI_PARAM_QUALITY: _validate_quality(val) elif parameter == lib.BROTLI_PARAM_LGWIN: _validate_lgwin(val) elif parameter == lib.BROTLI_PARAM_LGBLOCK: _validate_lgblock(val) else: # pragma: no cover raise RuntimeError("Unexpected parameter!") # This block is defensive: I see no way to hit it, but as long as the # function returns a value we can live in hope that the brotli folks will # enforce their own constraints. if rc != lib.BROTLI_TRUE: # pragma: no cover raise error( "Error setting parameter %s: %d" % (parameter_name, val) ) class Compressor(object): """ An object that allows for streaming compression of data using the Brotli compression algorithm. .. versionadded:: 0.5.0 :param mode: The encoder mode. :type mode: :class:`BrotliEncoderMode` or ``int`` :param quality: Controls the compression-speed vs compression-density tradeoffs. The higher the quality, the slower the compression. The range of this value is 0 to 11. :type quality: ``int`` :param lgwin: The base-2 logarithm of the sliding window size. The range of this value is 10 to 24. :type lgwin: ``int`` :param lgblock: The base-2 logarithm of the maximum input block size. The range of this value is 16 to 24. If set to 0, the value will be set based on ``quality``. :type lgblock: ``int`` :param dictionary: A pre-set dictionary for LZ77. Please use this with caution: if a dictionary is used for compression, the same dictionary **must** be used for decompression! :type dictionary: ``bytes`` """ _dictionary = None _dictionary_size = None def __init__(self, mode=DEFAULT_MODE, quality=lib.BROTLI_DEFAULT_QUALITY, lgwin=lib.BROTLI_DEFAULT_WINDOW, lgblock=0): enc = lib.BrotliEncoderCreateInstance( ffi.NULL, ffi.NULL, ffi.NULL ) if not enc: # pragma: no cover raise RuntimeError("Unable to allocate Brotli encoder!") enc = ffi.gc(enc, lib.BrotliEncoderDestroyInstance) # Configure the encoder appropriately. _set_parameter(enc, lib.BROTLI_PARAM_MODE, "mode", mode) _set_parameter(enc, lib.BROTLI_PARAM_QUALITY, "quality", quality) _set_parameter(enc, lib.BROTLI_PARAM_LGWIN, "lgwin", lgwin) _set_parameter(enc, lib.BROTLI_PARAM_LGBLOCK, "lgblock", lgblock) self._encoder = enc def _compress(self, data, operation): """ This private method compresses some data in a given mode. This is used because almost all of the code uses the exact same setup. It wouldn't have to, but it doesn't hurt at all. """ # The 'algorithm' for working out how big to make this buffer is from # the Brotli source code, brotlimodule.cc. original_output_size = int( math.ceil(len(data) + (len(data) >> 2) + 10240) ) available_out = ffi.new("size_t *") available_out[0] = original_output_size output_buffer = ffi.new("uint8_t []", available_out[0]) ptr_to_output_buffer = ffi.new("uint8_t **", output_buffer) input_size = ffi.new("size_t *", len(data)) input_buffer = ffi.new("uint8_t []", data) ptr_to_input_buffer = ffi.new("uint8_t **", input_buffer) rc = lib.BrotliEncoderCompressStream( self._encoder, operation, input_size, ptr_to_input_buffer, available_out, ptr_to_output_buffer, ffi.NULL ) if rc != lib.BROTLI_TRUE: # pragma: no cover raise error("Error encountered compressing data.") assert not input_size[0] size_of_output = original_output_size - available_out[0] return ffi.buffer(output_buffer, size_of_output)[:] def compress(self, data): """ Incrementally compress more data. :param data: A bytestring containing data to compress. :returns: A bytestring containing some compressed data. May return the empty bytestring if not enough data has been inserted into the compressor to create the output yet. """ return self._compress(data, lib.BROTLI_OPERATION_PROCESS) process = compress def flush(self): """ Flush the compressor. This will emit the remaining output data, but will not destroy the compressor. It can be used, for example, to ensure that given chunks of content will decompress immediately. """ chunks = [self._compress(b'', lib.BROTLI_OPERATION_FLUSH)] while lib.BrotliEncoderHasMoreOutput(self._encoder) == lib.BROTLI_TRUE: chunks.append(self._compress(b'', lib.BROTLI_OPERATION_FLUSH)) return b''.join(chunks) def finish(self): """ Finish the compressor. This will emit the remaining output data and transition the compressor to a completed state. The compressor cannot be used again after this point, and must be replaced. """ chunks = [] while lib.BrotliEncoderIsFinished(self._encoder) == lib.BROTLI_FALSE: chunks.append(self._compress(b'', lib.BROTLI_OPERATION_FINISH)) return b''.join(chunks) class Decompressor(object): """ An object that allows for streaming decompression of Brotli-compressed data. .. versionchanged:: 0.5.0 Added ``dictionary`` parameter. .. versionchanged:: 1.2.0 Added ``can_accept_more_data()`` method and optional ``output_buffer_limit`` parameter to ``process()``/``decompress()``. :param dictionary: A pre-set dictionary for LZ77. Please use this with caution: if a dictionary is used for compression, the same dictionary **must** be used for decompression! :type dictionary: ``bytes`` """ _dictionary = None _dictionary_size = None _unconsumed_data = None def __init__(self, dictionary=b''): dec = lib.BrotliDecoderCreateInstance(ffi.NULL, ffi.NULL, ffi.NULL) self._decoder = ffi.gc(dec, lib.BrotliDecoderDestroyInstance) self._unconsumed_data = b'' if dictionary: self._dictionary = ffi.new("uint8_t []", dictionary) self._dictionary_size = len(dictionary) lib.BrotliDecoderSetCustomDictionary( self._decoder, self._dictionary_size, self._dictionary ) @staticmethod def _calculate_buffer_size( input_data_len, output_buffer_limit, chunks_len, chunks_num ): if output_buffer_limit is not None: return output_buffer_limit - chunks_len # When `decompress(b'')` is called without `output_buffer_limit`. elif input_data_len == 0: # libbrotli would use 32 KB as a starting buffer size and double it # each time, capped at 16 MB. # https://github.com/google/brotli/blob/028fb5a23661f123017c060daa546b55cf4bde29/python/_brotli.c#L291-L292 return 1 << min(chunks_num + 15, 24) else: # Allocate a buffer that's hopefully overlarge, but if it's not we # don't mind: we'll spin around again. return 5 * input_data_len def decompress(self, data, output_buffer_limit=None): """ Decompress part of a complete Brotli-compressed string. .. versionchanged:: 1.2.0 Added ``output_buffer_limit`` parameter. :param data: A bytestring containing Brotli-compressed data. :param output_buffer_limit: Optional maximum size for the output buffer. If set, the output buffer will not grow once its size equals or exceeds this value. If the limit is reached, further calls to process (potentially with empty input) will continue to yield more data. Following process() calls must only be called with empty input until can_accept_more_data() returns True. :type output_buffer_limit: ``int`` or ``None`` :returns: A bytestring containing the decompressed data. """ if self._unconsumed_data and data: raise error( "brotli: decoder process called with data when " "'can_accept_more_data()' is False" ) # We should avoid operations on the `self._unconsumed_data` if no data # is to be processed. if output_buffer_limit is not None and output_buffer_limit <= 0: return b'' # Use unconsumed data if available, use new data otherwise. if self._unconsumed_data: input_data = self._unconsumed_data self._unconsumed_data = b'' else: input_data = data chunks = [] chunks_len = 0 available_in = ffi.new("size_t *", len(input_data)) in_buffer = ffi.new("uint8_t[]", input_data) next_in = ffi.new("uint8_t **", in_buffer) while True: buffer_size = self._calculate_buffer_size( input_data_len=len(input_data), output_buffer_limit=output_buffer_limit, chunks_len=chunks_len, chunks_num=len(chunks), ) available_out = ffi.new("size_t *", buffer_size) out_buffer = ffi.new("uint8_t[]", buffer_size) next_out = ffi.new("uint8_t **", out_buffer) rc = lib.BrotliDecoderDecompressStream(self._decoder, available_in, next_in, available_out, next_out, ffi.NULL) # First, check for errors. if rc == lib.BROTLI_DECODER_RESULT_ERROR: error_code = lib.BrotliDecoderGetErrorCode(self._decoder) error_message = lib.BrotliDecoderErrorString(error_code) raise error( b"Decompression error: %s" % ffi.string(error_message) ) # Next, copy the result out. chunk = ffi.buffer(out_buffer, buffer_size - available_out[0])[:] chunks.append(chunk) chunks_len += len(chunk) # Save any unconsumed input for the next call. if available_in[0] > 0: remaining_input = ffi.buffer(next_in[0], available_in[0])[:] self._unconsumed_data = remaining_input # Check if we've reached the output limit. if ( output_buffer_limit is not None and chunks_len >= output_buffer_limit ): break if rc == lib.BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT: assert available_in[0] == 0 break elif rc == lib.BROTLI_DECODER_RESULT_SUCCESS: break else: # It's cool if we need more output, we just loop again. assert rc == lib.BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT return b''.join(chunks) process = decompress def flush(self): """ Complete the decompression, return whatever data is remaining to be decompressed. .. deprecated:: 0.4.0 This method is no longer required, as decompress() will now decompress eagerly. :returns: A bytestring containing the remaining decompressed data. """ return b'' def finish(self): """ Finish the decompressor. As the decompressor decompresses eagerly, this will never actually emit any data. However, it will potentially throw errors if a truncated or damaged data stream has been used. Note that, once this method is called, the decompressor is no longer safe for further use and must be thrown away. """ assert ( lib.BrotliDecoderHasMoreOutput(self._decoder) == lib.BROTLI_FALSE ) if not self.is_finished(): raise error("Decompression error: incomplete compressed stream.") return b'' def is_finished(self): """ Returns ``True`` if the decompression stream is complete, ``False`` otherwise """ return lib.BrotliDecoderIsFinished(self._decoder) == lib.BROTLI_TRUE def can_accept_more_data(self): """ Checks if the decompressor can accept more compressed data. If the ``output_buffer_limit`` parameter was used with ``decompress()`` or ``process()``, this method should be checked to determine if the decompressor is ready to accept new input. When the output buffer limit is reached, the decompressor may still have unconsumed input data or internal buffered output, and calling ``decompress(b'')`` repeatedly will continue producing output until this method returns ``True``. .. versionadded:: 1.2.0 :returns: ``True`` if the decompressor is ready to accept more compressed data via ``decompress()`` or ``process()``, ``False`` if the decompressor needs to output some data via ``decompress(b'')``/``process(b'')`` before being provided any more compressed data. :rtype: ``bool`` """ if len(self._unconsumed_data) > 0: return False if lib.BrotliDecoderHasMoreOutput(self._decoder) == lib.BROTLI_TRUE: return False return True