FilterAndProjectVerticesNode.java
/*
* Copyright © 2014 - 2021 Leipzig University (Database Research Group)
*
* 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.gradoop.flink.model.impl.operators.matching.single.cypher.planning.queryplan.leaf;
import org.apache.flink.api.java.DataSet;
import org.gradoop.common.model.api.entities.Vertex;
import org.gradoop.flink.model.impl.operators.matching.common.query.predicates.CNF;
import org.gradoop.flink.model.impl.operators.matching.single.cypher.operators.filter.FilterAndProjectVertices;
import org.gradoop.flink.model.impl.operators.matching.single.cypher.planning.queryplan.FilterNode;
import org.gradoop.flink.model.impl.operators.matching.single.cypher.planning.queryplan.LeafNode;
import org.gradoop.flink.model.impl.operators.matching.single.cypher.planning.queryplan.ProjectionNode;
import org.gradoop.flink.model.impl.operators.matching.single.cypher.pojos.Embedding;
import org.gradoop.flink.model.impl.operators.matching.single.cypher.pojos.EmbeddingMetaData;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
/**
* Leaf node that wraps a {@link FilterAndProjectVertices} operator.
*
* @param <V> The vertex type.
*/
public class FilterAndProjectVerticesNode<V extends Vertex> extends LeafNode
implements FilterNode, ProjectionNode {
/**
* Input data set
*/
private DataSet<V> vertices;
/**
* Query variable of the vertex
*/
private final String vertexVariable;
/**
* Filter predicate that is applied on the input data set
*/
private CNF filterPredicate;
/**
* Property keys used for projection
*/
private final List<String> projectionKeys;
/**
* Creates a new node.
*
* @param vertices input vertices
* @param vertexVariable query variable of the vertex
* @param filterPredicate filter predicate to be applied on edges
* @param projectionKeys property keys whose associated values are projected to the output
*/
public FilterAndProjectVerticesNode(DataSet<V> vertices, String vertexVariable,
CNF filterPredicate, Set<String> projectionKeys) {
this.vertices = vertices;
this.vertexVariable = vertexVariable;
this.filterPredicate = filterPredicate;
this.projectionKeys = new ArrayList<>(projectionKeys);
}
@Override
public DataSet<Embedding> execute() {
FilterAndProjectVertices<V> op =
new FilterAndProjectVertices<>(vertices, filterPredicate, projectionKeys);
op.setName(toString());
return op.evaluate();
}
/**
* Returns a copy of the filter predicate attached to this node.
*
* @return filter predicate
*/
public CNF getFilterPredicate() {
return new CNF(filterPredicate);
}
/**
* Returns a copy of the projection keys attached to this node.
*
* @return projection keys
*/
public List<String> getProjectionKeys() {
return new ArrayList<>(projectionKeys);
}
@Override
protected EmbeddingMetaData computeEmbeddingMetaData() {
EmbeddingMetaData embeddingMetaData = new EmbeddingMetaData();
embeddingMetaData.setEntryColumn(vertexVariable, EmbeddingMetaData.EntryType.VERTEX, 0);
embeddingMetaData = setPropertyColumns(embeddingMetaData, vertexVariable, projectionKeys);
return embeddingMetaData;
}
@Override
public String toString() {
return String.format("FilterAndProjectVerticesNode{" +
"vertexVariable=%s, " +
"filterPredicate=%s, " +
"projectionKeys=%s}",
vertexVariable, filterPredicate, projectionKeys);
}
}