blob: 873f86eb60e3183d609f5a8b0ec6b6dc7199ba1b [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.remote.traversal.step.map;
import org.apache.tinkerpop.gremlin.process.remote.RemoteConnection;
import org.apache.tinkerpop.gremlin.process.remote.RemoteConnectionException;
import org.apache.tinkerpop.gremlin.process.remote.traversal.strategy.decoration.RemoteStrategy;
import org.apache.tinkerpop.gremlin.process.traversal.Traversal;
import org.apache.tinkerpop.gremlin.process.traversal.Traverser;
import org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep;
import org.apache.tinkerpop.gremlin.structure.util.StringFactory;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Sends a {@link Traversal} to a {@link RemoteConnection} and iterates back the results.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public final class RemoteStep<S, E> extends AbstractStep<S, E> {
private transient RemoteConnection remoteConnection;
private Traversal.Admin<S, E> remoteTraversal;
private Iterator<Traverser.Admin<E>> remoteIterator;
@SuppressWarnings("unchecked")
public RemoteStep(final Traversal.Admin traversal, final Traversal<S, E> remoteTraversal,
final RemoteConnection remoteConnection) {
super(traversal);
this.remoteConnection = remoteConnection;
this.remoteTraversal = remoteTraversal.asAdmin();
this.remoteTraversal.setSideEffects(this.getTraversal().getSideEffects());
this.remoteTraversal.setStrategies(this.getTraversal().getStrategies().clone().removeStrategies(RemoteStrategy.class));
}
@Override
public String toString() {
return StringFactory.stepString(this, this.remoteConnection);
}
@SuppressWarnings("unchecked")
@Override
protected Traverser.Admin<E> processNextStart() throws NoSuchElementException {
if (null == this.remoteIterator) {
try {
this.remoteIterator = this.remoteConnection.submit(this.remoteTraversal);
} catch (final RemoteConnectionException sce) {
throw new IllegalStateException(sce);
}
}
return this.remoteIterator.next();
}
@Override
public int hashCode() {
return super.hashCode() ^ this.remoteTraversal.hashCode();
}
}