Class | Redland::Statement |
In: | rdf/redland/statement.rb |
Parent: | Object |
Redland Statement (triple class). The main means of manipulating statements is by the subject,predicate,and object properties
require 'rdf' Statement creation from nodes statement1 = Statement.new(node1,node2,node3) statement2 = Statement.new(:statement=>statement) if statement2.resource? puts "statement2.subject has uri #{statement2.subject.uri}"
statement | [R] | the internal librdf statement |
You shouldn‘t use this. Used internally for cleanup.
# File rdf/redland/statement.rb, line 70 def Statement.create_finalizer(statement) proc {|id| Redland::librdf_free_statement(statement) } end
create a new Statement with subject,predicate,and object the subject, predicate, and objects can be of class String or Uri.
# File rdf/redland/statement.rb, line 25 def initialize(subject=nil,predicate=nil,object=nil,model=nil) @model = model if subject.class == Hash if subject.key?(:from_object) @statement = Redland.librdf_new_statement_from_statement(subject[:from_object]) @model = subject[:model] end else unless subject s = nil else if (subject.class == Uri)|| (subject.class == String) subject = Node.new(subject) end s = Redland.librdf_new_node_from_node(subject.node) end unless predicate p = nil else if (predicate.class == Uri) || (predicate.class == String) predicate = Node.new(predicate) end p = Redland.librdf_new_node_from_node(predicate.node) end unless object o = nil else if (object.class == Uri) || (object.class == String) object = Node.new(object) end o = Redland.librdf_new_node_from_node(object.node) end @statement = Redland.librdf_new_statement_from_nodes($world.world,s,p,o) end raise RedlandError.new("Statement construction failed") if !@statement ObjectSpace.define_finalizer(self,Statement.create_finalizer(@statement)) end
Equivalency. Only works for comparing two Statements
# File rdf/redland/statement.rb, line 140 def ==(other) return (Redland.librdf_statement_equals(self.statement,other.statement) != 0) end
return the object of the statement triple. The return value is either a Literal or Resource depending if object returned from the store is literal or not
# File rdf/redland/statement.rb, line 94 def object() object_node = Redland.librdf_statement_get_object(self.statement) return Literal.from_node(object_node) if is_literal?(object_node) return Resource.new(object_node,@model) end
(C) Copyright 2004-2011 Dave Beckett, (C) Copyright 2004-2005 University of Bristol