Class DedupGlobalStep<S>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.filter.FilterStep<S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.filter.DedupGlobalStep<S>
-
- All Implemented Interfaces:
Serializable
,AutoCloseable
,Cloneable
,Iterator<Traverser.Admin<S>>
,Step<S,S>
,Barrier<Map<Object,Traverser.Admin<S>>>
,ByModulating
,GraphComputing
,MemoryComputing<Map<Object,Traverser.Admin<S>>>
,PathProcessor
,Scoping
,TraversalParent
public final class DedupGlobalStep<S> extends FilterStep<S> implements TraversalParent, Scoping, GraphComputing, Barrier<Map<Object,Traverser.Admin<S>>>, ByModulating, PathProcessor
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.PathProcessor
PathProcessor.ElementRequirement
-
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.Scoping
Scoping.KeyNotFoundException, Scoping.Variable
-
-
Field Summary
-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
-
-
Constructor Summary
Constructors Constructor Description DedupGlobalStep(Traversal.Admin traversal, String... dedupLabels)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addBarrier(Map<Object,Traverser.Admin<S>> barrier)
Add a barrier to the step.void
atMaster(boolean atMaster)
Some steps should behave different whether they are executing at the master traversal or distributed across the worker traversals.DedupGlobalStep<S>
clone()
Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.protected boolean
filter(Traverser.Admin<S> traverser)
Set<String>
getKeepLabels()
List<Traversal<S,Object>>
getLocalChildren()
PathProcessor.ElementRequirement
getMaxRequirement()
MemoryComputeKey<Map<Object,Traverser.Admin<S>>>
getMemoryComputeKey()
TheMemoryComputeKey
that will be used by this step.Set<TraverserRequirement>
getRequirements()
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly.Set<String>
getScopeKeys()
Get the labels that this scoping step will access during the traversalint
hashCode()
boolean
hasNextBarrier()
Whether or not the step has an accessible barrier.void
modulateBy(Traversal.Admin<?,?> dedupTraversal)
Map<Object,Traverser.Admin<S>>
nextBarrier()
Get the next barrier within this step.void
onGraphComputer()
The step will be executing on aGraphComputer
.void
processAllStarts()
Process all left traversers by do not yield the resultant output.protected Traverser.Admin<S>
processNextStart()
void
replaceLocalChild(Traversal.Admin<?,?> oldTraversal, Traversal.Admin<?,?> newTraversal)
void
reset()
Reset the state of the step such that it has no incoming starts.void
setKeepLabels(Set<String> keepLabels)
void
setTraversal(Traversal.Admin<?,?> parentTraversal)
Set theTraversal
that this step is contained within.String
toString()
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ByModulating
modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.Scoping
getNullableScopeValue, getSafeScopeValue, getScopeValue
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent
addGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild
-
-
-
-
Constructor Detail
-
DedupGlobalStep
public DedupGlobalStep(Traversal.Admin traversal, String... dedupLabels)
-
-
Method Detail
-
filter
protected boolean filter(Traverser.Admin<S> traverser)
- Specified by:
filter
in classFilterStep<S>
-
atMaster
public void atMaster(boolean atMaster)
Description copied from interface:GraphComputing
Some steps should behave different whether they are executing at the master traversal or distributed across the worker traversals. The default implementation does nothing.- Specified by:
atMaster
in interfaceGraphComputing
- Parameters:
atMaster
- whether the step is currently executing at master
-
getMaxRequirement
public PathProcessor.ElementRequirement getMaxRequirement()
- Specified by:
getMaxRequirement
in interfacePathProcessor
-
processNextStart
protected Traverser.Admin<S> processNextStart()
- Overrides:
processNextStart
in classFilterStep<S>
-
getLocalChildren
public List<Traversal<S,Object>> getLocalChildren()
- Specified by:
getLocalChildren
in interfaceTraversalParent
-
modulateBy
public void modulateBy(Traversal.Admin<?,?> dedupTraversal)
- Specified by:
modulateBy
in interfaceByModulating
-
replaceLocalChild
public void replaceLocalChild(Traversal.Admin<?,?> oldTraversal, Traversal.Admin<?,?> newTraversal)
- Specified by:
replaceLocalChild
in interfaceTraversalParent
-
clone
public DedupGlobalStep<S> clone()
Description copied from interface:Step
Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication. When cloning a step, it is important that the steps, the cloned step is equivalent to the state of the step whenStep.reset()
is called. Moreover, the previous and next steps should be set toEmptyStep
.
-
setTraversal
public void setTraversal(Traversal.Admin<?,?> parentTraversal)
Description copied from interface:Step
Set theTraversal
that this step is contained within.- Specified by:
setTraversal
in interfaceStep<S,S>
- Overrides:
setTraversal
in classAbstractStep<S,S>
- Parameters:
parentTraversal
- the new traversal for this step
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractStep<S,S>
-
reset
public void reset()
Description copied from interface:Step
Reset the state of the step such that it has no incoming starts. Internal states are to be reset, but any sideEffect data structures are not to be recreated.
-
toString
public String toString()
- Overrides:
toString
in classAbstractStep<S,S>
-
getRequirements
public Set<TraverserRequirement> getRequirements()
Description copied from interface:Step
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.- Specified by:
getRequirements
in interfaceStep<S,S>
- Returns:
- the set of requirements
-
onGraphComputer
public void onGraphComputer()
Description copied from interface:GraphComputing
The step will be executing on aGraphComputer
.- Specified by:
onGraphComputer
in interfaceGraphComputing
-
getScopeKeys
public Set<String> getScopeKeys()
Description copied from interface:Scoping
Get the labels that this scoping step will access during the traversal- Specified by:
getScopeKeys
in interfaceScoping
- Returns:
- the accessed labels of the scoping step
-
processAllStarts
public void processAllStarts()
Description copied from interface:Barrier
Process all left traversers by do not yield the resultant output. This method is useful for steps likeReducingBarrierStep
, where traversers can be processed "on the fly" and thus, reduce memory consumption.- Specified by:
processAllStarts
in interfaceBarrier<S>
-
hasNextBarrier
public boolean hasNextBarrier()
Description copied from interface:Barrier
Whether or not the step has an accessible barrier.- Specified by:
hasNextBarrier
in interfaceBarrier<S>
- Returns:
- whether a barrier exists or not
-
nextBarrier
public Map<Object,Traverser.Admin<S>> nextBarrier() throws NoSuchElementException
Description copied from interface:Barrier
Get the next barrier within this step. Barriers from parallel steps can be the be merged to create a single step with merge barriers.- Specified by:
nextBarrier
in interfaceBarrier<S>
- Returns:
- the next barrier of the step
- Throws:
NoSuchElementException
-
addBarrier
public void addBarrier(Map<Object,Traverser.Admin<S>> barrier)
Description copied from interface:Barrier
Add a barrier to the step. This typically happens when multiple parallel barriers need to become one barrier at a single step.- Specified by:
addBarrier
in interfaceBarrier<S>
- Parameters:
barrier
- the barrier to merge in
-
getMemoryComputeKey
public MemoryComputeKey<Map<Object,Traverser.Admin<S>>> getMemoryComputeKey()
Description copied from interface:MemoryComputing
TheMemoryComputeKey
that will be used by this step.- Specified by:
getMemoryComputeKey
in interfaceMemoryComputing<S>
- Returns:
- the MemoryComputeKey to use
-
setKeepLabels
public void setKeepLabels(Set<String> keepLabels)
- Specified by:
setKeepLabels
in interfacePathProcessor
-
getKeepLabels
public Set<String> getKeepLabels()
- Specified by:
getKeepLabels
in interfacePathProcessor
-
-