All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.rdf.sparql.ast.optimizers.TestASTSetValueExpressionOptimizer Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
/**

Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016.  All rights reserved.

Contact:
     SYSTAP, LLC DBA Blazegraph
     2501 Calvert ST NW #106
     Washington, DC 20008
     [email protected]

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
/*
 * Created on Aug 29, 2011
 */

package com.bigdata.rdf.sparql.ast.optimizers;

import java.util.UUID;

import org.openrdf.query.algebra.StatementPattern.Scope;

import com.bigdata.bop.BOpContext;
import com.bigdata.bop.Constant;
import com.bigdata.bop.ContextBindingSet;
import com.bigdata.bop.IBindingSet;
import com.bigdata.bop.IQueryContext;
import com.bigdata.bop.PipelineOp;
import com.bigdata.bop.bindingSet.ListBindingSet;
import com.bigdata.bop.engine.BOpStats;
import com.bigdata.bop.engine.BlockingBufferWithStats;
import com.bigdata.bop.engine.IRunningQuery;
import com.bigdata.bop.engine.MockRunningQuery;
import com.bigdata.bop.solutions.MockQuery;
import com.bigdata.bop.solutions.MockQueryContext;
import com.bigdata.rdf.internal.IV;
import com.bigdata.rdf.internal.XSD;
import com.bigdata.rdf.sparql.ast.ASTContainer;
import com.bigdata.rdf.sparql.ast.AbstractASTEvaluationTestCase;
import com.bigdata.rdf.sparql.ast.AssignmentNode;
import com.bigdata.rdf.sparql.ast.ConstantNode;
import com.bigdata.rdf.sparql.ast.FunctionNode;
import com.bigdata.rdf.sparql.ast.IQueryNode;
import com.bigdata.rdf.sparql.ast.JoinGroupNode;
import com.bigdata.rdf.sparql.ast.ProjectionNode;
import com.bigdata.rdf.sparql.ast.QueryNodeWithBindingSet;
import com.bigdata.rdf.sparql.ast.QueryRoot;
import com.bigdata.rdf.sparql.ast.QueryType;
import com.bigdata.rdf.sparql.ast.StatementPatternNode;
import com.bigdata.rdf.sparql.ast.VarNode;
import com.bigdata.rdf.sparql.ast.eval.AST2BOpContext;
import com.bigdata.relation.accesspath.IAsynchronousIterator;
import com.bigdata.relation.accesspath.IBlockingBuffer;
import com.bigdata.relation.accesspath.ThickAsynchronousIterator;

/**
 * Test suite for {@link ASTSetValueExpressionsOptimizer}.
 * 
 * @author Bryan Thompson
 * @version $Id$
 */
public class TestASTSetValueExpressionOptimizer extends AbstractASTEvaluationTestCase {

    /**
     * 
     */
    public TestASTSetValueExpressionOptimizer() {
    }

    /**
     * @param name
     */
    public TestASTSetValueExpressionOptimizer(String name) {
        super(name);
    }

    /**
     * Given
     * 
     * 
     * SELECT ?s (?o as 12+1) where {?s ?p ?o}
     * 
* * Verify that the AST is rewritten as: * *
     * SELECT ?s (?o as 13) where {?s ?p ?o}
     * 
* * TODO unit test with FILTER(sameTerm(var,constExpr)) in {@link ASTBindingAssigner} */ public void test_reduceFunctionToConstant() { /* * Note: DO NOT share structures in this test!!!! */ @SuppressWarnings("rawtypes") final IV c1 = makeIV(store.getValueFactory().createLiteral(1)); @SuppressWarnings("rawtypes") final IV c12 = makeIV(store.getValueFactory().createLiteral(12)); @SuppressWarnings("rawtypes") final IV c13 = store.getLexiconRelation().getInlineIV( store.getValueFactory().createLiteral("13", XSD.INTEGER)); store.commit(); @SuppressWarnings("rawtypes") final BOpContext context; { final BOpStats stats = new BOpStats(); final PipelineOp mockQuery = new MockQuery(); final IAsynchronousIterator source = new ThickAsynchronousIterator( new IBindingSet[][] {}); final IBlockingBuffer sink = new BlockingBufferWithStats( mockQuery, stats); final UUID queryId = UUID.randomUUID(); final IQueryContext queryContext = new MockQueryContext(queryId); final IRunningQuery runningQuery = new MockRunningQuery(null/* fed */ , store.getIndexManager()/* indexManager */,queryContext ); context = BOpContext.newMock(runningQuery, null/* fed */, store.getIndexManager()/* localIndexManager */, -1/* partitionId */, stats, mockQuery, false/* lastInvocation */, source, sink, null/* sink2 */); } final IBindingSet[] bsets = new IBindingSet[] { // new ContextBindingSet(context, new ListBindingSet(// // new IVariable[] { Var.var("p") },// // new IConstant[] { new Constant(mockIV) } )) // }; // The source AST. final QueryRoot given = new QueryRoot(QueryType.SELECT); { final ProjectionNode projection = new ProjectionNode(); given.setProjection(projection); projection.addProjectionVar(new VarNode("s")); final FunctionNode fn = FunctionNode.add(new ConstantNode(c12), new ConstantNode(c1)); projection.addProjectionExpression(new AssignmentNode(new VarNode( "o"), fn)); final JoinGroupNode whereClause = new JoinGroupNode(); given.setWhereClause(whereClause); whereClause.addChild(new StatementPatternNode(new VarNode("s"), new VarNode("p"), new VarNode("o"), null/* c */, Scope.DEFAULT_CONTEXTS)); } // The expected AST after the rewrite. final QueryRoot expected = new QueryRoot(QueryType.SELECT); { final ProjectionNode projection = new ProjectionNode(); expected.setProjection(projection); projection.addProjectionVar(new VarNode("s")); final FunctionNode fn = FunctionNode.add(new ConstantNode(c12), new ConstantNode(c1)); fn.setValueExpression(new Constant>(c13)); projection.addProjectionExpression(new AssignmentNode(new VarNode( "o"), fn)); final JoinGroupNode whereClause = new JoinGroupNode(); expected.setWhereClause(whereClause); whereClause.addChild(new StatementPatternNode(new VarNode("s"), new VarNode("p"), new VarNode("o"), null/* c */, Scope.DEFAULT_CONTEXTS)); } final IASTOptimizer rewriter = new ASTSetValueExpressionsOptimizer(); final IQueryNode actual = rewriter.optimize(new AST2BOpContext( new ASTContainer(given), store), new QueryNodeWithBindingSet(given, bsets)) .getQueryNode(); assertSameAST(expected, actual); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy