mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
108 lines
2.8 KiB
C++
108 lines
2.8 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 <common/logger_useful.h>
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
#include <Columns/ColumnTuple.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
#include <DataTypes/DataTypeArray.h>
|
|
#include <DataTypes/DataTypeTuple.h>
|
|
#include <DataTypes/DataTypeCustomGeo.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
template <typename Point>
|
|
class FunctionPolygonConvexHull : public IFunction
|
|
{
|
|
public:
|
|
static const char * name;
|
|
|
|
explicit FunctionPolygonConvexHull() = default;
|
|
|
|
static FunctionPtr create(ContextPtr)
|
|
{
|
|
return std::make_shared<FunctionPolygonConvexHull>();
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
bool isVariadic() const override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes &) const override
|
|
{
|
|
return DataTypeFactory::instance().get("Polygon");
|
|
}
|
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr & /*result_type*/, size_t input_rows_count) const override
|
|
{
|
|
PolygonSerializer<Point> serializer;
|
|
|
|
callOnGeometryDataType<Point>(arguments[0].type, [&] (const auto & type)
|
|
{
|
|
using TypeConverter = std::decay_t<decltype(type)>;
|
|
using Converter = typename TypeConverter::Type;
|
|
|
|
if constexpr (std::is_same_v<Converter, ColumnToPointsConverter<Point>>)
|
|
throw Exception(fmt::format("The argument of function {} must not be a Point", getName()), ErrorCodes::BAD_ARGUMENTS);
|
|
else
|
|
{
|
|
auto geometries = Converter::convert(arguments[0].column->convertToFullColumnIfConst());
|
|
|
|
for (size_t i = 0; i < input_rows_count; i++)
|
|
{
|
|
Polygon<Point> convex_hull{};
|
|
boost::geometry::convex_hull(geometries[i], convex_hull);
|
|
serializer.add(convex_hull);
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
return serializer.finalize();
|
|
}
|
|
|
|
bool useDefaultImplementationForConstants() const override
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
|
|
template <>
|
|
const char * FunctionPolygonConvexHull<CartesianPoint>::name = "polygonConvexHullCartesian";
|
|
|
|
|
|
void registerFunctionPolygonConvexHull(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionPolygonConvexHull<CartesianPoint>>();
|
|
}
|
|
|
|
}
|