| RDF-Trine documentation | Contained in the RDF-Trine distribution. |
new ( $data )new_with_string ( $config )new_with_config ( \%config )new_with_object ( $object )nukeclass_by_name ( $name )temporary_storeget_pattern ( $bgp [, $context] )get_statements ($subject, $predicate, $object [, $context] )get_contextsadd_statement ( $statement [, $context] )remove_statement ( $statement [, $context])remove_statements ( $subject, $predicate, $object [, $context])count_statements ($subject, $predicate, $object)sizeetagsupports ( [ $feature ] )
RDF::Trine::Store - RDF triplestore base class
This document describes RDF::Trine::Store version 0.135
new ( $data )Returns a new RDF::Trine::Store object based on the supplied data value.
This constructor delegates to one of the following methods depending on the
value of $data:
* new_with_string if $data is not a reference
* new_with_config if $data is a HASH reference
* new_with_object if $data is a blessed object
new_with_string ( $config )Returns a new RDF::Trine::Store object based on the supplied configuration string. The format of the string specifies the Store subclass to be instantiated as well as any required constructor arguments. These are separated by a semicolon. An example configuration string for the DBI store would be:
DBI;mymodel;DBI:mysql:database=rdf;user;password
The format of the constructor arguments (everything after the first ';') is specific to the Store subclass.
new_with_config ( \%config )Returns a new RDF::Trine::Store object based on the supplied
configuration hashref. This requires the the Store subclass to be
supplied with a storetype key, while other keys are required by the
Store subclasses, please refer to each subclass for specific
documentation.
An example invocation for the DBI store may be:
my $store = RDF::Trine::Store->new_with_config({
storetype => 'DBI',
name => 'mymodel',
dsn => 'DBI:mysql:database=rdf',
username => 'dahut',
password => 'Str0ngPa55w0RD'
});
new_with_object ( $object )Returns a new RDF::Trine::Store object based on the supplied opaque $object.
If the $object is recognized by an available backend as being sufficient
to construct a store object, the store object will be returned. Otherwise undef
will be returned.
nukePermanently removes the store and its data.
class_by_name ( $name )Returns the class of the storage implementation with the given name.
For example, 'Memory' would return 'RDF::Trine::Store::Memory'.
temporary_storeReturns a new temporary triplestore (using appropriate default values).
get_pattern ( $bgp [, $context] )Returns a stream object of all bindings matching the specified graph pattern.
get_statements ($subject, $predicate, $object [, $context] )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_contextsReturns an RDF::Trine::Iterator over the RDF::Trine::Node objects comprising the set of contexts of the stored quads.
add_statement ( $statement [, $context] )Adds the specified $statement to the underlying model.
remove_statement ( $statement [, $context])Removes the specified $statement from the underlying model.
remove_statements ( $subject, $predicate, $object [, $context])Removes the specified $statement from the underlying model.
count_statements ($subject, $predicate, $object)Returns a count of all the statements matching the specified subject, predicate and objects. Any of the arguments may be undef to match any value.
sizeReturns the number of statements in the store.
etagIf the store has the capability and knowledge to support caching, returns a persistent token that will remain consistent as long as the store's data doesn't change. This token is acceptable for use as an HTTP ETag.
supports ( [ $feature ] )If $feature is specified, returns true if the feature is supported by the
store, false otherwise. If $feature is not specified, returns a list of
supported features.
Gregory Todd Williams <gwilliams@cpan.org>
Copyright (c) 2006-2010 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| RDF-Trine documentation | Contained in the RDF-Trine distribution. |
# RDF::Trine::Store # -----------------------------------------------------------------------------
package RDF::Trine::Store; use strict; use warnings; no warnings 'redefine'; use Data::Dumper; use Log::Log4perl; use Carp qw(carp croak confess); use Scalar::Util qw(blessed reftype); use Module::Load::Conditional qw[can_load]; use RDF::Trine::Store::DBI; use RDF::Trine::Store::Memory; use RDF::Trine::Store::Hexastore; use RDF::Trine::Store::SPARQL; ###################################################################### our ($VERSION, $HAVE_REDLAND, %STORE_CLASSES); BEGIN { $VERSION = '0.135'; if ($RDF::Redland::VERSION) { $HAVE_REDLAND = 1; } } ######################################################################
sub new { my $class = shift; my $data = shift; if (blessed($data)) { return $class->new_with_object($data); } elsif (ref($data)) { return $class->new_with_config($data); } else { return $class->new_with_string($data); } }
sub new_with_string { my $proto = shift; my $string = shift; if (defined($string)) { my ($subclass, $config) = split(/;/, $string, 2); my $class = join('::', 'RDF::Trine::Store', $subclass); if (can_load(modules => { $class => 0 }) and $class->can('_new_with_string')) { return $class->_new_with_string( $config ); } else { throw RDF::Trine::Error::UnimplementedError -text => "The class $class doesn't support the use of new_with_string"; } } else { throw RDF::Trine::Error::MethodInvocationError; } }
sub new_with_config { my $proto = shift; my $config = shift; if (defined($config)) { my $class = $config->{storeclass} || join('::', 'RDF::Trine::Store', $config->{storetype}); if ($class->can('_new_with_config')) { return $class->_new_with_config( $config ); } else { throw RDF::Trine::Error::UnimplementedError -text => "The class $class doesn't support the use of new_with_config"; } } else { throw RDF::Trine::Error::MethodInvocationError; } }
sub new_with_object { my $proto = shift; my $obj = shift; foreach my $class (keys %STORE_CLASSES) { if ($class->can('_new_with_object')) { my $s = $class->_new_with_object( $obj ); if ($s) { return $s; } } } return; }
sub nuke {}
sub class_by_name { my $proto = shift; my $name = shift; foreach my $class (keys %STORE_CLASSES) { if (lc($class) =~ m/::${name}$/i) { return $class; } } return; }
sub temporary_store { return RDF::Trine::Store::DBI->temporary_store(); }
sub get_pattern { my $self = shift; my $bgp = shift; my $context = shift; my @args = @_; my %args = @args; if ($bgp->isa('RDF::Trine::Statement')) { $bgp = RDF::Trine::Pattern->new($bgp); } my %iter_args; my @triples = $bgp->triples; my ($iter); if (1 == scalar(@triples)) { my $t = shift(@triples); my @nodes = $t->nodes; my $size = scalar(@nodes); my %vars; my @names = qw(subject predicate object context); foreach my $n (0 .. $#nodes) { if ($nodes[$n]->isa('RDF::Trine::Node::Variable')) { $vars{ $names[ $n ] } = $nodes[$n]->name; } } my $_iter = $self->get_statements( @nodes ); my @vars = values %vars; my $sub = sub { my $row = $_iter->next; return undef unless ($row); my %data = map { $vars{ $_ } => $row->$_() } (keys %vars); return RDF::Trine::VariableBindings->new( \%data ); }; $iter = RDF::Trine::Iterator::Bindings->new( $sub, \@vars ); } else { my $t = shift(@triples); my $rhs = $self->get_pattern( RDF::Trine::Pattern->new( $t ), $context, @args ); my $lhs = $self->get_pattern( RDF::Trine::Pattern->new( @triples ), $context, @args ); my @inner; while (my $row = $rhs->next) { push(@inner, $row); } my @results; while (my $row = $lhs->next) { RESULT: foreach my $irow (@inner) { my %keysa; my @keysa = keys %$irow; @keysa{ @keysa } = (1) x scalar(@keysa); my @shared = grep { exists $keysa{ $_ } } (keys %$row); foreach my $key (@shared) { my $val_a = $irow->{ $key }; my $val_b = $row->{ $key }; next unless (defined($val_a) and defined($val_b)); my $equal = $val_a->equal( $val_b ); unless ($equal) { next RESULT; } } my $jrow = { (map { $_ => $irow->{$_} } grep { defined($irow->{$_}) } keys %$irow), (map { $_ => $row->{$_} } grep { defined($row->{$_}) } keys %$row) }; push(@results, RDF::Trine::VariableBindings->new($jrow)); } } $iter = RDF::Trine::Iterator::Bindings->new( \@results, [ $bgp->referenced_variables ] ); } if (my $o = $args{ 'orderby' }) { unless (reftype($o) eq 'ARRAY') { throw RDF::Trine::Error::MethodInvocationError -text => "The orderby argument to get_pattern must be an ARRAY reference"; } my @order; my %order; my @o = @$o; my @sorted_by; my %vars = map { $_ => 1 } $bgp->referenced_variables; if (scalar(@o) % 2 != 0) { throw RDF::Trine::Error::MethodInvocationError -text => "The orderby argument ARRAY to get_pattern must contain an even number of elements"; } while (@o) { my ($k,$dir) = splice(@o, 0, 2, ()); next unless ($vars{ $k }); unless ($dir =~ m/^ASC|DESC$/i) { throw RDF::Trine::Error::MethodInvocationError -text => "The sort direction for key $k must be either 'ASC' or 'DESC' in get_pattern call"; } my $asc = ($dir eq 'ASC') ? 1 : 0; push(@order, $k); $order{ $k } = $asc; push(@sorted_by, $k, $dir); } my @results = $iter->get_all; @results = _sort_bindings( \@results, \@order, \%order ); $iter_args{ sorted_by } = \@sorted_by; return RDF::Trine::Iterator::Bindings->new( \@results, [ $bgp->referenced_variables ], %iter_args ); } else { return $iter; } } sub _sort_bindings { my $res = shift; my $o = shift; my $dir = shift; my @sorted = map { $_->[0] } sort { _sort_mapped_data($a,$b,$o,$dir) } map { _map_sort_data( $_, $o ) } @$res; return @sorted; } sub _sort_mapped_data { my $a = shift; my $b = shift; my $o = shift; my $dir = shift; foreach my $i (1 .. $#{ $a }) { my $av = $a->[ $i ]; my $bv = $b->[ $i ]; my $key = $o->[ $i-1 ]; next unless (defined($av) or defined($bv)); my $cmp = RDF::Trine::Node::compare( $av, $bv ); unless ($dir->{ $key }) { $cmp *= -1; } return $cmp if ($cmp); } return 0; } sub _map_sort_data { my $res = shift; my $o = shift; my @data = ($res, map { $res->{ $_ } } @$o); return \@data; }
sub get_statements;
sub get_contexts;
sub add_statement;
sub remove_statement;
sub remove_statements;
sub count_statements;
sub size { my $self = shift; return $self->count_statements( undef, undef, undef, undef ); }
sub etag { return; }
sub supports { return; } sub _begin_bulk_ops {} sub _end_bulk_ops {} 1; __END__
get_statements() XXX maybe this should instead follow the quad semantics? get_statements( s, p, o ) return (s,p,o,nil) for all distinct (s,p,o) get_statements( s, p, o, g ) return all (s,p,o,g) add_statement( TRIPLE ) add (s, p, o, nil) add_statement( TRIPLE, CONTEXT ) add (s, p, o, context) add_statement( QUAD ) add (s, p, o, g ) add_statement( QUAD, CONTEXT ) throw exception remove_statement( TRIPLE ) remove (s, p, o, nil) remove_statement( TRIPLE, CONTEXT ) remove (s, p, o, context) remove_statement( QUAD ) remove (s, p, o, g) remove_statement( QUAD, CONTEXT ) throw exception count_statements() XXX maybe this should instead follow the quad semantics? count_statements( s, p, o ) count distinct (s,p,o) for all statements (s,p,o,g) count_statements( s, p, o, g ) count (s,p,o,g)