DistinctVertexDegreesToAttribute.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.algorithms.gelly.vertexdegrees.functions;
import org.apache.flink.api.common.functions.JoinFunction;
import org.apache.flink.graph.asm.degree.annotate.directed.VertexDegrees;
import org.apache.flink.graph.asm.degree.annotate.directed.VertexDegrees.Degrees;
import org.gradoop.common.model.api.entities.Vertex;
import org.gradoop.common.model.impl.id.GradoopId;
import org.gradoop.common.model.impl.properties.PropertyValue;
/**
* Stores the in-degree, out-degree and the sum of both as a property in vertex
*
* @param <V> Gradoop Vertex type
*/
public class DistinctVertexDegreesToAttribute<V extends Vertex>
implements JoinFunction<org.apache.flink.graph.Vertex<GradoopId, VertexDegrees.Degrees>, V, V> {
/**
* Property to store the sum of vertex degrees in.
*/
private final String vertexDegreesProperty;
/**
* Property to store the in vertex degree in.
*/
private final String vertexInDegreeProperty;
/**
* Property to store the out vertex degree in.
*/
private final String vertexOutDegreeProperty;
/**
* Stores the in, out and sum of in and out degrees of a vertex.
*
* @param vertexDegreesProperty property key to store sum degree
* @param vertexInDegreesProperty property key to store in degree
* @param vertexOutDegreesProperty property key to store out degree
*/
public DistinctVertexDegreesToAttribute(String vertexDegreesProperty,
String vertexInDegreesProperty, String vertexOutDegreesProperty) {
this.vertexDegreesProperty = vertexDegreesProperty;
this.vertexInDegreeProperty = vertexInDegreesProperty;
this.vertexOutDegreeProperty = vertexOutDegreesProperty;
}
@Override
public V join(org.apache.flink.graph.Vertex<GradoopId, Degrees> degree, V vertex) throws Exception {
vertex.setProperty(vertexDegreesProperty,
PropertyValue.create(degree.getValue().getDegree().getValue()));
vertex.setProperty(vertexInDegreeProperty,
PropertyValue.create(degree.getValue().getInDegree().getValue()));
vertex.setProperty(vertexOutDegreeProperty,
PropertyValue.create(degree.getValue().getOutDegree().getValue()));
return vertex;
}
}