mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
e5c74a14f7
- rename utility function and file to "checkHyperscanRegexp"
30 lines
943 B
C++
30 lines
943 B
C++
#include <Functions/checkHyperscanRegexp.h>
|
|
|
|
#include <Common/Exception.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
void checkHyperscanRegexp(const std::vector<std::string_view> & regexps, size_t max_hyperscan_regexp_length, size_t max_hyperscan_regexp_total_length)
|
|
{
|
|
if (max_hyperscan_regexp_length > 0 || max_hyperscan_regexp_total_length > 0)
|
|
{
|
|
size_t total_regexp_length = 0;
|
|
for (const auto & regexp : regexps)
|
|
{
|
|
if (max_hyperscan_regexp_length > 0 && regexp.size() > max_hyperscan_regexp_length)
|
|
throw Exception("Regexp length too large", ErrorCodes::BAD_ARGUMENTS);
|
|
total_regexp_length += regexp.size();
|
|
}
|
|
|
|
if (max_hyperscan_regexp_total_length > 0 && total_regexp_length > max_hyperscan_regexp_total_length)
|
|
throw Exception("Total regexp lengths too large", ErrorCodes::BAD_ARGUMENTS);
|
|
}
|
|
}
|
|
|
|
}
|