The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME Data::Iterator::EasyObj - Turn an array of arrays into an iterator object

SYNOPSIS

use Data::Iterator::EasyObj;

my $data = [ [ 'AAAA', 'test foo A', '1111', $iterator2 ],

             [ 'BBBB', 'test foo B', '2222', $iterator2 ],
           ];
my $fields = [ 'Name', 'About' ,'Value', 'Loopy' ];
my $iterator = Data::Iterator::EasyObj->new($data,$fields);

$iterator->offset(2);

$iterator->limit(4);

while ($iterator->next) {

  $iterator->add_column('Extra');

  $iterator->add_value('Extra','extra stuff here');

  print "Name : ", $iterator->Name(), "\n";

  while ($iterator->Loop()->next) {
    print ".. ", $iterator->Loop()->subAA(),"\n"; 
  }

  print " extra : ", $iterator->Extra() , "\n";

}

DESCRIPTION

Data::Iterator::EasyObj makes your array of arrays into a handy iterator object with the ability to further nest additional data structures including Data::Iterator::EasyObj objects.

The iterator object provides direct access to the iterator contents - as well as the ability to add or update fields as you use the object.

The iterator object can also be limited or offset on the fly ideal for paging or grouping data sets.

USING

creating

When creating an iterator your data should be an array of arrays - like say dbi's fetchall_arrayref output or the contents of a CSV file - see the example data below

my $data = [ [ 'AAAA', 'test foo A', '1111', $iterator2, { sadj=>'sas', sasas=>1} ],

                    .    .   .

             [ 'BBBB', 'test foo B', '2222', $iterator2, { sadj=>'sadas', sasas=>2} ],
           ];

Your field names can be a hashref or arrayref as in these examples :

my $fields = [ 'Name', 'About' ,'Value', 'Loopy', 'Deeper' ];

my $fields = { 'Name'=>0 , 'About'=>1 , 'Value'=>2, 'Loopy'=>3, 'Deeper'=>4 };

my $fields = { 'Name'=>{id => 0}, 'About'=>{id => 1}, 'Value'=>{id => 2}, 'Loopy'=>{id => 3}, 'Deeper' => {id => 4} };

You create the iterator by passing the data and fields, you can also pass extra arguments such as offset and limit

my $iterator = Data::Iterator::EasyObj->new($data,$fields);

my $iterator = Data::Iterator::EasyObj->new($data,$fields,offset=>$offset,limit=>10); # offset and limit are optional and independant of each other

Once the iterator has been created it waits for the next method to be called to move it to the first (or offset) record.

iterating

The eastiest way to iterate through the objects records is to call next in a while loop - next returns 0 when it hits the end (or limit) of the iterators data. When it reaches the end it resets itself to the start or offset.

while ($iterator->next) {

# . . . loop through code

}

getting and setting values

To get the 'Name' field of the current record in the object, first ensure you are iterating through the data with $iterator->next() then call $iterator->Name() which returns the value or reference in Name for this record. The contents of the field can be a reference or a scalar or even another iterator.

To set the value of 'Name' for the current record call $iterator->add_value('Name',$new_value) where $new_value is the new value.

adding new fields

To add a new field to the iterator object (the new field will be added to every record but remain empty until set with the add_value method) call $iterator->add_column($column_name);

limit and offset

You can limit or offset the iterator much like a MySQL query, this is handy for paging or grouping through data.

When you call $iterator->offset(5) the iterator will start from the 6th record or skip straight to it if you are already started but haven't reached it. If you have already iterated past the offset then the iterator will continue and the will start from the offset the next time it iterates.

When you call $iterator->limit(10) the iterator will stop when it reaches the last record of the iterator or the offset record (i.e. 11th) and reset. If you have already iterated past the offset, then the iterator will stop iterating and reset itself when you next call $iterator->next();

EXPORT

None

AUTHOR

A. J. Trevena, <teejay@droogs.org>

SEE ALSO

perl.

Data::Iterator