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>
|
2020-06-22 16:15:11 +00:00
|
|
|
#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>
|
2020-06-22 16:15:11 +00:00
|
|
|
#include <utility>
|
2020-06-17 15:29:08 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int TOO_FEW_ARGUMENTS_FOR_FUNCTION;
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
|
|
|
extern const int ILLEGAL_COLUMN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class FunctionPolygonsIntersection : public IFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static inline const char * name = "polygonsIntersection";
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
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-18 23:51:34 +00:00
|
|
|
auto get_parser = [&arguments] (size_t i) {
|
2020-06-22 16:15:11 +00:00
|
|
|
const auto * const_col =
|
2021-01-18 23:51:34 +00:00
|
|
|
checkAndGetColumn<ColumnConst>(arguments[i].column.get());
|
2020-06-22 16:15:11 +00:00
|
|
|
|
|
|
|
bool is_const = static_cast<bool>(const_col);
|
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
return std::pair<bool, CartesianGeometryFromColumnParser>{is_const, is_const ?
|
|
|
|
makeCartesianGeometryFromColumnParser(ColumnWithTypeAndName(const_col->getDataColumnPtr(), arguments[i].type, arguments[i].name)) :
|
|
|
|
makeCartesianGeometryFromColumnParser(arguments[i])};
|
2020-06-21 16:36:43 +00:00
|
|
|
};
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2020-06-22 16:15:11 +00:00
|
|
|
auto [is_first_polygon_const, first_parser] = get_parser(0);
|
2020-06-17 15:29:08 +00:00
|
|
|
auto first_container = createContainer(first_parser);
|
|
|
|
|
2020-06-22 16:15:11 +00:00
|
|
|
auto [is_second_polygon_const, second_parser] = get_parser(1);
|
2020-06-17 15:29:08 +00:00
|
|
|
auto second_container = createContainer(second_parser);
|
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
CartesianMultiPolygonSerializer serializer;
|
2020-06-17 15:29:08 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < input_rows_count; i++)
|
|
|
|
{
|
2020-06-22 16:15:11 +00:00
|
|
|
if (!is_first_polygon_const || i == 0)
|
|
|
|
get(first_parser, first_container, i);
|
|
|
|
if (!is_second_polygon_const || i == 0)
|
|
|
|
get(second_parser, second_container, i);
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
CartesianGeometry intersection = CartesianMultiPolygon({{{{}}}});
|
2020-06-17 16:29:31 +00:00
|
|
|
boost::geometry::intersection(
|
2021-01-18 23:51:34 +00:00
|
|
|
boost::get<CartesianMultiPolygon>(first_container),
|
|
|
|
boost::get<CartesianMultiPolygon>(second_container),
|
|
|
|
boost::get<CartesianMultiPolygon>(intersection));
|
2020-06-17 15:29:08 +00:00
|
|
|
|
2021-01-18 23:51:34 +00:00
|
|
|
boost::get<CartesianMultiPolygon>(intersection).erase(
|
|
|
|
boost::get<CartesianMultiPolygon>(intersection).begin());
|
2020-06-21 16:36:43 +00:00
|
|
|
|
2020-06-17 16:29:31 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void registerFunctionPolygonsIntersection(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionPolygonsIntersection>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|