ronnie
2022-10-23 cb8ede114f8c3e5ead5b294f66344b8a42004745
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
 
#ifndef _BSDIFF_BROTLI_COMPRESSOR_H_
#define _BSDIFF_BROTLI_COMPRESSOR_H_
 
#include <stdint.h>
 
#include <vector>
 
#include <brotli/encode.h>
 
#include "bsdiff/compressor_buffer.h"
#include "bsdiff/compressor_interface.h"
#include "bsdiff/constants.h"
 
namespace bsdiff {
 
class BrotliCompressor : public CompressorInterface {
 public:
  // Create a brotli compressor with the compression quality |quality|. As the
  // value of quality increases, the compression becomes better but slower.
  // The valid range of quality is between BROTLI_MIN_QUALITY and
  // BROTLI_MAX_QUALITY; and the caller is responsible for the validity check.
  explicit BrotliCompressor(int quality);
  ~BrotliCompressor() override;
 
  // CompressorInterface overrides.
  bool Write(const uint8_t* buf, size_t size) override;
  bool Finish() override;
  const std::vector<uint8_t>& GetCompressedData() override;
  CompressorType Type() const override { return CompressorType::kBrotli; }
 
 private:
  BrotliEncoderState* brotli_encoder_state_;
 
  CompressorBuffer comp_buffer_;
};
 
}  // namespace bsdiff
 
#endif  // _BSDIFF_BROTLI_COMPRESSOR_H_