2015-11-27 10:27:11 +00:00
|
|
|
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
|
2015-12-11 10:11:51 +00:00
|
|
|
Distributed under MIT license.
|
2015-11-27 10:27:11 +00:00
|
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
|
|
*/
|
|
|
|
|
2016-06-03 09:19:23 +00:00
|
|
|
/* Heuristics for deciding about the UTF8-ness of strings. */
|
2015-10-01 13:10:42 +00:00
|
|
|
|
|
|
|
#include "./utf8_util.h"
|
|
|
|
|
2016-08-23 12:40:33 +00:00
|
|
|
#include <brotli/types.h>
|
2015-10-01 13:10:42 +00:00
|
|
|
|
2016-06-13 09:01:04 +00:00
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2015-10-01 13:10:42 +00:00
|
|
|
|
2016-06-13 09:01:04 +00:00
|
|
|
static size_t BrotliParseAsUTF8(
|
|
|
|
int* symbol, const uint8_t* input, size_t size) {
|
2016-06-03 09:19:23 +00:00
|
|
|
/* ASCII */
|
2015-10-01 13:10:42 +00:00
|
|
|
if ((input[0] & 0x80) == 0) {
|
|
|
|
*symbol = input[0];
|
|
|
|
if (*symbol > 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2016-06-03 09:19:23 +00:00
|
|
|
/* 2-byte UTF8 */
|
2015-10-28 16:44:47 +00:00
|
|
|
if (size > 1u &&
|
2018-02-26 14:04:36 +00:00
|
|
|
(input[0] & 0xE0) == 0xC0 &&
|
|
|
|
(input[1] & 0xC0) == 0x80) {
|
|
|
|
*symbol = (((input[0] & 0x1F) << 6) |
|
|
|
|
(input[1] & 0x3F));
|
|
|
|
if (*symbol > 0x7F) {
|
2015-10-01 13:10:42 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
}
|
2016-06-03 09:19:23 +00:00
|
|
|
/* 3-byte UFT8 */
|
2015-10-28 16:44:47 +00:00
|
|
|
if (size > 2u &&
|
2018-02-26 14:04:36 +00:00
|
|
|
(input[0] & 0xF0) == 0xE0 &&
|
|
|
|
(input[1] & 0xC0) == 0x80 &&
|
|
|
|
(input[2] & 0xC0) == 0x80) {
|
|
|
|
*symbol = (((input[0] & 0x0F) << 12) |
|
|
|
|
((input[1] & 0x3F) << 6) |
|
|
|
|
(input[2] & 0x3F));
|
|
|
|
if (*symbol > 0x7FF) {
|
2015-10-01 13:10:42 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
2016-06-03 09:19:23 +00:00
|
|
|
/* 4-byte UFT8 */
|
2015-10-28 16:44:47 +00:00
|
|
|
if (size > 3u &&
|
2018-02-26 14:04:36 +00:00
|
|
|
(input[0] & 0xF8) == 0xF0 &&
|
|
|
|
(input[1] & 0xC0) == 0x80 &&
|
|
|
|
(input[2] & 0xC0) == 0x80 &&
|
|
|
|
(input[3] & 0xC0) == 0x80) {
|
2015-10-01 13:10:42 +00:00
|
|
|
*symbol = (((input[0] & 0x07) << 18) |
|
2018-02-26 14:04:36 +00:00
|
|
|
((input[1] & 0x3F) << 12) |
|
|
|
|
((input[2] & 0x3F) << 6) |
|
|
|
|
(input[3] & 0x3F));
|
|
|
|
if (*symbol > 0xFFFF && *symbol <= 0x10FFFF) {
|
2015-10-01 13:10:42 +00:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|
2016-06-03 09:19:23 +00:00
|
|
|
/* Not UTF8, emit a special symbol above the UTF8-code space */
|
2015-10-01 13:10:42 +00:00
|
|
|
*symbol = 0x110000 | input[0];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-06-03 09:19:23 +00:00
|
|
|
/* Returns 1 if at least min_fraction of the data is UTF8-encoded.*/
|
2016-07-26 12:41:59 +00:00
|
|
|
BROTLI_BOOL BrotliIsMostlyUTF8(
|
|
|
|
const uint8_t* data, const size_t pos, const size_t mask,
|
|
|
|
const size_t length, const double min_fraction) {
|
2015-10-01 13:10:42 +00:00
|
|
|
size_t size_utf8 = 0;
|
|
|
|
size_t i = 0;
|
|
|
|
while (i < length) {
|
|
|
|
int symbol;
|
2016-06-13 09:01:04 +00:00
|
|
|
size_t bytes_read =
|
|
|
|
BrotliParseAsUTF8(&symbol, &data[(pos + i) & mask], length - i);
|
2015-10-01 13:10:42 +00:00
|
|
|
i += bytes_read;
|
|
|
|
if (symbol < 0x110000) size_utf8 += bytes_read;
|
|
|
|
}
|
2020-05-15 09:06:21 +00:00
|
|
|
return TO_BROTLI_BOOL((double)size_utf8 > min_fraction * (double)length);
|
2015-10-01 13:10:42 +00:00
|
|
|
}
|
|
|
|
|
2016-06-13 09:01:04 +00:00
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|