nl.topicus.jdbc.shaded.net.sf.jsqlparser.parser.CCJSqlParserUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
/*
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2013 JSQLParser
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
package nl.topicus.jdbc.shaded.net.sf.jsqlparser.parser;
import java.nl.topicus.jdbc.shaded.io.InputStream;
import java.nl.topicus.jdbc.shaded.io.Reader;
import java.nl.topicus.jdbc.shaded.io.StringReader;
import nl.topicus.jdbc.shaded.net.sf.jsqlparser.JSQLParserException;
import nl.topicus.jdbc.shaded.net.sf.jsqlparser.expression.Expression;
import nl.topicus.jdbc.shaded.net.sf.jsqlparser.statement.Statement;
import nl.topicus.jdbc.shaded.net.sf.jsqlparser.statement.Statements;
/**
* Toolfunctions to start and use JSqlParser.
*
* @author toben
*/
public final class CCJSqlParserUtil {
private CCJSqlParserUtil() {
}
public static Statement parse(Reader statementReader) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(statementReader);
try {
return parser.Statement();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
public static Statement parse(String sql) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(new StringReader(sql));
try {
return parser.Statement();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
public static Node parseAST(String sql) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(new StringReader(sql));
try {
parser.Statement();
return parser.jjtree.rootNode();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
public static Statement parse(InputStream is) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(is);
try {
return parser.Statement();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
public static Statement parse(InputStream is, String encoding) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(is, encoding);
try {
return parser.Statement();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
/**
* Parse an expression.
*
* @param expression
* @return
* @throws JSQLParserException
*/
public static Expression parseExpression(String expression) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(new StringReader(expression));
try {
return parser.SimpleExpression();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
/**
* Parse an conditional expression. This is the expression after a where clause.
*
* @param condExpr
* @return
* @throws JSQLParserException
*/
public static Expression parseCondExpression(String condExpr) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(new StringReader(condExpr));
try {
return parser.Expression();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
/**
* Parse a statement list.
*/
public static Statements parseStatements(String sqls) throws JSQLParserException {
CCJSqlParser parser = new CCJSqlParser(new StringReader(sqls));
try {
return parser.Statements();
} catch (Exception ex) {
throw new JSQLParserException(ex);
}
}
}