########################################################################### # # CSVPlugin.pm -- A plugin for files in comma-separated value format # # A component of the Greenstone digital library software # from the New Zealand Digital Library Project at the # University of Waikato, New Zealand. # # Copyright 2006 New Zealand Digital Library Project # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # ########################################################################### package CSVPlugin; use SplitTextFile; use MetadataRead; use strict; no strict 'refs'; # allow filehandles to be variables and viceversa use Text::CSV; # CSVPlugin is a sub-class of SplitTextFile. sub BEGIN { @CSVPlugin::ISA = ('MetadataRead', 'SplitTextFile'); } my $arguments = [ { 'name' => "separate_char", 'desc' => "{CSVPlugin.separate_char}", 'type' => "string", 'deft' => "auto", 'reqd' => "no" }, { 'name' => "process_exp", 'desc' => "{BaseImporter.process_exp}", 'type' => "regexp", 'reqd' => "no", 'deft' => &get_default_process_exp() }, { 'name' => "split_exp", 'desc' => "{SplitTextFile.split_exp}", 'type' => "regexp", 'reqd' => "no", 'deft' => &get_default_split_exp(), 'hiddengli' => "yes" } ]; my $options = { 'name' => "CSVPlugin", 'desc' => "{CSVPlugin.desc}", 'abstract' => "no", 'inherits' => "yes", 'explodes' => "yes", 'args' => $arguments }; # This plugin processes files with the suffix ".csv" sub get_default_process_exp { return q^(?i)(\.csv)$^; } # This plugin splits the input text by line sub get_default_split_exp { return q^\r?\n^; } sub new { my ($class) = shift (@_); my ($pluginlist,$inputargs,$hashArgOptLists) = @_; push(@$pluginlist, $class); push(@{$hashArgOptLists->{"ArgList"}}, @{$arguments}); push(@{$hashArgOptLists->{"OptList"}}, $options); my $self = new SplitTextFile($pluginlist, $inputargs, $hashArgOptLists); return bless $self, $class; } sub read_file { my $self = shift (@_); my ($filename, $encoding, $language, $textref) = @_; # Read in file the usual ReadTextFile way # This ensure that $textref is a unicode aware string $self->SUPER::read_file(@_); # # Now top-up the processing of the text with what this plugin # needs # # Remove any blank lines so the data is split and processed properly $$textref =~ s/\n(\s*)\n/\n/g; # The first line contains the metadata element names $$textref =~ s/^(.*?)\r?\n//; my @csv_file_fields = (); my $csv_file_field_line = $1; my $separate_char = $self->{'separate_char'}; if ($separate_char =~ m/^auto$/i) { $separate_char = CSVSeparateChar::resolve_auto($csv_file_field_line,$self->{'plugin_type'},$self->{'outhandle'},$self->{'verbosity'}); # Replace the 'auto' setting the resolved value (for use later on) $self->{'separate_char'} = $separate_char; } my $csv = Text::CSV->new(); $csv->sep_char($separate_char); if ($csv->parse($csv_file_field_line)) { @csv_file_fields = $csv->fields; } else { print STDERR "Error: Badly formatted CSV field line: $csv_file_field_line.\n"; } # $csv_file_field_line .= $separate_char; # To make the regular expressions simpler # **** # while ($csv_file_field_line ne "") { # # Handle quoted values # if ($csv_file_field_line =~ s/^\"(.*?)\"${separate_char}//) { # **** # my $csv_file_field = $1; # $csv_file_field =~ s/ //g; # Remove any spaces from the field names # push(@csv_file_fields, $csv_file_field); # } # # Normal comma-separated case # elsif ($csv_file_field_line =~ s/^(.*?)${separate_char}//) { # **** # my $csv_file_field = $1; # $csv_file_field =~ s/ //g; # Remove any spaces from the field names # push(@csv_file_fields, $csv_file_field); # } # # The line must be formatted incorrectly # else { # print STDERR "Error: Badly formatted CSV field line: $csv_file_field_line.\n"; # last; # } # } $self->{'csv_file_fields'} = \@csv_file_fields; print STDERR "****** csv file fields joined = ", join(" ||| ", @{$self->{'csv_file_fields'}}), "\n"; } sub process { my $self = shift (@_); my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_; my $outhandle = $self->{'outhandle'}; my $section = $doc_obj->get_top_section(); my $csv_line = $$textref; my @csv_file_fields = @{$self->{'csv_file_fields'}}; # Add the raw line as the document text $doc_obj->add_utf8_text($section, $csv_line); my $separate_char = $self->{'separate_char'}; my $csv = Text::CSV->new(); $csv->sep_char($separate_char); # Build a hash of metadata name to metadata value for this line if ($csv->parse($csv_line)) { my @md_vals = $csv->fields; my $md_vals_len = scalar(@md_vals); for (my $i=0; $i<$md_vals_len; $i++) { my $md_val = $md_vals[$i]; # Only bother with non-empty values if ($md_val ne "" && defined($csv_file_fields[$i])) { $doc_obj->add_utf8_metadata($section, $csv_file_fields[$i], $md_val); } } } else { print STDERR "Error: Badly formatted CSV line: $csv_line.\n"; } # # Build a hash of metadata name to metadata value for this line # my $i = 0; # $csv_line .= $separate_char; # To make the regular expressions simpler # **** # while ($csv_line ne "") { # # Metadata values containing commas are quoted # if ($csv_line =~ s/^\"(.*?)\"${separate_char}//) { # **** # # Only bother with non-empty values # my $match = $1; # if ($match ne "" && defined($csv_file_fields[$i])) { # $doc_obj->add_utf8_metadata($section, $csv_file_fields[$i], $match); # } # } # # Normal comma-separated case # elsif ($csv_line =~ s/^(.*?)${separate_char}//) { # **** # # Only bother with non-empty values # my $match = $1; # if ($match ne "" && defined($csv_file_fields[$i])) { # $doc_obj->add_utf8_metadata($section, $csv_file_fields[$i], $match); # } # } # # The line must be formatted incorrectly # else { # print STDERR "Error: Badly formatted CSV line: $csv_line.\n"; # last; # } # $i++; # } # Record was processed successfully return 1; } 1;