ClickHouse/dbms/src/Storages/StorageSystemZooKeeper.cpp

188 lines
5.9 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <DB/Columns/ColumnString.h>
#include <DB/DataTypes/DataTypeString.h>
#include <DB/DataTypes/DataTypesNumberFixed.h>
#include <DB/DataTypes/DataTypeDateTime.h>
#include <DB/DataStreams/OneBlockInputStream.h>
#include <DB/Storages/StorageSystemZooKeeper.h>
#include <DB/Parsers/ASTSelectQuery.h>
#include <DB/Parsers/ASTIdentifier.h>
#include <DB/Parsers/ASTLiteral.h>
namespace DB
{
StorageSystemZooKeeper::StorageSystemZooKeeper(const std::string & name_, const Context & context_)
: name(name_), context(context_)
, columns{
{ "name", new DataTypeString },
{ "value", new DataTypeString },
{ "czxid", new DataTypeInt64 },
{ "mzxid", new DataTypeInt64 },
{ "ctime", new DataTypeDateTime},
{ "mtime", new DataTypeDateTime},
{ "version", new DataTypeInt32 },
{ "cversion", new DataTypeInt32 },
{ "aversion", new DataTypeInt32 },
{ "ephemeralOwner", new DataTypeInt64 },
{ "dataLength", new DataTypeInt32 },
{ "numChildren", new DataTypeInt32 },
{ "pzxid", new DataTypeInt64 },
{ "path", new DataTypeString },
}
{
}
StoragePtr StorageSystemZooKeeper::create(const std::string & name_, const Context & context_)
{
return (new StorageSystemZooKeeper(name_, context_))->thisPtr();
}
static bool extractPathImpl(const IAST & elem, String & res)
{
const ASTFunction * function = typeid_cast<const ASTFunction *>(&elem);
if (!function)
return false;
if (function->name == "and")
{
for (size_t i = 0; i < function->arguments->children.size(); ++i)
if (extractPathImpl(*function->arguments->children[i], res))
return true;
return false;
}
if (function->name == "equals")
{
const ASTExpressionList & args = typeid_cast<const ASTExpressionList &>(*function->arguments);
const IAST * value;
if (args.children.size() != 2)
return false;
const ASTIdentifier * ident;
if ((ident = typeid_cast<const ASTIdentifier *>(&*args.children.at(0))))
value = &*args.children.at(1);
else if ((ident = typeid_cast<const ASTIdentifier *>(&*args.children.at(1))))
value = &*args.children.at(0);
else
return false;
if (ident->name != "path")
return false;
const ASTLiteral * literal = typeid_cast<const ASTLiteral *>(value);
if (!literal)
return false;
if (literal->value.getType() != Field::Types::String)
return false;
res = literal->value.safeGet<String>();
return true;
}
return false;
}
/** Вынимает из запроса условие вида path = 'path', из конъюнкций в секции WHERE.
*/
static String extractPath(const ASTPtr & query)
{
const ASTSelectQuery & select = typeid_cast<const ASTSelectQuery &>(*query);
if (!select.where_expression)
return "";
String res;
return extractPathImpl(*select.where_expression, res) ? res : "";
}
BlockInputStreams StorageSystemZooKeeper::read(
const Names & column_names, ASTPtr query, const Settings & settings,
QueryProcessingStage::Enum & processed_stage, size_t max_block_size, unsigned threads)
{
check(column_names);
processed_stage = QueryProcessingStage::FetchColumns;
String path = extractPath(query);
if (path.empty())
throw Exception("SELECT from system.zookeeper table must contain condition like path = 'path' in WHERE clause.");
ColumnWithNameAndType col_name { new ColumnString, new DataTypeString, "name" };
ColumnWithNameAndType col_value { new ColumnString, new DataTypeString, "value" };
ColumnWithNameAndType col_czxid { new ColumnInt64, new DataTypeInt64, "czxid" };
ColumnWithNameAndType col_mzxid { new ColumnInt64, new DataTypeInt64, "mzxid" };
ColumnWithNameAndType col_ctime { new ColumnUInt32, new DataTypeDateTime, "ctime" };
ColumnWithNameAndType col_mtime { new ColumnUInt32, new DataTypeDateTime, "mtime" };
ColumnWithNameAndType col_version { new ColumnInt32, new DataTypeInt32, "version" };
ColumnWithNameAndType col_cversion { new ColumnInt32, new DataTypeInt32, "cversion" };
ColumnWithNameAndType col_aversion { new ColumnInt32, new DataTypeInt32, "aversion" };
ColumnWithNameAndType col_ephemeralOwner{ new ColumnInt64, new DataTypeInt64, "ephemeralOwner" };
ColumnWithNameAndType col_dataLength { new ColumnInt32, new DataTypeInt32, "dataLength" };
ColumnWithNameAndType col_numChildren { new ColumnInt32, new DataTypeInt32, "numChildren" };
ColumnWithNameAndType col_pzxid { new ColumnInt64, new DataTypeInt64, "pzxid" };
ColumnWithNameAndType col_path { new ColumnString, new DataTypeString, "path" };
zkutil::ZooKeeperPtr zookeeper = context.getZooKeeper();
/// Во всех случаях кроме корня, path не должен заканчиваться на слеш.
if (path != "/" && path.back() == '/')
path.resize(path.size() - 1);
zkutil::Strings nodes = zookeeper->getChildren(path);
String path_part = path;
if (path == "/")
path_part.clear();
for (const String & node : nodes)
{
String value;
zkutil::Stat stat;
if (!zookeeper->tryGet(path_part + '/' + node, value, &stat))
continue; /// Ноду успели удалить.
col_name.column->insert(node);
col_value.column->insert(value);
col_czxid.column->insert(stat.czxid);
col_mzxid.column->insert(stat.mzxid);
col_ctime.column->insert(UInt64(stat.ctime / 1000));
col_mtime.column->insert(UInt64(stat.mtime / 1000));
col_version.column->insert(Int64(stat.version));
col_cversion.column->insert(Int64(stat.cversion));
col_aversion.column->insert(Int64(stat.aversion));
col_ephemeralOwner.column->insert(stat.ephemeralOwner);
col_dataLength.column->insert(Int64(stat.dataLength));
col_numChildren.column->insert(Int64(stat.numChildren));
col_pzxid.column->insert(stat.pzxid);
col_path.column->insert(path);
}
Block block{
col_name,
col_value,
col_czxid,
col_mzxid,
col_ctime,
col_mtime,
col_version,
col_cversion,
col_aversion,
col_ephemeralOwner,
col_dataLength,
col_numChildren,
col_pzxid,
col_path,
};
return BlockInputStreams(1, new OneBlockInputStream(block));
}
}