/** 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 19, 2012 */ package com.bigdata.gom.om; import java.util.List; import org.apache.log4j.Logger; import org.openrdf.model.Statement; import org.openrdf.query.BindingSet; import org.openrdf.query.GraphQueryResult; import org.openrdf.query.QueryEvaluationException; import org.openrdf.query.TupleQueryResult; import com.bigdata.rdf.model.BigdataValueFactoryImpl; import com.bigdata.rdf.sail.Sesame2BigdataIterator; import com.bigdata.rdf.sail.webapp.client.IPreparedGraphQuery; import com.bigdata.rdf.sail.webapp.client.IPreparedTupleQuery; import com.bigdata.rdf.sail.webapp.client.RemoteRepository; import com.bigdata.rdf.sail.webapp.client.RemoteRepository.AddOp; import com.bigdata.rdf.sail.webapp.client.RemoteRepository.RemoveOp; import cutthecrap.utils.striterators.ICloseableIterator; /** * Remote {@link IObjectManager} using the <a href= * "https://sourceforge.net/apps/mediawiki/bigdata/index.php?title=NanoSparqlServer" * > NanoSparqlServer REST API </a> to communicate with the database. * * @author <a href="mailto:martyncutcher@users.sourceforge.net">Martyn Cutcher</a> * @author <a href="mailto:thompsonbry@users.sourceforge.net">Bryan Thompson</a> */ public class NanoSparqlObjectManager extends ObjectMgrModel { private static final Logger log = Logger .getLogger(NanoSparqlObjectManager.class); private final RemoteRepository m_repo; public NanoSparqlObjectManager(final RemoteRepository repo, final String namespace) { super(repo.getSparqlEndPoint(), BigdataValueFactoryImpl .getInstance(namespace)); m_repo = repo; } // @Override // public void close() { // super.close(); // // m_repo.close(); // } @Override public ICloseableIterator<BindingSet> evaluate(final String query) { try { // Setup the query. final IPreparedTupleQuery q = m_repo.prepareTupleQuery(query); // Note: evaluate() runs asynchronously and must be closed(). final TupleQueryResult res = q.evaluate(); // Will close the TupleQueryResult. return new Sesame2BigdataIterator<BindingSet, QueryEvaluationException>( res); } catch (Exception ex) { throw new RuntimeException("query=" + query, ex); } } @Override public void execute(String updateStr) { // TODO Auto-generated method stub } @Override public boolean isPersistent() { return true; } @Override public ICloseableIterator<Statement> evaluateGraph(final String query) { try { // Setup the query. final IPreparedGraphQuery q = m_repo.prepareGraphQuery(query); // Note: evaluate() runs asynchronously and must be closed(). final GraphQueryResult res = q.evaluate(); // Will close the GraphQueryResult. return new Sesame2BigdataIterator<Statement, QueryEvaluationException>( res); } catch (Exception ex) { throw new RuntimeException("query=" + query, ex); } } @Override protected void flushStatements(final List<Statement> m_inserts, final List<Statement> m_removes) { // handle batch removes try { final RemoveOp rop = m_removes.size() > 0 ? new RemoveOp(m_removes) : null; final AddOp iop = m_inserts.size() > 0 ? new AddOp(m_inserts) : null; if (rop != null && iop != null) { // Execute update. m_repo.update(rop, iop); } else if (iop != null) { // Execute add m_repo.add(iop); } else if (rop != null) { // Execute remove. m_repo.remove(rop); } } catch (Exception e) { throw new RuntimeException("Unable to flush statements", e); } } }