| Algorithm-Dependency documentation | Contained in the Algorithm-Dependency distribution. |
Algorithm::Dependency::Source - Implements a source of heirachy items
The Algorithm::Dependency::Source class provides an abstract parent class for implementing sources for the heirachy data the algorithm will use. For an example of an implementation of this, see Algorithm::Dependency::Source::File, which is bundled with the main Algorithm::Dependency package.
Although you cannot directly use the new constructor for
Algorithm::Dependency::Source, it will work the same in all subclasses.
The constructor takes zero or more subclass specific arguments to define the location of the source of the items, and returns a new object. Alrough it may check that the arguments you passed are valid, the source will usually NOT actually load the items from the source, instead defering the loading until you need to use the items.
Returns a new object on success, or undef on error.
The load method is the public method used to actually load the items from
their storage location into the the source object. The method will
automatically called, as needed, in most circumstances. You would generally
only want to use load manually if you think there may be some uncertainty
that the source will load correctly, and want to check it will work.
Returns true if the items are loaded successfully, or undef on error.
The item method fetches and returns the item object specified by the
name argument.
Returns an Algorithm::Dependency::Item object on success, or undef if
the named item does not exist in the source.
The items method returns, as a list of objects, all of the items
contained in the source. The item objects will be returned in the same order
as that in the storage location.
Returns a list of Algorithm::Dependency::Item objects on success, or
undef on error.
By default, we are leniant with missing dependencies if the item is neved
used. For systems where having a missing dependency can be very bad, the
missing_dependencies method checks all Items to make sure their
dependencies exist.
If there are any missing dependencies, returns a reference to an array of
their ids. If there are no missing dependencies, returns 0. Returns
undef on error.
Algorithm::Dependency::Source itself is a fairly thin module, and it
is intended that you will probably need to extend it to be able to
extract item data from whatever location you have stored them.
This is usually a fairly simple two step process.
new method.Assuming your subclass takes some form or argument on creation, you will
need to overload the new method to accept the arguments, validate them,
and store them in the source object.
_load_item_list.Leaving our parent's load method to take care of conflict, errors, and
whatever, the _load_item_list method is used to simply create a list of
Algorithm::Dependency::Item objects from wherever you store the item,
and return them as a list.
Having completed these two things, your subclass should be completed. For an example of the code, have a look at the source for the simple subclass Algorithm::Dependency::Source::File.
For general comments, contact the author.
To file a bug against this module, in a way you can keep track of, see the CPAN bug tracking system.
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Algorithm-Dependency
Adam Kennedy <adamk@cpan.org>
Copyright 2003 - 2009 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| Algorithm-Dependency documentation | Contained in the Algorithm-Dependency distribution. |
package Algorithm::Dependency::Source;
use 5.005; use strict; use Algorithm::Dependency (); use Params::Util qw{_SET}; use vars qw{$VERSION}; BEGIN { $VERSION = '1.110'; } ##################################################################### # Constructor
sub new { my $class = shift; # This can't be created directly, it must be through # a SUPER::new call if ( $class eq __PACKAGE__ ) { die "Cannot directly instantiate Algorithm::Dependency::Source." . " You must use a subclass"; } # Create the basic object my $self = bless { # Has the source been loaded loaded => 0, # Indexes items_hash => undef, items_array => undef, }, $class; $self; }
sub load { my $self = shift; # If this is a reload, clean up in preperation if ( $self->{loaded} ) { $self->{loaded} = 0; $self->{items_hash} = undef; $self->{items_array} = undef; } # Pass through to the real loader my $items = $self->_load_item_list; return $items unless $items; unless ( _SET($items, 'Algorithm::Dependency::Item') ) { die( ref($self) . "::_load_item_list did not return an Algorithm::Dependency::Item set" ); } # Add the items foreach my $item ( @$items ) { # Have we added this one already? my $id = $item->id; if ( $self->{items_hash}->{ $id } ) { # Duplicate entry return undef; } # Add it push @{ $self->{items_array} }, $item; $self->{items_hash}->{$id} = $item; } $self->{loaded} = 1; }
sub item { my $self = shift; my $id = (defined $_[0] and ! ref $_[0] and $_[0] ne '') ? shift : return undef; $self->{loaded} or $self->load or return undef; # Return the item (or undef) $self->{items_hash}->{$id}; }
sub items { my $self = shift; $self->{loaded} or $self->load or return undef; @{ $self->{items_array} }; }
sub missing_dependencies { my $self = shift; $self->{loaded} or $self->load or return undef; # Merged the depends of all the items, and see if # any are missing. my %missing = map { $_ => 1 } grep { ! $self->item($_) } map { $_->depends } $self->items; %missing ? [ sort keys %missing ] : 0; } ##################################################################### # Catch unimplemented methods in subclasses sub _load_item_list { die "Class $_[0] failed to define the method _load_item_list"; } 1;