#include "config_functions.h" #if USE_H3 # include # include # include # include # include # include # include # include # include namespace DB { namespace ErrorCodes { extern const int ILLEGAL_COLUMN; extern const int ILLEGAL_TYPE_OF_ARGUMENT; } using namespace GatherUtils; class FunctionStringToH3 : public IFunction { public: static constexpr auto name = "stringToH3"; static FunctionPtr create(const Context &) { return std::make_shared(); } std::string getName() const override { return name; } size_t getNumberOfArguments() const override { return 1; } bool useDefaultImplementationForConstants() const override { return true; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { auto arg = arguments[0].get(); if (!WhichDataType(arg).isStringOrFixedString()) throw Exception( "Illegal type " + arg->getName() + " of argument " + std::to_string(1) + " of function " + getName() + ". Must be String or FixedString", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); return std::make_shared(); } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) override { const auto col_hindex = block.getByPosition(arguments[0]).column.get(); auto dst = ColumnVector::create(); auto & dst_data = dst->getData(); dst_data.resize(input_rows_count); if (auto * h3index = checkAndGetColumn(col_hindex)) execute(StringSource(*h3index), dst_data); else if (auto * h3index_fixed = checkAndGetColumn(col_hindex)) execute(FixedStringSource(*h3index_fixed), dst_data); else if (const ColumnConst * h3index_const = checkAndGetColumnConst(col_hindex)) execute>(ConstSource(*h3index_const), dst_data); else if (const ColumnConst * h3index_const_fixed = checkAndGetColumnConst(col_hindex)) execute>(ConstSource(*h3index_const_fixed), dst_data); else throw Exception("Illegal column as argument of function " + getName(), ErrorCodes::ILLEGAL_COLUMN); block.getByPosition(result).column = std::move(dst); } private: template static void execute(H3IndexSource h3index_source, PaddedPODArray & res_data) { size_t row_num = 0; while (!h3index_source.isEnd()) { auto h3index = h3index_source.getWhole(); // covert to std::string and get the c_str to have the delimiting \0 at the end. auto h3index_str = StringRef(h3index.data, h3index.size).toString(); res_data[row_num] = stringToH3(h3index_str.c_str()); if (res_data[row_num] == 0) { throw Exception("Invalid H3 index: " + h3index_str, ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); } h3index_source.next(); ++row_num; } } }; void registerFunctionStringToH3(FunctionFactory & factory) { factory.registerFunction(); } } #endif