blob: 3c4380854e96ccb37f6db338481e8f356d9011a2 [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.rya.indexing.external.tupleSet;
import static com.google.common.base.Preconditions.checkNotNull;
import java.util.concurrent.atomic.AtomicReference;
import org.eclipse.rdf4j.query.algebra.Projection;
import org.eclipse.rdf4j.query.algebra.helpers.AbstractQueryModelVisitor;
import org.eclipse.rdf4j.query.parser.ParsedQuery;
import com.google.common.base.Optional;
import edu.umd.cs.findbugs.annotations.DefaultAnnotation;
import edu.umd.cs.findbugs.annotations.NonNull;
/**
* Utilities that help applications inspect {@link ParsedQuery} objects.
*/
@DefaultAnnotation(NonNull.class)
public class ParsedQueryUtil {
/**
* Finds the first {@link Projection} node within a {@link ParsedQuery}.
*
* @param query - The query that will be searched. (not null)
* @return The first projection encountered if the query has one; otherwise absent.
*/
public Optional<Projection> findProjection(final ParsedQuery query) {
checkNotNull(query);
// When a projection is encountered for the requested index, store it in atomic reference and quit searching.
final AtomicReference<Projection> projectionRef = new AtomicReference<>();
query.getTupleExpr().visit(new AbstractQueryModelVisitor<RuntimeException>() {
@Override
public void meet(Projection projection) {
projectionRef.set(projection);
}
});
return Optional.fromNullable( projectionRef.get() );
}
}