ClickHouse/src/Functions/s2CellsIntersect.cpp

105 lines
2.7 KiB
C++
Raw Normal View History

2021-10-27 23:10:39 +00:00
#include "config_functions.h"
2021-07-06 21:45:45 +00:00
#if USE_S2_GEOMETRY
2021-04-28 22:16:45 +00:00
#include <Columns/ColumnsNumber.h>
#include <Columns/ColumnTuple.h>
#include <DataTypes/DataTypesNumber.h>
#include <DataTypes/DataTypeTuple.h>
#include <Functions/FunctionFactory.h>
#include <Common/typeid_cast.h>
2021-10-02 07:13:14 +00:00
#include <base/range.h>
2021-04-28 22:16:45 +00:00
2021-07-06 13:20:52 +00:00
#include "s2_fwd.h"
2021-04-28 22:16:45 +00:00
2021-07-06 11:34:33 +00:00
namespace DB
2021-04-28 22:16:45 +00:00
{
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
2021-07-12 11:49:17 +00:00
extern const int BAD_ARGUMENTS;
2021-04-28 22:16:45 +00:00
}
namespace
{
2021-07-08 15:31:39 +00:00
/**
* Each cell in s2 library is a quadrilateral bounded by four geodesics.
*/
2021-04-28 22:16:45 +00:00
class FunctionS2CellsIntersect : public IFunction
{
public:
2021-07-08 15:31:39 +00:00
static constexpr auto name = "s2CellsIntersect";
2021-04-28 22:16:45 +00:00
static FunctionPtr create(ContextPtr)
{
return std::make_shared<FunctionS2CellsIntersect>();
}
std::string getName() const override
{
return name;
}
2021-07-07 10:39:16 +00:00
size_t getNumberOfArguments() const override { return 2; }
2021-04-28 22:16:45 +00:00
bool useDefaultImplementationForConstants() const override { return true; }
2021-08-10 11:31:15 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
2021-04-28 22:16:45 +00:00
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
{
2021-07-07 10:39:16 +00:00
for (size_t i = 0; i < getNumberOfArguments(); ++i)
{
const auto * arg = arguments[i].get();
2021-07-08 21:10:00 +00:00
if (!WhichDataType(arg).isUInt64())
2021-07-07 10:39:16 +00:00
throw Exception(
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT,
"Illegal type {} of argument {} of function {}. Must be UInt64",
2021-07-08 15:31:39 +00:00
arg->getName(), i, getName());
2021-04-28 22:16:45 +00:00
}
return std::make_shared<DataTypeUInt8>();
}
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
{
const auto * col_id_first = arguments[0].column.get();
const auto * col_id_second = arguments[1].column.get();
2021-07-08 15:31:39 +00:00
auto dst = ColumnUInt8::create();
2021-04-28 22:16:45 +00:00
auto & dst_data = dst->getData();
2021-07-08 15:31:39 +00:00
dst_data.reserve(input_rows_count);
2021-04-28 22:16:45 +00:00
2021-12-20 04:32:52 +00:00
for (size_t row = 0; row < input_rows_count; ++row)
2021-04-28 22:16:45 +00:00
{
const UInt64 id_first = col_id_first->getInt(row);
const UInt64 id_second = col_id_second->getInt(row);
2021-07-06 11:34:33 +00:00
2021-07-12 11:49:17 +00:00
auto first_cell = S2CellId(id_first);
auto second_cell = S2CellId(id_second);
if (!first_cell.is_valid() || !second_cell.is_valid())
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Cell is not valid");
2021-07-08 15:31:39 +00:00
dst_data.emplace_back(S2CellId(id_first).intersects(S2CellId(id_second)));
2021-04-28 22:16:45 +00:00
}
return dst;
}
};
}
void registerFunctionS2CellsIntersect(FunctionFactory & factory)
{
factory.registerFunction<FunctionS2CellsIntersect>();
}
}
2021-07-06 21:45:45 +00:00
#endif