HyriseSQLParser/src/SQLParser.cpp

48 lines
1.1 KiB
C++
Raw Normal View History

2014-10-09 01:30:22 +02:00
#include "SQLParser.h"
#include "parser/bison_parser.h"
#include "parser/flex_lexer.h"
2014-10-09 01:30:22 +02:00
#include <stdio.h>
#include <string>
2014-10-09 01:30:22 +02:00
namespace hsql {
SQLParser::SQLParser() {
fprintf(stderr, "SQLParser only has static methods atm! Do not initialize!\n");
}
2014-10-09 01:30:22 +02:00
SQLParserResult* SQLParser::parseSQLString(const char* text) {
SQLParserResult* result = new SQLParserResult();
yyscan_t scanner;
YY_BUFFER_STATE state;
2014-10-09 01:30:22 +02:00
if (hsql_lex_init(&scanner)) {
// Couldn't initialize the lexer.
fprintf(stderr, "[Error] SQLParser: Error when initializing lexer!\n");
delete result;
return NULL;
}
2014-10-09 01:30:22 +02:00
state = hsql__scan_string(text, scanner);
2014-10-09 01:30:22 +02:00
// Parser and return early if it failed.
if (hsql_parse(result, scanner)) {
// Returns an error stmt object.
2017-02-08 04:56:07 +01:00
hsql__delete_buffer(state, scanner);
hsql_lex_destroy(scanner);
return result;
}
2014-10-09 01:30:22 +02:00
hsql__delete_buffer(state, scanner);
hsql_lex_destroy(scanner);
return result;
}
2015-01-07 13:24:39 +01:00
2016-02-27 14:45:59 +01:00
SQLParserResult* SQLParser::parseSQLString(const std::string& text) {
return parseSQLString(text.c_str());
}
2016-02-27 15:01:06 +01:00
2015-01-07 13:24:39 +01:00
} // namespace hsql