blob: e9b4bd89527d84fc290c3897bdd3edbafb8793ac [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.tinkerpop.gremlin.process.traversal.step;
import org.apache.tinkerpop.gremlin.process.computer.GraphComputer;
import org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.finalization.ComputerFinalizationStrategy;
import org.apache.tinkerpop.gremlin.process.traversal.Step;
import org.apache.tinkerpop.gremlin.process.traversal.Traversal;
/**
* A {@code GraphComputing} step is one that will change its behavior whether its on a {@link GraphComputer} or not.
* {@link ComputerFinalizationStrategy} is responsible for calling the {@link GraphComputing#onGraphComputer()} method.
* This method is only called for global children steps of a {@link TraversalParent}.
*
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public interface GraphComputing {
/**
* The step will be executing on a {@link GraphComputer}.
*/
public void onGraphComputer();
/**
* Some steps should behave different whether they are executing at the master traversal or distributed across the worker traversals.
* The default implementation does nothing.
*
* @param atMaster whether the step is currently executing at master
*/
public default void atMaster(boolean atMaster) {
}
public static void atMaster(final Step<?, ?> step, boolean atMaster) {
if (step instanceof GraphComputing)
((GraphComputing) step).atMaster(atMaster);
if (step instanceof TraversalParent) {
for (final Traversal.Admin<?, ?> local : ((TraversalParent) step).getLocalChildren()) {
for (final Step<?, ?> s : local.getSteps()) {
GraphComputing.atMaster(s, atMaster);
}
}
for (final Traversal.Admin<?, ?> global : ((TraversalParent) step).getGlobalChildren()) {
for (final Step<?, ?> s : global.getSteps()) {
GraphComputing.atMaster(s, atMaster);
}
}
}
}
}