mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
31 lines
610 B
C++
31 lines
610 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Functions/FunctionsURL.h>
|
||
|
#include <common/find_symbols.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
template <bool without_leading_char>
|
||
|
struct ExtractFragment
|
||
|
{
|
||
|
static size_t getReserveLengthForElement() { return 10; }
|
||
|
|
||
|
static void execute(Pos data, size_t size, Pos & res_data, size_t & res_size)
|
||
|
{
|
||
|
res_data = data;
|
||
|
res_size = 0;
|
||
|
|
||
|
Pos pos = data;
|
||
|
Pos end = pos + size;
|
||
|
|
||
|
if (end != (pos = find_first_symbols<'#'>(pos, end)))
|
||
|
{
|
||
|
res_data = pos + (without_leading_char ? 1 : 0);
|
||
|
res_size = end - res_data;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|