SADI::Data::OWL::Class - SADI::Data::OWL::Class documentation


SADI documentation Contained in the SADI distribution.

Index


Code Index:

NAME

Top

SADI::Data::OWL::Class

SYNOPSIS

Top

 use SADI::Data::OWL::Class;

 # create a sadi owl class 
 my $data = SADI::Data::OWL::Class->new ();




DESCRIPTION

Top

An object representing an OWL class

AUTHORS

Top

 Edward Kawas (edward.kawas [at] gmail [dot] com)

ACCESSIBLE ATTRIBUTES

Top

Details are in SADI::Base. Here just a list of them:

label an optional RDF label for this class
type a URI that describes the type of this class
value a URI to an individual of this class (same as uri, e.g. if you set this, you set value too)
uri a URI to an individual of this class (same as value, e.g. if you set this, you set uri too)
statements an array of RDF::Core::Statement objects describing the relationships in this class. Most users need not worry about this method.

SUBROUTINES

Top


SADI documentation Contained in the SADI distribution.
#-----------------------------------------------------------------
# SADI::Data::OWL::Class
# Author: Edward Kawas <edward.kawas@gmail.com>,
# For copyright and disclaimer see below.
#
# $Id: Class.pm,v 1.11 2010-02-10 23:19:11 ubuntu Exp $
#-----------------------------------------------------------------
package SADI::Data::OWL::Class;
use base ("SADI::Base");
use strict;
use URI;

# imports
use RDF::Core::Statement;

# add versioning to this module
use vars qw /$VERSION/;
$VERSION = sprintf "%d.%02d", q$Revision: 1.11 $ =~ /: (\d+)\.(\d+)/;

#-----------------------------------------------------------------
# A list of allowed attribute names. See SADI::Base for details.
#-----------------------------------------------------------------

{
	my %_allowed = (
	   # the RDFS label for this node
	   label  => { type => SADI::Base->STRING },
	   type  => { type => SADI::Base->STRING },
		# value and uri are synonyms here
		value => {
			type => SADI::Base->STRING,
			post => sub {
				my $self = shift;
				$self->{uri} = $self->value;
				# set the id portion of the ID
                $self->ID($self->{value});
			  }
		},
		# value and uri are synonyms here
		uri => {
			type => SADI::Base->STRING,
			post => sub {
				my $self = shift;
				$self->{value} = $self->uri;
				# set the id portion of the ID
				$self->ID($self->{value});
			  }
		},
		ID => {
			type => SADI::Base->STRING,
            post => sub {
                my $self = shift;
                my $id = undef;
                # id is either text after leftmost :
                $id = $1 if ($self->{ID} =~ m|.*/\w+:(.*)$|gi);
                # or item after #
                $id = $1 if not defined $id and ($self->{ID} =~ m|#(.*)$|gi);
                # or item after /
                $id = $1 if not defined $id and ($self->{ID} =~ m|.*/(.*)$|gi);
                $id = $1 if not defined $id and ($self->{ID} =~ m|^\s*([[:alnum:]]+)\s*$|gi);
                $self->{ID} = $id;
              }
		},
		statements => { type => 'RDF::Core::Statement', is_array => 1 },
		# used internally / set during _get_statements
		subject => => { type => 'RDF::Core::Resource' },				
	);

	sub _accessible {
		my ( $self, $attr ) = @_;
		exists $_allowed{$attr} or $self->SUPER::_accessible($attr);
	}

	sub _attr_prop {
		my ( $self, $attr_name, $prop_name ) = @_;
		my $attr = $_allowed{$attr_name};
		return ref($attr) ? $attr->{$prop_name} : $attr if $attr;
		return $self->SUPER::_attr_prop( $attr_name, $prop_name );
	}
}

#-----------------------------------------------------------------

#-----------------------------------------------------------------
# init
#-----------------------------------------------------------------
sub init {
	my ($self) = shift;
	$self->SUPER::init();
	$self->statements( [] );
}

#-------------------------------------------------------------------
# get all RDF::Core::Statements for this thing (array_ref)
#-------------------------------------------------------------------
sub _get_statements {
}
1;
__END__