JENA 中 SPARQL BIND 表达式中的自定义函数

Custom functions in a SPARQL BIND expression in JENA

我想在 Jena 的 BIND 表达式中使用自定义函数,但它不起作用。

举个小例子,我有一个 Owl ontology 和一个 Human class,具有以下 int 数据属性:

我的查询如下:

prefix human: <http://www.semanticweb.org/scdsahv/ontologies/2021/0/human#>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
prefix fn: <http://www.w3.org/2005/xpath-functions#>
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix da: <http://www.my.namespace/test>
SELECT ?elt ?value
WHERE {
?elt rdf:type human:Human .
?elt human:Age ?age .
?elt human:BirthDate ?birthDate .
BIND (da:testFunction(?age, ?birthDate) as ?value)
}

我使用了关于过滤函数的 Jena 文档here

所以我创建了一个自定义工厂:

public class MyFactory implements FunctionFactory {
   @Override
   public Function create(String fctName) {
      return new testFunction();
   }
}

函数代码如下:

public class testFunction extends FunctionBase2 {
   public testFunction() {
      super();
   }
   
   @Override
   public NodeValue exec(NodeValue nv, NodeValue nv1) {
      float f1 = nv.getFloat();
      float f2 = nv1.getFloat();
      float f = f1 + f2;
      return NodeValue.makeFloat(f);
   }
}

然后我注册了工厂:

MyFactory theFactory = new MyFactory();
FunctionRegistry.get().put("http://www.my.namespace/test#testFunction", theFactory);

我在耶拿执行查询时没有任何异常,但每个结果只包含 ?elt 元素,而不包含 ?value。在调试器中,我看到没有创建 testFunction 实例。我做错了什么?

当然,如果我使用相同的 BIND 表达式,但使用更简单的表达式,例如:

BIND (?age as ?value)

我的结果是 ?value

我的错误是:

prefix da: <http://www.my.namespace/test>

但应该是:

prefix da: <http://www.my.namespace/test#>