/** Copyright (C) SYSTAP, LLC 2006-2015. All rights reserved. Contact: SYSTAP, LLC 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 */ /** * See <a href="http://wiki.blazegraph.com/wiki/index.php/Sesame_API_remote_mode">Sesame API remote mode</a> */ package sample.sesame.remote; import java.io.IOException; import java.io.InputStream; import java.util.HashSet; import java.util.Map; import java.util.Properties; import java.util.Set; import com.bigdata.rdf.sail.webapp.SD; import com.bigdata.rdf.sail.webapp.client.ConnectOptions; import com.bigdata.rdf.sail.webapp.client.JettyResponseListener; import com.bigdata.rdf.sail.webapp.client.RemoteRepository; import com.bigdata.rdf.sail.webapp.client.RemoteRepositoryManager; import org.apache.log4j.Logger; import org.openrdf.model.Statement; import org.openrdf.query.BindingSet; import org.openrdf.query.GraphQueryResult; import org.openrdf.query.TupleQueryResult; import org.openrdf.rio.RDFFormat; public class SampleBlazegraphSesameRemote { protected static final Logger log = Logger .getLogger(SampleBlazegraphSesameRemote.class); private static final String serviceURL = "http://localhost:9999/bigdata"; public static void main(String[] args) throws Exception { final RemoteRepositoryManager repo = new RemoteRepositoryManager( serviceURL, false /* useLBS */); try { JettyResponseListener response = getStatus(repo); log.info(response.getResponseBody()); // create a new namespace if not exists final String namespace = "newNamespace"; final Properties properties = new Properties(); properties.setProperty("com.bigdata.rdf.sail.namespace", namespace); if (!namespaceExists(repo, namespace)) { log.info(String.format("Create namespace %s...", namespace)); repo.createRepository(namespace, properties); log.info(String.format("Create namespace %s done", namespace)); } else { log.info(String.format("Namespace %s already exists", namespace)); } //get properties for namespace log.info(String.format("Property list for namespace %s", namespace)); response = getNamespaceProperties(repo, namespace); log.info(response.getResponseBody()); /* * Load data from file located in the resource folder * src/main/resources/data.n3 */ final String resource = "/data.n3"; loadDataFromResource(repo, namespace, resource); // execute query final TupleQueryResult result = repo.getRepositoryForNamespace(namespace) .prepareTupleQuery("SELECT * {?s ?p ?o} LIMIT 100") .evaluate(); //result processing try { while (result.hasNext()) { final BindingSet bs = result.next(); log.info(bs); } } finally { result.close(); } } finally { repo.close(); } } /* * Status request. */ private static JettyResponseListener getStatus(final RemoteRepositoryManager repo) throws Exception { final ConnectOptions opts = new ConnectOptions(serviceURL + "/status"); opts.method = "GET"; return repo.doConnect(opts); } /* * Check namespace already exists. */ private static boolean namespaceExists(final RemoteRepositoryManager repo, final String namespace) throws Exception { final GraphQueryResult res = repo.getRepositoryDescriptions(); try { while (res.hasNext()) { final Statement stmt = res.next(); if (stmt.getPredicate() .toString() .equals(SD.KB_NAMESPACE.stringValue())) { if (namespace.equals(stmt.getObject().stringValue())) { return true; } } } } finally { res.close(); } return false; } /* * Get namespace properties. */ private static JettyResponseListener getNamespaceProperties( final RemoteRepositoryManager repo, final String namespace) throws Exception { final ConnectOptions opts = new ConnectOptions(serviceURL + "/namespace/" + namespace + "/properties"); opts.method = "GET"; return repo.doConnect(opts); } /* * Load data into a namespace. */ private static void loadDataFromResource(final RemoteRepositoryManager repo, final String namespace, final String resource) throws Exception { final InputStream is = SampleBlazegraphSesameRemote.class .getResourceAsStream(resource); if (is == null) { throw new IOException("Could not locate resource: " + resource); } try { repo.getRepositoryForNamespace(namespace).add( new RemoteRepository.AddOp(is, RDFFormat.N3)); } finally { is.close(); } } }