source: gsdl/trunk/perllib/plugins/MetadataCSVPlugin.pm@ 17717

Last change on this file since 17717 was 17717, checked in by davidb, 15 years ago

Missing 'use multiread' -- now added

  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1###########################################################################
2#
3# MetadataCSVPlugin.pm -- A plugin for metadata in comma-separated value format
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright 2006 New Zealand Digital Library Project
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26
27package MetadataCSVPlugin;
28
29
30use BasePlugin;
31use strict;
32
33use multiread;
34
35
36sub BEGIN {
37 @MetadataCSVPlugin::ISA = ('BasePlugin');
38}
39
40
41my $arguments = [
42 { 'name' => "process_exp",
43 'desc' => "{BasePlugin.process_exp}",
44 'type' => "regexp",
45 'reqd' => "no",
46 'deft' => &get_default_process_exp() }
47
48];
49
50
51my $options = { 'name' => "MetadataCSVPlugin",
52 'desc' => "{MetadataCSVPlugin.desc}",
53 'abstract' => "no",
54 'inherits' => "yes",
55 'args' => $arguments };
56
57
58sub new
59{
60 my ($class) = shift (@_);
61 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
62 push(@$pluginlist, $class);
63
64 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
65 push(@{$hashArgOptLists->{"OptList"}},$options);
66
67 my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
68
69 return bless $self, $class;
70}
71
72
73sub get_default_process_exp
74{
75 return q^(?i)\.csv$^;
76}
77
78sub metadata_read
79{
80 my $self = shift (@_);
81 my ($pluginfo, $base_dir, $file, $block_hash, $extrametakeys, $extrametadata, $processor, $maxdocs, $gli) = @_;
82
83 # Read metadata from CSV files
84 my $filename = &util::filename_cat($base_dir, $file);
85 if ($filename !~ /\.csv$/ || !-f $filename) {
86 return undef;
87 }
88 print STDERR "\n<Processing n='$file' p='MetadataCSVPlugin'>\n" if ($gli);
89 print STDERR "MetadataCSVPlugin: processing $file\n" if ($self->{'verbosity'}) > 1;
90
91 # add the file to the block list so that it won't be processed in read, as we will do all we can with it here
92 $block_hash->{'file_blocks'}->{$filename} = 1;
93
94 # Read the CSV file to get the metadata
95 my $csv_file_content;
96 open(CSV_FILE, "$filename");
97 my $csv_file_reader = new multiread();
98 $csv_file_reader->set_handle('MetadataCSVPlugin::CSV_FILE');
99 $csv_file_reader->read_file(\$csv_file_content);
100 close(CSV_FILE);
101
102 # Split the file into lines and read the first line (contains the metadata names)
103 $csv_file_content =~ s/\r/\n/g; # Handle non-Unix line endings
104 $csv_file_content =~ s/\n+/\n/g;
105 my @csv_file_lines = split(/\n/, $csv_file_content);
106 my $csv_file_field_line = shift(@csv_file_lines);
107 my @csv_file_fields = split(/\,/, $csv_file_field_line);
108 my $found_filename_field = 0;
109 for (my $i = 0; $i < scalar(@csv_file_fields); $i++) {
110 # Remove any spaces from the field names
111 $csv_file_fields[$i] =~ s/ //g;
112 if ($csv_file_fields[$i] eq "Filename") {
113 $found_filename_field = 1;
114 }
115 }
116
117 if (!$found_filename_field) {
118 print STDERR "MetadataCSVPlugin Error: No Filename field in CSV file: $filename\n";
119 return -1; # error
120 }
121 # Read each line of the file and assign the metadata appropriately
122 foreach my $csv_line (@csv_file_lines) {
123 # Ignore lines containing only whitespace
124 next if ($csv_line =~ /^\s*$/);
125 my $orig_csv_line = $csv_line;
126 # Build a hash of metadata name to metadata value for this line
127 my %csv_line_metadata;
128 my $i = 0;
129 $csv_line .= ","; # To make the regular expressions simpler
130 while ($csv_line ne "") {
131 # Metadata values containing commas are quoted
132 if ($csv_line =~ s/^\"(.*?)\"\,//) {
133 # Only bother with non-empty values
134 if ($1 ne "" && defined($csv_file_fields[$i])) {
135 if (!defined $csv_line_metadata{$csv_file_fields[$i]}) {
136 $csv_line_metadata{$csv_file_fields[$i]} = [];
137 }
138 push (@{$csv_line_metadata{$csv_file_fields[$i]}}, $1);
139 }
140 }
141 # Normal comma-separated case
142 elsif ($csv_line =~ s/^(.*?)\,//) {
143 # Only bother with non-empty values
144 if ($1 ne "" && defined($csv_file_fields[$i])) {
145 if (!defined $csv_line_metadata{$csv_file_fields[$i]}) {
146 $csv_line_metadata{$csv_file_fields[$i]} = [];
147 }
148 push (@{$csv_line_metadata{$csv_file_fields[$i]}}, $1);
149 }
150 }
151 # The line must be formatted incorrectly
152 else {
153 print STDERR "MetadataCSVPlugin Error: Badly formatted CSV line: $csv_line.\n";
154 last;
155 }
156
157 $i++;
158 }
159
160 # We can't associate any metadata without knowing the file to associate it with
161 my $csv_line_filename_array = $csv_line_metadata{"Filename"};
162 if (!defined $csv_line_filename_array) {
163 print STDERR "MetadataCSVPlugin Error: No Filename metadata in CSV line: $orig_csv_line\n";
164 next;
165 }
166 my $csv_line_filename = shift(@$csv_line_filename_array);
167 delete $csv_line_metadata{"Filename"};
168
169 # Associate the metadata now
170 $extrametadata->{$csv_line_filename} = \%csv_line_metadata;
171 push(@$extrametakeys, $csv_line_filename);
172 }
173}
174
175
1761;
Note: See TracBrowser for help on using the repository browser.