Merge pull request #18542 from nautaa/master

add function to decode charaters for XML
This commit is contained in:
alexey-milovidov 2021-01-15 12:28:01 +03:00 committed by GitHub
commit 421dd1ca66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 282 additions and 0 deletions

View File

@ -0,0 +1,238 @@
#include <Columns/ColumnString.h>
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionStringToString.h>
#include <Common/StringUtils/StringUtils.h>
#include <Common/hex.h>
#include <common/find_symbols.h>
namespace DB
{
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
namespace
{
struct DecodeXMLComponentName
{
static constexpr auto name = "decodeXMLComponent";
};
class FunctionDecodeXMLComponentImpl
{
public:
static void vector(
const ColumnString::Chars & data,
const ColumnString::Offsets & offsets,
ColumnString::Chars & res_data,
ColumnString::Offsets & res_offsets)
{
/// The size of result is always not more than the size of source.
/// Because entities decodes to the shorter byte sequence.
/// Example: &#xx... &#xx... will decode to UTF-8 byte sequence not longer than 4 bytes.
res_data.resize(data.size());
size_t size = offsets.size();
res_offsets.resize(size);
size_t prev_offset = 0;
size_t res_offset = 0;
for (size_t i = 0; i < size; ++i)
{
const char * src_data = reinterpret_cast<const char *>(&data[prev_offset]);
size_t src_size = offsets[i] - prev_offset;
size_t dst_size = execute(src_data, src_size, reinterpret_cast<char *>(res_data.data() + res_offset));
res_offset += dst_size;
res_offsets[i] = res_offset;
prev_offset = offsets[i];
}
res_data.resize(res_offset);
}
[[noreturn]] static void vectorFixed(const ColumnString::Chars &, size_t, ColumnString::Chars &)
{
throw Exception("Function decodeXMLComponent cannot work with FixedString argument", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
}
private:
static const int max_legal_unicode_value = 0x10FFFF;
static const int max_decimal_length_of_unicode_point = 7; /// 1114111
static size_t execute(const char * src, size_t src_size, char * dst)
{
const char * src_pos = src;
const char * src_end = src + src_size;
char * dst_pos = dst;
while (true)
{
const char * entity_pos = find_first_symbols<'&'>(src_pos, src_end);
if (entity_pos + strlen("lt;") >= src_end)
break;
/// Copy text between entities.
size_t bytes_to_copy = entity_pos - src_pos;
memcpySmallAllowReadWriteOverflow15(dst_pos, src_pos, bytes_to_copy);
dst_pos += bytes_to_copy;
src_pos = entity_pos;
++entity_pos;
const char * entity_end = find_first_symbols<';'>(entity_pos, src_end);
if (entity_end == src_end)
break;
bool parsed = false;
/// &#NNNN; or &#xNNNN;
uint32_t code_point = 0;
if (isValidNumericEntity(entity_pos, entity_end, code_point))
{
codePointToUTF8(code_point, dst_pos);
parsed = true;
}
else if (entity_end - entity_pos == 2)
{
if (memcmp(entity_pos, "lt", 2) == 0)
{
*dst_pos = '<';
++dst_pos;
parsed = true;
}
else if (memcmp(entity_pos, "gt", 2) == 0)
{
*dst_pos = '>';
++dst_pos;
parsed = true;
}
}
else if (entity_end - entity_pos == 3)
{
if (memcmp(entity_pos, "amp", 3) == 0)
{
*dst_pos = '&';
++dst_pos;
parsed = true;
}
}
else if (entity_end - entity_pos == 4)
{
if (memcmp(entity_pos, "quot", 4) == 0)
{
*dst_pos = '"';
++dst_pos;
parsed = true;
}
else if (memcmp(entity_pos, "apos", 4) == 0)
{
*dst_pos = '\'';
++dst_pos;
parsed = true;
}
}
if (parsed)
{
/// Skip the parsed entity.
src_pos = entity_end + 1;
}
else
{
/// Copy one byte as is and skip it.
*dst_pos = *src_pos;
++dst_pos;
++src_pos;
}
}
/// Copy the rest of the string.
if (src_pos < src_end)
{
size_t bytes_to_copy = src_end - src_pos;
memcpySmallAllowReadWriteOverflow15(dst_pos, src_pos, bytes_to_copy);
dst_pos += bytes_to_copy;
}
return dst_pos - dst;
}
static void codePointToUTF8(uint32_t code_point, char *& dst_pos)
{
if (code_point < (1 << 7))
{
dst_pos[0] = (code_point & 0x7F);
++dst_pos;
}
else if (code_point < (1 << 11))
{
dst_pos[0] = ((code_point >> 6) & 0x1F) + 0xC0;
dst_pos[1] = (code_point & 0x3F) + 0x80;
dst_pos += 2;
}
else if (code_point < (1 << 16))
{
dst_pos[0] = ((code_point >> 12) & 0x0F) + 0xE0;
dst_pos[1] = ((code_point >> 6) & 0x3F) + 0x80;
dst_pos[2] = (code_point & 0x3F) + 0x80;
dst_pos += 3;
}
else
{
dst_pos[0] = ((code_point >> 18) & 0x07) + 0xF0;
dst_pos[1] = ((code_point >> 12) & 0x3F) + 0x80;
dst_pos[2] = ((code_point >> 6) & 0x3F) + 0x80;
dst_pos[3] = (code_point & 0x3F) + 0x80;
dst_pos += 4;
}
}
static bool isValidNumericEntity(const char * src, const char * end, uint32_t & code_point)
{
if (src + strlen("#") >= end)
return false;
if (src[0] != '#' || (end - src > 1 + max_decimal_length_of_unicode_point))
return false;
if (src + 2 < end && (src[1] == 'x' || src[1] == 'X'))
{
src += 2;
for (; src < end; ++src)
{
if (!isHexDigit(*src))
return false;
code_point *= 16;
code_point += unhex(*src);
}
}
else
{
src += 1;
for (; src < end; ++src)
{
if (!isNumericASCII(*src))
return false;
code_point *= 10;
code_point += *src - '0';
}
}
return code_point <= max_legal_unicode_value;
}
};
using FunctionDecodeXMLComponent = FunctionStringToString<FunctionDecodeXMLComponentImpl, DecodeXMLComponentName>;
}
void registerFunctionDecodeXMLComponent(FunctionFactory & factory)
{
factory.registerFunction<FunctionDecodeXMLComponent>();
}
}

View File

@ -34,6 +34,8 @@ void registerFunctionNormalizeQuery(FunctionFactory &);
void registerFunctionNormalizedQueryHash(FunctionFactory &);
void registerFunctionCountMatches(FunctionFactory &);
void registerFunctionEncodeXMLComponent(FunctionFactory & factory);
void registerFunctionDecodeXMLComponent(FunctionFactory & factory);
#if USE_BASE64
void registerFunctionBase64Encode(FunctionFactory &);
@ -70,6 +72,7 @@ void registerFunctionsString(FunctionFactory & factory)
registerFunctionNormalizedQueryHash(factory);
registerFunctionCountMatches(factory);
registerFunctionEncodeXMLComponent(factory);
registerFunctionDecodeXMLComponent(factory);
#if USE_BASE64
registerFunctionBase64Encode(factory);
registerFunctionBase64Decode(factory);

View File

@ -221,6 +221,7 @@ SRCS(
currentUser.cpp
dateDiff.cpp
date_trunc.cpp
decodeXMLComponent.cpp
decrypt.cpp
defaultValueOfArgumentType.cpp
defaultValueOfTypeName.cpp

View File

@ -32,6 +32,7 @@
<value>extractURLParameters</value>
<value>extractURLParameterNames</value>
<value>decodeURLComponent</value>
<value>decodeXMLComponent</value>
<value>cutWWW</value>
<value>cutQueryString</value>
<value>cutQueryStringAndFragment</value>

View File

@ -0,0 +1,17 @@
Hello, "world"!
<123>
&clickhouse
\'foo\'
Hello, && world
Hello, &;& world
Hello, &a;& world
Hello, &ltt;& world
Hello, &ltt& world
Hello, &t;& world
!"#$%&\'()*+,-./012
)*+,-./0123456789:;<
=>?@ABCDEFGHIJKLMNOP
&#12345678;\'123
ЦЦЮЮЫㄱ

View File

@ -0,0 +1,20 @@
SELECT decodeXMLComponent('Hello, &quot;world&quot;!');
SELECT decodeXMLComponent('&lt;123&gt;');
SELECT decodeXMLComponent('&amp;clickhouse');
SELECT decodeXMLComponent('&apos;foo&apos;');
SELECT decodeXMLComponent('Hello, &&amp; world');
SELECT decodeXMLComponent('Hello, &;&amp; world');
SELECT decodeXMLComponent('Hello, &a;&amp; world');
SELECT decodeXMLComponent('Hello, &ltt;&amp; world');
SELECT decodeXMLComponent('Hello, &ltt&amp; world');
SELECT decodeXMLComponent('Hello, &t;&amp; world');
--decode numeric entities
SELECT decodeXMLComponent('&#32;&#33;&#34;&#35;&#36;&#37;&#38;&#39;&#40;&#41;&#42;&#43;&#44;&#45;&#46;&#47;&#48;&#49;&#50;');
SELECT decodeXMLComponent('&#41;&#42;&#43;&#44;&#45;&#46;&#47;&#48;&#49;&#50;&#51;&#52;&#53;&#54;&#55;&#56;&#57;&#58;&#59;&#60;');
SELECT decodeXMLComponent('&#61;&#62;&#63;&#64;&#65;&#66;&#67;&#68;&#69;&#70;&#71;&#72;&#73;&#74;&#75;&#76;&#77;&#78;&#79;&#80;');
SELECT decodeXMLComponent('&#20026;');
SELECT decodeXMLComponent('&#x4e3a;');
SELECT decodeXMLComponent('&#12345678;&apos;123');
SELECT decodeXMLComponent('&#x0426;&#X0426;&#x042E;&#X042e;&#x042B;&#x3131;');

View File

@ -0,0 +1 @@
10601114492838968014

View File

@ -0,0 +1 @@
SELECT sum(DISTINCT sipHash64(decodeXMLComponent(Title) AS decoded)) FROM test.hits WHERE Title != decoded;