2011-08-12 18:27:39 +00:00
|
|
|
#include <iostream>
|
2011-08-13 23:03:07 +00:00
|
|
|
#include <iomanip>
|
2011-08-12 18:27:39 +00:00
|
|
|
|
2011-08-13 23:03:07 +00:00
|
|
|
#include <Poco/Stopwatch.h>
|
2011-08-12 18:27:39 +00:00
|
|
|
|
2011-08-12 20:39:42 +00:00
|
|
|
#include <DB/IO/WriteBufferFromOStream.h>
|
|
|
|
|
2011-08-12 18:27:39 +00:00
|
|
|
#include <DB/DataTypes/DataTypesNumberFixed.h>
|
|
|
|
|
|
|
|
#include <DB/Functions/FunctionsArithmetic.h>
|
|
|
|
|
|
|
|
#include <DB/Parsers/ASTSelectQuery.h>
|
|
|
|
#include <DB/Parsers/ParserSelectQuery.h>
|
|
|
|
#include <DB/Parsers/formatAST.h>
|
|
|
|
|
2011-08-12 20:39:42 +00:00
|
|
|
#include <DB/DataStreams/TabSeparatedRowOutputStream.h>
|
2011-08-13 23:03:07 +00:00
|
|
|
#include <DB/DataStreams/LimitBlockInputStream.h>
|
2011-08-12 20:39:42 +00:00
|
|
|
#include <DB/DataStreams/copyData.h>
|
|
|
|
|
2011-08-12 18:27:39 +00:00
|
|
|
#include <DB/Interpreters/Expression.h>
|
|
|
|
|
|
|
|
|
|
|
|
void dump(DB::IAST & ast, int level = 0)
|
|
|
|
{
|
|
|
|
std::string prefix(level, ' ');
|
|
|
|
|
|
|
|
if (DB::ASTFunction * node = dynamic_cast<DB::ASTFunction *>(&ast))
|
|
|
|
{
|
|
|
|
std::cout << prefix << node << " Function, name = " << node->function->getName() << ", return types: ";
|
|
|
|
for (DB::DataTypes::const_iterator it = node->return_types.begin(); it != node->return_types.end(); ++it)
|
|
|
|
{
|
|
|
|
if (it != node->return_types.begin())
|
|
|
|
std::cout << ", ";
|
|
|
|
std::cout << (*it)->getName();
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
|
|
|
else if (DB::ASTIdentifier * node = dynamic_cast<DB::ASTIdentifier *>(&ast))
|
|
|
|
{
|
|
|
|
std::cout << prefix << node << " Identifier, name = " << node->name << ", type = " << node->type->getName() << std::endl;
|
|
|
|
}
|
|
|
|
else if (DB::ASTLiteral * node = dynamic_cast<DB::ASTLiteral *>(&ast))
|
|
|
|
{
|
|
|
|
std::cout << prefix << node << " Literal, " << boost::apply_visitor(DB::FieldVisitorToString(), node->value)
|
|
|
|
<< ", type = " << node->type->getName() << std::endl;
|
|
|
|
}
|
|
|
|
|
2011-08-13 21:05:18 +00:00
|
|
|
DB::ASTs children = ast.children;
|
2011-08-12 18:27:39 +00:00
|
|
|
for (DB::ASTs::iterator it = children.begin(); it != children.end(); ++it)
|
|
|
|
dump(**it, level + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-12 20:39:42 +00:00
|
|
|
class OneBlockInputStream : public DB::IBlockInputStream
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const DB::Block & block;
|
|
|
|
bool has_been_read;
|
|
|
|
public:
|
|
|
|
OneBlockInputStream(const DB::Block & block_) : block(block_), has_been_read(false) {}
|
|
|
|
|
|
|
|
DB::Block read()
|
|
|
|
{
|
|
|
|
if (!has_been_read)
|
|
|
|
{
|
|
|
|
has_been_read = true;
|
|
|
|
return block;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return DB::Block();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-08-12 18:27:39 +00:00
|
|
|
int main(int argc, char ** argv)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
DB::ParserSelectQuery parser;
|
|
|
|
DB::ASTPtr ast;
|
|
|
|
std::string input = "SELECT 2 + x * 2, x * 2";
|
|
|
|
std::string expected;
|
|
|
|
|
|
|
|
const char * begin = input.data();
|
|
|
|
const char * end = begin + input.size();
|
|
|
|
const char * pos = begin;
|
|
|
|
|
|
|
|
if (parser.parse(pos, end, ast, expected))
|
|
|
|
{
|
|
|
|
std::cout << "Success." << std::endl;
|
|
|
|
DB::formatAST(*ast, std::cout);
|
|
|
|
std::cout << std::endl << ast->getTreeID() << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout << "Failed at position " << (pos - begin) << ": "
|
|
|
|
<< mysqlxx::quote << input.substr(pos - begin, 10)
|
|
|
|
<< ", expected " << expected << "." << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
DB::Context context;
|
|
|
|
context.columns["x"] = new DB::DataTypeInt16;
|
|
|
|
context.functions["plus"] = new DB::FunctionPlus;
|
|
|
|
context.functions["multiply"] = new DB::FunctionMultiply;
|
|
|
|
|
|
|
|
DB::Expression expression(ast, context);
|
|
|
|
|
|
|
|
dump(*ast);
|
2011-08-12 20:39:42 +00:00
|
|
|
|
2011-08-13 23:03:07 +00:00
|
|
|
size_t n = argc == 2 ? atoi(argv[1]) : 10;
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
|
|
DB::Block block;
|
|
|
|
DB::ColumnWithNameAndType column_x;
|
|
|
|
column_x.name = "x";
|
|
|
|
column_x.type = new DB::DataTypeInt16;
|
|
|
|
DB::ColumnInt16 * x = new DB::ColumnInt16;
|
|
|
|
column_x.column = x;
|
|
|
|
std::vector<Int16> & vec = x->getData();
|
|
|
|
|
|
|
|
vec.resize(n);
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
vec[i] = i;
|
|
|
|
|
|
|
|
block.insert(column_x);
|
|
|
|
|
2011-08-13 23:03:07 +00:00
|
|
|
{
|
|
|
|
Poco::Stopwatch stopwatch;
|
|
|
|
stopwatch.start();
|
|
|
|
|
|
|
|
expression.execute(block);
|
2011-08-12 20:39:42 +00:00
|
|
|
|
2011-08-13 23:03:07 +00:00
|
|
|
stopwatch.stop();
|
|
|
|
std::cout << std::fixed << std::setprecision(2)
|
|
|
|
<< "Elapsed " << stopwatch.elapsed() / 1000000.0 << " sec."
|
|
|
|
<< ", " << n * 1000000 / stopwatch.elapsed() << " rows/sec."
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
2011-08-12 20:39:42 +00:00
|
|
|
DB::DataTypes * data_types = new DB::DataTypes;
|
|
|
|
for (size_t i = 0; i < block.columns(); ++i)
|
|
|
|
data_types->push_back(block.getByPosition(i).type);
|
|
|
|
|
2011-08-13 23:03:07 +00:00
|
|
|
OneBlockInputStream * is = new OneBlockInputStream(block);
|
|
|
|
DB::LimitBlockInputStream lis(is, 10, std::max(0, static_cast<int>(n) - 10));
|
2011-08-12 20:39:42 +00:00
|
|
|
DB::WriteBufferFromOStream out_buf(std::cout);
|
|
|
|
DB::TabSeparatedRowOutputStream os(out_buf, data_types);
|
|
|
|
|
2011-08-13 23:03:07 +00:00
|
|
|
DB::copyData(lis, os);
|
2011-08-12 18:27:39 +00:00
|
|
|
}
|
|
|
|
catch (const DB::Exception & e)
|
|
|
|
{
|
|
|
|
std::cerr << e.message() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|