org.immutables.criteria.elasticsearch.ToTupleConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of criteria-elasticsearch Show documentation
Show all versions of criteria-elasticsearch Show documentation
Criteria support for ElasticSearch
/*
* Copyright 2019 Immutables Authors and Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.immutables.criteria.elasticsearch;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.NullNode;
import com.google.common.base.Preconditions;
import org.immutables.criteria.backend.ProjectedTuple;
import org.immutables.criteria.expression.Expression;
import org.immutables.criteria.expression.Path;
import org.immutables.criteria.expression.Query;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
/**
* Parse result of a projection
*/
class ToTupleConverter implements JsonConverter {
private final Query query;
private final List fields;
ToTupleConverter(Query query, ObjectMapper mapper) {
Preconditions.checkArgument(query.hasProjections(), "no projections defined");
this.query = query;
this.fields = query.projections().stream().map(e -> new ProjectedField(e, mapper)).collect(Collectors.toList());
}
@Override
public ProjectedTuple convert(JsonNode node) {
List