2015-10-14 12:12:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <DB/Core/Types.h>
|
2016-03-07 06:18:06 +00:00
|
|
|
#include <DB/Common/BitHelpers.h>
|
2015-10-14 12:12:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
namespace UTF8
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
static const UInt8 CONTINUATION_OCTET_MASK = 0b11000000u;
|
|
|
|
static const UInt8 CONTINUATION_OCTET = 0b10000000u;
|
|
|
|
|
|
|
|
/// return true if `octet` binary repr starts with 10 (octet is a UTF-8 sequence continuation)
|
2015-10-15 12:54:33 +00:00
|
|
|
inline bool isContinuationOctet(const UInt8 octet)
|
2015-10-14 12:12:56 +00:00
|
|
|
{
|
|
|
|
return (octet & CONTINUATION_OCTET_MASK) == CONTINUATION_OCTET;
|
|
|
|
}
|
|
|
|
|
2016-02-23 03:20:48 +00:00
|
|
|
/// moves `s` backward until either first non-continuation octet or begin
|
|
|
|
inline void syncBackward(const UInt8 * & s, const UInt8 * const begin)
|
2015-10-14 12:12:56 +00:00
|
|
|
{
|
2016-02-23 03:20:48 +00:00
|
|
|
while (isContinuationOctet(*s) && s > begin)
|
2015-10-14 12:12:56 +00:00
|
|
|
--s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// moves `s` forward until either first non-continuation octet or string end is met
|
2015-10-15 12:55:34 +00:00
|
|
|
inline void syncForward(const UInt8 * & s, const UInt8 * const end)
|
2015-10-14 12:12:56 +00:00
|
|
|
{
|
|
|
|
while (s < end && isContinuationOctet(*s))
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// returns UTF-8 code point sequence length judging by it's first octet
|
2015-10-15 12:54:33 +00:00
|
|
|
inline std::size_t seqLength(const UInt8 first_octet)
|
2015-10-14 12:12:56 +00:00
|
|
|
{
|
|
|
|
if (first_octet < 0x80u)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
const std::size_t bits = 8;
|
2016-08-07 06:10:15 +00:00
|
|
|
const auto first_zero = bitScanReverse(static_cast<UInt8>(~first_octet));
|
2015-10-14 12:12:56 +00:00
|
|
|
|
|
|
|
return bits - 1 - first_zero;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|