2016-12-08 02:49:04 +00:00
|
|
|
#include <Poco/Data/SessionPool.h>
|
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Dictionaries/ODBCDictionarySource.h>
|
|
|
|
#include <Dictionaries/ODBCBlockInputStream.h>
|
2017-01-21 04:24:28 +00:00
|
|
|
#include <common/logger_useful.h>
|
2016-05-29 01:12:10 +00:00
|
|
|
|
2016-06-05 15:21:35 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2016-12-08 02:49:04 +00:00
|
|
|
static const size_t max_block_size = 8192;
|
2016-06-05 15:21:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
ODBCDictionarySource::ODBCDictionarySource(const DictionaryStructure & dict_struct_,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix,
|
|
|
|
const Block & sample_block)
|
|
|
|
: log(&Logger::get("ODBCDictionarySource")),
|
|
|
|
dict_struct{dict_struct_},
|
|
|
|
db{config.getString(config_prefix + ".db", "")},
|
|
|
|
table{config.getString(config_prefix + ".table")},
|
|
|
|
where{config.getString(config_prefix + ".where", "")},
|
|
|
|
sample_block{sample_block},
|
|
|
|
query_builder{dict_struct, db, table, where, ExternalQueryBuilder::None}, /// NOTE Better to obtain quoting style via ODBC interface.
|
2017-05-15 14:16:10 +00:00
|
|
|
load_all_query{query_builder.composeLoadAllQuery()},
|
|
|
|
invalidate_query{config.getString(config_prefix + ".invalidate_query", "")}
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2017-05-03 18:18:14 +00:00
|
|
|
pool = createAndCheckResizePocoSessionPool([&] () { return std::make_shared<Poco::Data::SessionPool>(
|
|
|
|
config.getString(config_prefix + ".connector", "ODBC"),
|
|
|
|
config.getString(config_prefix + ".connection_string"));
|
|
|
|
});
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// copy-constructor is provided in order to support cloneability
|
|
|
|
ODBCDictionarySource::ODBCDictionarySource(const ODBCDictionarySource & other)
|
2017-04-01 07:20:54 +00:00
|
|
|
: log(&Logger::get("ODBCDictionarySource")),
|
|
|
|
dict_struct{other.dict_struct},
|
|
|
|
db{other.db},
|
|
|
|
table{other.table},
|
|
|
|
where{other.where},
|
|
|
|
sample_block{other.sample_block},
|
|
|
|
pool{other.pool},
|
|
|
|
query_builder{dict_struct, db, table, where, ExternalQueryBuilder::None},
|
2017-05-15 14:16:10 +00:00
|
|
|
load_all_query{other.load_all_query},
|
|
|
|
invalidate_query{other.invalidate_query}, invalidate_query_response{other.invalidate_query_response}
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-05-03 18:18:14 +00:00
|
|
|
std::shared_ptr<Poco::Data::SessionPool> ODBCDictionarySource::createAndCheckResizePocoSessionPool(PocoSessionPoolConstructor pool_constr)
|
|
|
|
{
|
|
|
|
static std::mutex mutex;
|
|
|
|
|
|
|
|
Poco::ThreadPool & pool = Poco::ThreadPool::defaultPool();
|
|
|
|
|
|
|
|
/// NOTE: The lock don't guarantee that external users of the pool don't change its capacity
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
|
|
|
|
if (pool.available() == 0)
|
|
|
|
pool.addCapacity(2 * std::max(pool.capacity(), 1));
|
|
|
|
|
|
|
|
return pool_constr();
|
|
|
|
}
|
|
|
|
|
2016-06-05 15:21:35 +00:00
|
|
|
BlockInputStreamPtr ODBCDictionarySource::loadAll()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
LOG_TRACE(log, load_all_query);
|
|
|
|
return std::make_shared<ODBCBlockInputStream>(pool->get(), load_all_query, sample_block, max_block_size);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2016-10-26 22:27:38 +00:00
|
|
|
BlockInputStreamPtr ODBCDictionarySource::loadIds(const std::vector<UInt64> & ids)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto query = query_builder.composeLoadIdsQuery(ids);
|
|
|
|
return std::make_shared<ODBCBlockInputStream>(pool->get(), query, sample_block, max_block_size);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BlockInputStreamPtr ODBCDictionarySource::loadKeys(
|
2017-04-01 07:20:54 +00:00
|
|
|
const ConstColumnPlainPtrs & key_columns, const std::vector<std::size_t> & requested_rows)
|
2016-06-05 15:21:35 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto query = query_builder.composeLoadKeysQuery(key_columns, requested_rows, ExternalQueryBuilder::AND_OR_CHAIN);
|
|
|
|
return std::make_shared<ODBCBlockInputStream>(pool->get(), query, sample_block, max_block_size);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ODBCDictionarySource::supportsSelectiveLoad() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return true;
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DictionarySourcePtr ODBCDictionarySource::clone() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return std::make_unique<ODBCDictionarySource>(*this);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string ODBCDictionarySource::toString() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
return "ODBC: " + db + '.' + table + (where.empty() ? "" : ", where: " + where);
|
2016-06-05 15:21:35 +00:00
|
|
|
}
|
|
|
|
|
2017-05-15 14:16:10 +00:00
|
|
|
bool ODBCDictionarySource::isModified() const
|
|
|
|
{
|
|
|
|
if (!invalidate_query.empty())
|
|
|
|
{
|
|
|
|
auto response = do_invalidate_query(invalidate_query);
|
|
|
|
if (!response.empty() && invalidate_query_response == response)
|
|
|
|
return false;
|
|
|
|
invalidate_query_response = response;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string ODBCDictionarySource::do_invalidate_query(const std::string & request) const
|
|
|
|
{
|
|
|
|
std::string response;
|
|
|
|
|
|
|
|
auto getErrorMessage = [& request](const std::string & message)
|
|
|
|
{
|
|
|
|
return message + " (Query = '" + request + "')";
|
|
|
|
};
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Poco::Data::Session session = pool->get();
|
|
|
|
Poco::Data::Statement statement = (session << request, Poco::Data::Keywords::now);
|
|
|
|
Poco::Data::RecordSet result(statement);
|
|
|
|
auto iterator = result.begin();
|
|
|
|
if (iterator == result.end())
|
|
|
|
{
|
|
|
|
LOG_ERROR(log, getErrorMessage("Empty response"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const Poco::Data::Row & row = *iterator;
|
|
|
|
const auto & values = row.values();
|
|
|
|
if (values.empty())
|
|
|
|
{
|
|
|
|
LOG_ERROR(log, getErrorMessage("Empty row"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto & value = values.front();
|
|
|
|
response = value.toString();
|
|
|
|
LOG_TRACE(log, getErrorMessage("Received value: " + value));
|
|
|
|
if (values.size() > 1)
|
|
|
|
{
|
|
|
|
LOG_ERROR(log, getErrorMessage("Response contains more than 1 column"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++iterator != result.end())
|
|
|
|
{
|
|
|
|
LOG_ERROR(log, getErrorMessage("Response contains more than 1 row"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException(log, getErrorMessage("ODBCDictionarySource"));
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
2016-06-05 15:21:35 +00:00
|
|
|
|
|
|
|
}
|