NAME
RDF::Query::Model::Redland - An RDF::Query::Model backend for interfacing with a Redland model.
VERSION
This document describes RDF::Query::Model::Redland version 2.200, released 6 August 2009.
METHODS
new ( $model )
-
Returns a new bridge object for the specified
$model
. meta ()
-
Returns a hash reference with information (class names) about the underlying backend. The keys of this hash are 'class', 'model', 'statement', 'node', 'resource', 'literal', and 'blank'.
'class' is the name of the bridge class. All other keys refer to backend classes. For example, 'node' is the backend superclass of all node objects (literals, resources and blanks).
model ()
-
Returns the underlying model object.
add_uri ( $uri, $named, $format )
-
Addsd the contents of the specified
$uri
to the model. If$named
is true, the data is added to the model using$uri
as the named context. add_string ( $data, $base_uri, $named, $format )
-
Adds the contents of
$data
to the model. If$named
is true, the data is added to the model using$base_uri
as the named context. statement_method_map ()
-
Returns an ordered list of method names that when called against a statement object will return the subject, predicate, and object objects, respectively.
subject ( $statement )
-
Returns the subject node of the specified
$statement
. predicate ( $statement )
-
Returns the predicate node of the specified
$statement
. object ( $statement )
-
Returns the object node of the specified
$statement
. _get_statements ($subject, $predicate, $object)
-
Returns a stream object of all statements matching the specified subject, predicate and objects. Any of the arguments may be undef to match any value.
_get_named_statements ( $subject, $predicate, $object, $context )
-
Returns a stream object of all statements matching the specified subject, predicate, object and context. Any of the arguments may be undef to match any value.
add_statement ( $statement )
-
Adds the specified
$statement
to the underlying model. remove_statement ( $statement )
-
Removes the specified
$statement
from the underlying model. supports ($feature)
-
Returns true if the underlying model supports the named
$feature
. Possible features include:* named_graph * node_counts * temp_model * xml
node_count ( $subj, $pred, $obj )
-
Returns a number representing the frequency of statements in the model matching the given triple. This number is used in cost analysis for query optimization, and has a range of [0, 1] where zero represents no matching triples in the model and one represents matching all triples in the model.
as_xml ($stream)
-
Returns an RDF/XML serialization of the results graph.
model_as_stream
-
Returns an iterator object containing every statement in the model.
debug
-
Prints debugging information about the model (including all statements in the model) to STDERR.