.\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .if !\nF .nr F 0 .if \nF>0 \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} .\} .\" ======================================================================== .\" .IX Title "RDF::Redland 3pm" .TH RDF::Redland 3pm "2016-06-22" "perl v5.24.1" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" RDF::Redland \- Redland RDF Class .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 3 \& use RDF::Redland; \& my $storage=new RDF::Redland::Storage("hashes", "test", "new=\*(Aqyes\*(Aq,hash\-type=\*(Aqmemory\*(Aq"); \& my $model=new RDF::Redland::Model($storage, ""); \& \& ... .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This class initialises the Redland \s-1RDF\s0 classes. .PP See the main classes for full detail: RDF::Redland::Node, RDF::Redland::BlankNode, RDF::Redland::URINode, RDF::Redland::LiteralNode, RDF::Redland::XMLLiteralNode, RDF::Redland::URI, RDF::Redland::Statement, RDF::Redland::Model, RDF::Redland::Storage, RDF::Redland::Parser, RDF::Redland::Query, RDF::Redland::QueryResults, RDF::Redland::Iterator, RDF::Redland::Stream and RDF::Redland::RSS. .SH "STATIC METHODS" .IX Header "STATIC METHODS" .IP "set_log_handler \s-1SUB\s0" 4 .IX Item "set_log_handler SUB" Set \fI\s-1SUB\s0\fR as the subroutine to be called on any Redland error, warning or log message. The subroutine must have the followign signature: .Sp .Vb 11 \& sub handler ($$$$$$$$$) { \& my($code, $level, $facility, $message, $line, $column, $byte, $file, $uri)=@_; \& # int error code \& # int log level \& # int facility causing the error (parsing, serializing, ...) \& # string error message \& # int line number (<0 if not relevant) \& # int column number (<0 if not relevant) \& # int byte number (<0 if not relevant) \& # string file name or undef \& # string URI or undef \& \& # ...do something with the information ... \& }; \& \& RDF::Redland::set_log_handler(\e&handler); .Ve .IP "reset_log_handler" 4 .IX Item "reset_log_handler" Reset redland to use the default logging handler, typically printing the message to stdout or stderr and exiting on a fatal error. .IP "set_error_handler \s-1SUB\s0" 4 .IX Item "set_error_handler SUB" The method set_log_handler is much more flexible than this and includes this functionality. .Sp Set \fI\s-1SUB\s0\fR as the subroutine to be called on a Redland error with the error message as the single argument. For example: .Sp .Vb 4 \& RDF::Redland::set_error_handler(sub { \& my $msg=shift; \& # Do something with $msg \& }); .Ve .Sp The default if this is not set, is to run die \f(CW$msg\fR .IP "set_warning_handler \s-1SUB\s0" 4 .IX Item "set_warning_handler SUB" The method set_log_handler is much more flexible than this and includes this functionality. .Sp Set \fI\s-1SUB\s0\fR as the subroutine to be called on a Redland warning with the warning message as the single argument. For example: .Sp .Vb 4 \& RDF::Redland::set_warning_handler(sub { \& my $msg=shift; \& # Do something with $msg \& }); .Ve .Sp The default if this is not set, is to run warn \f(CW$msg\fR .SH "SEE ALSO" .IX Header "SEE ALSO" RDF::Redland::Node, RDF::Redland::BlankNode, RDF::Redland::URINode, RDF::Redland::LiteralNode, RDF::Redland::XMLLiteralNode, RDF::Redland::URI, RDF::Redland::Statement, RDF::Redland::Model, RDF::Redland::Storage, RDF::Redland::Parser, RDF::Redland::Query, RDF::Redland::QueryResults, RDF::Redland::Iterator, RDF::Redland::Stream and RDF::Redland::RSS. .SH "AUTHOR" .IX Header "AUTHOR" Dave Beckett \- http://www.dajobe.org/