--- trunk/lib/WebPAC/Input/Excel.pm 2006/09/29 19:52:21 727 +++ trunk/lib/WebPAC/Input/Excel.pm 2006/09/29 19:52:26 728 @@ -3,9 +3,9 @@ use warnings; use strict; -use WebPAC::Input; use Spreadsheet::ParseExcel; use Spreadsheet::ParseExcel::Utility qw/int2col/; +use base qw/WebPAC::Common/; =head1 NAME @@ -13,11 +13,11 @@ =head1 VERSION -Version 0.02 +Version 0.04 =cut -our $VERSION = '0.02'; +our $VERSION = '0.04'; =head1 SYNOPSIS @@ -25,16 +25,13 @@ Open Microsoft Excell, or compatibile format (for e.g. from OpenOffice.org or Gnuemeric) in C<.xls> format. - my $isis = new WebPAC::Input::Excel(); - $isis->open( path => '/path/to/workbook.xls' ); - =head1 FUNCTIONS -=head2 open_db +=head2 new Returns handle to database and size - my ($db,$size) = $open_db( + my $excel = new WebPAC::Input::Excel( path => '/path/to/workbook.xls' worksheet => 'name of sheet', from => 42, @@ -48,27 +45,25 @@ =cut -my $sheet; -my ($from,$to); - -sub open_db { - my $self = shift; - - my $arg = {@_}; +sub new { + my $class = shift; + my $self = {@_}; + bless($self, $class); my $log = $self->_get_logger(); - $log->logdie("can't open excel file $arg->{path}: $!") unless (-r $arg->{path} && -f $arg->{path}); + $log->logdie("can't open excel file $self->{path}: $!") unless (-r $self->{path} && -f $self->{path}); - my $workbook = Spreadsheet::ParseExcel::Workbook->Parse($arg->{path}); + my $workbook = Spreadsheet::ParseExcel::Workbook->Parse($self->{path}); - my ($size, $wanted_worksheet); + my $sheet; + my $wanted_worksheet; - if ($wanted_worksheet = $arg->{worksheet}) { + if ($wanted_worksheet = $self->{worksheet}) { my $name; do { $sheet = shift @{ $workbook->{Worksheet} }; - $log->logdie("can't find sheet '$wanted_worksheet' in $arg->{path}\n") unless (defined($sheet)); + $log->logdie("can't find sheet '$wanted_worksheet' in $self->{path}\n") unless (defined($sheet)); $name = $sheet->{Name}; $name =~ s/\s\s+/ /g; } until ($name =~ m/^\s*\Q$wanted_worksheet\E\s*$/i); @@ -79,17 +74,20 @@ } - $from = $arg->{from} || $sheet->{MinRow}; - $to = $arg->{to} || $sheet->{MaxRow}; + $self->{sheet} = $sheet; + + $self->{from} ||= $sheet->{MinRow}; + $self->{to} ||= $sheet->{MaxRow}; - $size = $to - $from; + my $size = $self->{to} - $self->{from}; + $self->{size} = $size; - $log->warn("opening Excel file '$arg->{path}', using ", + $log->warn("opening Excel file '$self->{path}', using ", $wanted_worksheet ? '' : 'first ', "worksheet: $sheet->{Name} [$size rows]" ); - return (42, $size); + $self ? return $self : return undef; } =head2 fetch_rec @@ -109,12 +107,13 @@ my $log = $self->_get_logger(); + my $sheet = $self->{sheet}; $log->logdie("can't find sheet hash") unless (defined($sheet)); $log->logdie("sheet hash isn't Spreadsheet::ParseExcel::Worksheet") unless ($sheet->isa('Spreadsheet::ParseExcel::Worksheet')); my $rec; - my $row = $from + $mfn - 1; + my $row = $self->{from} + $mfn - 1; $log->debug("fetch_rec( $mfn ) row: $row cols: ",$sheet->{MinCol}," - ",$sheet->{MaxCol}); @@ -130,6 +129,18 @@ return $rec; } +=head2 size + +Return number of records in database + + my $size = $isis->size; + +=cut + +sub size { + my $self = shift; + return $self->{size}; +} =head1 AUTHOR Dobrica Pavlinusic, C<< >>