Skip to content

Commit

Permalink
Depend on Sesame classes within legacy grafter.* namespaces.
Browse files Browse the repository at this point in the history
Issue #148 - Update the imports within the deprecated
grafter.rdf.repository.registry and grafter.rdf.templater namespaces
to use the org.openrdf.* Sesame classes instead of those from RDF4j.

This allows clients wishing to use the legacy namespaces to exclude
all RDF4j dependencies.
  • Loading branch information
lkitching committed Aug 28, 2019
1 parent c5a99c2 commit 4dbddf7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 23 deletions.
43 changes: 21 additions & 22 deletions deprecated/src/grafter/rdf/repository/registry.clj
Expand Up @@ -18,11 +18,10 @@
(:require [clojure.string :as str]
[clojure.tools.logging :as log])
(:import [java.nio.charset Charset]
[org.eclipse.rdf4j.rio RDFParserRegistry RDFFormat]
[org.eclipse.rdf4j.query.resultio TupleQueryResultFormat BooleanQueryResultFormat
[org.openrdf.rio RDFParserRegistry RDFFormat]
[org.openrdf.query.resultio TupleQueryResultFormat BooleanQueryResultFormat
TupleQueryResultParserRegistry
BooleanQueryResultParserRegistry]
[org.eclipse.rdf4j.query.resultio.text.csv SPARQLResultsCSVParserFactory]))
BooleanQueryResultParserRegistry]))


(defn parser-registries
Expand Down Expand Up @@ -88,31 +87,31 @@

(registered-parser-factories) ;; =>

{:select #{org.eclipse.rdf4j.query.resultio.sparqlxml.SPARQLResultsXMLParserFactory
org.eclipse.rdf4j.query.resultio.text.csv.SPARQLResultsCSVParserFactory
org.eclipse.rdf4j.query.resultio.sparqljson.SPARQLResultsJSONParserFactory
org.eclipse.rdf4j.query.resultio.text.tsv.SPARQLResultsTSVParserFactory
org.eclipse.rdf4j.query.resultio.binary.BinaryQueryResultParserFactory},
:construct #{org.eclipse.rdf4j.rio.ntriples.NTriplesParserFactory
org.eclipse.rdf4j.rio.trix.TriXParserFactory
org.eclipse.rdf4j.rio.jsonld.JSONLDParserFactory
org.eclipse.rdf4j.rio.trig.TriGParserFactory
org.eclipse.rdf4j.rio.binary.BinaryRDFParserFactory
org.eclipse.rdf4j.rio.n3.N3ParserFactory
org.eclipse.rdf4j.rio.rdfjson.RDFJSONParserFactory
org.eclipse.rdf4j.rio.rdfxml.RDFXMLParserFactory
org.eclipse.rdf4j.rio.nquads.NQuadsParserFactory},
:ask #{org.eclipse.rdf4j.query.resultio.sparqljson.SPARQLBooleanJSONParserFactory
org.eclipse.rdf4j.query.resultio.text.BooleanTextParserFactory
org.eclipse.rdf4j.query.resultio.sparqlxml.SPARQLBooleanXMLParserFactory}}
{:select #{org.openrdf.query.resultio.sparqlxml.SPARQLResultsXMLParserFactory
org.openrdf.query.resultio.text.csv.SPARQLResultsCSVParserFactory
org.openrdf.query.resultio.sparqljson.SPARQLResultsJSONParserFactory
org.openrdf.query.resultio.text.tsv.SPARQLResultsTSVParserFactory
org.openrdf.query.resultio.binary.BinaryQueryResultParserFactory},
:construct #{org.openrdf.rio.ntriples.NTriplesParserFactory
org.openrdf.rio.trix.TriXParserFactory
org.openrdf.rio.jsonld.JSONLDParserFactory
org.openrdf.rio.trig.TriGParserFactory
org.openrdf.rio.binary.BinaryRDFParserFactory
org.openrdf.rio.n3.N3ParserFactory
org.openrdf.rio.rdfjson.RDFJSONParserFactory
org.openrdf.rio.rdfxml.RDFXMLParserFactory
org.openrdf.rio.nquads.NQuadsParserFactory},
:ask #{org.openrdf.query.resultio.sparqljson.SPARQLBooleanJSONParserFactory
org.openrdf.query.resultio.text.BooleanTextParserFactory
org.openrdf.query.resultio.sparqlxml.SPARQLBooleanXMLParserFactory}}


;; Once you have the datastructure above, you can adjust it as
;; desired and reset the registries e.g.

(let [updated-registries (update (registered-parser-factories)
;; Force removal of TurtleParser
:construct #(disj % org.eclipse.rdf4j.rio.turtle.TurtleParserFactory))]
:construct #(disj % org.openrdf.rio.turtle.TurtleParserFactory))]

;; reset the registered parsers
(register-parser-factories! updated-registries))
Expand Down
2 changes: 1 addition & 1 deletion deprecated/src/grafter/rdf/templater.clj
Expand Up @@ -8,7 +8,7 @@
(:require [grafter.rdf :as rdf]
[grafter.url :as url]
[grafter.rdf.protocols :refer [->Triple ->Quad]])
(:import [org.eclipse.rdf4j.model URI]))
(:import [org.openrdf.model URI]))

(defn- valid-uri? [node]
(let [types [java.lang.String java.net.URL java.net.URI URI]]
Expand Down

0 comments on commit 4dbddf7

Please sign in to comment.