mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
239 lines
9.1 KiB
C++
239 lines
9.1 KiB
C++
#include "config_core.h"
|
|
#if USE_POCO_MONGODB
|
|
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <Poco/MongoDB/Connection.h>
|
|
#include <Poco/MongoDB/Cursor.h>
|
|
#include <Poco/MongoDB/Element.h>
|
|
#include <Poco/MongoDB/ObjectId.h>
|
|
|
|
#include <Columns/ColumnNullable.h>
|
|
#include <Columns/ColumnString.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
#include <IO/ReadHelpers.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Common/FieldVisitors.h>
|
|
#include <Common/assert_cast.h>
|
|
#include <ext/range.h>
|
|
#include "DictionaryStructure.h"
|
|
#include "MongoDBBlockInputStream.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int TYPE_MISMATCH;
|
|
}
|
|
|
|
|
|
MongoDBBlockInputStream::MongoDBBlockInputStream(
|
|
std::shared_ptr<Poco::MongoDB::Connection> & connection_,
|
|
std::unique_ptr<Poco::MongoDB::Cursor> cursor_,
|
|
const Block & sample_block,
|
|
const UInt64 max_block_size_)
|
|
: connection(connection_), cursor{std::move(cursor_)}, max_block_size{max_block_size_}
|
|
{
|
|
description.init(sample_block);
|
|
}
|
|
|
|
|
|
MongoDBBlockInputStream::~MongoDBBlockInputStream() = default;
|
|
|
|
|
|
namespace
|
|
{
|
|
using ValueType = ExternalResultDescription::ValueType;
|
|
using ObjectId = Poco::MongoDB::ObjectId;
|
|
|
|
template <typename T>
|
|
void insertNumber(IColumn & column, const Poco::MongoDB::Element & value, const std::string & name)
|
|
{
|
|
switch (value.type())
|
|
{
|
|
case Poco::MongoDB::ElementTraits<Int32>::TypeId:
|
|
assert_cast<ColumnVector<T> &>(column).getData().push_back(
|
|
static_cast<const Poco::MongoDB::ConcreteElement<Int32> &>(value).value());
|
|
break;
|
|
case Poco::MongoDB::ElementTraits<Poco::Int64>::TypeId:
|
|
assert_cast<ColumnVector<T> &>(column).getData().push_back(
|
|
static_cast<const Poco::MongoDB::ConcreteElement<Poco::Int64> &>(value).value());
|
|
break;
|
|
case Poco::MongoDB::ElementTraits<Float64>::TypeId:
|
|
assert_cast<ColumnVector<T> &>(column).getData().push_back(
|
|
static_cast<const Poco::MongoDB::ConcreteElement<Float64> &>(value).value());
|
|
break;
|
|
case Poco::MongoDB::ElementTraits<bool>::TypeId:
|
|
assert_cast<ColumnVector<T> &>(column).getData().push_back(
|
|
static_cast<const Poco::MongoDB::ConcreteElement<bool> &>(value).value());
|
|
break;
|
|
case Poco::MongoDB::ElementTraits<Poco::MongoDB::NullValue>::TypeId:
|
|
assert_cast<ColumnVector<T> &>(column).getData().emplace_back();
|
|
break;
|
|
case Poco::MongoDB::ElementTraits<String>::TypeId:
|
|
assert_cast<ColumnVector<T> &>(column).getData().push_back(
|
|
parse<T>(static_cast<const Poco::MongoDB::ConcreteElement<String> &>(value).value()));
|
|
break;
|
|
default:
|
|
throw Exception(
|
|
"Type mismatch, expected a number, got type id = " + toString(value.type()) + " for column " + name,
|
|
ErrorCodes::TYPE_MISMATCH);
|
|
}
|
|
}
|
|
|
|
void insertValue(IColumn & column, const ValueType type, const Poco::MongoDB::Element & value, const std::string & name)
|
|
{
|
|
switch (type)
|
|
{
|
|
case ValueType::vtUInt8:
|
|
insertNumber<UInt8>(column, value, name);
|
|
break;
|
|
case ValueType::vtUInt16:
|
|
insertNumber<UInt16>(column, value, name);
|
|
break;
|
|
case ValueType::vtUInt32:
|
|
insertNumber<UInt32>(column, value, name);
|
|
break;
|
|
case ValueType::vtUInt64:
|
|
insertNumber<UInt64>(column, value, name);
|
|
break;
|
|
case ValueType::vtInt8:
|
|
insertNumber<Int8>(column, value, name);
|
|
break;
|
|
case ValueType::vtInt16:
|
|
insertNumber<Int16>(column, value, name);
|
|
break;
|
|
case ValueType::vtInt32:
|
|
insertNumber<Int32>(column, value, name);
|
|
break;
|
|
case ValueType::vtInt64:
|
|
insertNumber<Int64>(column, value, name);
|
|
break;
|
|
case ValueType::vtFloat32:
|
|
insertNumber<Float32>(column, value, name);
|
|
break;
|
|
case ValueType::vtFloat64:
|
|
insertNumber<Float64>(column, value, name);
|
|
break;
|
|
|
|
case ValueType::vtString:
|
|
{
|
|
if (value.type() == Poco::MongoDB::ElementTraits<ObjectId::Ptr>::TypeId)
|
|
{
|
|
std::string string_id = value.toString();
|
|
assert_cast<ColumnString &>(column).insertDataWithTerminatingZero(string_id.data(), string_id.size() + 1);
|
|
break;
|
|
}
|
|
else if (value.type() == Poco::MongoDB::ElementTraits<String>::TypeId)
|
|
{
|
|
String string = static_cast<const Poco::MongoDB::ConcreteElement<String> &>(value).value();
|
|
assert_cast<ColumnString &>(column).insertDataWithTerminatingZero(string.data(), string.size() + 1);
|
|
break;
|
|
}
|
|
|
|
throw Exception{"Type mismatch, expected String, got type id = " + toString(value.type()) + " for column " + name,
|
|
ErrorCodes::TYPE_MISMATCH};
|
|
}
|
|
|
|
case ValueType::vtDate:
|
|
{
|
|
if (value.type() != Poco::MongoDB::ElementTraits<Poco::Timestamp>::TypeId)
|
|
throw Exception{"Type mismatch, expected Timestamp, got type id = " + toString(value.type()) + " for column " + name,
|
|
ErrorCodes::TYPE_MISMATCH};
|
|
|
|
assert_cast<ColumnUInt16 &>(column).getData().push_back(UInt16{DateLUT::instance().toDayNum(
|
|
static_cast<const Poco::MongoDB::ConcreteElement<Poco::Timestamp> &>(value).value().epochTime())});
|
|
break;
|
|
}
|
|
|
|
case ValueType::vtDateTime:
|
|
{
|
|
if (value.type() != Poco::MongoDB::ElementTraits<Poco::Timestamp>::TypeId)
|
|
throw Exception{"Type mismatch, expected Timestamp, got type id = " + toString(value.type()) + " for column " + name,
|
|
ErrorCodes::TYPE_MISMATCH};
|
|
|
|
assert_cast<ColumnUInt32 &>(column).getData().push_back(
|
|
static_cast<const Poco::MongoDB::ConcreteElement<Poco::Timestamp> &>(value).value().epochTime());
|
|
break;
|
|
}
|
|
case ValueType::vtUUID:
|
|
{
|
|
if (value.type() == Poco::MongoDB::ElementTraits<String>::TypeId)
|
|
{
|
|
String string = static_cast<const Poco::MongoDB::ConcreteElement<String> &>(value).value();
|
|
assert_cast<ColumnUInt128 &>(column).getData().push_back(parse<UUID>(string));
|
|
}
|
|
else
|
|
throw Exception{"Type mismatch, expected String (UUID), got type id = " + toString(value.type()) + " for column "
|
|
+ name,
|
|
ErrorCodes::TYPE_MISMATCH};
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void insertDefaultValue(IColumn & column, const IColumn & sample_column) { column.insertFrom(sample_column, 0); }
|
|
}
|
|
|
|
|
|
Block MongoDBBlockInputStream::readImpl()
|
|
{
|
|
if (all_read)
|
|
return {};
|
|
|
|
MutableColumns columns(description.sample_block.columns());
|
|
const size_t size = columns.size();
|
|
|
|
for (const auto i : ext::range(0, size))
|
|
columns[i] = description.sample_block.getByPosition(i).column->cloneEmpty();
|
|
|
|
size_t num_rows = 0;
|
|
while (num_rows < max_block_size)
|
|
{
|
|
Poco::MongoDB::ResponseMessage & response = cursor->next(*connection);
|
|
|
|
for (const auto & document : response.documents())
|
|
{
|
|
++num_rows;
|
|
|
|
for (const auto idx : ext::range(0, size))
|
|
{
|
|
const auto & name = description.sample_block.getByPosition(idx).name;
|
|
const Poco::MongoDB::Element::Ptr value = document->get(name);
|
|
|
|
if (value.isNull() || value->type() == Poco::MongoDB::ElementTraits<Poco::MongoDB::NullValue>::TypeId)
|
|
insertDefaultValue(*columns[idx], *description.sample_block.getByPosition(idx).column);
|
|
else
|
|
{
|
|
if (description.types[idx].second)
|
|
{
|
|
ColumnNullable & column_nullable = assert_cast<ColumnNullable &>(*columns[idx]);
|
|
insertValue(column_nullable.getNestedColumn(), description.types[idx].first, *value, name);
|
|
column_nullable.getNullMapData().emplace_back(0);
|
|
}
|
|
else
|
|
insertValue(*columns[idx], description.types[idx].first, *value, name);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (response.cursorID() == 0)
|
|
{
|
|
all_read = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (num_rows == 0)
|
|
return {};
|
|
|
|
return description.sample_block.cloneWithColumns(std::move(columns));
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|