ClickHouse/src/Functions/polygonsIntersection.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

128 lines
3.9 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>
2022-04-27 15:05:45 +00:00
#include <Common/logger_useful.h>
#include <Columns/ColumnArray.h>
#include <Columns/ColumnTuple.h>
#include <Columns/ColumnConst.h>
#include <DataTypes/DataTypeArray.h>
#include <DataTypes/DataTypeTuple.h>
#include <DataTypes/DataTypeCustomGeo.h>
#include <memory>
#include <utility>
#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;
}
2023-10-30 02:20:04 +00:00
namespace
{
template <typename Point>
2020-06-17 15:29:08 +00:00
class FunctionPolygonsIntersection : public IFunction
{
public:
static inline const char * name;
2020-06-17 15:29:08 +00:00
explicit FunctionPolygonsIntersection() = default;
2021-06-01 12:20:52 +00:00
static FunctionPtr create(ContextPtr)
2020-06-17 15:29:08 +00:00
{
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.
return DataTypeFactory::instance().get("MultiPolygon");
2020-06-17 15:29:08 +00:00
}
2021-06-22 16:21:23 +00:00
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
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-26 15:29:26 +00:00
if constexpr (std::is_same_v<ColumnToPointsConverter<Point>, LeftConverter> || std::is_same_v<ColumnToPointsConverter<Point>, RightConverter>)
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Any argument of function {} must not be Point", getName());
2021-02-20 17:44:18 +00:00
else
{
2021-02-26 15:29:26 +00:00
auto first = LeftConverter::convert(arguments[0].column->convertToFullColumnIfConst());
auto second = RightConverter::convert(arguments[1].column->convertToFullColumnIfConst());
2021-02-20 17:44:18 +00:00
/// 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
}
};
template <>
const char * FunctionPolygonsIntersection<CartesianPoint>::name = "polygonsIntersectionCartesian";
template <>
const char * FunctionPolygonsIntersection<SphericalPoint>::name = "polygonsIntersectionSpherical";
2023-10-30 02:20:04 +00:00
}
REGISTER_FUNCTION(PolygonsIntersection)
2020-06-17 15:29:08 +00:00
{
factory.registerFunction<FunctionPolygonsIntersection<CartesianPoint>>();
factory.registerFunction<FunctionPolygonsIntersection<SphericalPoint>>();
2020-06-17 15:29:08 +00:00
}
2020-06-17 15:29:08 +00:00
}