/** Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved. Contact: SYSTAP, LLC DBA Blazegraph 2501 Calvert ST NW #106 Washington, DC 20008 licenses@blazegraph.com 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 Mar 7, 2012 */ package com.bigdata.rdf.sparql.ast.eval.service; import java.util.HashSet; import java.util.List; import java.util.Set; import com.bigdata.bop.IBindingSet; import com.bigdata.bop.IVariable; import com.bigdata.rdf.sparql.ast.eval.AbstractServiceFactoryBase; import com.bigdata.rdf.sparql.ast.service.BigdataServiceCall; import com.bigdata.rdf.sparql.ast.service.IServiceOptions; import com.bigdata.rdf.sparql.ast.service.OpenrdfNativeServiceOptions; import com.bigdata.rdf.sparql.ast.service.ServiceCallCreateParams; import com.bigdata.rdf.sparql.ast.service.ServiceNode; import com.bigdata.striterator.CloseableIteratorWrapper; import cutthecrap.utils.striterators.ICloseableIterator; /** * Mock service reports the solutions provided in the constructor. * <p> * Note: This can not be used to test complex queries because the caller needs * to know the order in which the query will be evaluated in order to know the * correct response for the mock service. */ public class BigdataNativeMockServiceFactory extends AbstractServiceFactoryBase { private final OpenrdfNativeServiceOptions serviceOptions = new OpenrdfNativeServiceOptions(); private final List<IBindingSet> serviceSolutions; public BigdataNativeMockServiceFactory(final List<IBindingSet> serviceSolutions) { this.serviceSolutions = serviceSolutions; } @Override public BigdataServiceCall create(final ServiceCallCreateParams params) { TestBigdataNativeServiceEvaluation.assertNotNull(params); TestBigdataNativeServiceEvaluation.assertNotNull(params.getTripleStore()); TestBigdataNativeServiceEvaluation.assertNotNull(params.getServiceNode()); return new MockBigdataServiceCall(); } @Override public IServiceOptions getServiceOptions() { return serviceOptions; } private class MockBigdataServiceCall implements BigdataServiceCall { @Override public ICloseableIterator<IBindingSet> call( final IBindingSet[] bindingSets) { TestBigdataNativeServiceEvaluation.assertNotNull(bindingSets); // System.err.println("ServiceCall: in="+Arrays.toString(bindingSets)); // // System.err.println("ServiceCall: out="+serviceSolutions); return new CloseableIteratorWrapper<IBindingSet>( serviceSolutions.iterator()); } @Override public IServiceOptions getServiceOptions() { return serviceOptions; } } }