Skip to content

Instantly share code, notes, and snippets.

@afs
Last active June 8, 2020 09:08
Show Gist options
  • Save afs/a8dfe6680324110bdb675190f9c73035 to your computer and use it in GitHub Desktop.
Save afs/a8dfe6680324110bdb675190f9c73035 to your computer and use it in GitHub Desktop.
Example of a custom SPARQL function used in Fuseki.
/*
* Copyright 2018 Andy Seaborne
*
* Licensed 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 fuseki;
import org.apache.jena.atlas.lib.StrUtils;
import org.apache.jena.atlas.logging.LogCtl;
import org.apache.jena.fuseki.FusekiLib;
import org.apache.jena.fuseki.embedded.FusekiServer;
import org.apache.jena.fuseki.system.FusekiLogging;
import org.apache.jena.query.QueryExecution;
import org.apache.jena.query.ResultSet;
import org.apache.jena.query.ResultSetFormatter;
import org.apache.jena.rdfconnection.RDFConnection;
import org.apache.jena.rdfconnection.RDFConnectionFactory;
import org.apache.jena.sparql.core.DatasetGraph;
import org.apache.jena.sparql.core.DatasetGraphFactory;
import org.apache.jena.sparql.expr.NodeValue;
import org.apache.jena.sparql.function.FunctionBase1;
import org.apache.jena.sparql.function.FunctionRegistry;
/**
* Add a function to the global function registry.
* Start up a fuseki server.
* Use the function.
*/
public class FuFunctionEx {
/** Our function */
public static class MyFunction extends FunctionBase1 {
@Override
public NodeValue exec(NodeValue v) {
if ( v.isNumber() )
return NodeValue.makeString("number");
return NodeValue.makeString("not a number");
}
}
public static void main(String...a) {
FusekiLogging.setLogging();
// Register the function
FunctionRegistry ref = FunctionRegistry.get();
ref.put("http://my/num", MyFunction.class);
int PORT = FusekiLib.choosePort();
// Some empty dataset
DatasetGraph dsg = DatasetGraphFactory.createTxnMem();
FusekiServer server = FusekiServer.create()
.setPort(PORT)
.add("/ds", dsg)
.build();
server.start();
// Test query.
String queryString = StrUtils.strjoinNL(
"SELECT * { "
, " VALUES ?Z { 123 'abc'}"
, " BIND (<http://my/num>(?Z) AS ?X )"
,"}"
);
try {
String url = "http://localhost:"+PORT+"/ds";
// Connect to the server and execute the query.
try ( RDFConnection conn = RDFConnectionFactory.connect(url) ) {
// Using Java8 features.
conn.queryResultSet(queryString, ResultSetFormatter::out);
// Without Java8 features
try ( QueryExecution qExec = conn.query(queryString) ) {
ResultSet rs = qExec.execSelect();
ResultSetFormatter.out(rs);
}
}
} catch (Exception ex) {
ex.printStackTrace();
} finally { server.stop(); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment