blob: 863895fd8627cb627a74ec9e5772062026f3ddb3 [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.pcj.storage.accumulo;
import java.util.Set;
import org.eclipse.rdf4j.query.MalformedQueryException;
import edu.umd.cs.findbugs.annotations.DefaultAnnotation;
import edu.umd.cs.findbugs.annotations.NonNull;
/**
* Create alternative variable orders for a SPARQL query based on
* the original ordering of its results.
*/
@DefaultAnnotation(NonNull.class)
public interface PcjVarOrderFactory {
/**
* Create a set of variable orders for a SPARQL query.
*
* @param sparql - The SPARQL query the variable orders will be derived from. (not null)
* @return @return A set of variable orders for the SPARQL query.
* @throws MalformedQueryException The SPARQL query was malformed and could not be parsed.
*/
public Set<VariableOrder> makeVarOrders(String sparql) throws MalformedQueryException;
/**
* Create alternative variable orders for a SPARQL query based on
* the original ordering of its results.
*
* @param varOrder - The initial variable order of a SPARQL query. (not null)
* @return A set of alternative variable orders for the original.
*/
public Set<VariableOrder> makeVarOrders(VariableOrder varOrder);
}