GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
RDF::Core::Function(3) User Contributed Perl Documentation RDF::Core::Function(3)

RDF::Core::Function - a package of functions for query language.

When there is a function found while evaluating query, its parameters are evaluated and passed to RDF::Core::Function apropriate piece of code. The code reference is obtained in a hash returned by getFunctions() call. Each function accepts RDF::Core::Literal or RDF::Core::Resource objects as paramaters and returns a tuple of arrays (array of two array references). The first references to an array of function results - Resource or Literal objects, the second one references to an array of predicates that could be used instead of the function. This is not always applicable, so the second array can be empty. For example, a function call:

  someBag.member()

returns ([uri://uri-of-the-first-member,....],[rdf:_1,...]).

There is a special parameter - a subject parameter, which says that a function is at position of property. For example:

  subproperty(schema:SomeProperty)

has no subject parameter defined and returns property names that are subproperties of given schema:SomeProperty.

  data:SomeObject.subproperty(schema:SomeProperty)

has subject parameter data:SomeObject and return values of subproperties for subject.

new(%options)

Available options are:

  • Data

    RDF::Core::Model object that contains data to be queried.

  • Schema

    RDF::Core::Model object that contains RDF schema.

  • Factory

    RDF::Core::NodeFactory object, that produces resource and literal objects.

getFunctions

Returns a hash reference where each key is a name of a functions and value is a reference to an implementation code.

  • subclass(X)

    Not defined subject parameter:

    Find all subclasses of X in Schema and return them if they have an instance in Data.

    Defined subject parameter:

    Result is not defined, dies.

  • subproperty(X)

    Not defined subject parameter:

    Find all subproperties of X in Schema and return them if they occur in Data.

    Defined subject parameter:

    Find all subproperties of X in Schema and return their values for subject, if found.

  • member()

    Not defined subject parameter:

    Result is not defined, dies.

    Defined subject parameter:

    Find all container members of subject.

This package is subject to the MPL (or the GPL alternatively).

Ginger Alliance, rdf@gingerall.cz

RDF::Core::Query
2002-07-12 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.