blob: 1df2b54afbec0dfea8a6041a87f7bfca37554942 [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.language.grammar;
import org.apache.tinkerpop.gremlin.process.traversal.Operator;
import org.apache.tinkerpop.gremlin.process.traversal.TraversalStrategy;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.function.BiFunction;
import java.util.function.BinaryOperator;
/**
* A {@link GraphTraversalSource} self method visitor.
*/
public class TraversalSourceSelfMethodVisitor extends DefaultGremlinBaseVisitor<GraphTraversalSource> {
private DefaultGremlinBaseVisitor<TraversalStrategy> traversalStrategyVisitor;
private GraphTraversalSource source;
private final GremlinAntlrToJava antlr;
public TraversalSourceSelfMethodVisitor(final GraphTraversalSource source, final GremlinAntlrToJava antlr) {
this.source = source;
this.antlr = antlr;
}
/**
* {@inheritDoc}
*/
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod(final GremlinParser.TraversalSourceSelfMethodContext ctx) {
return visitChildren(ctx);
}
/**
* {@inheritDoc}
*/
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod_withBulk(final GremlinParser.TraversalSourceSelfMethod_withBulkContext ctx) {
final boolean useBulk = (boolean) antlr.argumentVisitor.visitBooleanArgument(ctx.booleanArgument());
return source.withBulk(useBulk);
}
/**
* {@inheritDoc}
*/
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod_withPath(final GremlinParser.TraversalSourceSelfMethod_withPathContext ctx) {
return source.withPath();
}
/**
* {@inheritDoc}
*/
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod_withSack(final GremlinParser.TraversalSourceSelfMethod_withSackContext ctx) {
if (ctx.getChildCount() == 4) {
return source.withSack(antlr.argumentVisitor.visitGenericLiteralArgument(ctx.genericLiteralArgument()));
} else {
return source.withSack(antlr.argumentVisitor.visitGenericLiteralArgument(ctx.genericLiteralArgument()),
(BinaryOperator) antlr.argumentVisitor.visitTraversalBiFunctionArgument(ctx.traversalBiFunctionArgument()));
}
}
/**
* {@inheritDoc}
*/
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod_withSideEffect(final GremlinParser.TraversalSourceSelfMethod_withSideEffectContext ctx) {
return source.withSideEffect(antlr.argumentVisitor.parseString(ctx.stringArgument()),
antlr.argumentVisitor.visitGenericLiteralArgument(ctx.genericLiteralArgument()));
}
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod_withStrategies(final GremlinParser.TraversalSourceSelfMethod_withStrategiesContext ctx) {
if (null == traversalStrategyVisitor)
traversalStrategyVisitor = new TraversalStrategyVisitor(antlr);
// with 4 children withStrategies() was called with a single TraversalStrategy, otherwise multiple were
// specified.
if (ctx.getChildCount() < 5) {
return source.withStrategies(traversalStrategyVisitor.visitTraversalStrategy((GremlinParser.TraversalStrategyContext) ctx.getChild(2)));
} else {
final Object[] vargs = GenericLiteralVisitor.parseTraversalStrategyList(
(GremlinParser.TraversalStrategyListContext) ctx.getChild(4), traversalStrategyVisitor);
final List<TraversalStrategy> strats = new ArrayList<>(Arrays.asList(Arrays.copyOf(vargs, vargs.length, TraversalStrategy[].class)));
strats.add(0, traversalStrategyVisitor.visitTraversalStrategy((GremlinParser.TraversalStrategyContext) ctx.getChild(2)));
return source.withStrategies(strats.toArray(new TraversalStrategy[strats.size()]));
}
}
/**
* {@inheritDoc}
*/
@Override
public GraphTraversalSource visitTraversalSourceSelfMethod_with(final GremlinParser.TraversalSourceSelfMethod_withContext ctx) {
if (ctx.getChildCount() == 4) {
return source.with(antlr.argumentVisitor.parseString(ctx.stringArgument()));
} else {
return source.with(antlr.argumentVisitor.parseString(ctx.stringArgument()),
antlr.argumentVisitor.visitGenericLiteralArgument(ctx.genericLiteralArgument()));
}
}
}