Package org.sindice.siren.qparser.json.nodes

Examples of org.sindice.siren.qparser.json.nodes.BooleanQueryNode


public class BooleanQueryNodeBuilder implements JsonQueryBuilder {

  public BooleanQueryNodeBuilder() {}

  public BooleanQuery build(final QueryNode queryNode) throws QueryNodeException {
    final BooleanQueryNode booleanNode = (BooleanQueryNode) queryNode;
    final BooleanQuery bQuery = new BooleanQuery(true);
    final List<QueryNode> children = booleanNode.getChildren();

    for (final QueryNode child : children) {
      final Object obj = child.getTag(QueryTreeBuilder.QUERY_TREE_BUILDER_TAGID);
      // wrap the query into a LuceneProxyNodeQuery
      final Query query = new LuceneProxyNodeQuery((NodeQuery) obj);
View Full Code Here


    final JsonNode value = node.path(BOOLEAN_PROPERTY);
    if (!value.isArray()) {
      throw new ParseException("Invalid property '" + BOOLEAN_PROPERTY + "': value is not an array");
    }

    final BooleanQueryNode booleanNode = new BooleanQueryNode();

    final Iterator<JsonNode> elements = value.getElements();
    while (elements.hasNext()) {
      final JsonNode element = elements.next();

      // parse occur
      final OccurPropertyParser occurParser = new OccurPropertyParser(element, field);
      Modifier mod = null;
      if (occurParser.isPropertyDefined()) {
        mod = occurParser.parse();
      }

      // check if there is either a node or a twig property and parse it
      QueryNode queryNode = null;
      if (element.has(NodePropertyParser.NODE_PROPERTY)) {
        final NodePropertyParser nodeParser = new NodePropertyParser(element, field);
        queryNode = nodeParser.parse();
      }
      if (element.has(TwigPropertyParser.TWIG_PROPERTY)) {
        final TwigPropertyParser twigParser = new TwigPropertyParser(element, field);
        queryNode = twigParser.parse();
      }

      // check if either a node or twig property has been defined
      if (queryNode == null) {
        throw new ParseException("Invalid property '" + BOOLEAN_PROPERTY + "': object does not define a twig or node query");
      }

      // wrap the query node with a modifier, and add it to the boolean query
      booleanNode.add(new ModifierQueryNode(queryNode, mod));
    }

    return booleanNode;
  }
View Full Code Here

TOP

Related Classes of org.sindice.siren.qparser.json.nodes.BooleanQueryNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.