org.neo4j.kernel.impl.traversal.AsOneStartBranch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-kernel Show documentation
Show all versions of neo4j-kernel Show documentation
Neo4j kernel is a lightweight, embedded Java database designed to
store data structured as graphs rather than tables. For more
information, see http://neo4j.org.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://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.kernel.impl.traversal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import org.neo4j.graphdb.Entity;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.PathExpander;
import org.neo4j.graphdb.Relationship;
import org.neo4j.graphdb.traversal.BranchSelector;
import org.neo4j.graphdb.traversal.Evaluation;
import org.neo4j.graphdb.traversal.InitialBranchState;
import org.neo4j.graphdb.traversal.TraversalBranch;
import org.neo4j.graphdb.traversal.TraversalContext;
import org.neo4j.graphdb.traversal.TraversalDescription;
import org.neo4j.graphdb.traversal.UniquenessFactory;
/**
* A {@link TraversalBranch} that abstracts the fact that it is actually
* potentially several branches, i.e. several start nodes. A
* {@link TraversalDescription#traverse(Node...)} call can supply more than
* one starting {@link Node} and for implementation simplicity a
* {@link BranchSelector} starts from one {@link TraversalBranch}.
* This class bridges that gap.
*/
class AsOneStartBranch implements TraversalBranch {
private Iterator branches;
private int expanded;
private final TraversalContext context;
private final InitialBranchState initialState;
private final UniquenessFactory uniqueness;
AsOneStartBranch(
TraversalContext context,
Iterable nodes,
InitialBranchState initialState,
UniquenessFactory uniqueness) {
this.context = context;
this.initialState = initialState;
this.uniqueness = uniqueness;
this.branches = toBranches(nodes);
}
private Iterator toBranches(Iterable nodes) {
if (uniqueness.eagerStartBranches()) {
List result = new ArrayList<>();
for (Node node : nodes) {
result.add(new StartNodeTraversalBranch(context, this, node, initialState));
}
return result.iterator();
} else {
return new TraversalBranchIterator(nodes.iterator());
}
}
@Override
public TraversalBranch parent() {
return null;
}
@Override
public int length() {
return -1;
}
@Override
public Node endNode() {
throw new UnsupportedOperationException();
}
@Override
public Relationship lastRelationship() {
throw new UnsupportedOperationException();
}
@Override
public TraversalBranch next(PathExpander expander, TraversalContext metadata) {
if (branches.hasNext()) {
expanded++;
return branches.next().next(expander, metadata);
}
return null;
}
@Override
public int expanded() {
return expanded;
}
@Override
public boolean continues() {
return true;
}
@Override
public boolean includes() {
return false;
}
@Override
public void evaluation(Evaluation eval) {
throw new UnsupportedOperationException();
}
@Override
public void initialize(PathExpander expander, TraversalContext metadata) {}
@Override
public Node startNode() {
throw new UnsupportedOperationException();
}
@Override
public Iterable relationships() {
throw new UnsupportedOperationException();
}
@Override
public Iterable reverseRelationships() {
throw new UnsupportedOperationException();
}
@Override
public Iterable nodes() {
throw new UnsupportedOperationException();
}
@Override
public Iterable reverseNodes() {
throw new UnsupportedOperationException();
}
@Override
public Iterator iterator() {
throw new UnsupportedOperationException();
}
@Override
public void prune() {
branches = Collections.emptyList().iterator();
}
@Override
public Object state() {
throw new UnsupportedOperationException();
}
private class TraversalBranchIterator implements Iterator {
private final Iterator nodeIterator;
TraversalBranchIterator(Iterator nodeIterator) {
this.nodeIterator = nodeIterator;
}
@Override
public boolean hasNext() {
return nodeIterator.hasNext();
}
@Override
public TraversalBranch next() {
return new StartNodeTraversalBranch(context, AsOneStartBranch.this, nodeIterator.next(), initialState);
}
@Override
public void remove() {
nodeIterator.remove();
}
}
}