cz.jirutka.rsql.parser.RSQLParser Maven / Gradle / Ivy
/*
* The MIT License
*
* Copyright 2013-2014 Czech Technical University in Prague.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package cz.jirutka.rsql.parser;
import cz.jirutka.rsql.parser.ast.Node;
import cz.jirutka.rsql.parser.ast.RSQLNodesFactory;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.nio.charset.Charset;
/**
* Parser of the RSQL (RESTful Service Query Language).
*
* RSQL is query language for a parametrized filtering of entries in
* RESTful APIs. It's a superset of
*
* FIQL (Feed Item Query Language), so it can be used for parsing FIQL
* as well.
*
* Grammar in EBNF notation:
*
{@code
* input = or, EOF;
* or = and, { ( "," | " or " ) , and };
* and = constraint, { ( ";" | " and " ), constraint };
* constraint = ( group | comparison );
* group = "(", or, ")";
*
* comparison = selector, comparator, arguments;
* selector = unreserved-str;
*
* comparator = comp-fiql | comp-alt;
* comp-fiql = ( ( "=", { ALPHA } ) | "!" ), "=";
* comp-alt = ( ">" | "<" ), [ "=" ];
*
* arguments = ( "(", value, { "," , value }, ")" ) | value;
* value = unreserved-str | double-quoted | single-quoted;
*
* unreserved-str = unreserved, { unreserved }
* single-quoted = "'", { all-chars - "'" }, "'";
* double-quoted = '"', { all-chars - '"' }, '"';
*
* reserved = '"' | "'" | "(" | ")" | ";" | "," | "=" | "!" | "~" | "<" | ">" | " ";
* unreserved = all-chars - reserved;
* all-chars = ? all unicode characters ?;
* }
*
* @version 2.0
*/
public final class RSQLParser {
private static final Charset ENCODING = Charset.forName("UTF-8");
private final RSQLNodesFactory nodesFactory;
/**
* Creates a new instance of {@code RSQLParser} with the default
* {@link RSQLNodesFactory} that handles built-in operators.
*/
public RSQLParser() {
this.nodesFactory = new RSQLNodesFactory();
}
/**
* Creates a new instance of {@code RSQLParser} with the given
* {@link RSQLNodesFactory} (can be used to add custom operators).
*
* @param nodesFactory The nodes factory to use (not null).
*/
public RSQLParser(RSQLNodesFactory nodesFactory) {
if (nodesFactory == null) {
throw new IllegalArgumentException("nodesFactory must not be null");
}
this.nodesFactory = nodesFactory;
}
/**
* Parses the RSQL expression and returns AST.
*
* @param query The query expression to parse.
* @return A root of the parsed AST.
* @throws RSQLParserException This exception wraps {@link ParseException},
* {@link cz.jirutka.rsql.parser.UnknownOperatorException}
* and {@link TokenMgrError}.
* @throws IllegalArgumentException If the given query is null.
*/
public Node parse(String query) throws RSQLParserException {
if (query == null) {
throw new IllegalArgumentException("query must not be null");
}
InputStream is = new ByteArrayInputStream(query.getBytes(ENCODING));
Parser parser = new Parser(is, ENCODING.name(), nodesFactory);
try {
return parser.Input();
} catch (ParseException | TokenMgrError ex) {
throw new RSQLParserException(ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy