编写Jena规则以使用某些特定属性值向属性添加属性?

时间:2015-02-11 15:55:09

标签: java rdf jena jena-rules

我试图写一个Jena规则,其前提条件匹配网络带宽为450 ^^ xsd:float的位置。我已经尝试了以下两条规则。第一个给我没有结果。第二个匹配标记为Gate 23 Gate 15的网络,但只有Gate 15应匹配。

[AdaptedModel: 
 (?d2 rdf:type perSys:NetworkCharacteristics),
 (?d2 perSys:Bandwidth '450'^^xsd:float)
 (?d2 perSys:SpecificLocation ?a)
->
 (?d2 perSys:AdaptedSpecificLocation ?a)]
[AdaptedModel: 
 (?d2 rdf:type perSys:NetworkCharacteristics),
 (?d2 perSys:Bandwidth '450'^^xsd:float)
 (?d3 perSys:SpecificLocation ?a)
->
 (?d3 perSys:AdaptedSpecificLocation ?a)]

这是我的RDF数据:

<rdf:RDF
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:perSys="http://localhost:8080/NetworkContextWS/onto/NetworkContextDescription#">
  <perSys:PervasiveContext>
    <perSys:HasNetworkContext>
      <perSys:NetworkContext rdf:about="file:///home/taylorj/n1111">
        <perSys:Rules>
          <perSys:NetworkSecurity>
            <perSys:NetworkSecurityState rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Open Network</perSys:NetworkSecurityState>
            <perSys:NetworkKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >No Key</perSys:NetworkKey>
          </perSys:NetworkSecurity>
        </perSys:Rules>
        <perSys:Network>
          <perSys:NetworkCharacteristics>
            <perSys:SubNetworkType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >HSDPA</perSys:SubNetworkType>
            <perSys:NetworkState rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >CONNECTED</perSys:NetworkState>
            <perSys:Bandwidth rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >450</perSys:Bandwidth>
            <perSys:LinkSpeed rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >65</perSys:LinkSpeed>
            <perSys:NetworkAvailability rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Available</perSys:NetworkAvailability>
            <perSys:NetworkName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >AF23_WI-FI_9F1B</perSys:NetworkName>
          </perSys:NetworkCharacteristics>
        </perSys:Network>
        <perSys:Network>
          <perSys:NetworkTraficStats>
            <perSys:NumberBytesReceived rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >15599522</perSys:NumberBytesReceived>
            <perSys:NumberPacketsReceived rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
            >24922</perSys:NumberPacketsReceived>
            <perSys:NumberBytesTransmited rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
            >4111415</perSys:NumberBytesTransmited>
            <perSys:NumberPacketsTransmited rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
            >26455</perSys:NumberPacketsTransmited>
            <perSys:NetworkUpload rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >0</perSys:NetworkUpload>
            <perSys:NetworkType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Connected</perSys:NetworkType>
            <perSys:NetworkDownload rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >1</perSys:NetworkDownload>
            <perSys:TotalData rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >1</perSys:TotalData>
          </perSys:NetworkTraficStats>
        </perSys:Network>
        <perSys:Time>
          <perSys:TimeCharacteristics>
            <perSys:ConnexionTime rdf:datatype="http://www.w3.org/2001/XMLSchema#time"
            >15:00:00</perSys:ConnexionTime>
            <perSys:ConnexionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date"
            >2015-02-06</perSys:ConnexionDate>
          </perSys:TimeCharacteristics>
        </perSys:Time>
        <perSys:Preferences>
          <perSys:PreferencesCharacteristics>
            <perSys:PreferencesName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >preferencesName</perSys:PreferencesName>
            <perSys:PreferencesType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >preferencesValue</perSys:PreferencesType>
          </perSys:PreferencesCharacteristics>
        </perSys:Preferences>
        <perSys:Device>
          <perSys:DeviceCharacteristics>
            <perSys:DeviceName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Bekri-Laptop</perSys:DeviceName>
            <perSys:DeviceType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Laptop</perSys:DeviceType>
          </perSys:DeviceCharacteristics>
        </perSys:Device>
        <perSys:Location>
          <perSys:LocationCharacteristics>
            <perSys:SpecificLocation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Gate 23</perSys:SpecificLocation>
            <perSys:FeatureName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Pittsburgh International Airport</perSys:FeatureName>
          </perSys:LocationCharacteristics>
        </perSys:Location>
      </perSys:NetworkContext>
    </perSys:HasNetworkContext>
    <perSys:HasNetworkContext>
      <perSys:NetworkContext rdf:about="file:///home/taylorj/lm333">
        <perSys:Rules>
          <perSys:NetworkSecurity>
            <perSys:NetworkSecurityState rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Open Network</perSys:NetworkSecurityState>
            <perSys:NetworkKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >No Key</perSys:NetworkKey>
          </perSys:NetworkSecurity>
        </perSys:Rules>
        <perSys:Network>
          <perSys:NetworkCharacteristics>
            <perSys:SubNetworkType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >HSDPA</perSys:SubNetworkType>
            <perSys:NetworkState rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >CONNECTED</perSys:NetworkState>
            <perSys:Bandwidth rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >256</perSys:Bandwidth>
            <perSys:LinkSpeed rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >65</perSys:LinkSpeed>
            <perSys:NetworkAvailability rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Available</perSys:NetworkAvailability>
            <perSys:NetworkName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >AF23_WI-FI_9F1B</perSys:NetworkName>
          </perSys:NetworkCharacteristics>
        </perSys:Network>
        <perSys:Network>
          <perSys:NetworkTraficStats>
            <perSys:NumberBytesReceived rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >15599522</perSys:NumberBytesReceived>
            <perSys:NumberPacketsReceived rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
            >24922</perSys:NumberPacketsReceived>
            <perSys:NumberBytesTransmited rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
            >4111415</perSys:NumberBytesTransmited>
            <perSys:NumberPacketsTransmited rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
            >26455</perSys:NumberPacketsTransmited>
            <perSys:NetworkUpload rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >0</perSys:NetworkUpload>
            <perSys:NetworkType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Connected</perSys:NetworkType>
            <perSys:NetworkDownload rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >1</perSys:NetworkDownload>
            <perSys:TotalData rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
            >1</perSys:TotalData>
          </perSys:NetworkTraficStats>
        </perSys:Network>
        <perSys:Time>
          <perSys:TimeCharacteristics>
            <perSys:ConnexionTime rdf:datatype="http://www.w3.org/2001/XMLSchema#time"
            >15:00:00</perSys:ConnexionTime>
            <perSys:ConnexionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date"
            >2015-02-06</perSys:ConnexionDate>
          </perSys:TimeCharacteristics>
        </perSys:Time>
        <perSys:Preferences>
          <perSys:PreferencesCharacteristics>
            <perSys:PreferencesName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >preferencesName</perSys:PreferencesName>
            <perSys:PreferencesType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >preferencesValue</perSys:PreferencesType>
          </perSys:PreferencesCharacteristics>
        </perSys:Preferences>
        <perSys:Device>
          <perSys:DeviceCharacteristics>
            <perSys:DeviceName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Bekri-Laptop</perSys:DeviceName>
            <perSys:DeviceType rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Laptop</perSys:DeviceType>
          </perSys:DeviceCharacteristics>
        </perSys:Device>
        <perSys:Location>
          <perSys:LocationCharacteristics>
            <perSys:SpecificLocation rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Gate 15</perSys:SpecificLocation>
            <perSys:FeatureName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
            >Pittsburgh International Airport</perSys:FeatureName>
          </perSys:LocationCharacteristics>
        </perSys:Location>
      </perSys:NetworkContext>
    </perSys:HasNetworkContext>
  </perSys:PervasiveContext>
</rdf:RDF>

1 个答案:

答案 0 :(得分:0)

第二条规则错误

您的第二条规则被破坏,因为d2和d3变量的值之间没有关联:

[AdaptedModel: 
(?d2 rdf:type perSys:NetworkCharacteristics),
(?d2 perSys:Bandwidth '450'^^xsd:float)
(?d3 perSys:SpecificLocation ?a)
->
(?d3 perSys:AdaptedSpecificLocation ?a)]

这粗略地说:

  

如果某些X的类型为NetworkCharacterstics且带宽为450,而某些Y具有特定的位置Z,则 Y具有适应的特定位置Z.

X(约束条件约为450)之间没有任何联系,因此具有特定位置的所有内容都会连接到适合的特定位置。

为什么第一条规则不起作用,以及如何解决它

让我们看看数据中出现450的部分,以及perSys:SpecificLocations的出现位置。在N3序列化中更容易阅读:

<.../n1111>
        a                   perSys:NetworkContext ;
        perSys:Location     [ a                        perSys:LocationCharacteristics ;
                              perSys:FeatureName       "Pittsburgh International Airport"^^<http://www.w3.org/2001/XMLSchema#string> ;
                              perSys:SpecificLocation  "Gate 23"^^<http://www.w3.org/2001/XMLSchema#string>
                            ] ;
        perSys:Network      [ a                           perSys:NetworkCharacteristics ;
                              perSys:Bandwidth            "450"^^<http://www.w3.org/2001/XMLSchema#float> ;
                              perSys:LinkSpeed            "65"^^<http://www.w3.org/2001/XMLSchema#float> ;
                              perSys:NetworkAvailability  "Available"^^<http://www.w3.org/2001/XMLSchema#string> ;
                              perSys:NetworkName          "AF23_WI-FI_9F1B"^^<http://www.w3.org/2001/XMLSchema#string> ;
                              perSys:NetworkState         "CONNECTED"^^<http://www.w3.org/2001/XMLSchema#string> ;
                              perSys:SubNetworkType       "HSDPA"^^<http://www.w3.org/2001/XMLSchema#string>
                            ] ;

具有带宽450的东西是一个空白节点,并且具有类型perSys:NetworkCharacteristics,因此它可以匹配规则的前两部分。但它没有perSys:SpecificLocation,因此您无法匹配第三部分。具有perSys:SpecificLocation的东西是另一个空白节点。

我不知道你究竟想把perSys:AdaptedSpecificLocation三重奏放在哪里(也就是说,我不知道主题应该是什么),但是你需要将数据的形状与某些东西相匹配像这样:

[(?context perSys:Location ?location)
 (?location perSys:SpecificLocation ?specificLocation)
 (?context perSys:Network ?network)
 (?network perSys:Bandwidth '450'^^xsd:float)
->
 (?location perSys:AdaptedSpecificLocation ?specificLocation)]

如果您要绘制图形结构,它将如下所示。实线是数据中的关系,虚线是规则推断的关系。

depiction of rule

看到你必须匹配整个数据结构?有一个上下文,它有一个位置和一个网络。该位置具有特定位置,并且网络具有带宽。当所有这些匹配时,您可以说该位置具有适应的特定位置。这就是你必须“连接”变量的方法;他们需要以某种方式相互联系。