Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Copyright 2013 Red Hat, Inc. and/or its affiliates.
This file is part of lightblue.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 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 Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
package com.redhat.lightblue.query;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.redhat.lightblue.util.Error;
import com.redhat.lightblue.util.JsonObject;
import com.redhat.lightblue.util.Path;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
/**
* Base class for all query expressions
*/
public abstract class QueryExpression extends JsonObject {
private static final long serialVersionUID = 1L;
private static final Logger LOGGER = LoggerFactory.getLogger(QueryExpression.class);
/**
* Returns field information about the query
*/
public List getQueryFields() {
return GetQueryFields.getQueryFields(this);
}
/**
* Returns field information about the query
*
* @param fields The call adds the field information to this list
*/
public void getQueryFields(List fields) {
GetQueryFields.getQueryFields(fields, this);
}
/**
* The implementation should populate the list with the field information
*/
public void getQueryFields(List fields, Path ctx) {
GetQueryFields.getQueryFields(fields, this, ctx);
}
/**
* Parses a query expression from the given json node
*/
public static QueryExpression fromJson(JsonNode node) {
if (node instanceof ObjectNode) {
ObjectNode onode = (ObjectNode) node;
// If there is only one field, then that field must be a
// logical operator
String firstField = onode.fieldNames().next();
if (UnaryLogicalOperator.fromString(firstField) != null) {
return UnaryLogicalExpression.fromJson(onode);
} else if (NaryLogicalOperator.fromString(firstField) != null) {
return NaryLogicalExpression.fromJson(onode);
} else {
return ComparisonExpression.fromJson(onode);
}
} else {
throw Error.get(QueryConstants.ERR_INVALID_QUERY, node.toString());
}
}
/**
* Returns if the field is required to evaluate this query
*
* @param field The field
*/
public boolean isRequired(Path field) {
LOGGER.debug("Checking if {} is queried", field);
return isRequired(field, Path.EMPTY);
}
/**
* Returns if the field is required to evaluate this query
*
* @param field The field
* @param ctx The nested context
*/
public boolean isRequired(Path field, Path ctx) {
if (this instanceof ValueComparisonExpression) {
return isFieldQueried(field, (ValueComparisonExpression) this, ctx);
} else if (this instanceof FieldComparisonExpression) {
return isFieldQueried(field, (FieldComparisonExpression) this, ctx);
} else if (this instanceof RegexMatchExpression) {
return isFieldQueried(field, (RegexMatchExpression) this, ctx);
} else if (this instanceof NaryRelationalExpression) {
return isFieldQueried(field, (NaryRelationalExpression) this, ctx);
} else if (this instanceof UnaryLogicalExpression) {
return isFieldQueried(field, (UnaryLogicalExpression) this, ctx);
} else if (this instanceof NaryLogicalExpression) {
return isFieldQueried(field, (NaryLogicalExpression) this, ctx);
} else if (this instanceof ArrayContainsExpression) {
return isFieldQueried(field, (ArrayContainsExpression) this, ctx);
} else if (this instanceof ArrayMatchExpression) {
return isFieldQueried(field, (ArrayMatchExpression) this, ctx);
}
return false;
}
private static boolean isFieldQueried(Path field, Path qField, Path context) {
LOGGER.debug("Checking if field {} is included in qfield={} with context={}", field, qField, context);
Path absField = context.isEmpty() ? qField : new Path(context, qField);
if (field.matchingPrefix(absField)) {
LOGGER.debug("Field {} is queried", absField);
return true;
} else {
LOGGER.debug("Field {} is not queried", absField);
return false;
}
}
private static boolean isFieldQueried(Path field, ValueComparisonExpression q, Path context) {
LOGGER.debug("Checking if field {} is queried by value comparison {}", field, q);
return isFieldQueried(field, q.getField(), context);
}
private static boolean isFieldQueried(Path field, FieldComparisonExpression q, Path context) {
LOGGER.debug("Checking if field {} is queried by field comparison {}", field, q);
return isFieldQueried(field, q.getField(), context)
|| isFieldQueried(field, q.getRfield(), context);
}
private static boolean isFieldQueried(Path field, RegexMatchExpression q, Path context) {
LOGGER.debug("Checking if field {} is queried by regex {}", field, q);
return isFieldQueried(field, q.getField(), context);
}
private static boolean isFieldQueried(Path field, NaryRelationalExpression q, Path context) {
LOGGER.debug("Checking if field {} is queried by expr {}", field, q);
return isFieldQueried(field, q.getField(), context);
}
private static boolean isFieldQueried(Path field, UnaryLogicalExpression q, Path context) {
return q.getQuery().isRequired(field, context);
}
private static boolean isFieldQueried(Path field, NaryLogicalExpression q, Path context) {
for (QueryExpression x : q.getQueries()) {
if (x.isRequired(field, context)) {
return true;
}
}
return false;
}
private static boolean isFieldQueried(Path field, ArrayContainsExpression q, Path context) {
LOGGER.debug("Checking if field {} is queried by array expression {}", field, q);
return isFieldQueried(field, q.getArray(), context);
}
private static boolean isFieldQueried(Path field, ArrayMatchExpression q, Path context) {
LOGGER.debug("Checking if field {} is queried by array expression {}", field, q);
if (isFieldQueried(field, q.getArray(), context)) {
return true;
} else {
return q.getElemMatch().isRequired(field, new Path(new Path(context, q.getArray()), Path.ANYPATH));
}
}
}