Command line interface based RDF processing toolkit to run sequences of SPARQL statements ad-hoc on RDF datasets, streams of bindings and streams of named graphs with support for processing JSON, CSV and XML using function extensions
stopped working after consolidating lots of logic into the SparqlScriptProcessor.
Although the SparqlScriptProcessor is configured with a parser that is wrapped with a post processor to perform environment substitution, the SparqlScriptProcessor invokes SparqlStmtUtils.processFile(...) which internally creates a new parser instance.
Hence,processFileneeds to be changed to accept a parser as an argument.
Environment sustitution for IRIs such as in
stopped working after consolidating lots of logic into the SparqlScriptProcessor.
Although the SparqlScriptProcessor is configured with a parser that is wrapped with a post processor to perform environment substitution, the SparqlScriptProcessor invokes
SparqlStmtUtils.processFile(...)
which internally creates a new parser instance.Hence,
processFile
needs to be changed to accept a parser as an argument.