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

org.apache.jena.rdflink.RDFLinkFuseki Maven / Gradle / Ivy

/*
 * 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.jena.rdflink;

import java.net.http.HttpClient;

import org.apache.jena.riot.Lang;
import org.apache.jena.riot.RDFFormat;
import org.apache.jena.riot.resultset.ResultSetLang;
import org.apache.jena.sparql.core.Transactional;
import org.apache.jena.sparql.exec.http.QuerySendMode;
import org.apache.jena.sparql.exec.http.UpdateSendMode;

/**
 * Implementation of the {@link RDFLink} interface for connecting to an Apache Jena Fuseki.
 * 

* This adds the ability to work with blank nodes across the network. */ public class RDFLinkFuseki extends RDFLinkHTTP { /** * Create a connection builder which is initialized for the default Fuseki * configuration. The application must call * {@link RDFLinkHTTPBuilder#destination(String)} to set the URL of the remote * dataset. * @return RDFLinkRemoteBuilder */ public static RDFLinkHTTPBuilder newBuilder() { return setupForFuseki(RDFLinkHTTP.newBuilder()); } /** * Create a connection builder which is initialized from an existing {@code RDFLinkFuseki}. * @param other The RDFLinkFuseki to clone. * @return RDFLinkRemoteBuilder */ public static RDFLinkHTTPBuilder from(RDFLinkFuseki other) { return setupCreator(RDFLinkHTTP.from(other)); } /** Fuseki settings */ private static RDFLinkHTTPBuilder setupForFuseki(RDFLinkHTTPBuilder builder) { String ctRDFThrift = Lang.RDFTHRIFT.getHeaderString(); String acceptHeaderSPARQL = String.join("," , ResultSetLang.RS_Thrift.getHeaderString() , ResultSetLang.RS_JSON.getHeaderString()+";q=0.9" , Lang.RDFTHRIFT.getHeaderString()); return builder .quadsFormat(RDFFormat.RDF_THRIFT) .triplesFormat(RDFFormat.RDF_THRIFT) .acceptHeaderGraph(ctRDFThrift) .acceptHeaderDataset(ctRDFThrift) .acceptHeaderSelectQuery(ResultSetLang.RS_Thrift.getHeaderString()) .acceptHeaderAskQuery(ResultSetLang.RS_JSON.getHeaderString()) .acceptHeaderQuery(acceptHeaderSPARQL) .parseCheckSPARQL(false) // Create object of this class. .creator((b)->fusekiMaker(b)); } private static RDFLinkHTTPBuilder setupCreator(RDFLinkHTTPBuilder builder) { return builder.creator((b)->fusekiMaker(b)); } static RDFLinkFuseki fusekiMaker(RDFLinkHTTPBuilder builder) { return new RDFLinkFuseki(builder); } protected RDFLinkFuseki(RDFLinkHTTPBuilder base) { this(base.txnLifecycle, base.httpClient, base.destination, base.queryURL, base.updateURL, base.gspURL, base.outputQuads, base.outputTriples, base.acceptDataset, base.acceptGraph, base.acceptSparqlResults, base.acceptSelectResult, base.acceptAskResult, base.parseCheckQueries, base.parseCheckUpdates, base.querySendMode, base.updateSendMode); } protected RDFLinkFuseki(Transactional txnLifecycle, HttpClient httpClient, String destination, String queryURL, String updateURL, String gspURL, RDFFormat outputQuads, RDFFormat outputTriples, String acceptDataset, String acceptGraph, String acceptSparqlResults, String acceptSelectResult, String acceptAskResult, boolean parseCheckQueries, boolean parseCheckUpdates, QuerySendMode querySendMode, UpdateSendMode updateSendMode) { super(txnLifecycle, httpClient, destination, queryURL, updateURL, gspURL, outputQuads, outputTriples, acceptDataset, acceptGraph, acceptSparqlResults, acceptSelectResult, acceptAskResult, parseCheckQueries, parseCheckUpdates, querySendMode, updateSendMode); } // Fuseki specific operations. // /** // * Return a {@link Model} that is proxy for a remote model in a Fuseki server. This // * support the model operations of accessing statements and changing the model. // *

// * This provide low level access to the remote data. The application will be working // * with and manipulating the remote model directly which may involve a significant // * overhead for every {@code Model} API operation. // *

// * Warning: This is not performant for bulk changes. // *

// * Getting the model, using {@link #fetch()}, which copies the whole model into a local // * {@code Model} object, maniupulating it and putting it back with {@link #put(Model)} // * provides another way to work with remote data. // * // * @return Graph // */ // public Graph getGraphProxy() { return null; } // public Graph getGraphProxy(String graphName) { return null; } // // public DatasetGraph getDatasetProxy() { return null; } // // // Or remote RDFStorage? // public Stream findStream(Node s, Node p , Node o) { return null; } // public Stream findStream(Node g, Node s, Node p , Node o) { return null; } // Send Patch }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy