mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
104 lines
2.4 KiB
C++
104 lines
2.4 KiB
C++
#include <Functions/FunctionTokens.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <Common/StringUtils.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Functions that split strings into an array of strings or vice versa.
|
|
*
|
|
* splitByWhitespace(s[, max_substrings]) - split the string by whitespace characters
|
|
*/
|
|
namespace
|
|
{
|
|
|
|
using Pos = const char *;
|
|
|
|
class SplitByWhitespaceImpl
|
|
{
|
|
private:
|
|
Pos pos;
|
|
Pos end;
|
|
std::optional<size_t> max_splits;
|
|
size_t splits;
|
|
bool max_substrings_includes_remaining_string;
|
|
|
|
public:
|
|
static constexpr auto name = "splitByWhitespace";
|
|
|
|
static bool isVariadic() { return true; }
|
|
static size_t getNumberOfArguments() { return 0; }
|
|
|
|
static ColumnNumbers getArgumentsThatAreAlwaysConstant() { return {1}; }
|
|
|
|
static void checkArguments(const IFunction & func, const ColumnsWithTypeAndName & arguments)
|
|
{
|
|
checkArgumentsWithOptionalMaxSubstrings(func, arguments);
|
|
}
|
|
|
|
static constexpr auto strings_argument_position = 0uz;
|
|
|
|
void init(const ColumnsWithTypeAndName & arguments, bool max_substrings_includes_remaining_string_)
|
|
{
|
|
max_substrings_includes_remaining_string = max_substrings_includes_remaining_string_;
|
|
max_splits = extractMaxSplits(arguments, 1);
|
|
}
|
|
|
|
/// Called for each next string.
|
|
void set(Pos pos_, Pos end_)
|
|
{
|
|
pos = pos_;
|
|
end = end_;
|
|
splits = 0;
|
|
}
|
|
|
|
/// Get the next token, if any, or return false.
|
|
bool get(Pos & token_begin, Pos & token_end)
|
|
{
|
|
/// Skip garbage
|
|
while (pos < end && isWhitespaceASCII(*pos))
|
|
++pos;
|
|
|
|
if (pos == end)
|
|
return false;
|
|
|
|
token_begin = pos;
|
|
|
|
if (max_splits)
|
|
{
|
|
if (max_substrings_includes_remaining_string)
|
|
{
|
|
if (splits == *max_splits - 1)
|
|
{
|
|
token_end = end;
|
|
pos = end;
|
|
return true;
|
|
}
|
|
}
|
|
else
|
|
if (splits == *max_splits)
|
|
return false;
|
|
}
|
|
|
|
while (pos < end && !isWhitespaceASCII(*pos))
|
|
++pos;
|
|
|
|
token_end = pos;
|
|
splits++;
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
using FunctionSplitByWhitespace = FunctionTokens<SplitByWhitespaceImpl>;
|
|
|
|
}
|
|
|
|
REGISTER_FUNCTION(SplitByWhitespace)
|
|
{
|
|
factory.registerFunction<FunctionSplitByWhitespace>();
|
|
}
|
|
|
|
}
|