Coverage Report

Created: 2022-08-24 06:33

/src/libjxl/third_party/brotli/c/enc/encode.c
Line
Count
Source (jump to first uncovered line)
1
/* Copyright 2013 Google Inc. All Rights Reserved.
2
3
   Distributed under MIT license.
4
   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5
*/
6
7
/* Implementation of Brotli compressor. */
8
9
#include <brotli/encode.h>
10
11
#include <stdlib.h>  /* free, malloc */
12
#include <string.h>  /* memcpy, memset */
13
14
#include "../common/constants.h"
15
#include "../common/context.h"
16
#include "../common/platform.h"
17
#include "../common/version.h"
18
#include "./backward_references.h"
19
#include "./backward_references_hq.h"
20
#include "./bit_cost.h"
21
#include "./brotli_bit_stream.h"
22
#include "./compress_fragment.h"
23
#include "./compress_fragment_two_pass.h"
24
#include "./encoder_dict.h"
25
#include "./entropy_encode.h"
26
#include "./fast_log.h"
27
#include "./hash.h"
28
#include "./histogram.h"
29
#include "./memory.h"
30
#include "./metablock.h"
31
#include "./prefix.h"
32
#include "./quality.h"
33
#include "./ringbuffer.h"
34
#include "./utf8_util.h"
35
#include "./write_bits.h"
36
37
#if defined(__cplusplus) || defined(c_plusplus)
38
extern "C" {
39
#endif
40
41
0
#define COPY_ARRAY(dst, src) memcpy(dst, src, sizeof(src));
42
43
typedef enum BrotliEncoderStreamState {
44
  /* Default state. */
45
  BROTLI_STREAM_PROCESSING = 0,
46
  /* Intermediate state; after next block is emitted, byte-padding should be
47
     performed before getting back to default state. */
48
  BROTLI_STREAM_FLUSH_REQUESTED = 1,
49
  /* Last metablock was produced; no more input is acceptable. */
50
  BROTLI_STREAM_FINISHED = 2,
51
  /* Flushing compressed block and writing meta-data block header. */
52
  BROTLI_STREAM_METADATA_HEAD = 3,
53
  /* Writing metadata block body. */
54
  BROTLI_STREAM_METADATA_BODY = 4
55
} BrotliEncoderStreamState;
56
57
typedef enum BrotliEncoderFlintState {
58
  BROTLI_FLINT_NEEDS_2_BYTES = 2,
59
  BROTLI_FLINT_NEEDS_1_BYTE = 1,
60
  BROTLI_FLINT_WAITING_FOR_PROCESSING = 0,
61
  BROTLI_FLINT_WAITING_FOR_FLUSHING = -1,
62
  BROTLI_FLINT_DONE = -2
63
} BrotliEncoderFlintState;
64
65
typedef struct BrotliEncoderStateStruct {
66
  BrotliEncoderParams params;
67
68
  MemoryManager memory_manager_;
69
70
  uint64_t input_pos_;
71
  RingBuffer ringbuffer_;
72
  size_t cmd_alloc_size_;
73
  Command* commands_;
74
  size_t num_commands_;
75
  size_t num_literals_;
76
  size_t last_insert_len_;
77
  uint64_t last_flush_pos_;
78
  uint64_t last_processed_pos_;
79
  int dist_cache_[BROTLI_NUM_DISTANCE_SHORT_CODES];
80
  int saved_dist_cache_[4];
81
  uint16_t last_bytes_;
82
  uint8_t last_bytes_bits_;
83
  /* "Flint" is a tiny uncompressed block emitted before the continuation
84
     block to unwire literal context from previous data. Despite being int8_t,
85
     field is actually BrotliEncoderFlintState enum. */
86
  int8_t flint_;
87
  uint8_t prev_byte_;
88
  uint8_t prev_byte2_;
89
  size_t storage_size_;
90
  uint8_t* storage_;
91
92
  Hasher hasher_;
93
94
  /* Hash table for FAST_ONE_PASS_COMPRESSION_QUALITY mode. */
95
  int small_table_[1 << 10];  /* 4KiB */
96
  int* large_table_;          /* Allocated only when needed */
97
  size_t large_table_size_;
98
  /* Command and distance prefix codes (each 64 symbols, stored back-to-back)
99
     used for the next block in FAST_ONE_PASS_COMPRESSION_QUALITY. The command
100
     prefix code is over a smaller alphabet with the following 64 symbols:
101
        0 - 15: insert length code 0, copy length code 0 - 15, same distance
102
       16 - 39: insert length code 0, copy length code 0 - 23
103
       40 - 63: insert length code 0 - 23, copy length code 0
104
     Note that symbols 16 and 40 represent the same code in the full alphabet,
105
     but we do not use either of them in FAST_ONE_PASS_COMPRESSION_QUALITY. */
106
  uint8_t cmd_depths_[128];
107
  uint16_t cmd_bits_[128];
108
  /* The compressed form of the command and distance prefix codes for the next
109
     block in FAST_ONE_PASS_COMPRESSION_QUALITY. */
110
  uint8_t cmd_code_[512];
111
  size_t cmd_code_numbits_;
112
  /* Command and literal buffers for FAST_TWO_PASS_COMPRESSION_QUALITY. */
113
  uint32_t* command_buf_;
114
  uint8_t* literal_buf_;
115
116
  uint8_t* next_out_;
117
  size_t available_out_;
118
  size_t total_out_;
119
  /* Temporary buffer for padding flush bits or metadata block header / body. */
120
  union {
121
    uint64_t u64[2];
122
    uint8_t u8[16];
123
  } tiny_buf_;
124
  uint32_t remaining_metadata_bytes_;
125
  BrotliEncoderStreamState stream_state_;
126
127
  BROTLI_BOOL is_last_block_emitted_;
128
  BROTLI_BOOL is_initialized_;
129
} BrotliEncoderStateStruct;
130
131
0
static size_t InputBlockSize(BrotliEncoderState* s) {
132
0
  return (size_t)1 << s->params.lgblock;
133
0
}
134
135
0
static uint64_t UnprocessedInputSize(BrotliEncoderState* s) {
136
0
  return s->input_pos_ - s->last_processed_pos_;
137
0
}
138
139
0
static size_t RemainingInputBlockSize(BrotliEncoderState* s) {
140
0
  const uint64_t delta = UnprocessedInputSize(s);
141
0
  size_t block_size = InputBlockSize(s);
142
0
  if (delta >= block_size) return 0;
143
0
  return block_size - (size_t)delta;
144
0
}
145
146
BROTLI_BOOL BrotliEncoderSetParameter(
147
0
    BrotliEncoderState* state, BrotliEncoderParameter p, uint32_t value) {
148
  /* Changing parameters on the fly is not implemented yet. */
149
0
  if (state->is_initialized_) return BROTLI_FALSE;
150
  /* TODO: Validate/clamp parameters here. */
151
0
  switch (p) {
152
0
    case BROTLI_PARAM_MODE:
153
0
      state->params.mode = (BrotliEncoderMode)value;
154
0
      return BROTLI_TRUE;
155
156
0
    case BROTLI_PARAM_QUALITY:
157
0
      state->params.quality = (int)value;
158
0
      return BROTLI_TRUE;
159
160
0
    case BROTLI_PARAM_LGWIN:
161
0
      state->params.lgwin = (int)value;
162
0
      return BROTLI_TRUE;
163
164
0
    case BROTLI_PARAM_LGBLOCK:
165
0
      state->params.lgblock = (int)value;
166
0
      return BROTLI_TRUE;
167
168
0
    case BROTLI_PARAM_DISABLE_LITERAL_CONTEXT_MODELING:
169
0
      if ((value != 0) && (value != 1)) return BROTLI_FALSE;
170
0
      state->params.disable_literal_context_modeling = TO_BROTLI_BOOL(!!value);
171
0
      return BROTLI_TRUE;
172
173
0
    case BROTLI_PARAM_SIZE_HINT:
174
0
      state->params.size_hint = value;
175
0
      return BROTLI_TRUE;
176
177
0
    case BROTLI_PARAM_LARGE_WINDOW:
178
0
      state->params.large_window = TO_BROTLI_BOOL(!!value);
179
0
      return BROTLI_TRUE;
180
181
0
    case BROTLI_PARAM_NPOSTFIX:
182
0
      state->params.dist.distance_postfix_bits = value;
183
0
      return BROTLI_TRUE;
184
185
0
    case BROTLI_PARAM_NDIRECT:
186
0
      state->params.dist.num_direct_distance_codes = value;
187
0
      return BROTLI_TRUE;
188
189
0
    case BROTLI_PARAM_STREAM_OFFSET:
190
0
      if (value > (1u << 30)) return BROTLI_FALSE;
191
0
      state->params.stream_offset = value;
192
0
      return BROTLI_TRUE;
193
194
0
    default: return BROTLI_FALSE;
195
0
  }
196
0
}
197
198
/* Wraps 64-bit input position to 32-bit ring-buffer position preserving
199
   "not-a-first-lap" feature. */
200
0
static uint32_t WrapPosition(uint64_t position) {
201
0
  uint32_t result = (uint32_t)position;
202
0
  uint64_t gb = position >> 30;
203
0
  if (gb > 2) {
204
    /* Wrap every 2GiB; The first 3GB are continuous. */
205
0
    result = (result & ((1u << 30) - 1)) | ((uint32_t)((gb - 1) & 1) + 1) << 30;
206
0
  }
207
0
  return result;
208
0
}
209
210
0
static uint8_t* GetBrotliStorage(BrotliEncoderState* s, size_t size) {
211
0
  MemoryManager* m = &s->memory_manager_;
212
0
  if (s->storage_size_ < size) {
213
0
    BROTLI_FREE(m, s->storage_);
214
0
    s->storage_ = BROTLI_ALLOC(m, uint8_t, size);
215
0
    if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(s->storage_)) return NULL;
216
0
    s->storage_size_ = size;
217
0
  }
218
0
  return s->storage_;
219
0
}
220
221
0
static size_t HashTableSize(size_t max_table_size, size_t input_size) {
222
0
  size_t htsize = 256;
223
0
  while (htsize < max_table_size && htsize < input_size) {
224
0
    htsize <<= 1;
225
0
  }
226
0
  return htsize;
227
0
}
228
229
static int* GetHashTable(BrotliEncoderState* s, int quality,
230
0
                         size_t input_size, size_t* table_size) {
231
  /* Use smaller hash table when input.size() is smaller, since we
232
     fill the table, incurring O(hash table size) overhead for
233
     compression, and if the input is short, we won't need that
234
     many hash table entries anyway. */
235
0
  MemoryManager* m = &s->memory_manager_;
236
0
  const size_t max_table_size = MaxHashTableSize(quality);
237
0
  size_t htsize = HashTableSize(max_table_size, input_size);
238
0
  int* table;
239
0
  BROTLI_DCHECK(max_table_size >= 256);
240
0
  if (quality == FAST_ONE_PASS_COMPRESSION_QUALITY) {
241
    /* Only odd shifts are supported by fast-one-pass. */
242
0
    if ((htsize & 0xAAAAA) == 0) {
243
0
      htsize <<= 1;
244
0
    }
245
0
  }
246
247
0
  if (htsize <= sizeof(s->small_table_) / sizeof(s->small_table_[0])) {
248
0
    table = s->small_table_;
249
0
  } else {
250
0
    if (htsize > s->large_table_size_) {
251
0
      s->large_table_size_ = htsize;
252
0
      BROTLI_FREE(m, s->large_table_);
253
0
      s->large_table_ = BROTLI_ALLOC(m, int, htsize);
254
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(s->large_table_)) return 0;
255
0
    }
256
0
    table = s->large_table_;
257
0
  }
258
259
0
  *table_size = htsize;
260
0
  memset(table, 0, htsize * sizeof(*table));
261
0
  return table;
262
0
}
263
264
static void EncodeWindowBits(int lgwin, BROTLI_BOOL large_window,
265
0
    uint16_t* last_bytes, uint8_t* last_bytes_bits) {
266
0
  if (large_window) {
267
0
    *last_bytes = (uint16_t)(((lgwin & 0x3F) << 8) | 0x11);
268
0
    *last_bytes_bits = 14;
269
0
  } else {
270
0
    if (lgwin == 16) {
271
0
      *last_bytes = 0;
272
0
      *last_bytes_bits = 1;
273
0
    } else if (lgwin == 17) {
274
0
      *last_bytes = 1;
275
0
      *last_bytes_bits = 7;
276
0
    } else if (lgwin > 17) {
277
0
      *last_bytes = (uint16_t)(((lgwin - 17) << 1) | 0x01);
278
0
      *last_bytes_bits = 4;
279
0
    } else {
280
0
      *last_bytes = (uint16_t)(((lgwin - 8) << 4) | 0x01);
281
0
      *last_bytes_bits = 7;
282
0
    }
283
0
  }
284
0
}
285
286
/* Initializes the command and distance prefix codes for the first block. */
287
static void InitCommandPrefixCodes(uint8_t cmd_depths[128],
288
                                   uint16_t cmd_bits[128],
289
                                   uint8_t cmd_code[512],
290
0
                                   size_t* cmd_code_numbits) {
291
0
  static const uint8_t kDefaultCommandDepths[128] = {
292
0
    0, 4, 4, 5, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8,
293
0
    0, 0, 0, 4, 4, 4, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7,
294
0
    7, 7, 10, 10, 10, 10, 10, 10, 0, 4, 4, 5, 5, 5, 6, 6,
295
0
    7, 8, 8, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
296
0
    5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
297
0
    6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4,
298
0
    4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 7, 7, 7, 8, 10,
299
0
    12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
300
0
  };
301
0
  static const uint16_t kDefaultCommandBits[128] = {
302
0
    0,   0,   8,   9,   3,  35,   7,   71,
303
0
    39, 103,  23,  47, 175, 111, 239,   31,
304
0
    0,   0,   0,   4,  12,   2,  10,    6,
305
0
    13,  29,  11,  43,  27,  59,  87,   55,
306
0
    15,  79, 319, 831, 191, 703, 447,  959,
307
0
    0,  14,   1,  25,   5,  21,  19,   51,
308
0
    119, 159,  95, 223, 479, 991,  63,  575,
309
0
    127, 639, 383, 895, 255, 767, 511, 1023,
310
0
    14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
311
0
    27, 59, 7, 39, 23, 55, 30, 1, 17, 9, 25, 5, 0, 8, 4, 12,
312
0
    2, 10, 6, 21, 13, 29, 3, 19, 11, 15, 47, 31, 95, 63, 127, 255,
313
0
    767, 2815, 1791, 3839, 511, 2559, 1535, 3583, 1023, 3071, 2047, 4095,
314
0
  };
315
0
  static const uint8_t kDefaultCommandCode[] = {
316
0
    0xff, 0x77, 0xd5, 0xbf, 0xe7, 0xde, 0xea, 0x9e, 0x51, 0x5d, 0xde, 0xc6,
317
0
    0x70, 0x57, 0xbc, 0x58, 0x58, 0x58, 0xd8, 0xd8, 0x58, 0xd5, 0xcb, 0x8c,
318
0
    0xea, 0xe0, 0xc3, 0x87, 0x1f, 0x83, 0xc1, 0x60, 0x1c, 0x67, 0xb2, 0xaa,
319
0
    0x06, 0x83, 0xc1, 0x60, 0x30, 0x18, 0xcc, 0xa1, 0xce, 0x88, 0x54, 0x94,
320
0
    0x46, 0xe1, 0xb0, 0xd0, 0x4e, 0xb2, 0xf7, 0x04, 0x00,
321
0
  };
322
0
  static const size_t kDefaultCommandCodeNumBits = 448;
323
0
  COPY_ARRAY(cmd_depths, kDefaultCommandDepths);
324
0
  COPY_ARRAY(cmd_bits, kDefaultCommandBits);
325
326
  /* Initialize the pre-compressed form of the command and distance prefix
327
     codes. */
328
0
  COPY_ARRAY(cmd_code, kDefaultCommandCode);
329
0
  *cmd_code_numbits = kDefaultCommandCodeNumBits;
330
0
}
331
332
/* Decide about the context map based on the ability of the prediction
333
   ability of the previous byte UTF8-prefix on the next byte. The
334
   prediction ability is calculated as Shannon entropy. Here we need
335
   Shannon entropy instead of 'BitsEntropy' since the prefix will be
336
   encoded with the remaining 6 bits of the following byte, and
337
   BitsEntropy will assume that symbol to be stored alone using Huffman
338
   coding. */
339
static void ChooseContextMap(int quality,
340
                             uint32_t* bigram_histo,
341
                             size_t* num_literal_contexts,
342
0
                             const uint32_t** literal_context_map) {
343
0
  static const uint32_t kStaticContextMapContinuation[64] = {
344
0
    1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
345
0
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
346
0
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
347
0
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
348
0
  };
349
0
  static const uint32_t kStaticContextMapSimpleUTF8[64] = {
350
0
    0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
351
0
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
352
0
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
353
0
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
354
0
  };
355
356
0
  uint32_t monogram_histo[3] = { 0 };
357
0
  uint32_t two_prefix_histo[6] = { 0 };
358
0
  size_t total;
359
0
  size_t i;
360
0
  size_t dummy;
361
0
  double entropy[4];
362
0
  for (i = 0; i < 9; ++i) {
363
0
    monogram_histo[i % 3] += bigram_histo[i];
364
0
    two_prefix_histo[i % 6] += bigram_histo[i];
365
0
  }
366
0
  entropy[1] = ShannonEntropy(monogram_histo, 3, &dummy);
367
0
  entropy[2] = (ShannonEntropy(two_prefix_histo, 3, &dummy) +
368
0
                ShannonEntropy(two_prefix_histo + 3, 3, &dummy));
369
0
  entropy[3] = 0;
370
0
  for (i = 0; i < 3; ++i) {
371
0
    entropy[3] += ShannonEntropy(bigram_histo + 3 * i, 3, &dummy);
372
0
  }
373
374
0
  total = monogram_histo[0] + monogram_histo[1] + monogram_histo[2];
375
0
  BROTLI_DCHECK(total != 0);
376
0
  entropy[0] = 1.0 / (double)total;
377
0
  entropy[1] *= entropy[0];
378
0
  entropy[2] *= entropy[0];
379
0
  entropy[3] *= entropy[0];
380
381
0
  if (quality < MIN_QUALITY_FOR_HQ_CONTEXT_MODELING) {
382
    /* 3 context models is a bit slower, don't use it at lower qualities. */
383
0
    entropy[3] = entropy[1] * 10;
384
0
  }
385
  /* If expected savings by symbol are less than 0.2 bits, skip the
386
     context modeling -- in exchange for faster decoding speed. */
387
0
  if (entropy[1] - entropy[2] < 0.2 &&
388
0
      entropy[1] - entropy[3] < 0.2) {
389
0
    *num_literal_contexts = 1;
390
0
  } else if (entropy[2] - entropy[3] < 0.02) {
391
0
    *num_literal_contexts = 2;
392
0
    *literal_context_map = kStaticContextMapSimpleUTF8;
393
0
  } else {
394
0
    *num_literal_contexts = 3;
395
0
    *literal_context_map = kStaticContextMapContinuation;
396
0
  }
397
0
}
398
399
/* Decide if we want to use a more complex static context map containing 13
400
   context values, based on the entropy reduction of histograms over the
401
   first 5 bits of literals. */
402
static BROTLI_BOOL ShouldUseComplexStaticContextMap(const uint8_t* input,
403
    size_t start_pos, size_t length, size_t mask, int quality, size_t size_hint,
404
0
    size_t* num_literal_contexts, const uint32_t** literal_context_map) {
405
0
  static const uint32_t kStaticContextMapComplexUTF8[64] = {
406
0
    11, 11, 12, 12, /* 0 special */
407
0
    0, 0, 0, 0, /* 4 lf */
408
0
    1, 1, 9, 9, /* 8 space */
409
0
    2, 2, 2, 2, /* !, first after space/lf and after something else. */
410
0
    1, 1, 1, 1, /* " */
411
0
    8, 3, 3, 3, /* % */
412
0
    1, 1, 1, 1, /* ({[ */
413
0
    2, 2, 2, 2, /* }]) */
414
0
    8, 4, 4, 4, /* :; */
415
0
    8, 7, 4, 4, /* . */
416
0
    8, 0, 0, 0, /* > */
417
0
    3, 3, 3, 3, /* [0..9] */
418
0
    5, 5, 10, 5, /* [A-Z] */
419
0
    5, 5, 10, 5,
420
0
    6, 6, 6, 6, /* [a-z] */
421
0
    6, 6, 6, 6,
422
0
  };
423
0
  BROTLI_UNUSED(quality);
424
  /* Try the more complex static context map only for long data. */
425
0
  if (size_hint < (1 << 20)) {
426
0
    return BROTLI_FALSE;
427
0
  } else {
428
0
    const size_t end_pos = start_pos + length;
429
    /* To make entropy calculations faster and to fit on the stack, we collect
430
       histograms over the 5 most significant bits of literals. One histogram
431
       without context and 13 additional histograms for each context value. */
432
0
    uint32_t combined_histo[32] = { 0 };
433
0
    uint32_t context_histo[13][32] = { { 0 } };
434
0
    uint32_t total = 0;
435
0
    double entropy[3];
436
0
    size_t dummy;
437
0
    size_t i;
438
0
    ContextLut utf8_lut = BROTLI_CONTEXT_LUT(CONTEXT_UTF8);
439
0
    for (; start_pos + 64 <= end_pos; start_pos += 4096) {
440
0
      const size_t stride_end_pos = start_pos + 64;
441
0
      uint8_t prev2 = input[start_pos & mask];
442
0
      uint8_t prev1 = input[(start_pos + 1) & mask];
443
0
      size_t pos;
444
      /* To make the analysis of the data faster we only examine 64 byte long
445
         strides at every 4kB intervals. */
446
0
      for (pos = start_pos + 2; pos < stride_end_pos; ++pos) {
447
0
        const uint8_t literal = input[pos & mask];
448
0
        const uint8_t context = (uint8_t)kStaticContextMapComplexUTF8[
449
0
            BROTLI_CONTEXT(prev1, prev2, utf8_lut)];
450
0
        ++total;
451
0
        ++combined_histo[literal >> 3];
452
0
        ++context_histo[context][literal >> 3];
453
0
        prev2 = prev1;
454
0
        prev1 = literal;
455
0
      }
456
0
    }
457
0
    entropy[1] = ShannonEntropy(combined_histo, 32, &dummy);
458
0
    entropy[2] = 0;
459
0
    for (i = 0; i < 13; ++i) {
460
0
      entropy[2] += ShannonEntropy(&context_histo[i][0], 32, &dummy);
461
0
    }
462
0
    entropy[0] = 1.0 / (double)total;
463
0
    entropy[1] *= entropy[0];
464
0
    entropy[2] *= entropy[0];
465
    /* The triggering heuristics below were tuned by compressing the individual
466
       files of the silesia corpus. If we skip this kind of context modeling
467
       for not very well compressible input (i.e. entropy using context modeling
468
       is 60% of maximal entropy) or if expected savings by symbol are less
469
       than 0.2 bits, then in every case when it triggers, the final compression
470
       ratio is improved. Note however that this heuristics might be too strict
471
       for some cases and could be tuned further. */
472
0
    if (entropy[2] > 3.0 || entropy[1] - entropy[2] < 0.2) {
473
0
      return BROTLI_FALSE;
474
0
    } else {
475
0
      *num_literal_contexts = 13;
476
0
      *literal_context_map = kStaticContextMapComplexUTF8;
477
0
      return BROTLI_TRUE;
478
0
    }
479
0
  }
480
0
}
481
482
static void DecideOverLiteralContextModeling(const uint8_t* input,
483
    size_t start_pos, size_t length, size_t mask, int quality, size_t size_hint,
484
0
    size_t* num_literal_contexts, const uint32_t** literal_context_map) {
485
0
  if (quality < MIN_QUALITY_FOR_CONTEXT_MODELING || length < 64) {
486
0
    return;
487
0
  } else if (ShouldUseComplexStaticContextMap(
488
0
      input, start_pos, length, mask, quality, size_hint,
489
0
      num_literal_contexts, literal_context_map)) {
490
    /* Context map was already set, nothing else to do. */
491
0
  } else {
492
    /* Gather bi-gram data of the UTF8 byte prefixes. To make the analysis of
493
       UTF8 data faster we only examine 64 byte long strides at every 4kB
494
       intervals. */
495
0
    const size_t end_pos = start_pos + length;
496
0
    uint32_t bigram_prefix_histo[9] = { 0 };
497
0
    for (; start_pos + 64 <= end_pos; start_pos += 4096) {
498
0
      static const int lut[4] = { 0, 0, 1, 2 };
499
0
      const size_t stride_end_pos = start_pos + 64;
500
0
      int prev = lut[input[start_pos & mask] >> 6] * 3;
501
0
      size_t pos;
502
0
      for (pos = start_pos + 1; pos < stride_end_pos; ++pos) {
503
0
        const uint8_t literal = input[pos & mask];
504
0
        ++bigram_prefix_histo[prev + lut[literal >> 6]];
505
0
        prev = lut[literal >> 6] * 3;
506
0
      }
507
0
    }
508
0
    ChooseContextMap(quality, &bigram_prefix_histo[0], num_literal_contexts,
509
0
                     literal_context_map);
510
0
  }
511
0
}
512
513
static BROTLI_BOOL ShouldCompress(
514
    const uint8_t* data, const size_t mask, const uint64_t last_flush_pos,
515
0
    const size_t bytes, const size_t num_literals, const size_t num_commands) {
516
  /* TODO: find more precise minimal block overhead. */
517
0
  if (bytes <= 2) return BROTLI_FALSE;
518
0
  if (num_commands < (bytes >> 8) + 2) {
519
0
    if (num_literals > 0.99 * (double)bytes) {
520
0
      uint32_t literal_histo[256] = { 0 };
521
0
      static const uint32_t kSampleRate = 13;
522
0
      static const double kMinEntropy = 7.92;
523
0
      const double bit_cost_threshold =
524
0
          (double)bytes * kMinEntropy / kSampleRate;
525
0
      size_t t = (bytes + kSampleRate - 1) / kSampleRate;
526
0
      uint32_t pos = (uint32_t)last_flush_pos;
527
0
      size_t i;
528
0
      for (i = 0; i < t; i++) {
529
0
        ++literal_histo[data[pos & mask]];
530
0
        pos += kSampleRate;
531
0
      }
532
0
      if (BitsEntropy(literal_histo, 256) > bit_cost_threshold) {
533
0
        return BROTLI_FALSE;
534
0
      }
535
0
    }
536
0
  }
537
0
  return BROTLI_TRUE;
538
0
}
539
540
/* Chooses the literal context mode for a metablock */
541
static ContextType ChooseContextMode(const BrotliEncoderParams* params,
542
    const uint8_t* data, const size_t pos, const size_t mask,
543
0
    const size_t length) {
544
  /* We only do the computation for the option of something else than
545
     CONTEXT_UTF8 for the highest qualities */
546
0
  if (params->quality >= MIN_QUALITY_FOR_HQ_BLOCK_SPLITTING &&
547
0
      !BrotliIsMostlyUTF8(data, pos, mask, length, kMinUTF8Ratio)) {
548
0
    return CONTEXT_SIGNED;
549
0
  }
550
0
  return CONTEXT_UTF8;
551
0
}
552
553
static void WriteMetaBlockInternal(MemoryManager* m,
554
                                   const uint8_t* data,
555
                                   const size_t mask,
556
                                   const uint64_t last_flush_pos,
557
                                   const size_t bytes,
558
                                   const BROTLI_BOOL is_last,
559
                                   ContextType literal_context_mode,
560
                                   const BrotliEncoderParams* params,
561
                                   const uint8_t prev_byte,
562
                                   const uint8_t prev_byte2,
563
                                   const size_t num_literals,
564
                                   const size_t num_commands,
565
                                   Command* commands,
566
                                   const int* saved_dist_cache,
567
                                   int* dist_cache,
568
                                   size_t* storage_ix,
569
0
                                   uint8_t* storage) {
570
0
  const uint32_t wrapped_last_flush_pos = WrapPosition(last_flush_pos);
571
0
  uint16_t last_bytes;
572
0
  uint8_t last_bytes_bits;
573
0
  ContextLut literal_context_lut = BROTLI_CONTEXT_LUT(literal_context_mode);
574
0
  BrotliEncoderParams block_params = *params;
575
576
0
  if (bytes == 0) {
577
    /* Write the ISLAST and ISEMPTY bits. */
578
0
    BrotliWriteBits(2, 3, storage_ix, storage);
579
0
    *storage_ix = (*storage_ix + 7u) & ~7u;
580
0
    return;
581
0
  }
582
583
0
  if (!ShouldCompress(data, mask, last_flush_pos, bytes,
584
0
                      num_literals, num_commands)) {
585
    /* Restore the distance cache, as its last update by
586
       CreateBackwardReferences is now unused. */
587
0
    memcpy(dist_cache, saved_dist_cache, 4 * sizeof(dist_cache[0]));
588
0
    BrotliStoreUncompressedMetaBlock(is_last, data,
589
0
                                     wrapped_last_flush_pos, mask, bytes,
590
0
                                     storage_ix, storage);
591
0
    return;
592
0
  }
593
594
0
  BROTLI_DCHECK(*storage_ix <= 14);
595
0
  last_bytes = (uint16_t)((storage[1] << 8) | storage[0]);
596
0
  last_bytes_bits = (uint8_t)(*storage_ix);
597
0
  if (params->quality <= MAX_QUALITY_FOR_STATIC_ENTROPY_CODES) {
598
0
    BrotliStoreMetaBlockFast(m, data, wrapped_last_flush_pos,
599
0
                             bytes, mask, is_last, params,
600
0
                             commands, num_commands,
601
0
                             storage_ix, storage);
602
0
    if (BROTLI_IS_OOM(m)) return;
603
0
  } else if (params->quality < MIN_QUALITY_FOR_BLOCK_SPLIT) {
604
0
    BrotliStoreMetaBlockTrivial(m, data, wrapped_last_flush_pos,
605
0
                                bytes, mask, is_last, params,
606
0
                                commands, num_commands,
607
0
                                storage_ix, storage);
608
0
    if (BROTLI_IS_OOM(m)) return;
609
0
  } else {
610
0
    MetaBlockSplit mb;
611
0
    InitMetaBlockSplit(&mb);
612
0
    if (params->quality < MIN_QUALITY_FOR_HQ_BLOCK_SPLITTING) {
613
0
      size_t num_literal_contexts = 1;
614
0
      const uint32_t* literal_context_map = NULL;
615
0
      if (!params->disable_literal_context_modeling) {
616
0
        DecideOverLiteralContextModeling(
617
0
            data, wrapped_last_flush_pos, bytes, mask, params->quality,
618
0
            params->size_hint, &num_literal_contexts,
619
0
            &literal_context_map);
620
0
      }
621
0
      BrotliBuildMetaBlockGreedy(m, data, wrapped_last_flush_pos, mask,
622
0
          prev_byte, prev_byte2, literal_context_lut, num_literal_contexts,
623
0
          literal_context_map, commands, num_commands, &mb);
624
0
      if (BROTLI_IS_OOM(m)) return;
625
0
    } else {
626
0
      BrotliBuildMetaBlock(m, data, wrapped_last_flush_pos, mask, &block_params,
627
0
                           prev_byte, prev_byte2,
628
0
                           commands, num_commands,
629
0
                           literal_context_mode,
630
0
                           &mb);
631
0
      if (BROTLI_IS_OOM(m)) return;
632
0
    }
633
0
    if (params->quality >= MIN_QUALITY_FOR_OPTIMIZE_HISTOGRAMS) {
634
      /* The number of distance symbols effectively used for distance
635
         histograms. It might be less than distance alphabet size
636
         for "Large Window Brotli" (32-bit). */
637
0
      BrotliOptimizeHistograms(block_params.dist.alphabet_size_limit, &mb);
638
0
    }
639
0
    BrotliStoreMetaBlock(m, data, wrapped_last_flush_pos, bytes, mask,
640
0
                         prev_byte, prev_byte2,
641
0
                         is_last,
642
0
                         &block_params,
643
0
                         literal_context_mode,
644
0
                         commands, num_commands,
645
0
                         &mb,
646
0
                         storage_ix, storage);
647
0
    if (BROTLI_IS_OOM(m)) return;
648
0
    DestroyMetaBlockSplit(m, &mb);
649
0
  }
650
0
  if (bytes + 4 < (*storage_ix >> 3)) {
651
    /* Restore the distance cache and last byte. */
652
0
    memcpy(dist_cache, saved_dist_cache, 4 * sizeof(dist_cache[0]));
653
0
    storage[0] = (uint8_t)last_bytes;
654
0
    storage[1] = (uint8_t)(last_bytes >> 8);
655
0
    *storage_ix = last_bytes_bits;
656
0
    BrotliStoreUncompressedMetaBlock(is_last, data,
657
0
                                     wrapped_last_flush_pos, mask,
658
0
                                     bytes, storage_ix, storage);
659
0
  }
660
0
}
661
662
0
static void ChooseDistanceParams(BrotliEncoderParams* params) {
663
0
  uint32_t distance_postfix_bits = 0;
664
0
  uint32_t num_direct_distance_codes = 0;
665
666
0
  if (params->quality >= MIN_QUALITY_FOR_NONZERO_DISTANCE_PARAMS) {
667
0
    uint32_t ndirect_msb;
668
0
    if (params->mode == BROTLI_MODE_FONT) {
669
0
      distance_postfix_bits = 1;
670
0
      num_direct_distance_codes = 12;
671
0
    } else {
672
0
      distance_postfix_bits = params->dist.distance_postfix_bits;
673
0
      num_direct_distance_codes = params->dist.num_direct_distance_codes;
674
0
    }
675
0
    ndirect_msb = (num_direct_distance_codes >> distance_postfix_bits) & 0x0F;
676
0
    if (distance_postfix_bits > BROTLI_MAX_NPOSTFIX ||
677
0
        num_direct_distance_codes > BROTLI_MAX_NDIRECT ||
678
0
        (ndirect_msb << distance_postfix_bits) != num_direct_distance_codes) {
679
0
      distance_postfix_bits = 0;
680
0
      num_direct_distance_codes = 0;
681
0
    }
682
0
  }
683
684
0
  BrotliInitDistanceParams(
685
0
      params, distance_postfix_bits, num_direct_distance_codes);
686
0
}
687
688
0
static BROTLI_BOOL EnsureInitialized(BrotliEncoderState* s) {
689
0
  if (BROTLI_IS_OOM(&s->memory_manager_)) return BROTLI_FALSE;
690
0
  if (s->is_initialized_) return BROTLI_TRUE;
691
692
0
  s->last_bytes_bits_ = 0;
693
0
  s->last_bytes_ = 0;
694
0
  s->flint_ = BROTLI_FLINT_DONE;
695
0
  s->remaining_metadata_bytes_ = BROTLI_UINT32_MAX;
696
697
0
  SanitizeParams(&s->params);
698
0
  s->params.lgblock = ComputeLgBlock(&s->params);
699
0
  ChooseDistanceParams(&s->params);
700
701
0
  if (s->params.stream_offset != 0) {
702
0
    s->flint_ = BROTLI_FLINT_NEEDS_2_BYTES;
703
    /* Poison the distance cache. -16 +- 3 is still less than zero (invalid). */
704
0
    s->dist_cache_[0] = -16;
705
0
    s->dist_cache_[1] = -16;
706
0
    s->dist_cache_[2] = -16;
707
0
    s->dist_cache_[3] = -16;
708
0
    memcpy(s->saved_dist_cache_, s->dist_cache_, sizeof(s->saved_dist_cache_));
709
0
  }
710
711
0
  RingBufferSetup(&s->params, &s->ringbuffer_);
712
713
  /* Initialize last byte with stream header. */
714
0
  {
715
0
    int lgwin = s->params.lgwin;
716
0
    if (s->params.quality == FAST_ONE_PASS_COMPRESSION_QUALITY ||
717
0
        s->params.quality == FAST_TWO_PASS_COMPRESSION_QUALITY) {
718
0
      lgwin = BROTLI_MAX(int, lgwin, 18);
719
0
    }
720
0
    if (s->params.stream_offset == 0) {
721
0
      EncodeWindowBits(lgwin, s->params.large_window,
722
0
                       &s->last_bytes_, &s->last_bytes_bits_);
723
0
    } else {
724
      /* Bigger values have the same effect, but could cause overflows. */
725
0
      s->params.stream_offset = BROTLI_MIN(size_t,
726
0
          s->params.stream_offset, BROTLI_MAX_BACKWARD_LIMIT(lgwin));
727
0
    }
728
0
  }
729
730
0
  if (s->params.quality == FAST_ONE_PASS_COMPRESSION_QUALITY) {
731
0
    InitCommandPrefixCodes(s->cmd_depths_, s->cmd_bits_,
732
0
                           s->cmd_code_, &s->cmd_code_numbits_);
733
0
  }
734
735
0
  s->is_initialized_ = BROTLI_TRUE;
736
0
  return BROTLI_TRUE;
737
0
}
738
739
0
static void BrotliEncoderInitParams(BrotliEncoderParams* params) {
740
0
  params->mode = BROTLI_DEFAULT_MODE;
741
0
  params->large_window = BROTLI_FALSE;
742
0
  params->quality = BROTLI_DEFAULT_QUALITY;
743
0
  params->lgwin = BROTLI_DEFAULT_WINDOW;
744
0
  params->lgblock = 0;
745
0
  params->stream_offset = 0;
746
0
  params->size_hint = 0;
747
0
  params->disable_literal_context_modeling = BROTLI_FALSE;
748
0
  BrotliInitEncoderDictionary(&params->dictionary);
749
0
  params->dist.distance_postfix_bits = 0;
750
0
  params->dist.num_direct_distance_codes = 0;
751
0
  params->dist.alphabet_size_max =
752
0
      BROTLI_DISTANCE_ALPHABET_SIZE(0, 0, BROTLI_MAX_DISTANCE_BITS);
753
0
  params->dist.alphabet_size_limit = params->dist.alphabet_size_max;
754
0
  params->dist.max_distance = BROTLI_MAX_DISTANCE;
755
0
}
756
757
0
static void BrotliEncoderInitState(BrotliEncoderState* s) {
758
0
  BrotliEncoderInitParams(&s->params);
759
0
  s->input_pos_ = 0;
760
0
  s->num_commands_ = 0;
761
0
  s->num_literals_ = 0;
762
0
  s->last_insert_len_ = 0;
763
0
  s->last_flush_pos_ = 0;
764
0
  s->last_processed_pos_ = 0;
765
0
  s->prev_byte_ = 0;
766
0
  s->prev_byte2_ = 0;
767
0
  s->storage_size_ = 0;
768
0
  s->storage_ = 0;
769
0
  HasherInit(&s->hasher_);
770
0
  s->large_table_ = NULL;
771
0
  s->large_table_size_ = 0;
772
0
  s->cmd_code_numbits_ = 0;
773
0
  s->command_buf_ = NULL;
774
0
  s->literal_buf_ = NULL;
775
0
  s->next_out_ = NULL;
776
0
  s->available_out_ = 0;
777
0
  s->total_out_ = 0;
778
0
  s->stream_state_ = BROTLI_STREAM_PROCESSING;
779
0
  s->is_last_block_emitted_ = BROTLI_FALSE;
780
0
  s->is_initialized_ = BROTLI_FALSE;
781
782
0
  RingBufferInit(&s->ringbuffer_);
783
784
0
  s->commands_ = 0;
785
0
  s->cmd_alloc_size_ = 0;
786
787
  /* Initialize distance cache. */
788
0
  s->dist_cache_[0] = 4;
789
0
  s->dist_cache_[1] = 11;
790
0
  s->dist_cache_[2] = 15;
791
0
  s->dist_cache_[3] = 16;
792
  /* Save the state of the distance cache in case we need to restore it for
793
     emitting an uncompressed block. */
794
0
  memcpy(s->saved_dist_cache_, s->dist_cache_, sizeof(s->saved_dist_cache_));
795
0
}
796
797
BrotliEncoderState* BrotliEncoderCreateInstance(
798
0
    brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque) {
799
0
  BrotliEncoderState* state = 0;
800
0
  if (!alloc_func && !free_func) {
801
0
    state = (BrotliEncoderState*)malloc(sizeof(BrotliEncoderState));
802
0
  } else if (alloc_func && free_func) {
803
0
    state = (BrotliEncoderState*)alloc_func(opaque, sizeof(BrotliEncoderState));
804
0
  }
805
0
  if (state == 0) {
806
    /* BROTLI_DUMP(); */
807
0
    return 0;
808
0
  }
809
0
  BrotliInitMemoryManager(
810
0
      &state->memory_manager_, alloc_func, free_func, opaque);
811
0
  BrotliEncoderInitState(state);
812
0
  return state;
813
0
}
814
815
0
static void BrotliEncoderCleanupState(BrotliEncoderState* s) {
816
0
  MemoryManager* m = &s->memory_manager_;
817
0
  if (BROTLI_IS_OOM(m)) {
818
0
    BrotliWipeOutMemoryManager(m);
819
0
    return;
820
0
  }
821
0
  BROTLI_FREE(m, s->storage_);
822
0
  BROTLI_FREE(m, s->commands_);
823
0
  RingBufferFree(m, &s->ringbuffer_);
824
0
  DestroyHasher(m, &s->hasher_);
825
0
  BROTLI_FREE(m, s->large_table_);
826
0
  BROTLI_FREE(m, s->command_buf_);
827
0
  BROTLI_FREE(m, s->literal_buf_);
828
0
}
829
830
/* Deinitializes and frees BrotliEncoderState instance. */
831
0
void BrotliEncoderDestroyInstance(BrotliEncoderState* state) {
832
0
  if (!state) {
833
0
    return;
834
0
  } else {
835
0
    MemoryManager* m = &state->memory_manager_;
836
0
    brotli_free_func free_func = m->free_func;
837
0
    void* opaque = m->opaque;
838
0
    BrotliEncoderCleanupState(state);
839
0
    free_func(opaque, state);
840
0
  }
841
0
}
842
843
/*
844
   Copies the given input data to the internal ring buffer of the compressor.
845
   No processing of the data occurs at this time and this function can be
846
   called multiple times before calling WriteBrotliData() to process the
847
   accumulated input. At most input_block_size() bytes of input data can be
848
   copied to the ring buffer, otherwise the next WriteBrotliData() will fail.
849
 */
850
static void CopyInputToRingBuffer(BrotliEncoderState* s,
851
                                  const size_t input_size,
852
0
                                  const uint8_t* input_buffer) {
853
0
  RingBuffer* ringbuffer_ = &s->ringbuffer_;
854
0
  MemoryManager* m = &s->memory_manager_;
855
0
  RingBufferWrite(m, input_buffer, input_size, ringbuffer_);
856
0
  if (BROTLI_IS_OOM(m)) return;
857
0
  s->input_pos_ += input_size;
858
859
  /* TL;DR: If needed, initialize 7 more bytes in the ring buffer to make the
860
     hashing not depend on uninitialized data. This makes compression
861
     deterministic and it prevents uninitialized memory warnings in Valgrind.
862
     Even without erasing, the output would be valid (but nondeterministic).
863
864
     Background information: The compressor stores short (at most 8 bytes)
865
     substrings of the input already read in a hash table, and detects
866
     repetitions by looking up such substrings in the hash table. If it
867
     can find a substring, it checks whether the substring is really there
868
     in the ring buffer (or it's just a hash collision). Should the hash
869
     table become corrupt, this check makes sure that the output is
870
     still valid, albeit the compression ratio would be bad.
871
872
     The compressor populates the hash table from the ring buffer as it's
873
     reading new bytes from the input. However, at the last few indexes of
874
     the ring buffer, there are not enough bytes to build full-length
875
     substrings from. Since the hash table always contains full-length
876
     substrings, we erase with dummy zeros here to make sure that those
877
     substrings will contain zeros at the end instead of uninitialized
878
     data.
879
880
     Please note that erasing is not necessary (because the
881
     memory region is already initialized since he ring buffer
882
     has a `tail' that holds a copy of the beginning,) so we
883
     skip erasing if we have already gone around at least once in
884
     the ring buffer.
885
886
     Only clear during the first round of ring-buffer writes. On
887
     subsequent rounds data in the ring-buffer would be affected. */
888
0
  if (ringbuffer_->pos_ <= ringbuffer_->mask_) {
889
    /* This is the first time when the ring buffer is being written.
890
       We clear 7 bytes just after the bytes that have been copied from
891
       the input buffer.
892
893
       The ring-buffer has a "tail" that holds a copy of the beginning,
894
       but only once the ring buffer has been fully written once, i.e.,
895
       pos <= mask. For the first time, we need to write values
896
       in this tail (where index may be larger than mask), so that
897
       we have exactly defined behavior and don't read uninitialized
898
       memory. Due to performance reasons, hashing reads data using a
899
       LOAD64, which can go 7 bytes beyond the bytes written in the
900
       ring-buffer. */
901
0
    memset(ringbuffer_->buffer_ + ringbuffer_->pos_, 0, 7);
902
0
  }
903
0
}
904
905
/* Marks all input as processed.
906
   Returns true if position wrapping occurs. */
907
0
static BROTLI_BOOL UpdateLastProcessedPos(BrotliEncoderState* s) {
908
0
  uint32_t wrapped_last_processed_pos = WrapPosition(s->last_processed_pos_);
909
0
  uint32_t wrapped_input_pos = WrapPosition(s->input_pos_);
910
0
  s->last_processed_pos_ = s->input_pos_;
911
0
  return TO_BROTLI_BOOL(wrapped_input_pos < wrapped_last_processed_pos);
912
0
}
913
914
static void ExtendLastCommand(BrotliEncoderState* s, uint32_t* bytes,
915
0
                              uint32_t* wrapped_last_processed_pos) {
916
0
  Command* last_command = &s->commands_[s->num_commands_ - 1];
917
0
  const uint8_t* data = s->ringbuffer_.buffer_;
918
0
  const uint32_t mask = s->ringbuffer_.mask_;
919
0
  uint64_t max_backward_distance =
920
0
      (((uint64_t)1) << s->params.lgwin) - BROTLI_WINDOW_GAP;
921
0
  uint64_t last_copy_len = last_command->copy_len_ & 0x1FFFFFF;
922
0
  uint64_t last_processed_pos = s->last_processed_pos_ - last_copy_len;
923
0
  uint64_t max_distance = last_processed_pos < max_backward_distance ?
924
0
      last_processed_pos : max_backward_distance;
925
0
  uint64_t cmd_dist = (uint64_t)s->dist_cache_[0];
926
0
  uint32_t distance_code = CommandRestoreDistanceCode(last_command,
927
0
                                                      &s->params.dist);
928
0
  if (distance_code < BROTLI_NUM_DISTANCE_SHORT_CODES ||
929
0
      distance_code - (BROTLI_NUM_DISTANCE_SHORT_CODES - 1) == cmd_dist) {
930
0
    if (cmd_dist <= max_distance) {
931
0
      while (*bytes != 0 && data[*wrapped_last_processed_pos & mask] ==
932
0
             data[(*wrapped_last_processed_pos - cmd_dist) & mask]) {
933
0
        last_command->copy_len_++;
934
0
        (*bytes)--;
935
0
        (*wrapped_last_processed_pos)++;
936
0
      }
937
0
    } else {
938
0
    }
939
    /* The copy length is at most the metablock size, and thus expressible. */
940
0
    GetLengthCode(last_command->insert_len_,
941
0
                  (size_t)((int)(last_command->copy_len_ & 0x1FFFFFF) +
942
0
                           (int)(last_command->copy_len_ >> 25)),
943
0
                  TO_BROTLI_BOOL((last_command->dist_prefix_ & 0x3FF) == 0),
944
0
                  &last_command->cmd_prefix_);
945
0
  }
946
0
}
947
948
/*
949
   Processes the accumulated input data and sets |*out_size| to the length of
950
   the new output meta-block, or to zero if no new output meta-block has been
951
   created (in this case the processed input data is buffered internally).
952
   If |*out_size| is positive, |*output| points to the start of the output
953
   data. If |is_last| or |force_flush| is BROTLI_TRUE, an output meta-block is
954
   always created. However, until |is_last| is BROTLI_TRUE encoder may retain up
955
   to 7 bits of the last byte of output. To force encoder to dump the remaining
956
   bits use WriteMetadata() to append an empty meta-data block.
957
   Returns BROTLI_FALSE if the size of the input data is larger than
958
   input_block_size().
959
 */
960
static BROTLI_BOOL EncodeData(
961
    BrotliEncoderState* s, const BROTLI_BOOL is_last,
962
0
    const BROTLI_BOOL force_flush, size_t* out_size, uint8_t** output) {
963
0
  const uint64_t delta = UnprocessedInputSize(s);
964
0
  uint32_t bytes = (uint32_t)delta;
965
0
  uint32_t wrapped_last_processed_pos = WrapPosition(s->last_processed_pos_);
966
0
  uint8_t* data;
967
0
  uint32_t mask;
968
0
  MemoryManager* m = &s->memory_manager_;
969
0
  ContextType literal_context_mode;
970
0
  ContextLut literal_context_lut;
971
972
0
  data = s->ringbuffer_.buffer_;
973
0
  mask = s->ringbuffer_.mask_;
974
975
  /* Adding more blocks after "last" block is forbidden. */
976
0
  if (s->is_last_block_emitted_) return BROTLI_FALSE;
977
0
  if (is_last) s->is_last_block_emitted_ = BROTLI_TRUE;
978
979
0
  if (delta > InputBlockSize(s)) {
980
0
    return BROTLI_FALSE;
981
0
  }
982
0
  if (s->params.quality == FAST_TWO_PASS_COMPRESSION_QUALITY &&
983
0
      !s->command_buf_) {
984
0
    s->command_buf_ =
985
0
        BROTLI_ALLOC(m, uint32_t, kCompressFragmentTwoPassBlockSize);
986
0
    s->literal_buf_ =
987
0
        BROTLI_ALLOC(m, uint8_t, kCompressFragmentTwoPassBlockSize);
988
0
    if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(s->command_buf_) ||
989
0
        BROTLI_IS_NULL(s->literal_buf_)) {
990
0
      return BROTLI_FALSE;
991
0
    }
992
0
  }
993
994
0
  if (s->params.quality == FAST_ONE_PASS_COMPRESSION_QUALITY ||
995
0
      s->params.quality == FAST_TWO_PASS_COMPRESSION_QUALITY) {
996
0
    uint8_t* storage;
997
0
    size_t storage_ix = s->last_bytes_bits_;
998
0
    size_t table_size;
999
0
    int* table;
1000
1001
0
    if (delta == 0 && !is_last) {
1002
      /* We have no new input data and we don't have to finish the stream, so
1003
         nothing to do. */
1004
0
      *out_size = 0;
1005
0
      return BROTLI_TRUE;
1006
0
    }
1007
0
    storage = GetBrotliStorage(s, 2 * bytes + 503);
1008
0
    if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1009
0
    storage[0] = (uint8_t)s->last_bytes_;
1010
0
    storage[1] = (uint8_t)(s->last_bytes_ >> 8);
1011
0
    table = GetHashTable(s, s->params.quality, bytes, &table_size);
1012
0
    if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1013
0
    if (s->params.quality == FAST_ONE_PASS_COMPRESSION_QUALITY) {
1014
0
      BrotliCompressFragmentFast(
1015
0
          m, &data[wrapped_last_processed_pos & mask],
1016
0
          bytes, is_last,
1017
0
          table, table_size,
1018
0
          s->cmd_depths_, s->cmd_bits_,
1019
0
          &s->cmd_code_numbits_, s->cmd_code_,
1020
0
          &storage_ix, storage);
1021
0
      if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1022
0
    } else {
1023
0
      BrotliCompressFragmentTwoPass(
1024
0
          m, &data[wrapped_last_processed_pos & mask],
1025
0
          bytes, is_last,
1026
0
          s->command_buf_, s->literal_buf_,
1027
0
          table, table_size,
1028
0
          &storage_ix, storage);
1029
0
      if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1030
0
    }
1031
0
    s->last_bytes_ = (uint16_t)(storage[storage_ix >> 3]);
1032
0
    s->last_bytes_bits_ = storage_ix & 7u;
1033
0
    UpdateLastProcessedPos(s);
1034
0
    *output = &storage[0];
1035
0
    *out_size = storage_ix >> 3;
1036
0
    return BROTLI_TRUE;
1037
0
  }
1038
1039
0
  {
1040
    /* Theoretical max number of commands is 1 per 2 bytes. */
1041
0
    size_t newsize = s->num_commands_ + bytes / 2 + 1;
1042
0
    if (newsize > s->cmd_alloc_size_) {
1043
0
      Command* new_commands;
1044
      /* Reserve a bit more memory to allow merging with a next block
1045
         without reallocation: that would impact speed. */
1046
0
      newsize += (bytes / 4) + 16;
1047
0
      s->cmd_alloc_size_ = newsize;
1048
0
      new_commands = BROTLI_ALLOC(m, Command, newsize);
1049
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(new_commands)) return BROTLI_FALSE;
1050
0
      if (s->commands_) {
1051
0
        memcpy(new_commands, s->commands_, sizeof(Command) * s->num_commands_);
1052
0
        BROTLI_FREE(m, s->commands_);
1053
0
      }
1054
0
      s->commands_ = new_commands;
1055
0
    }
1056
0
  }
1057
1058
0
  InitOrStitchToPreviousBlock(m, &s->hasher_, data, mask, &s->params,
1059
0
      wrapped_last_processed_pos, bytes, is_last);
1060
1061
0
  literal_context_mode = ChooseContextMode(
1062
0
      &s->params, data, WrapPosition(s->last_flush_pos_),
1063
0
      mask, (size_t)(s->input_pos_ - s->last_flush_pos_));
1064
0
  literal_context_lut = BROTLI_CONTEXT_LUT(literal_context_mode);
1065
1066
0
  if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1067
1068
0
  if (s->num_commands_ && s->last_insert_len_ == 0) {
1069
0
    ExtendLastCommand(s, &bytes, &wrapped_last_processed_pos);
1070
0
  }
1071
1072
0
  if (s->params.quality == ZOPFLIFICATION_QUALITY) {
1073
0
    BROTLI_DCHECK(s->params.hasher.type == 10);
1074
0
    BrotliCreateZopfliBackwardReferences(m, bytes, wrapped_last_processed_pos,
1075
0
        data, mask, literal_context_lut, &s->params,
1076
0
        &s->hasher_, s->dist_cache_,
1077
0
        &s->last_insert_len_, &s->commands_[s->num_commands_],
1078
0
        &s->num_commands_, &s->num_literals_);
1079
0
    if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1080
0
  } else if (s->params.quality == HQ_ZOPFLIFICATION_QUALITY) {
1081
0
    BROTLI_DCHECK(s->params.hasher.type == 10);
1082
0
    BrotliCreateHqZopfliBackwardReferences(m, bytes, wrapped_last_processed_pos,
1083
0
        data, mask, literal_context_lut, &s->params,
1084
0
        &s->hasher_, s->dist_cache_,
1085
0
        &s->last_insert_len_, &s->commands_[s->num_commands_],
1086
0
        &s->num_commands_, &s->num_literals_);
1087
0
    if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1088
0
  } else {
1089
0
    BrotliCreateBackwardReferences(bytes, wrapped_last_processed_pos,
1090
0
        data, mask, literal_context_lut, &s->params,
1091
0
        &s->hasher_, s->dist_cache_,
1092
0
        &s->last_insert_len_, &s->commands_[s->num_commands_],
1093
0
        &s->num_commands_, &s->num_literals_);
1094
0
  }
1095
1096
0
  {
1097
0
    const size_t max_length = MaxMetablockSize(&s->params);
1098
0
    const size_t max_literals = max_length / 8;
1099
0
    const size_t max_commands = max_length / 8;
1100
0
    const size_t processed_bytes = (size_t)(s->input_pos_ - s->last_flush_pos_);
1101
    /* If maximal possible additional block doesn't fit metablock, flush now. */
1102
    /* TODO: Postpone decision until next block arrives? */
1103
0
    const BROTLI_BOOL next_input_fits_metablock = TO_BROTLI_BOOL(
1104
0
        processed_bytes + InputBlockSize(s) <= max_length);
1105
    /* If block splitting is not used, then flush as soon as there is some
1106
       amount of commands / literals produced. */
1107
0
    const BROTLI_BOOL should_flush = TO_BROTLI_BOOL(
1108
0
        s->params.quality < MIN_QUALITY_FOR_BLOCK_SPLIT &&
1109
0
        s->num_literals_ + s->num_commands_ >= MAX_NUM_DELAYED_SYMBOLS);
1110
0
    if (!is_last && !force_flush && !should_flush &&
1111
0
        next_input_fits_metablock &&
1112
0
        s->num_literals_ < max_literals &&
1113
0
        s->num_commands_ < max_commands) {
1114
      /* Merge with next input block. Everything will happen later. */
1115
0
      if (UpdateLastProcessedPos(s)) {
1116
0
        HasherReset(&s->hasher_);
1117
0
      }
1118
0
      *out_size = 0;
1119
0
      return BROTLI_TRUE;
1120
0
    }
1121
0
  }
1122
1123
  /* Create the last insert-only command. */
1124
0
  if (s->last_insert_len_ > 0) {
1125
0
    InitInsertCommand(&s->commands_[s->num_commands_++], s->last_insert_len_);
1126
0
    s->num_literals_ += s->last_insert_len_;
1127
0
    s->last_insert_len_ = 0;
1128
0
  }
1129
1130
0
  if (!is_last && s->input_pos_ == s->last_flush_pos_) {
1131
    /* We have no new input data and we don't have to finish the stream, so
1132
       nothing to do. */
1133
0
    *out_size = 0;
1134
0
    return BROTLI_TRUE;
1135
0
  }
1136
0
  BROTLI_DCHECK(s->input_pos_ >= s->last_flush_pos_);
1137
0
  BROTLI_DCHECK(s->input_pos_ > s->last_flush_pos_ || is_last);
1138
0
  BROTLI_DCHECK(s->input_pos_ - s->last_flush_pos_ <= 1u << 24);
1139
0
  {
1140
0
    const uint32_t metablock_size =
1141
0
        (uint32_t)(s->input_pos_ - s->last_flush_pos_);
1142
0
    uint8_t* storage = GetBrotliStorage(s, 2 * metablock_size + 503);
1143
0
    size_t storage_ix = s->last_bytes_bits_;
1144
0
    if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1145
0
    storage[0] = (uint8_t)s->last_bytes_;
1146
0
    storage[1] = (uint8_t)(s->last_bytes_ >> 8);
1147
0
    WriteMetaBlockInternal(
1148
0
        m, data, mask, s->last_flush_pos_, metablock_size, is_last,
1149
0
        literal_context_mode, &s->params, s->prev_byte_, s->prev_byte2_,
1150
0
        s->num_literals_, s->num_commands_, s->commands_, s->saved_dist_cache_,
1151
0
        s->dist_cache_, &storage_ix, storage);
1152
0
    if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1153
0
    s->last_bytes_ = (uint16_t)(storage[storage_ix >> 3]);
1154
0
    s->last_bytes_bits_ = storage_ix & 7u;
1155
0
    s->last_flush_pos_ = s->input_pos_;
1156
0
    if (UpdateLastProcessedPos(s)) {
1157
0
      HasherReset(&s->hasher_);
1158
0
    }
1159
0
    if (s->last_flush_pos_ > 0) {
1160
0
      s->prev_byte_ = data[((uint32_t)s->last_flush_pos_ - 1) & mask];
1161
0
    }
1162
0
    if (s->last_flush_pos_ > 1) {
1163
0
      s->prev_byte2_ = data[(uint32_t)(s->last_flush_pos_ - 2) & mask];
1164
0
    }
1165
0
    s->num_commands_ = 0;
1166
0
    s->num_literals_ = 0;
1167
    /* Save the state of the distance cache in case we need to restore it for
1168
       emitting an uncompressed block. */
1169
0
    memcpy(s->saved_dist_cache_, s->dist_cache_, sizeof(s->saved_dist_cache_));
1170
0
    *output = &storage[0];
1171
0
    *out_size = storage_ix >> 3;
1172
0
    return BROTLI_TRUE;
1173
0
  }
1174
0
}
1175
1176
/* Dumps remaining output bits and metadata header to |header|.
1177
   Returns number of produced bytes.
1178
   REQUIRED: |header| should be 8-byte aligned and at least 16 bytes long.
1179
   REQUIRED: |block_size| <= (1 << 24). */
1180
static size_t WriteMetadataHeader(
1181
0
    BrotliEncoderState* s, const size_t block_size, uint8_t* header) {
1182
0
  size_t storage_ix;
1183
0
  storage_ix = s->last_bytes_bits_;
1184
0
  header[0] = (uint8_t)s->last_bytes_;
1185
0
  header[1] = (uint8_t)(s->last_bytes_ >> 8);
1186
0
  s->last_bytes_ = 0;
1187
0
  s->last_bytes_bits_ = 0;
1188
1189
0
  BrotliWriteBits(1, 0, &storage_ix, header);
1190
0
  BrotliWriteBits(2, 3, &storage_ix, header);
1191
0
  BrotliWriteBits(1, 0, &storage_ix, header);
1192
0
  if (block_size == 0) {
1193
0
    BrotliWriteBits(2, 0, &storage_ix, header);
1194
0
  } else {
1195
0
    uint32_t nbits = (block_size == 1) ? 0 :
1196
0
        (Log2FloorNonZero((uint32_t)block_size - 1) + 1);
1197
0
    uint32_t nbytes = (nbits + 7) / 8;
1198
0
    BrotliWriteBits(2, nbytes, &storage_ix, header);
1199
0
    BrotliWriteBits(8 * nbytes, block_size - 1, &storage_ix, header);
1200
0
  }
1201
0
  return (storage_ix + 7u) >> 3;
1202
0
}
1203
1204
static BROTLI_BOOL BrotliCompressBufferQuality10(
1205
    int lgwin, size_t input_size, const uint8_t* input_buffer,
1206
0
    size_t* encoded_size, uint8_t* encoded_buffer) {
1207
0
  MemoryManager memory_manager;
1208
0
  MemoryManager* m = &memory_manager;
1209
1210
0
  const size_t mask = BROTLI_SIZE_MAX >> 1;
1211
0
  int dist_cache[4] = { 4, 11, 15, 16 };
1212
0
  int saved_dist_cache[4] = { 4, 11, 15, 16 };
1213
0
  BROTLI_BOOL ok = BROTLI_TRUE;
1214
0
  const size_t max_out_size = *encoded_size;
1215
0
  size_t total_out_size = 0;
1216
0
  uint16_t last_bytes;
1217
0
  uint8_t last_bytes_bits;
1218
1219
0
  const size_t hasher_eff_size = BROTLI_MIN(size_t,
1220
0
      input_size, BROTLI_MAX_BACKWARD_LIMIT(lgwin) + BROTLI_WINDOW_GAP);
1221
1222
0
  BrotliEncoderParams params;
1223
1224
0
  const int lgmetablock = BROTLI_MIN(int, 24, lgwin + 1);
1225
0
  size_t max_block_size;
1226
0
  const size_t max_metablock_size = (size_t)1 << lgmetablock;
1227
0
  const size_t max_literals_per_metablock = max_metablock_size / 8;
1228
0
  const size_t max_commands_per_metablock = max_metablock_size / 8;
1229
0
  size_t metablock_start = 0;
1230
0
  uint8_t prev_byte = 0;
1231
0
  uint8_t prev_byte2 = 0;
1232
1233
0
  Hasher hasher;
1234
0
  HasherInit(&hasher);
1235
1236
0
  BrotliEncoderInitParams(&params);
1237
0
  params.quality = 10;
1238
0
  params.lgwin = lgwin;
1239
0
  if (lgwin > BROTLI_MAX_WINDOW_BITS) {
1240
0
    params.large_window = BROTLI_TRUE;
1241
0
  }
1242
0
  SanitizeParams(&params);
1243
0
  params.lgblock = ComputeLgBlock(&params);
1244
0
  ChooseDistanceParams(&params);
1245
0
  max_block_size = (size_t)1 << params.lgblock;
1246
1247
0
  BrotliInitMemoryManager(m, 0, 0, 0);
1248
1249
0
  BROTLI_DCHECK(input_size <= mask + 1);
1250
0
  EncodeWindowBits(lgwin, params.large_window, &last_bytes, &last_bytes_bits);
1251
0
  InitOrStitchToPreviousBlock(m, &hasher, input_buffer, mask, &params,
1252
0
      0, hasher_eff_size, BROTLI_TRUE);
1253
0
  if (BROTLI_IS_OOM(m)) goto oom;
1254
1255
0
  while (ok && metablock_start < input_size) {
1256
0
    const size_t metablock_end =
1257
0
        BROTLI_MIN(size_t, input_size, metablock_start + max_metablock_size);
1258
0
    const size_t expected_num_commands =
1259
0
        (metablock_end - metablock_start) / 12 + 16;
1260
0
    Command* commands = 0;
1261
0
    size_t num_commands = 0;
1262
0
    size_t last_insert_len = 0;
1263
0
    size_t num_literals = 0;
1264
0
    size_t metablock_size = 0;
1265
0
    size_t cmd_alloc_size = 0;
1266
0
    BROTLI_BOOL is_last;
1267
0
    uint8_t* storage;
1268
0
    size_t storage_ix;
1269
1270
0
    ContextType literal_context_mode = ChooseContextMode(&params,
1271
0
        input_buffer, metablock_start, mask, metablock_end - metablock_start);
1272
0
    ContextLut literal_context_lut = BROTLI_CONTEXT_LUT(literal_context_mode);
1273
1274
0
    size_t block_start;
1275
0
    for (block_start = metablock_start; block_start < metablock_end; ) {
1276
0
      size_t block_size =
1277
0
          BROTLI_MIN(size_t, metablock_end - block_start, max_block_size);
1278
0
      ZopfliNode* nodes = BROTLI_ALLOC(m, ZopfliNode, block_size + 1);
1279
0
      size_t path_size;
1280
0
      size_t new_cmd_alloc_size;
1281
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(nodes)) goto oom;
1282
0
      BrotliInitZopfliNodes(nodes, block_size + 1);
1283
0
      StitchToPreviousBlockH10(&hasher.privat._H10, block_size, block_start,
1284
0
                               input_buffer, mask);
1285
0
      path_size = BrotliZopfliComputeShortestPath(m, block_size, block_start,
1286
0
          input_buffer, mask, literal_context_lut, &params, dist_cache, &hasher,
1287
0
          nodes);
1288
0
      if (BROTLI_IS_OOM(m)) goto oom;
1289
      /* We allocate a command buffer in the first iteration of this loop that
1290
         will be likely big enough for the whole metablock, so that for most
1291
         inputs we will not have to reallocate in later iterations. We do the
1292
         allocation here and not before the loop, because if the input is small,
1293
         this will be allocated after the Zopfli cost model is freed, so this
1294
         will not increase peak memory usage.
1295
         TODO: If the first allocation is too small, increase command
1296
         buffer size exponentially. */
1297
0
      new_cmd_alloc_size = BROTLI_MAX(size_t, expected_num_commands,
1298
0
                                      num_commands + path_size + 1);
1299
0
      if (cmd_alloc_size != new_cmd_alloc_size) {
1300
0
        Command* new_commands = BROTLI_ALLOC(m, Command, new_cmd_alloc_size);
1301
0
        if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(new_commands)) goto oom;
1302
0
        cmd_alloc_size = new_cmd_alloc_size;
1303
0
        if (commands) {
1304
0
          memcpy(new_commands, commands, sizeof(Command) * num_commands);
1305
0
          BROTLI_FREE(m, commands);
1306
0
        }
1307
0
        commands = new_commands;
1308
0
      }
1309
0
      BrotliZopfliCreateCommands(block_size, block_start, &nodes[0], dist_cache,
1310
0
          &last_insert_len, &params, &commands[num_commands], &num_literals);
1311
0
      num_commands += path_size;
1312
0
      block_start += block_size;
1313
0
      metablock_size += block_size;
1314
0
      BROTLI_FREE(m, nodes);
1315
0
      if (num_literals > max_literals_per_metablock ||
1316
0
          num_commands > max_commands_per_metablock) {
1317
0
        break;
1318
0
      }
1319
0
    }
1320
1321
0
    if (last_insert_len > 0) {
1322
0
      InitInsertCommand(&commands[num_commands++], last_insert_len);
1323
0
      num_literals += last_insert_len;
1324
0
    }
1325
1326
0
    is_last = TO_BROTLI_BOOL(metablock_start + metablock_size == input_size);
1327
0
    storage = NULL;
1328
0
    storage_ix = last_bytes_bits;
1329
1330
0
    if (metablock_size == 0) {
1331
      /* Write the ISLAST and ISEMPTY bits. */
1332
0
      storage = BROTLI_ALLOC(m, uint8_t, 16);
1333
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(storage)) goto oom;
1334
0
      storage[0] = (uint8_t)last_bytes;
1335
0
      storage[1] = (uint8_t)(last_bytes >> 8);
1336
0
      BrotliWriteBits(2, 3, &storage_ix, storage);
1337
0
      storage_ix = (storage_ix + 7u) & ~7u;
1338
0
    } else if (!ShouldCompress(input_buffer, mask, metablock_start,
1339
0
                               metablock_size, num_literals, num_commands)) {
1340
      /* Restore the distance cache, as its last update by
1341
         CreateBackwardReferences is now unused. */
1342
0
      memcpy(dist_cache, saved_dist_cache, 4 * sizeof(dist_cache[0]));
1343
0
      storage = BROTLI_ALLOC(m, uint8_t, metablock_size + 16);
1344
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(storage)) goto oom;
1345
0
      storage[0] = (uint8_t)last_bytes;
1346
0
      storage[1] = (uint8_t)(last_bytes >> 8);
1347
0
      BrotliStoreUncompressedMetaBlock(is_last, input_buffer,
1348
0
                                       metablock_start, mask, metablock_size,
1349
0
                                       &storage_ix, storage);
1350
0
    } else {
1351
0
      MetaBlockSplit mb;
1352
0
      BrotliEncoderParams block_params = params;
1353
0
      InitMetaBlockSplit(&mb);
1354
0
      BrotliBuildMetaBlock(m, input_buffer, metablock_start, mask,
1355
0
                           &block_params,
1356
0
                           prev_byte, prev_byte2,
1357
0
                           commands, num_commands,
1358
0
                           literal_context_mode,
1359
0
                           &mb);
1360
0
      if (BROTLI_IS_OOM(m)) goto oom;
1361
0
      {
1362
        /* The number of distance symbols effectively used for distance
1363
           histograms. It might be less than distance alphabet size
1364
           for "Large Window Brotli" (32-bit). */
1365
0
        BrotliOptimizeHistograms(block_params.dist.alphabet_size_limit, &mb);
1366
0
      }
1367
0
      storage = BROTLI_ALLOC(m, uint8_t, 2 * metablock_size + 503);
1368
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(storage)) goto oom;
1369
0
      storage[0] = (uint8_t)last_bytes;
1370
0
      storage[1] = (uint8_t)(last_bytes >> 8);
1371
0
      BrotliStoreMetaBlock(m, input_buffer, metablock_start, metablock_size,
1372
0
                           mask, prev_byte, prev_byte2,
1373
0
                           is_last,
1374
0
                           &block_params,
1375
0
                           literal_context_mode,
1376
0
                           commands, num_commands,
1377
0
                           &mb,
1378
0
                           &storage_ix, storage);
1379
0
      if (BROTLI_IS_OOM(m)) goto oom;
1380
0
      if (metablock_size + 4 < (storage_ix >> 3)) {
1381
        /* Restore the distance cache and last byte. */
1382
0
        memcpy(dist_cache, saved_dist_cache, 4 * sizeof(dist_cache[0]));
1383
0
        storage[0] = (uint8_t)last_bytes;
1384
0
        storage[1] = (uint8_t)(last_bytes >> 8);
1385
0
        storage_ix = last_bytes_bits;
1386
0
        BrotliStoreUncompressedMetaBlock(is_last, input_buffer,
1387
0
                                         metablock_start, mask,
1388
0
                                         metablock_size, &storage_ix, storage);
1389
0
      }
1390
0
      DestroyMetaBlockSplit(m, &mb);
1391
0
    }
1392
0
    last_bytes = (uint16_t)(storage[storage_ix >> 3]);
1393
0
    last_bytes_bits = storage_ix & 7u;
1394
0
    metablock_start += metablock_size;
1395
0
    if (metablock_start < input_size) {
1396
0
      prev_byte = input_buffer[metablock_start - 1];
1397
0
      prev_byte2 = input_buffer[metablock_start - 2];
1398
0
    }
1399
    /* Save the state of the distance cache in case we need to restore it for
1400
       emitting an uncompressed block. */
1401
0
    memcpy(saved_dist_cache, dist_cache, 4 * sizeof(dist_cache[0]));
1402
1403
0
    {
1404
0
      const size_t out_size = storage_ix >> 3;
1405
0
      total_out_size += out_size;
1406
0
      if (total_out_size <= max_out_size) {
1407
0
        memcpy(encoded_buffer, storage, out_size);
1408
0
        encoded_buffer += out_size;
1409
0
      } else {
1410
0
        ok = BROTLI_FALSE;
1411
0
      }
1412
0
    }
1413
0
    BROTLI_FREE(m, storage);
1414
0
    BROTLI_FREE(m, commands);
1415
0
  }
1416
1417
0
  *encoded_size = total_out_size;
1418
0
  DestroyHasher(m, &hasher);
1419
0
  return ok;
1420
1421
0
oom:
1422
0
  BrotliWipeOutMemoryManager(m);
1423
0
  return BROTLI_FALSE;
1424
0
}
1425
1426
0
size_t BrotliEncoderMaxCompressedSize(size_t input_size) {
1427
  /* [window bits / empty metadata] + N * [uncompressed] + [last empty] */
1428
0
  size_t num_large_blocks = input_size >> 14;
1429
0
  size_t overhead = 2 + (4 * num_large_blocks) + 3 + 1;
1430
0
  size_t result = input_size + overhead;
1431
0
  if (input_size == 0) return 2;
1432
0
  return (result < input_size) ? 0 : result;
1433
0
}
1434
1435
/* Wraps data to uncompressed brotli stream with minimal window size.
1436
   |output| should point at region with at least BrotliEncoderMaxCompressedSize
1437
   addressable bytes.
1438
   Returns the length of stream. */
1439
static size_t MakeUncompressedStream(
1440
0
    const uint8_t* input, size_t input_size, uint8_t* output) {
1441
0
  size_t size = input_size;
1442
0
  size_t result = 0;
1443
0
  size_t offset = 0;
1444
0
  if (input_size == 0) {
1445
0
    output[0] = 6;
1446
0
    return 1;
1447
0
  }
1448
0
  output[result++] = 0x21;  /* window bits = 10, is_last = false */
1449
0
  output[result++] = 0x03;  /* empty metadata, padding */
1450
0
  while (size > 0) {
1451
0
    uint32_t nibbles = 0;
1452
0
    uint32_t chunk_size;
1453
0
    uint32_t bits;
1454
0
    chunk_size = (size > (1u << 24)) ? (1u << 24) : (uint32_t)size;
1455
0
    if (chunk_size > (1u << 16)) nibbles = (chunk_size > (1u << 20)) ? 2 : 1;
1456
0
    bits =
1457
0
        (nibbles << 1) | ((chunk_size - 1) << 3) | (1u << (19 + 4 * nibbles));
1458
0
    output[result++] = (uint8_t)bits;
1459
0
    output[result++] = (uint8_t)(bits >> 8);
1460
0
    output[result++] = (uint8_t)(bits >> 16);
1461
0
    if (nibbles == 2) output[result++] = (uint8_t)(bits >> 24);
1462
0
    memcpy(&output[result], &input[offset], chunk_size);
1463
0
    result += chunk_size;
1464
0
    offset += chunk_size;
1465
0
    size -= chunk_size;
1466
0
  }
1467
0
  output[result++] = 3;
1468
0
  return result;
1469
0
}
1470
1471
BROTLI_BOOL BrotliEncoderCompress(
1472
    int quality, int lgwin, BrotliEncoderMode mode, size_t input_size,
1473
    const uint8_t* input_buffer, size_t* encoded_size,
1474
0
    uint8_t* encoded_buffer) {
1475
0
  BrotliEncoderState* s;
1476
0
  size_t out_size = *encoded_size;
1477
0
  const uint8_t* input_start = input_buffer;
1478
0
  uint8_t* output_start = encoded_buffer;
1479
0
  size_t max_out_size = BrotliEncoderMaxCompressedSize(input_size);
1480
0
  if (out_size == 0) {
1481
    /* Output buffer needs at least one byte. */
1482
0
    return BROTLI_FALSE;
1483
0
  }
1484
0
  if (input_size == 0) {
1485
    /* Handle the special case of empty input. */
1486
0
    *encoded_size = 1;
1487
0
    *encoded_buffer = 6;
1488
0
    return BROTLI_TRUE;
1489
0
  }
1490
0
  if (quality == 10) {
1491
    /* TODO: Implement this direct path for all quality levels. */
1492
0
    const int lg_win = BROTLI_MIN(int, BROTLI_LARGE_MAX_WINDOW_BITS,
1493
0
                                       BROTLI_MAX(int, 16, lgwin));
1494
0
    int ok = BrotliCompressBufferQuality10(lg_win, input_size, input_buffer,
1495
0
                                           encoded_size, encoded_buffer);
1496
0
    if (!ok || (max_out_size && *encoded_size > max_out_size)) {
1497
0
      goto fallback;
1498
0
    }
1499
0
    return BROTLI_TRUE;
1500
0
  }
1501
1502
0
  s = BrotliEncoderCreateInstance(0, 0, 0);
1503
0
  if (!s) {
1504
0
    return BROTLI_FALSE;
1505
0
  } else {
1506
0
    size_t available_in = input_size;
1507
0
    const uint8_t* next_in = input_buffer;
1508
0
    size_t available_out = *encoded_size;
1509
0
    uint8_t* next_out = encoded_buffer;
1510
0
    size_t total_out = 0;
1511
0
    BROTLI_BOOL result = BROTLI_FALSE;
1512
0
    BrotliEncoderSetParameter(s, BROTLI_PARAM_QUALITY, (uint32_t)quality);
1513
0
    BrotliEncoderSetParameter(s, BROTLI_PARAM_LGWIN, (uint32_t)lgwin);
1514
0
    BrotliEncoderSetParameter(s, BROTLI_PARAM_MODE, (uint32_t)mode);
1515
0
    BrotliEncoderSetParameter(s, BROTLI_PARAM_SIZE_HINT, (uint32_t)input_size);
1516
0
    if (lgwin > BROTLI_MAX_WINDOW_BITS) {
1517
0
      BrotliEncoderSetParameter(s, BROTLI_PARAM_LARGE_WINDOW, BROTLI_TRUE);
1518
0
    }
1519
0
    result = BrotliEncoderCompressStream(s, BROTLI_OPERATION_FINISH,
1520
0
        &available_in, &next_in, &available_out, &next_out, &total_out);
1521
0
    if (!BrotliEncoderIsFinished(s)) result = 0;
1522
0
    *encoded_size = total_out;
1523
0
    BrotliEncoderDestroyInstance(s);
1524
0
    if (!result || (max_out_size && *encoded_size > max_out_size)) {
1525
0
      goto fallback;
1526
0
    }
1527
0
    return BROTLI_TRUE;
1528
0
  }
1529
0
fallback:
1530
0
  *encoded_size = 0;
1531
0
  if (!max_out_size) return BROTLI_FALSE;
1532
0
  if (out_size >= max_out_size) {
1533
0
    *encoded_size =
1534
0
        MakeUncompressedStream(input_start, input_size, output_start);
1535
0
    return BROTLI_TRUE;
1536
0
  }
1537
0
  return BROTLI_FALSE;
1538
0
}
1539
1540
0
static void InjectBytePaddingBlock(BrotliEncoderState* s) {
1541
0
  uint32_t seal = s->last_bytes_;
1542
0
  size_t seal_bits = s->last_bytes_bits_;
1543
0
  uint8_t* destination;
1544
0
  s->last_bytes_ = 0;
1545
0
  s->last_bytes_bits_ = 0;
1546
  /* is_last = 0, data_nibbles = 11, reserved = 0, meta_nibbles = 00 */
1547
0
  seal |= 0x6u << seal_bits;
1548
0
  seal_bits += 6;
1549
  /* If we have already created storage, then append to it.
1550
     Storage is valid until next block is being compressed. */
1551
0
  if (s->next_out_) {
1552
0
    destination = s->next_out_ + s->available_out_;
1553
0
  } else {
1554
0
    destination = s->tiny_buf_.u8;
1555
0
    s->next_out_ = destination;
1556
0
  }
1557
0
  destination[0] = (uint8_t)seal;
1558
0
  if (seal_bits > 8) destination[1] = (uint8_t)(seal >> 8);
1559
0
  if (seal_bits > 16) destination[2] = (uint8_t)(seal >> 16);
1560
0
  s->available_out_ += (seal_bits + 7) >> 3;
1561
0
}
1562
1563
/* Injects padding bits or pushes compressed data to output.
1564
   Returns false if nothing is done. */
1565
static BROTLI_BOOL InjectFlushOrPushOutput(BrotliEncoderState* s,
1566
0
    size_t* available_out, uint8_t** next_out, size_t* total_out) {
1567
0
  if (s->stream_state_ == BROTLI_STREAM_FLUSH_REQUESTED &&
1568
0
      s->last_bytes_bits_ != 0) {
1569
0
    InjectBytePaddingBlock(s);
1570
0
    return BROTLI_TRUE;
1571
0
  }
1572
1573
0
  if (s->available_out_ != 0 && *available_out != 0) {
1574
0
    size_t copy_output_size =
1575
0
        BROTLI_MIN(size_t, s->available_out_, *available_out);
1576
0
    memcpy(*next_out, s->next_out_, copy_output_size);
1577
0
    *next_out += copy_output_size;
1578
0
    *available_out -= copy_output_size;
1579
0
    s->next_out_ += copy_output_size;
1580
0
    s->available_out_ -= copy_output_size;
1581
0
    s->total_out_ += copy_output_size;
1582
0
    if (total_out) *total_out = s->total_out_;
1583
0
    return BROTLI_TRUE;
1584
0
  }
1585
1586
0
  return BROTLI_FALSE;
1587
0
}
1588
1589
0
static void CheckFlushComplete(BrotliEncoderState* s) {
1590
0
  if (s->stream_state_ == BROTLI_STREAM_FLUSH_REQUESTED &&
1591
0
      s->available_out_ == 0) {
1592
0
    s->stream_state_ = BROTLI_STREAM_PROCESSING;
1593
0
    s->next_out_ = 0;
1594
0
  }
1595
0
}
1596
1597
static BROTLI_BOOL BrotliEncoderCompressStreamFast(
1598
    BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in,
1599
    const uint8_t** next_in, size_t* available_out, uint8_t** next_out,
1600
0
    size_t* total_out) {
1601
0
  const size_t block_size_limit = (size_t)1 << s->params.lgwin;
1602
0
  const size_t buf_size = BROTLI_MIN(size_t, kCompressFragmentTwoPassBlockSize,
1603
0
      BROTLI_MIN(size_t, *available_in, block_size_limit));
1604
0
  uint32_t* tmp_command_buf = NULL;
1605
0
  uint32_t* command_buf = NULL;
1606
0
  uint8_t* tmp_literal_buf = NULL;
1607
0
  uint8_t* literal_buf = NULL;
1608
0
  MemoryManager* m = &s->memory_manager_;
1609
0
  if (s->params.quality != FAST_ONE_PASS_COMPRESSION_QUALITY &&
1610
0
      s->params.quality != FAST_TWO_PASS_COMPRESSION_QUALITY) {
1611
0
    return BROTLI_FALSE;
1612
0
  }
1613
0
  if (s->params.quality == FAST_TWO_PASS_COMPRESSION_QUALITY) {
1614
0
    if (!s->command_buf_ && buf_size == kCompressFragmentTwoPassBlockSize) {
1615
0
      s->command_buf_ =
1616
0
          BROTLI_ALLOC(m, uint32_t, kCompressFragmentTwoPassBlockSize);
1617
0
      s->literal_buf_ =
1618
0
          BROTLI_ALLOC(m, uint8_t, kCompressFragmentTwoPassBlockSize);
1619
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(s->command_buf_) ||
1620
0
          BROTLI_IS_NULL(s->literal_buf_)) {
1621
0
        return BROTLI_FALSE;
1622
0
      }
1623
0
    }
1624
0
    if (s->command_buf_) {
1625
0
      command_buf = s->command_buf_;
1626
0
      literal_buf = s->literal_buf_;
1627
0
    } else {
1628
0
      tmp_command_buf = BROTLI_ALLOC(m, uint32_t, buf_size);
1629
0
      tmp_literal_buf = BROTLI_ALLOC(m, uint8_t, buf_size);
1630
0
      if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(tmp_command_buf) ||
1631
0
          BROTLI_IS_NULL(tmp_literal_buf)) {
1632
0
        return BROTLI_FALSE;
1633
0
      }
1634
0
      command_buf = tmp_command_buf;
1635
0
      literal_buf = tmp_literal_buf;
1636
0
    }
1637
0
  }
1638
1639
0
  while (BROTLI_TRUE) {
1640
0
    if (InjectFlushOrPushOutput(s, available_out, next_out, total_out)) {
1641
0
      continue;
1642
0
    }
1643
1644
    /* Compress block only when internal output buffer is empty, stream is not
1645
       finished, there is no pending flush request, and there is either
1646
       additional input or pending operation. */
1647
0
    if (s->available_out_ == 0 &&
1648
0
        s->stream_state_ == BROTLI_STREAM_PROCESSING &&
1649
0
        (*available_in != 0 || op != BROTLI_OPERATION_PROCESS)) {
1650
0
      size_t block_size = BROTLI_MIN(size_t, block_size_limit, *available_in);
1651
0
      BROTLI_BOOL is_last =
1652
0
          (*available_in == block_size) && (op == BROTLI_OPERATION_FINISH);
1653
0
      BROTLI_BOOL force_flush =
1654
0
          (*available_in == block_size) && (op == BROTLI_OPERATION_FLUSH);
1655
0
      size_t max_out_size = 2 * block_size + 503;
1656
0
      BROTLI_BOOL inplace = BROTLI_TRUE;
1657
0
      uint8_t* storage = NULL;
1658
0
      size_t storage_ix = s->last_bytes_bits_;
1659
0
      size_t table_size;
1660
0
      int* table;
1661
1662
0
      if (force_flush && block_size == 0) {
1663
0
        s->stream_state_ = BROTLI_STREAM_FLUSH_REQUESTED;
1664
0
        continue;
1665
0
      }
1666
0
      if (max_out_size <= *available_out) {
1667
0
        storage = *next_out;
1668
0
      } else {
1669
0
        inplace = BROTLI_FALSE;
1670
0
        storage = GetBrotliStorage(s, max_out_size);
1671
0
        if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1672
0
      }
1673
0
      storage[0] = (uint8_t)s->last_bytes_;
1674
0
      storage[1] = (uint8_t)(s->last_bytes_ >> 8);
1675
0
      table = GetHashTable(s, s->params.quality, block_size, &table_size);
1676
0
      if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1677
1678
0
      if (s->params.quality == FAST_ONE_PASS_COMPRESSION_QUALITY) {
1679
0
        BrotliCompressFragmentFast(m, *next_in, block_size, is_last, table,
1680
0
            table_size, s->cmd_depths_, s->cmd_bits_, &s->cmd_code_numbits_,
1681
0
            s->cmd_code_, &storage_ix, storage);
1682
0
        if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1683
0
      } else {
1684
0
        BrotliCompressFragmentTwoPass(m, *next_in, block_size, is_last,
1685
0
            command_buf, literal_buf, table, table_size,
1686
0
            &storage_ix, storage);
1687
0
        if (BROTLI_IS_OOM(m)) return BROTLI_FALSE;
1688
0
      }
1689
0
      *next_in += block_size;
1690
0
      *available_in -= block_size;
1691
0
      if (inplace) {
1692
0
        size_t out_bytes = storage_ix >> 3;
1693
0
        BROTLI_DCHECK(out_bytes <= *available_out);
1694
0
        BROTLI_DCHECK((storage_ix & 7) == 0 || out_bytes < *available_out);
1695
0
        *next_out += out_bytes;
1696
0
        *available_out -= out_bytes;
1697
0
        s->total_out_ += out_bytes;
1698
0
        if (total_out) *total_out = s->total_out_;
1699
0
      } else {
1700
0
        size_t out_bytes = storage_ix >> 3;
1701
0
        s->next_out_ = storage;
1702
0
        s->available_out_ = out_bytes;
1703
0
      }
1704
0
      s->last_bytes_ = (uint16_t)(storage[storage_ix >> 3]);
1705
0
      s->last_bytes_bits_ = storage_ix & 7u;
1706
1707
0
      if (force_flush) s->stream_state_ = BROTLI_STREAM_FLUSH_REQUESTED;
1708
0
      if (is_last) s->stream_state_ = BROTLI_STREAM_FINISHED;
1709
0
      continue;
1710
0
    }
1711
0
    break;
1712
0
  }
1713
0
  BROTLI_FREE(m, tmp_command_buf);
1714
0
  BROTLI_FREE(m, tmp_literal_buf);
1715
0
  CheckFlushComplete(s);
1716
0
  return BROTLI_TRUE;
1717
0
}
1718
1719
static BROTLI_BOOL ProcessMetadata(
1720
    BrotliEncoderState* s, size_t* available_in, const uint8_t** next_in,
1721
0
    size_t* available_out, uint8_t** next_out, size_t* total_out) {
1722
0
  if (*available_in > (1u << 24)) return BROTLI_FALSE;
1723
  /* Switch to metadata block workflow, if required. */
1724
0
  if (s->stream_state_ == BROTLI_STREAM_PROCESSING) {
1725
0
    s->remaining_metadata_bytes_ = (uint32_t)*available_in;
1726
0
    s->stream_state_ = BROTLI_STREAM_METADATA_HEAD;
1727
0
  }
1728
0
  if (s->stream_state_ != BROTLI_STREAM_METADATA_HEAD &&
1729
0
      s->stream_state_ != BROTLI_STREAM_METADATA_BODY) {
1730
0
    return BROTLI_FALSE;
1731
0
  }
1732
1733
0
  while (BROTLI_TRUE) {
1734
0
    if (InjectFlushOrPushOutput(s, available_out, next_out, total_out)) {
1735
0
      continue;
1736
0
    }
1737
0
    if (s->available_out_ != 0) break;
1738
1739
0
    if (s->input_pos_ != s->last_flush_pos_) {
1740
0
      BROTLI_BOOL result = EncodeData(s, BROTLI_FALSE, BROTLI_TRUE,
1741
0
          &s->available_out_, &s->next_out_);
1742
0
      if (!result) return BROTLI_FALSE;
1743
0
      continue;
1744
0
    }
1745
1746
0
    if (s->stream_state_ == BROTLI_STREAM_METADATA_HEAD) {
1747
0
      s->next_out_ = s->tiny_buf_.u8;
1748
0
      s->available_out_ =
1749
0
          WriteMetadataHeader(s, s->remaining_metadata_bytes_, s->next_out_);
1750
0
      s->stream_state_ = BROTLI_STREAM_METADATA_BODY;
1751
0
      continue;
1752
0
    } else {
1753
      /* Exit workflow only when there is no more input and no more output.
1754
         Otherwise client may continue producing empty metadata blocks. */
1755
0
      if (s->remaining_metadata_bytes_ == 0) {
1756
0
        s->remaining_metadata_bytes_ = BROTLI_UINT32_MAX;
1757
0
        s->stream_state_ = BROTLI_STREAM_PROCESSING;
1758
0
        break;
1759
0
      }
1760
0
      if (*available_out) {
1761
        /* Directly copy input to output. */
1762
0
        uint32_t copy = (uint32_t)BROTLI_MIN(
1763
0
            size_t, s->remaining_metadata_bytes_, *available_out);
1764
0
        memcpy(*next_out, *next_in, copy);
1765
0
        *next_in += copy;
1766
0
        *available_in -= copy;
1767
0
        s->remaining_metadata_bytes_ -= copy;
1768
0
        *next_out += copy;
1769
0
        *available_out -= copy;
1770
0
      } else {
1771
        /* This guarantees progress in "TakeOutput" workflow. */
1772
0
        uint32_t copy = BROTLI_MIN(uint32_t, s->remaining_metadata_bytes_, 16);
1773
0
        s->next_out_ = s->tiny_buf_.u8;
1774
0
        memcpy(s->next_out_, *next_in, copy);
1775
0
        *next_in += copy;
1776
0
        *available_in -= copy;
1777
0
        s->remaining_metadata_bytes_ -= copy;
1778
0
        s->available_out_ = copy;
1779
0
      }
1780
0
      continue;
1781
0
    }
1782
0
  }
1783
1784
0
  return BROTLI_TRUE;
1785
0
}
1786
1787
0
static void UpdateSizeHint(BrotliEncoderState* s, size_t available_in) {
1788
0
  if (s->params.size_hint == 0) {
1789
0
    uint64_t delta = UnprocessedInputSize(s);
1790
0
    uint64_t tail = available_in;
1791
0
    uint32_t limit = 1u << 30;
1792
0
    uint32_t total;
1793
0
    if ((delta >= limit) || (tail >= limit) || ((delta + tail) >= limit)) {
1794
0
      total = limit;
1795
0
    } else {
1796
0
      total = (uint32_t)(delta + tail);
1797
0
    }
1798
0
    s->params.size_hint = total;
1799
0
  }
1800
0
}
1801
1802
BROTLI_BOOL BrotliEncoderCompressStream(
1803
    BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in,
1804
    const uint8_t** next_in, size_t* available_out,uint8_t** next_out,
1805
0
    size_t* total_out) {
1806
0
  if (!EnsureInitialized(s)) return BROTLI_FALSE;
1807
1808
  /* Unfinished metadata block; check requirements. */
1809
0
  if (s->remaining_metadata_bytes_ != BROTLI_UINT32_MAX) {
1810
0
    if (*available_in != s->remaining_metadata_bytes_) return BROTLI_FALSE;
1811
0
    if (op != BROTLI_OPERATION_EMIT_METADATA) return BROTLI_FALSE;
1812
0
  }
1813
1814
0
  if (op == BROTLI_OPERATION_EMIT_METADATA) {
1815
0
    UpdateSizeHint(s, 0);  /* First data metablock might be emitted here. */
1816
0
    return ProcessMetadata(
1817
0
        s, available_in, next_in, available_out, next_out, total_out);
1818
0
  }
1819
1820
0
  if (s->stream_state_ == BROTLI_STREAM_METADATA_HEAD ||
1821
0
      s->stream_state_ == BROTLI_STREAM_METADATA_BODY) {
1822
0
    return BROTLI_FALSE;
1823
0
  }
1824
1825
0
  if (s->stream_state_ != BROTLI_STREAM_PROCESSING && *available_in != 0) {
1826
0
    return BROTLI_FALSE;
1827
0
  }
1828
0
  if (s->params.quality == FAST_ONE_PASS_COMPRESSION_QUALITY ||
1829
0
      s->params.quality == FAST_TWO_PASS_COMPRESSION_QUALITY) {
1830
0
    return BrotliEncoderCompressStreamFast(s, op, available_in, next_in,
1831
0
        available_out, next_out, total_out);
1832
0
  }
1833
0
  while (BROTLI_TRUE) {
1834
0
    size_t remaining_block_size = RemainingInputBlockSize(s);
1835
    /* Shorten input to flint size. */
1836
0
    if (s->flint_ >= 0 && remaining_block_size > (size_t)s->flint_) {
1837
0
      remaining_block_size = (size_t)s->flint_;
1838
0
    }
1839
1840
0
    if (remaining_block_size != 0 && *available_in != 0) {
1841
0
      size_t copy_input_size =
1842
0
          BROTLI_MIN(size_t, remaining_block_size, *available_in);
1843
0
      CopyInputToRingBuffer(s, copy_input_size, *next_in);
1844
0
      *next_in += copy_input_size;
1845
0
      *available_in -= copy_input_size;
1846
0
      if (s->flint_ > 0) s->flint_ = (int8_t)(s->flint_ - (int)copy_input_size);
1847
0
      continue;
1848
0
    }
1849
1850
0
    if (InjectFlushOrPushOutput(s, available_out, next_out, total_out)) {
1851
      /* Exit the "emit flint" workflow. */
1852
0
      if (s->flint_ == BROTLI_FLINT_WAITING_FOR_FLUSHING) {
1853
0
        CheckFlushComplete(s);
1854
0
        if (s->stream_state_ == BROTLI_STREAM_PROCESSING) {
1855
0
          s->flint_ = BROTLI_FLINT_DONE;
1856
0
        }
1857
0
      }
1858
0
      continue;
1859
0
    }
1860
1861
    /* Compress data only when internal output buffer is empty, stream is not
1862
       finished and there is no pending flush request. */
1863
0
    if (s->available_out_ == 0 &&
1864
0
        s->stream_state_ == BROTLI_STREAM_PROCESSING) {
1865
0
      if (remaining_block_size == 0 || op != BROTLI_OPERATION_PROCESS) {
1866
0
        BROTLI_BOOL is_last = TO_BROTLI_BOOL(
1867
0
            (*available_in == 0) && op == BROTLI_OPERATION_FINISH);
1868
0
        BROTLI_BOOL force_flush = TO_BROTLI_BOOL(
1869
0
            (*available_in == 0) && op == BROTLI_OPERATION_FLUSH);
1870
0
        BROTLI_BOOL result;
1871
        /* Force emitting (uncompressed) piece containing flint. */
1872
0
        if (!is_last && s->flint_ == 0) {
1873
0
          s->flint_ = BROTLI_FLINT_WAITING_FOR_FLUSHING;
1874
0
          force_flush = BROTLI_TRUE;
1875
0
        }
1876
0
        UpdateSizeHint(s, *available_in);
1877
0
        result = EncodeData(s, is_last, force_flush,
1878
0
            &s->available_out_, &s->next_out_);
1879
0
        if (!result) return BROTLI_FALSE;
1880
0
        if (force_flush) s->stream_state_ = BROTLI_STREAM_FLUSH_REQUESTED;
1881
0
        if (is_last) s->stream_state_ = BROTLI_STREAM_FINISHED;
1882
0
        continue;
1883
0
      }
1884
0
    }
1885
0
    break;
1886
0
  }
1887
0
  CheckFlushComplete(s);
1888
0
  return BROTLI_TRUE;
1889
0
}
1890
1891
0
BROTLI_BOOL BrotliEncoderIsFinished(BrotliEncoderState* s) {
1892
0
  return TO_BROTLI_BOOL(s->stream_state_ == BROTLI_STREAM_FINISHED &&
1893
0
      !BrotliEncoderHasMoreOutput(s));
1894
0
}
1895
1896
0
BROTLI_BOOL BrotliEncoderHasMoreOutput(BrotliEncoderState* s) {
1897
0
  return TO_BROTLI_BOOL(s->available_out_ != 0);
1898
0
}
1899
1900
0
const uint8_t* BrotliEncoderTakeOutput(BrotliEncoderState* s, size_t* size) {
1901
0
  size_t consumed_size = s->available_out_;
1902
0
  uint8_t* result = s->next_out_;
1903
0
  if (*size) {
1904
0
    consumed_size = BROTLI_MIN(size_t, *size, s->available_out_);
1905
0
  }
1906
0
  if (consumed_size) {
1907
0
    s->next_out_ += consumed_size;
1908
0
    s->available_out_ -= consumed_size;
1909
0
    s->total_out_ += consumed_size;
1910
0
    CheckFlushComplete(s);
1911
0
    *size = consumed_size;
1912
0
  } else {
1913
0
    *size = 0;
1914
0
    result = 0;
1915
0
  }
1916
0
  return result;
1917
0
}
1918
1919
0
uint32_t BrotliEncoderVersion(void) {
1920
0
  return BROTLI_VERSION;
1921
0
}
1922
1923
#if defined(__cplusplus) || defined(c_plusplus)
1924
}  /* extern "C" */
1925
#endif