ClickHouse/src/Functions/polygonsIntersection.cpp

123 lines
3.8 KiB
C++
Raw Normal View History

2020-06-17 15:29:08 +00:00
#include <Functions/FunctionFactory.h>
#include <Functions/geometryConverters.h>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
2020-06-21 14:54:13 +00:00
#include <common/logger_useful.h>
2020-06-17 15:29:08 +00:00
#include <Columns/ColumnArray.h>
#include <Columns/ColumnTuple.h>
#include <Columns/ColumnConst.h>
2020-06-17 15:29:08 +00:00
#include <DataTypes/DataTypeArray.h>
#include <DataTypes/DataTypeTuple.h>
#include <DataTypes/DataTypeCustomGeo.h>
#include <memory>
#include <utility>
2021-02-18 19:51:19 +00:00
#include <chrono>
2020-06-17 15:29:08 +00:00
namespace DB
{
2021-01-21 12:31:47 +00:00
2021-02-20 17:44:18 +00:00
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
2021-01-21 12:31:47 +00:00
template <typename Point>
2020-06-17 15:29:08 +00:00
class FunctionPolygonsIntersection : public IFunction
{
public:
2021-01-21 12:31:47 +00:00
static inline const char * name;
2020-06-17 15:29:08 +00:00
explicit FunctionPolygonsIntersection() = default;
static FunctionPtr create(const Context &)
{
return std::make_shared<FunctionPolygonsIntersection>();
}
String getName() const override
{
return name;
}
bool isVariadic() const override
{
return false;
}
size_t getNumberOfArguments() const override
{
return 2;
}
DataTypePtr getReturnTypeImpl(const DataTypes &) const override
{
2021-02-19 18:09:38 +00:00
/// Intersection of each with figure with each could be easily represent as MultiPolygon.
2020-06-17 15:29:08 +00:00
return DataTypeCustomMultiPolygonSerialization::nestedDataType();
}
2021-01-18 23:51:34 +00:00
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & /*result_type*/, size_t input_rows_count) const override
2020-06-17 15:29:08 +00:00
{
2021-01-21 12:31:47 +00:00
MultiPolygonSerializer<Point> serializer;
2020-06-17 15:29:08 +00:00
2021-02-20 13:59:37 +00:00
callOnTwoGeometryDataTypes<Point>(arguments[0].type, arguments[1].type, [&](const auto & left_type, const auto & right_type)
{
using LeftConverterType = std::decay_t<decltype(left_type)>;
using RightConverterType = std::decay_t<decltype(right_type)>;
2021-02-19 22:48:59 +00:00
2021-02-20 13:59:37 +00:00
using LeftConverter = typename LeftConverterType::Type;
using RightConverter = typename RightConverterType::Type;
2021-02-20 17:44:18 +00:00
if constexpr (std::is_same_v<PointFromColumnConverter<Point>, LeftConverter> || std::is_same_v<PointFromColumnConverter<Point>, RightConverter>)
throw Exception(fmt::format("Any argument of function {} must not be Point", getName()), ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
else
{
2021-02-20 17:44:18 +00:00
auto first = LeftConverter(arguments[0].column->convertToFullColumnIfConst()).convert();
auto second = RightConverter(arguments[1].column->convertToFullColumnIfConst()).convert();
/// We are not interested in some pitfalls in third-party libraries
/// NOLINTNEXTLINE(clang-analyzer-core.uninitialized.Assign)
for (size_t i = 0; i < input_rows_count; ++i)
{
/// Orient the polygons correctly.
boost::geometry::correct(first[i]);
boost::geometry::correct(second[i]);
MultiPolygon<Point> intersection{};
/// Main work here.
boost::geometry::intersection(first[i], second[i], intersection);
serializer.add(intersection);
}
}
});
2020-06-17 15:29:08 +00:00
2021-01-18 23:51:34 +00:00
return serializer.finalize();
2020-06-21 14:54:13 +00:00
}
bool useDefaultImplementationForConstants() const override
{
return true;
2020-06-17 15:29:08 +00:00
}
};
2021-01-21 12:31:47 +00:00
template <>
const char * FunctionPolygonsIntersection<CartesianPoint>::name = "polygonsIntersectionCartesian";
template <>
2021-02-26 12:25:28 +00:00
const char * FunctionPolygonsIntersection<SphericalPoint>::name = "polygonsIntersectionSpherical";
2021-01-21 12:31:47 +00:00
2020-06-17 15:29:08 +00:00
void registerFunctionPolygonsIntersection(FunctionFactory & factory)
{
2021-01-21 12:31:47 +00:00
factory.registerFunction<FunctionPolygonsIntersection<CartesianPoint>>();
2021-02-26 12:25:28 +00:00
factory.registerFunction<FunctionPolygonsIntersection<SphericalPoint>>();
2020-06-17 15:29:08 +00:00
}
}