| Bio-Phylo documentation | Contained in the Bio-Phylo distribution. |
Bio::Phylo::Listable - List of things, super class for many objects
No direct usage, parent class. Methods documented here are available for all objects that inherit from it.
A listable object is an object that contains multiple smaller objects of the same type. For example: a tree contains nodes, so it's a listable object.
This class contains methods that are useful for all listable objects: Matrices (i.e. sets of matrix objects), individual Matrix objects, Datum objects (i.e. character state sequences), Taxa, Forest, Tree and Node objects.
Listable object constructor.
Type : Constructor Title : new Usage : my $obj = Bio::Phylo::Listable->new; Function: Instantiates a Bio::Phylo::Listable object Returns : A Bio::Phylo::Listable object. Args : none
Pushes an object into its container.
Type : Mutator Title : insert Usage : $obj->insert($other_obj); Function: Pushes an object into its container. Returns : A Bio::Phylo::Listable object. Args : A Bio::Phylo::* object.
Inserts argument object in container at argument index.
Type : Mutator Title : insert_at_index Usage : $obj->insert_at_index($other_obj, $i); Function: Inserts $other_obj at index $i in container $obj Returns : A Bio::Phylo::Listable object. Args : A Bio::Phylo::* object.
Deletes argument from container.
Type : Mutator
Title : delete
Usage : $obj->delete($other_obj);
Function: Deletes an object from its container.
Returns : A Bio::Phylo::Listable object.
Args : A Bio::Phylo::* object.
Note : Be careful with this method: deleting
a node from a tree like this will
result in undefined references in its
neighbouring nodes. Its children will
have their parent reference become
undef (instead of pointing to their
grandparent, as collapsing a node would
do). The same is true for taxon objects
that reference datum objects: if the
datum object is deleted from a matrix
(say), the taxon will now hold undefined
references.
Empties container object.
Type : Mutator Title : clear Usage : $obj->clear(); Function: Clears the container. Returns : A Bio::Phylo::Listable object. Args : Note. Note :
Prunes the container's contents specified by an array reference of indices.
Type : Mutator Title : prune_entities Usage : $list->prune_entities([9,7,7,6]); Function: Prunes a subset of contents Returns : A Bio::Phylo::Listable object. Args : An array reference of indices
Keeps the container's contents specified by an array reference of indices.
Type : Mutator Title : keep_entities Usage : $list->keep_entities([9,7,7,6]); Function: Keeps a subset of contents Returns : A Bio::Phylo::Listable object. Args : An array reference of indices
Returns a reference to an array of objects contained by the listable object.
Type : Accessor
Title : get_entities
Usage : my @entities = @{ $obj->get_entities };
Function: Retrieves all entities in the container.
Returns : A reference to a list of Bio::Phylo::*
objects.
Args : none.
Returns the index of the argument in the list, or undef if the list doesn't contain the argument
Type : Accessor
Title : get_index_of
Usage : my $i = $listable->get_index_of($obj)
Function: Returns the index of the argument in the list,
or undef if the list doesn't contain the argument
Returns : An index or undef
Args : A contained object
Gets element at index from container.
Type : Accessor
Title : get_by_index
Usage : my $contained_obj = $obj->get_by_index($i);
Function: Retrieves the i'th entity
from a listable object.
Returns : An entity stored by a listable
object (or array ref for slices).
Args : An index or range. This works
the way you dereference any perl
array including through slices,
i.e. $obj->get_by_index(0 .. 10)>
$obj->get_by_index(0, -1)
and so on.
Comments: Throws if out-of-bounds
Gets elements that match regular expression from container.
Type : Accessor
Title : get_by_regular_expression
Usage : my @objects = @{
$obj->get_by_regular_expression(
-value => $method,
-match => $re
) };
Function: Retrieves the data in the
current Bio::Phylo::Listable
object whose $method output
matches $re
Returns : A list of Bio::Phylo::* objects.
Args : -value => any of the string
datum props (e.g. 'get_type')
-match => a compiled regular
expression (e.g. qr/^[D|R]NA$/)
Gets elements that meet numerical rule from container.
Type : Accessor
Title : get_by_value
Usage : my @objects = @{ $obj->get_by_value(
-value => $method,
-ge => $number
) };
Function: Iterates through all objects
contained by $obj and returns
those for which the output of
$method (e.g. get_tree_length)
is less than (-lt), less than
or equal to (-le), equal to
(-eq), greater than or equal to
(-ge), or greater than (-gt) $number.
Returns : A reference to an array of objects
Args : -value => any of the numerical
obj data (e.g. tree length)
-lt => less than
-le => less than or equals
-eq => equals
-ge => greater than or equals
-gt => greater than
Gets first element that has argument name
Type : Accessor
Title : get_by_name
Usage : my $found = $obj->get_by_name('foo');
Function: Retrieves the first contained object
in the current Bio::Phylo::Listable
object whose name is 'foo'
Returns : A Bio::Phylo::* object.
Args : A name (string)
Jumps to the first element contained by the listable object.
Type : Iterator
Title : first
Usage : my $first_obj = $obj->first;
Function: Retrieves the first
entity in the container.
Returns : A Bio::Phylo::* object
Args : none.
Jumps to the last element contained by the listable object.
Type : Iterator
Title : last
Usage : my $last_obj = $obj->last;
Function: Retrieves the last
entity in the container.
Returns : A Bio::Phylo::* object
Args : none.
Returns the current focal element of the listable object.
Type : Iterator
Title : current
Usage : my $current_obj = $obj->current;
Function: Retrieves the current focal
entity in the container.
Returns : A Bio::Phylo::* object
Args : none.
Returns the next focal element of the listable object.
Type : Iterator
Title : next
Usage : my $next_obj = $obj->next;
Function: Retrieves the next focal
entity in the container.
Returns : A Bio::Phylo::* object
Args : none.
Returns the previous element of the listable object.
Type : Iterator
Title : previous
Usage : my $previous_obj = $obj->previous;
Function: Retrieves the previous
focal entity in the container.
Returns : A Bio::Phylo::* object
Args : none.
Returns the current internal index of the container.
Type : Generic query
Title : current_index
Usage : my $last_index = $obj->current_index;
Function: Returns the current internal
index of the container.
Returns : An integer
Args : none.
Returns the highest valid index of the container.
Type : Generic query
Title : last_index
Usage : my $last_index = $obj->last_index;
Function: Returns the highest valid
index of the container.
Returns : An integer
Args : none.
Iterates over objects contained by container, executes argument code reference on each.
Type : Visitor predicate
Title : visit
Usage : $obj->visit(
sub{ print $_[0]->get_name, "\n" }
);
Function: Implements visitor pattern
using code reference.
Returns : The container, possibly modified.
Args : a CODE reference.
Tests whether the container object contains the argument object.
Type : Test
Title : contains
Usage : if ( $obj->contains( $other_obj ) ) {
# do something
}
Function: Tests whether the container object
contains the argument object
Returns : BOOLEAN
Args : A Bio::Phylo::* object
Tests if argument can be inserted in container.
Type : Test Title : can_contain Usage : &do_something if $listable->can_contain( $obj ); Function: Tests if $obj can be inserted in $listable Returns : BOOL Args : An $obj to test
Attaches a listener (code ref) which is executed when contents change.
Type : Utility method
Title : set_listener
Usage : $object->set_listener( sub { my $object = shift; } );
Function: Attaches a listener (code ref) which is executed when contents change.
Returns : Invocant.
Args : A code reference.
Comments: When executed, the code reference will receive $object
(the container) as its first argument.
Notifies listeners of changed contents.
Type : Utility method Title : notify_listeners Usage : $object->notify_listeners; Function: Notifies listeners of changed contents. Returns : Invocant. Args : NONE. Comments:
Clones container.
Type : Utility method Title : clone Usage : my $clone = $object->clone; Function: Creates a deep copy of the container. Returns : A copy of the container. Args : NONE. Comments: Cloning is currently experimental, use with caution.
The cross_reference method links node and datum objects to the taxa they apply
to. After crossreferencing a matrix with a taxa object, every datum object has
a reference to a taxon object stored in its $datum->get_taxon field, and
every taxon object has a list of references to datum objects stored in its
$taxon->get_data field.
Type : Generic method
Title : cross_reference
Usage : $obj->cross_reference($taxa);
Function: Crossreferences the entities
in the container with names
in $taxa
Returns : string
Args : A Bio::Phylo::Taxa object
Comments:
Many Bio::Phylo objects are segmented, i.e. they contain one or more subparts of the same type. For example, a matrix contains multiple rows; each row contains multiple cells; a tree contains nodes, and so on. (Segmented objects all inherit from Bio::Phylo::Listable, i.e. the class whose documentation you're reading here.) In many cases it is useful to be able to define subsets of the contents of segmented objects, for example sets of taxon objects inside a taxa block. The Bio::Phylo::Listable object allows this through a number of methods (add_set, remove_set, add_to_set, remove_from_set etc.). Those methods delegate the actual management of the set contents to the Bio::Phylo::Set object. Consult the documentation for Bio::Phylo::Set for a code sample.
Type : Mutator Title : add_set Usage : $obj->add_set($set) Function: Associates a Bio::Phylo::Set object with the container Returns : Invocant Args : A Bio::Phylo::Set object
Type : Mutator Title : remove_set Usage : $obj->remove_set($set) Function: Removes association between a Bio::Phylo::Set object and the container Returns : Invocant Args : A Bio::Phylo::Set object
Type : Accessor
Title : get_sets
Usage : my @sets = @{ $obj->get_sets() };
Function: Retrieves all associated Bio::Phylo::Set objects
Returns : Invocant
Args : None
Type : Test
Title : is_in_set
Usage : @do_something if $listable->is_in_set($obj,$set);
Function: Returns whether or not the first argument is listed in the second argument
Returns : Boolean
Args : $obj - an object that may, or may not be in $set
$set - the Bio::Phylo::Set object to query
Notes : This method makes two assumptions:
i) the $set object is associated with the container,
i.e. add_set($set) has been called previously
ii) the $obj object is part of the container
If either assumption is violated a warning message
is printed.
Type : Mutator
Title : add_to_set
Usage : $listable->add_to_set($obj,$set);
Function: Adds first argument to the second argument
Returns : Invocant
Args : $obj - an object to add to $set
$set - the Bio::Phylo::Set object to add to
Notes : this method assumes that $obj is already
part of the container. If that assumption is
violated a warning message is printed.
Type : Mutator
Title : remove_from_set
Usage : $listable->remove_from_set($obj,$set);
Function: Removes first argument from the second argument
Returns : Invocant
Args : $obj - an object to remove from $set
$set - the Bio::Phylo::Set object to remove from
Notes : this method assumes that $obj is already
part of the container. If that assumption is
violated a warning message is printed.
Returns string representation of sets
Type : Accessor Title : sets_to_xml Usage : my $str = $obj->sets_to_xml; Function: Gets xml string Returns : Scalar Args : None
Also see the manual: Bio::Phylo::Manual and http://rutgervos.blogspot.com.
Iterate over a set of trees.
Iterate over nodes in a tree.
Iterate of children of a node.
Iterate over a set of matrices.
Iterate over the datum objects in a matrix.
Iterate over the characters in a datum.
Iterate over a set of taxa.
This object inherits from Bio::Phylo::NeXML::Writable, so methods defined there are also applicable here.
If you use Bio::Phylo in published research, please cite it:
Rutger A Vos, Jason Caravas, Klaas Hartmann, Mark A Jensen and Chase Miller, 2011. Bio::Phylo - phyloinformatic analysis using Perl. BMC Bioinformatics 12:63. http://dx.doi.org/10.1186/1471-2105-12-63
$Id: Listable.pm 1660 2011-04-02 18:29:40Z rvos $
| Bio-Phylo documentation | Contained in the Bio-Phylo distribution. |
# $Id: Listable.pm 1660 2011-04-02 18:29:40Z rvos $ package Bio::Phylo::Listable; use strict; use base 'Bio::Phylo::NeXML::Writable'; use Scalar::Util qw'blessed weaken'; use Bio::Phylo::Util::Exceptions 'throw'; use Bio::Phylo::Util::CONSTANT qw':all'; use Bio::Phylo::Factory; { my $logger = __PACKAGE__->get_logger; my $fac = Bio::Phylo::Factory->new; my ( $DATUM, $NODE, $MATRIX, $TREE ) = ( _DATUM_, _NODE_, _MATRIX_, _TREE_ ); # $fields array necessary for object destruction my @fields = \( my ( %entities, # XXX strong reference %index, %listeners, %sets, ) );
# sub new {
#
# # could be child class
# my $class = shift;
#
# # notify user
# $logger->info("constructor called for '$class'");
#
# # recurse up inheritance tree, get ID
# my $self = $class->SUPER::new(@_);
#
# # local fields would be set here
#
# return $self;
# }
sub insert { my ( $self, @obj ) = @_; if ( @obj and $self->can_contain(@obj) ) { $logger->info("inserting '@obj' in '$self'"); my $id = $self->get_id; push @{ $entities{$id} }, @obj; for my $obj (@obj) { if ( looks_like_implementor( $obj, '_set_container' ) ) { $obj->_set_container($self); } } $self->notify_listeners( 'insert', @obj ) if $listeners{$id} and @{ $listeners{$id} }; return $self; } else { throw 'ObjectMismatch' => "Failed insertion: [@obj] in [$self]"; } }
sub insert_at_index {
my ( $self, $obj, $index ) = @_;
$logger->debug("inserting '$obj' in '$self' at index $index");
if ( defined $obj and $self->can_contain($obj) ) {
my $id = $self->get_id;
$entities{$id}->[$index] = $obj;
if ( looks_like_implementor( $obj, '_set_container' ) ) {
$obj->_set_container($self);
}
$self->notify_listeners( 'insert_at_index', $obj )
if $listeners{$id} and @{ $listeners{$id} };
return $self;
}
else {
throw 'ObjectMismatch' => 'Failed insertion!';
}
}
sub delete {
my ( $self, $obj ) = @_;
my $id = $self->get_id;
if ( $self->can_contain($obj) ) {
my $object_id = $obj->get_id;
my $occurence_counter = 0;
if ( my $i = $index{$id} ) {
for my $j ( 0 .. $i ) {
if ( $entities{$id}->[$j]->get_id == $object_id ) {
$occurence_counter++;
}
}
}
my @modified =
grep { $_->get_id != $object_id } @{ $entities{$id} };
$entities{$id} = \@modified;
$index{$id} -= $occurence_counter;
}
else {
throw 'ObjectMismatch' =>
"Invocant object cannot contain argument object";
}
$self->notify_listeners( 'delete', $obj )
if $listeners{$id} and @{ $listeners{$id} };
return $self;
}
sub clear {
my $self = shift;
my $id = $self->get_id;
$entities{$id} = [];
$self->notify_listeners('clear')
if $listeners{$id} and @{ $listeners{$id} };
return $self;
}
sub prune_entities {
my ( $self, @indices ) = @_;
my %indices = map { $_ => 1 } @indices;
my $last_index = $self->last_index;
my @keep;
for my $i ( 0 .. $last_index ) {
push @keep, $i if not exists $indices{$i};
}
return $self->keep_entities( \@keep );
}
sub keep_entities {
my ( $self, $indices_array_ref ) = @_;
my $id = $self->get_id;
my $ent = $entities{$id};
my @contents = @{$ent};
my @pruned = @contents[ @{$indices_array_ref} ];
$entities{$id} = \@pruned;
return $self;
}
sub get_entities {
return $entities{ $_[0]->get_id } || [];
}
sub get_index_of {
my ( $self, $obj ) = @_;
my $id = $obj->get_id;
my $i = 0;
for my $ent ( @{ $self->get_entities } ) {
return $i if $ent->get_id == $id;
$i++;
}
return;
}
sub get_by_index {
my $self = shift;
my $entities = $self->get_entities;
my @range = @_;
if ( scalar @range > 1 ) {
my @returnvalue;
eval { @returnvalue = @{$entities}[@range] };
if ($@) {
throw 'OutOfBounds' => 'index out of bounds';
}
return \@returnvalue;
}
else {
my $returnvalue;
eval { $returnvalue = $entities->[ $range[0] ] };
if ($@) {
throw 'OutOfBounds' => 'index out of bounds';
}
return $returnvalue;
}
}
sub get_by_regular_expression {
my $self = shift;
my %o = looks_like_hash @_;
my @matches;
for my $e ( @{ $self->get_entities } ) {
if ( $o{-match} && looks_like_instance( $o{-match}, 'Regexp' ) ) {
if ( $e->get( $o{-value} )
&& $e->get( $o{-value} ) =~ $o{-match} )
{
push @matches, $e;
}
}
else {
throw 'BadArgs' => 'need a regular expression to evaluate';
}
}
return \@matches;
}
sub get_by_value {
my $self = shift;
my %o = looks_like_hash @_;
my @results;
for my $e ( @{ $self->get_entities } ) {
if ( $o{-eq} ) {
if ( $e->get( $o{-value} )
&& $e->get( $o{-value} ) == $o{-eq} )
{
push @results, $e;
}
}
if ( $o{-le} ) {
if ( $e->get( $o{-value} )
&& $e->get( $o{-value} ) <= $o{-le} )
{
push @results, $e;
}
}
if ( $o{-lt} ) {
if ( $e->get( $o{-value} )
&& $e->get( $o{-value} ) < $o{-lt} )
{
push @results, $e;
}
}
if ( $o{-ge} ) {
if ( $e->get( $o{-value} )
&& $e->get( $o{-value} ) >= $o{-ge} )
{
push @results, $e;
}
}
if ( $o{-gt} ) {
if ( $e->get( $o{-value} )
&& $e->get( $o{-value} ) > $o{-gt} )
{
push @results, $e;
}
}
}
return \@results;
}
sub get_by_name {
my ( $self, $name ) = @_;
if ( not defined $name or ref $name ) {
throw 'BadString' => "Can't search on name '$name'";
}
for my $obj ( @{ $self->get_entities } ) {
my $obj_name = $obj->get_name;
if ( $obj_name and $name eq $obj_name ) {
return $obj;
}
# return $obj if $name eq $obj->get_name;
}
return;
}
sub first {
my $self = shift;
my $id = $self->get_id;
$index{$id} = 0;
return $entities{$id}->[0];
}
sub last {
my $self = shift;
my $id = $self->get_id;
$index{$id} = $#{ $entities{$id} };
return $entities{$id}->[-1];
}
sub current {
my $self = shift;
my $id = $self->get_id;
if ( !defined $index{$id} ) {
$index{$id} = 0;
}
return $entities{$id}->[ $index{$id} ];
}
sub next {
my $self = shift;
my $id = $self->get_id;
if ( !defined $index{$id} ) {
$index{$id} = 0;
return $entities{$id}->[ $index{$id} ];
}
elsif ( ( $index{$id} + 1 ) <= $#{ $entities{$id} } ) {
$index{$id}++;
return $entities{$id}->[ $index{$id} ];
}
else {
return;
}
}
sub previous {
my $self = shift;
my $id = $self->get_id;
# either undef or 0
if ( !$index{$id} ) {
return;
}
elsif ( 1 <= $index{$id} ) {
$index{$id}--;
return $entities{$id}->[ $index{$id} ];
}
else {
return;
}
}
sub current_index { $index{ ${ $_[0] } } || 0 }
sub last_index { $#{ $entities{ ${ $_[0] } } } }
sub visit {
my ( $self, $code ) = @_;
if ( looks_like_instance( $code, 'CODE' ) ) {
for ( @{ $self->get_entities } ) {
$code->($_);
}
}
else {
throw 'BadArgs' => "\"$code\" is not a CODE reference!";
}
return $self;
}
sub contains {
my ( $self, $obj ) = @_;
if ( blessed $obj ) {
my $id = $obj->get_id;
for my $ent ( @{ $self->get_entities } ) {
next if not $ent;
return 1 if $ent->get_id == $id;
}
return 0;
}
else {
#throw 'BadArgs' => "\"$obj\" is not a blessed object!";
for my $ent ( @{ $self->get_entities } ) {
next if not $ent;
return 1 if $ent eq $obj;
}
}
}
sub can_contain {
my ( $self, @obj ) = @_;
$logger->info("checking if '$self' can contain '@obj'");
for my $obj (@obj) {
my ( $self_type, $obj_container );
eval {
$self_type = $self->_type;
$obj_container = $obj->_container;
};
if ( $@ or $self_type != $obj_container ) {
if ( not $@ ) {
$logger->info(" $self $self_type != $obj $obj_container");
}
else {
$logger->info($@);
}
return 0;
}
}
return 1;
}
sub set_listener {
my ( $self, $listener ) = @_;
my $id = $self->get_id;
if ( not $listeners{$id} ) {
$listeners{$id} = [];
}
if ( looks_like_instance( $listener, 'CODE' ) ) {
push @{ $listeners{$id} }, $listener;
}
else {
throw 'BadArgs' => "$listener not a CODE reference";
}
}
sub notify_listeners {
my ( $self, @args ) = @_;
my $id = $self->get_id;
if ( $listeners{$id} ) {
for my $l ( @{ $listeners{$id} } ) {
$l->( $self, @args );
}
}
return $self;
}
sub clone {
my $self = shift;
$logger->info("cloning $self");
my %subs = @_;
# some extra logic to copy characters from source to target
if ( not exists $subs{'insert'} ) {
$subs{'insert'} = sub {
my ( $obj, $clone ) = @_;
my $clone_id = $clone->get_id;
for my $ent ( @{ $obj->get_entities } ) {
my $copy = $ent;
if ( looks_like_implementor( $ent, 'clone' ) ) {
$copy = $ent->clone;
}
push @{ $entities{$clone_id} }, $copy;
}
};
}
return $self->SUPER::clone(%subs);
}
sub cross_reference {
my ( $self, $taxa ) = @_;
my ( $selfref, $taxref ) = ( ref $self, ref $taxa );
if ( looks_like_implementor( $taxa, 'get_entities' ) ) {
my $ents = $self->get_entities;
if ( $ents && @{$ents} ) {
foreach ( @{$ents} ) {
if ( looks_like_implementor( $_, 'get_name' )
&& looks_like_implementor( $_, 'set_taxon' ) )
{
my $tax = $taxa->get_entities;
if ( $tax && @{$tax} ) {
foreach my $taxon ( @{$tax} ) {
if ( not $taxon->get_name or not $_->get_name )
{
next;
}
if ( $taxon->get_name eq $_->get_name ) {
$_->set_taxon($taxon);
if ( $_->_type == $DATUM ) {
$taxon->set_data($_);
}
if ( $_->_type == $NODE ) {
$taxon->set_nodes($_);
}
}
}
}
}
else {
throw 'ObjectMismatch' =>
"$selfref can't link to $taxref";
}
}
}
if ( $self->_type == $TREE ) {
$self->_get_container->set_taxa($taxa);
}
elsif ( $self->_type == $MATRIX ) {
$self->set_taxa($taxa);
}
return $self;
}
else {
throw 'ObjectMismatch' => "$taxref does not contain taxa";
}
}
# here we create a listener that updates the set
# object when the associated container changes
my $create_set_listeners = sub {
my ( $self, $set ) = @_;
my $listener = sub {
my ( $listable, $method, $obj ) = @_;
if ( $method eq 'delete' ) {
$listable->remove_from_set( $obj, $set );
}
elsif ( $method eq 'clear' ) {
$set->clear;
}
};
return $listener;
};
sub add_set {
my ( $self, $set ) = @_;
my $listener = $create_set_listeners->( $self, $set );
$self->set_listener($listener);
my $id = $self->get_id;
$sets{$id} = {} if not $sets{$id};
my $setid = $set->get_id;
$sets{$id}->{$setid} = $set;
return $self;
}
sub remove_set {
my ( $self, $set ) = @_;
my $id = $self->get_id;
$sets{$id} = {} if not $sets{$id};
my $setid = $set->get_id;
delete $sets{$id}->{$setid};
return $self;
}
sub get_sets {
my $self = shift;
my $id = $self->get_id;
$sets{$id} = {} if not $sets{$id};
return [ values %{ $sets{$id} } ];
}
sub is_in_set {
my ( $self, $obj, $set ) = @_;
if ( looks_like_object($set,_SET_) and $sets{ $self->get_id }->{ $set->get_id } ) {
my $i = $self->get_index_of($obj);
if ( defined $i ) {
return $set->get_by_index($i) ? 1 : 0;
}
else {
$logger->warn("Container doesn't contain that object.");
}
}
else {
$logger->warn("That set is not associated with this container.");
}
}
sub add_to_set {
my ( $self, $obj, $set ) = @_;
my $id = $self->get_id;
$sets{$id} = {} if not $sets{$id};
my $i = $self->get_index_of($obj);
if ( defined $i ) {
$set->insert_at_index( 1 => $i );
my $set_id = $set->get_id;
if ( not exists $sets{$id}->{$set_id} ) {
my $listener = $create_set_listeners->( $self, $set );
$self->set_listener($listener);
}
$sets{$id}->{$set_id} = $set;
}
else {
$logger->warn(
"Container doesn't contain the object you're adding to the set."
);
}
return $self;
}
sub remove_from_set {
my ( $self, $obj, $set ) = @_;
my $id = $self->get_id;
$sets{$id} = {} if not $sets{$id};
my $i = $self->get_index_of($obj);
if ( defined $i ) {
$set->insert_at_index( $i => 0 );
$sets{$id}->{ $set->get_id } = $set;
}
else {
$logger->warn(
"Container doesn't contain the object you're adding to the set."
);
}
return $self;
}
sub sets_to_xml {
my $self = shift;
my $xml = '';
if ( $self->can('get_sets') ) {
for my $set ( @{ $self->get_sets } ) {
my %contents;
for my $ent ( @{ $self->get_entities } ) {
if ( $self->is_in_set($ent,$set) ) {
my $tag = $ent->get_tag;
$contents{$tag} = [] if not $contents{$tag};
push @{ $contents{$tag} }, $ent->get_xml_id;
}
}
for my $key ( keys %contents ) {
my @ids = @{ $contents{$key} };
$contents{$key} = join ' ', @ids;
}
$set->set_attributes(%contents);
$xml .= "\n" . $set->to_xml;
}
}
return $xml;
}
{ no warnings 'recursion'; sub _cleanup { my $self = shift; my $id = $self->get_id; for my $field (@fields) { delete $field->{$id}; } } }
# podinherit_insert_token
} 1;