org.neo4j.gds.indexInverse.IndexInverseSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proc-misc Show documentation
Show all versions of proc-misc Show documentation
Neo4j Graph Data Science :: Procedures :: Misc
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.gds.indexInverse;
import org.neo4j.gds.MutateComputationResultConsumer;
import org.neo4j.gds.RelationshipType;
import org.neo4j.gds.core.loading.SingleTypeRelationships;
import org.neo4j.gds.executor.AlgorithmSpec;
import org.neo4j.gds.executor.ComputationResult;
import org.neo4j.gds.executor.ComputationResultConsumer;
import org.neo4j.gds.executor.ExecutionContext;
import org.neo4j.gds.executor.ExecutionMode;
import org.neo4j.gds.executor.GdsCallable;
import org.neo4j.gds.procedures.algorithms.configuration.NewConfigFunction;
import org.neo4j.gds.result.AbstractResultBuilder;
import org.neo4j.gds.procedures.algorithms.results.StandardMutateResult;
import java.util.Map;
import java.util.stream.Stream;
@GdsCallable(name = IndexInverseSpec.CALLABLE_NAME, executionMode = ExecutionMode.MUTATE_RELATIONSHIP, description = IndexInverseSpec.DESCRIPTION)
public class IndexInverseSpec implements AlgorithmSpec, InverseRelationshipsConfig, Stream, InverseRelationshipsAlgorithmFactory> {
public static final String DESCRIPTION = "The IndexInverse procedure indexes directed relationships to allow an efficient inverse access for other algorithms.";
static final String CALLABLE_NAME = "gds.graph.relationships.indexInverse";
@Override
public String name() {
return CALLABLE_NAME;
}
@Override
public InverseRelationshipsAlgorithmFactory algorithmFactory(ExecutionContext executionContext) {
return new InverseRelationshipsAlgorithmFactory();
}
@Override
public NewConfigFunction newConfigFunction() {
return ((__, config) -> InverseRelationshipsConfig.of(config));
}
protected AbstractResultBuilder resultBuilder(
ComputationResult, InverseRelationshipsConfig> computeResult,
ExecutionContext executionContext
) {
return new MutateResult.Builder().withInputRelationships(computeResult.graph().relationshipCount());
}
@Override
public ComputationResultConsumer, InverseRelationshipsConfig, Stream> computationResultConsumer() {
return new MutateComputationResultConsumer<>(this::resultBuilder) {
@Override
protected void updateGraphStore(
AbstractResultBuilder> resultBuilder,
ComputationResult, InverseRelationshipsConfig> computationResult,
ExecutionContext executionContext
) {
var graphStore = computationResult.graphStore();
computationResult.result().ifPresent(result -> {
result.forEach((type, inverseRelationships) -> {
graphStore.addInverseIndex(type, inverseRelationships.topology(), inverseRelationships.properties());
});
});
}
};
}
public static final class MutateResult extends StandardMutateResult {
public final long inputRelationships;
private MutateResult(
long preProcessingMillis,
long computeMillis,
long mutateMillis,
long postProcessingMillis,
long inputRelationships,
Map configuration
) {
super(preProcessingMillis, computeMillis, postProcessingMillis, mutateMillis, configuration);
this.inputRelationships = inputRelationships;
}
public static class Builder extends AbstractResultBuilder {
private long inputRelationships;
Builder withInputRelationships(long inputRelationships) {
this.inputRelationships = inputRelationships;
return this;
}
@Override
public MutateResult build() {
return new MutateResult(
preProcessingMillis,
computeMillis,
mutateMillis,
0,
inputRelationships,
config.toMap()
);
}
}
}
}