2013-05-24 10:49:19 +00:00
|
|
|
#include <DB/Interpreters/ExpressionActions.h>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void ExpressionActions::Action::prepare(Block & sample_block)
|
|
|
|
{
|
|
|
|
if (type == APPLY_FUNCTION)
|
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
if (sample_block.has(result_name))
|
|
|
|
throw Exception("Column '" + result_name + "' already exists", ErrorCodes::DUPLICATE_COLUMN);
|
|
|
|
|
2013-05-24 10:49:19 +00:00
|
|
|
DataTypes types(argument_names.size());
|
|
|
|
for (size_t i = 0; i < argument_names.size(); ++i)
|
|
|
|
{
|
|
|
|
if (!sample_block.has(argument_names[i]))
|
|
|
|
throw Exception("Unknown identifier: '" + argument_names[i] + "'", ErrorCodes::UNKNOWN_IDENTIFIER);
|
|
|
|
types[i] = sample_block.getByName(argument_names[i]).type;
|
|
|
|
}
|
|
|
|
|
|
|
|
result_type = function->getReturnType(types);
|
|
|
|
|
2013-05-28 11:54:37 +00:00
|
|
|
sample_block.insert(ColumnWithNameAndType(NULL, result_type, result_name));
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
|
|
|
else if (type == ADD_COLUMN)
|
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
if (sample_block.has(result_name))
|
|
|
|
throw Exception("Column '" + result_name + "' already exists", ErrorCodes::DUPLICATE_COLUMN);
|
|
|
|
|
|
|
|
sample_block.insert(ColumnWithNameAndType(NULL, result_type, result_name));
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
if (type == COPY_COLUMN)
|
|
|
|
result_type = sample_block.getByName(source_name).type;
|
|
|
|
|
|
|
|
execute(sample_block);
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExpressionActions::Action::execute(Block & block)
|
|
|
|
{
|
|
|
|
if (type == REMOVE_COLUMN || type == COPY_COLUMN)
|
|
|
|
if (!block.has(source_name))
|
|
|
|
throw Exception("Not found column '" + source_name + "'", ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK);
|
|
|
|
|
2013-05-28 11:54:37 +00:00
|
|
|
if (type == ADD_COLUMN || type == COPY_COLUMN || type == APPLY_FUNCTION)
|
2013-05-24 10:49:19 +00:00
|
|
|
if (block.has(result_name))
|
|
|
|
throw Exception("Column '" + result_name + "' already exists", ErrorCodes::DUPLICATE_COLUMN);
|
|
|
|
|
2013-05-28 11:54:37 +00:00
|
|
|
switch (type)
|
2013-05-24 10:49:19 +00:00
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
case APPLY_FUNCTION:
|
2013-05-24 10:49:19 +00:00
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
ColumnNumbers arguments(argument_names.size());
|
|
|
|
for (size_t i = 0; i < argument_names.size(); ++i)
|
|
|
|
{
|
|
|
|
if (!block.has(argument_names[i]))
|
|
|
|
throw Exception("Not found column: '" + argument_names[i] + "'", ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK);
|
|
|
|
arguments[i] = block.getPositionByName(argument_names[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnWithNameAndType new_column;
|
|
|
|
new_column.name = result_name;
|
|
|
|
new_column.type = result_type;
|
|
|
|
block.insert(new_column);
|
|
|
|
|
|
|
|
function->execute(block, arguments, block.getPositionByName(result_name));
|
|
|
|
|
|
|
|
break;
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
2013-05-28 11:54:37 +00:00
|
|
|
|
|
|
|
case PROJECT:
|
2013-05-24 10:49:19 +00:00
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
Block new_block;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < projection.size(); ++i)
|
|
|
|
{
|
|
|
|
const std::string & name = projection[i].first;
|
|
|
|
const std::string & alias = projection[i].second;
|
|
|
|
ColumnWithNameAndType column = block.getByName(name);
|
|
|
|
if (alias != "")
|
|
|
|
column.name = alias;
|
|
|
|
if (new_block.has(column.name))
|
|
|
|
throw Exception("Column " + column.name + " already exists", ErrorCodes::DUPLICATE_COLUMN);
|
|
|
|
new_block.insert(column);
|
|
|
|
}
|
|
|
|
|
|
|
|
block = new_block;
|
|
|
|
|
|
|
|
break;
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
2013-05-28 11:54:37 +00:00
|
|
|
|
|
|
|
case REMOVE_COLUMN:
|
|
|
|
block.erase(source_name);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ADD_COLUMN:
|
|
|
|
block.insert(ColumnWithNameAndType(added_column->cloneResized(block.rows()), result_type, result_name));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COPY_COLUMN:
|
|
|
|
block.insert(ColumnWithNameAndType(block.getByName(source_name).column, result_type, result_name));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw Exception("Unknown action type", ErrorCodes::UNKNOWN_ACTION);
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ExpressionActions::Action::toString() const
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case ADD_COLUMN:
|
|
|
|
ss << "+" << result_name << "(" << result_type->getName() << ")" << "[" << added_column->getName() << "]";
|
|
|
|
break;
|
|
|
|
case REMOVE_COLUMN:
|
|
|
|
ss << "-" << source_name;
|
|
|
|
break;
|
|
|
|
case COPY_COLUMN:
|
|
|
|
ss << result_name << "(" << result_type->getName() << ")" << "=" << source_name;
|
|
|
|
break;
|
|
|
|
case APPLY_FUNCTION:
|
2013-05-27 14:02:55 +00:00
|
|
|
ss << result_name << "(" << result_type->getName() << ")" << "= " << function->getName() << " ( ";
|
2013-05-24 10:49:19 +00:00
|
|
|
for (size_t i = 0; i < argument_names.size(); ++i)
|
|
|
|
{
|
|
|
|
if (i)
|
2013-05-27 14:02:55 +00:00
|
|
|
ss << " , ";
|
2013-05-24 10:49:19 +00:00
|
|
|
ss << argument_names[i];
|
|
|
|
}
|
2013-05-27 14:02:55 +00:00
|
|
|
ss << " )";
|
2013-05-24 10:49:19 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw Exception("Unexpected Action type", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2013-05-28 11:54:37 +00:00
|
|
|
void ExpressionActions::finalize(const Names & output_columns)
|
2013-05-24 10:49:19 +00:00
|
|
|
{
|
|
|
|
typedef std::set<std::string> NameSet;
|
2013-05-27 14:02:55 +00:00
|
|
|
|
|
|
|
NameSet final_columns;
|
|
|
|
for (size_t i = 0; i < output_columns.size(); ++i)
|
|
|
|
{
|
2013-05-28 11:54:37 +00:00
|
|
|
const std::string name = output_columns[i];
|
2013-05-27 14:02:55 +00:00
|
|
|
if (!sample_block.has(name))
|
|
|
|
throw Exception("Unknown column: " + name, ErrorCodes::UNKNOWN_IDENTIFIER);
|
2013-05-28 11:54:37 +00:00
|
|
|
final_columns.insert(name);
|
2013-05-27 14:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NameSet used_columns = final_columns;
|
2013-05-24 10:49:19 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < actions.size(); ++i)
|
|
|
|
{
|
|
|
|
used_columns.insert(actions[i].source_name);
|
|
|
|
for (size_t j = 0; j < actions[i].argument_names.size(); ++j)
|
2013-05-27 14:02:55 +00:00
|
|
|
{
|
2013-05-24 10:49:19 +00:00
|
|
|
used_columns.insert(actions[i].argument_names[j]);
|
2013-05-27 14:02:55 +00:00
|
|
|
}
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
|
|
|
for (NamesAndTypesList::iterator it = input_columns.begin(); it != input_columns.end();)
|
|
|
|
{
|
|
|
|
NamesAndTypesList::iterator it0 = it;
|
|
|
|
++it;
|
|
|
|
if (!used_columns.count(it0->first))
|
|
|
|
{
|
2013-05-27 14:02:55 +00:00
|
|
|
sample_block.erase(it0->first);
|
|
|
|
input_columns.erase(it0);
|
2013-05-24 10:49:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = static_cast<int>(sample_block.columns()) - 1; i >= 0; --i)
|
|
|
|
{
|
|
|
|
const std::string & name = sample_block.getByPosition(i).name;
|
2013-05-27 14:02:55 +00:00
|
|
|
if (!final_columns.count(name))
|
2013-05-24 10:49:19 +00:00
|
|
|
add(Action(name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-28 11:54:37 +00:00
|
|
|
void ExpressionActions::finalizeChain(ExpressionActionsChain & chain, Names columns)
|
|
|
|
{
|
|
|
|
for (int i = static_cast<int>(chain.size()) - 1; i >= 0; --i)
|
|
|
|
{
|
|
|
|
chain[i]->finalize(columns);
|
|
|
|
|
|
|
|
columns.clear();
|
|
|
|
for (NamesAndTypesList::const_iterator it = chain[i]->input_columns.begin(); it != chain[i]->input_columns.end(); ++it)
|
|
|
|
{
|
|
|
|
columns.push_back(it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 10:49:19 +00:00
|
|
|
std::string ExpressionActions::dumpActions() const
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
|
|
|
|
ss << "input:\n";
|
|
|
|
for (NamesAndTypesList::const_iterator it = input_columns.begin(); it != input_columns.end(); ++it)
|
|
|
|
ss << it->first << " " << it->second->getName() << "\n";
|
|
|
|
|
|
|
|
ss << "\nactions:\n";
|
|
|
|
for (size_t i = 0; i < actions.size(); ++i)
|
|
|
|
ss << actions[i].toString() << '\n';
|
|
|
|
|
2013-05-27 14:02:55 +00:00
|
|
|
ss << "\noutput:\n";
|
|
|
|
NamesAndTypesList output_columns = sample_block.getColumnsList();
|
|
|
|
for (NamesAndTypesList::const_iterator it = output_columns.begin(); it != output_columns.end(); ++it)
|
|
|
|
ss << it->first << " " << it->second->getName() << "\n";
|
|
|
|
|
2013-05-24 10:49:19 +00:00
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|