mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
119 lines
3.6 KiB
C++
119 lines
3.6 KiB
C++
#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>
|
|
|
|
#include <base/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>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
}
|
|
|
|
|
|
template <typename Point>
|
|
class FunctionPolygonsSymDifference : public IFunction
|
|
{
|
|
public:
|
|
static const char * name;
|
|
|
|
explicit FunctionPolygonsSymDifference() = default;
|
|
|
|
static FunctionPtr create(ContextPtr)
|
|
{
|
|
return std::make_shared<FunctionPolygonsSymDifference>();
|
|
}
|
|
|
|
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
|
|
{
|
|
return DataTypeFactory::instance().get("MultiPolygon");
|
|
}
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & /*result_type*/, size_t input_rows_count) const override
|
|
{
|
|
MultiPolygonSerializer<Point> serializer;
|
|
|
|
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)>;
|
|
|
|
using LeftConverter = typename LeftConverterType::Type;
|
|
using RightConverter = typename RightConverterType::Type;
|
|
|
|
if constexpr (std::is_same_v<ColumnToPointsConverter<Point>, LeftConverter> || std::is_same_v<ColumnToPointsConverter<Point>, RightConverter>)
|
|
throw Exception(fmt::format("Any argument of function {} must not be Point", getName()), ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
else
|
|
{
|
|
auto first = LeftConverter::convert(arguments[0].column->convertToFullColumnIfConst());
|
|
auto second = RightConverter::convert(arguments[1].column->convertToFullColumnIfConst());
|
|
|
|
/// NOLINTNEXTLINE(clang-analyzer-core.uninitialized.Assign)
|
|
for (size_t i = 0; i < input_rows_count; ++i)
|
|
{
|
|
boost::geometry::correct(first[i]);
|
|
boost::geometry::correct(second[i]);
|
|
|
|
MultiPolygon<Point> sym_difference{};
|
|
boost::geometry::sym_difference(first[i], second[i], sym_difference);
|
|
|
|
serializer.add(sym_difference);
|
|
}
|
|
}
|
|
});
|
|
|
|
return serializer.finalize();
|
|
}
|
|
|
|
bool useDefaultImplementationForConstants() const override
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template <>
|
|
const char * FunctionPolygonsSymDifference<CartesianPoint>::name = "polygonsSymDifferenceCartesian";
|
|
|
|
template <>
|
|
const char * FunctionPolygonsSymDifference<SphericalPoint>::name = "polygonsSymDifferenceSpherical";
|
|
|
|
void registerFunctionPolygonsSymDifference(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionPolygonsSymDifference<CartesianPoint>>();
|
|
factory.registerFunction<FunctionPolygonsSymDifference<SphericalPoint>>();
|
|
}
|
|
|
|
}
|