AddMatchesToProperties.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.transactional.function;
import org.apache.flink.api.common.functions.CoGroupFunction;
import org.apache.flink.api.java.tuple.Tuple2;
import org.apache.flink.util.Collector;
import org.gradoop.common.model.api.entities.GraphHead;
import org.gradoop.common.model.impl.id.GradoopId;
import java.util.Iterator;
/**
* Adds a property to a graph that states if the graph contained the embedding.
*
* @param <G> graph head type
*/
public class AddMatchesToProperties<G extends GraphHead>
implements CoGroupFunction<G, Tuple2<GradoopId, Boolean>, G> {
/**
* default property key
*/
private static final String DEFAULT_KEY = "contains pattern";
/**
* propery key string
*/
private String propertyKey;
/**
* Constructor using the default property key.
*/
public AddMatchesToProperties() {
this.propertyKey = DEFAULT_KEY;
}
/**
* Constructor with custom property key.
* @param propertyKey custom property key
*/
public AddMatchesToProperties(String propertyKey) {
this.propertyKey = propertyKey;
}
@Override
public void coGroup(Iterable<G> heads,
Iterable<Tuple2<GradoopId, Boolean>> matches,
Collector<G> collector) {
G graphHead = heads.iterator().next();
Iterator<Tuple2<GradoopId, Boolean>> it = matches.iterator();
if (!it.hasNext()) {
graphHead.setProperty(propertyKey, false);
} else {
graphHead.setProperty(propertyKey, it.next().f1);
}
collector.collect(graphHead);
}
}