Java Code Examples for org.apache.olingo.server.api.uri.queryoption.expression.Expression#accept()
The following examples show how to use
org.apache.olingo.server.api.uri.queryoption.expression.Expression#accept() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DebugTabUri.java From olingo-odata4 with Apache License 2.0 | 5 votes |
private void appendExpressionJson(final JsonGenerator gen, final Expression expression) throws IOException { if (expression == null) { gen.writeNull(); } else { try { final JsonNode tree = expression.accept(new ExpressionJsonVisitor()); gen.writeTree(tree); } catch (final ODataException e) { gen.writeString("Exception in Debug Expression visitor occurred: " + e.getMessage()); } } }
Example 2
Source File: DemoEntityCollectionProcessor.java From olingo-odata4 with Apache License 2.0 | 5 votes |
private List<Entity> applyFilterQueryOption(List<Entity> entityList, FilterOption filterOption) throws ODataApplicationException { if (filterOption != null) { try { Iterator<Entity> entityIterator = entityList.iterator(); // Evaluate the expression for each entity // If the expression is evaluated to "true", keep the entity otherwise remove it from the entityList while (entityIterator.hasNext()) { // To evaluate the the expression, create an instance of the Filter Expression Visitor and pass // the current entity to the constructor Entity currentEntity = entityIterator.next(); Expression filterExpression = filterOption.getExpression(); FilterExpressionVisitor expressionVisitor = new FilterExpressionVisitor(currentEntity); // Start evaluating the expression Object visitorResult = filterExpression.accept(expressionVisitor); // The result of the filter expression must be of type Edm.Boolean if (visitorResult instanceof Boolean) { if (!Boolean.TRUE.equals(visitorResult)) { // The expression evaluated to false (or null), so we have to remove the currentEntity from entityList entityIterator.remove(); } } else { throw new ODataApplicationException("A filter expression must evaulate to type Edm.Boolean", HttpStatusCode.BAD_REQUEST.getStatusCode(), Locale.ENGLISH); } } } catch (ExpressionVisitException e) { throw new ODataApplicationException("Exception in filter evaluation", HttpStatusCode.INTERNAL_SERVER_ERROR.getStatusCode(), Locale.ENGLISH); } } return entityList; }
Example 3
Source File: ProductsEntityCollectionProcessor.java From syndesis with Apache License 2.0 | 4 votes |
private static EntityCollection applyQueryOptions(UriInfo uriInfo, List<Entity> entityList, EntityCollection returnEntityCollection) throws ODataApplicationException { // handle $skip SkipOption skipOption = uriInfo.getSkipOption(); if (skipOption != null) { int skipNumber = skipOption.getValue(); if (skipNumber >= 0) { if (skipNumber <= entityList.size()) { entityList = entityList.subList(skipNumber, entityList.size()); } else { // The client skipped all entities entityList.clear(); } } else { throw new ODataApplicationException("Invalid value for $skip", HttpStatusCode.BAD_REQUEST.getStatusCode(), Locale.ROOT); } } // handle $top TopOption topOption = uriInfo.getTopOption(); if (topOption != null) { int topNumber = topOption.getValue(); if (topNumber >= 0) { if (topNumber <= entityList.size()) { entityList = entityList.subList(0, topNumber); } // else the client has requested more entities than available => return what we have } else { throw new ODataApplicationException("Invalid value for $top", HttpStatusCode.BAD_REQUEST.getStatusCode(), Locale.ROOT); } } // handle $filter FilterOption filterOption = uriInfo.getFilterOption(); if(filterOption != null) { // Apply $filter system query option try { Iterator<Entity> entityIterator = entityList.iterator(); // Evaluate the expression for each entity // If the expression is evaluated to "true", keep the entity otherwise remove it from the entityList while (entityIterator.hasNext()) { // To evaluate the the expression, create an instance of the Filter Expression Visitor and pass // the current entity to the constructor Entity currentEntity = entityIterator.next(); Expression filterExpression = filterOption.getExpression(); FilterExpressionVisitor expressionVisitor = new FilterExpressionVisitor(currentEntity); // Start evaluating the expression Object visitorResult = filterExpression.accept(expressionVisitor); // The result of the filter expression must be of type Edm.Boolean if(visitorResult instanceof Boolean) { if(!Boolean.TRUE.equals(visitorResult)) { // The expression evaluated to false (or null), so we have to remove the currentEntity from entityList entityIterator.remove(); } } else { throw new ODataApplicationException("A filter expression must evaulate to type Edm.Boolean", HttpStatusCode.BAD_REQUEST.getStatusCode(), Locale.ENGLISH); } } } catch (ExpressionVisitException e) { throw new ODataApplicationException("Exception in filter evaluation", HttpStatusCode.INTERNAL_SERVER_ERROR.getStatusCode(), Locale.ENGLISH, e); } } // after applying the system query options, create the EntityCollection based on the reduced list for (Entity entity : entityList) { returnEntityCollection.getEntities().add(entity); } // apply $orderby applyOrderby(uriInfo, returnEntityCollection); return returnEntityCollection; }
Example 4
Source File: FilterTreeToText.java From olingo-odata4 with Apache License 2.0 | 4 votes |
public static String Serialize(final FilterOption filter) throws ExpressionVisitException, ODataApplicationException { Expression expression = filter.getExpression(); return expression.accept(new FilterTreeToText()); }
Example 5
Source File: FilterTreeToText.java From olingo-odata4 with Apache License 2.0 | 4 votes |
public static String Serialize(final Expression expression) throws ExpressionVisitException, ODataApplicationException { return expression.accept(new FilterTreeToText()); }
Example 6
Source File: FilterTreeToText.java From olingo-odata4 with Apache License 2.0 | 4 votes |
@Override public String visitLambdaExpression(final String functionText, final String string, final Expression expression) throws ExpressionVisitException, ODataApplicationException { return "<" + functionText + ";" + ((expression == null) ? "" : expression.accept(this)) + ">"; }
Example 7
Source File: DemoEntityCollectionProcessor.java From olingo-odata4 with Apache License 2.0 | 4 votes |
public void readEntityCollection(ODataRequest request, ODataResponse response, UriInfo uriInfo, ContentType responseFormat) throws ODataApplicationException, SerializerException { // 1st: retrieve the requested EntitySet from the uriInfo (representation of the parsed URI) List<UriResource> resourcePaths = uriInfo.getUriResourceParts(); // in our example, the first segment is the EntitySet UriResourceEntitySet uriResourceEntitySet = (UriResourceEntitySet) resourcePaths.get(0); EdmEntitySet edmEntitySet = uriResourceEntitySet.getEntitySet(); // 2nd: fetch the data from backend for this requested EntitySetName and deliver as EntitySet EntityCollection entityCollection = storage.readEntitySetData(edmEntitySet); // 3rd: Check if filter system query option is provided and apply the expression if necessary FilterOption filterOption = uriInfo.getFilterOption(); if(filterOption != null) { // Apply $filter system query option try { List<Entity> entityList = entityCollection.getEntities(); Iterator<Entity> entityIterator = entityList.iterator(); // Evaluate the expression for each entity // If the expression is evaluated to "true", keep the entity otherwise remove it from the entityList while (entityIterator.hasNext()) { // To evaluate the the expression, create an instance of the Filter Expression Visitor and pass // the current entity to the constructor Entity currentEntity = entityIterator.next(); Expression filterExpression = filterOption.getExpression(); FilterExpressionVisitor expressionVisitor = new FilterExpressionVisitor(currentEntity); // Start evaluating the expression Object visitorResult = filterExpression.accept(expressionVisitor); // The result of the filter expression must be of type Edm.Boolean if(visitorResult instanceof Boolean) { if(!Boolean.TRUE.equals(visitorResult)) { // The expression evaluated to false (or null), so we have to remove the currentEntity from entityList entityIterator.remove(); } } else { throw new ODataApplicationException("A filter expression must evaulate to type Edm.Boolean", HttpStatusCode.BAD_REQUEST.getStatusCode(), Locale.ENGLISH); } } } catch (ExpressionVisitException e) { throw new ODataApplicationException("Exception in filter evaluation", HttpStatusCode.INTERNAL_SERVER_ERROR.getStatusCode(), Locale.ENGLISH); } } // 4th: create a serializer based on the requested format (json) ODataSerializer serializer = odata.createSerializer(responseFormat); // and serialize the content: transform from the EntitySet object to InputStream EdmEntityType edmEntityType = edmEntitySet.getEntityType(); ContextURL contextUrl = ContextURL.with().entitySet(edmEntitySet).build(); final String id = request.getRawBaseUri() + "/" + edmEntitySet.getName(); EntityCollectionSerializerOptions opts = EntityCollectionSerializerOptions.with() .contextURL(contextUrl).id(id).build(); SerializerResult serializerResult = serializer.entityCollection(serviceMetadata, edmEntityType, entityCollection, opts); InputStream serializedContent = serializerResult.getContent(); // 5th: configure the response object: set the body, headers and status code response.setContent(serializedContent); response.setStatusCode(HttpStatusCode.OK.getStatusCode()); response.setHeader(HttpHeader.CONTENT_TYPE, responseFormat.toContentTypeString()); }