source: trunk/gsdl/perllib/plugins/XMLPlug.pm@ 9853

Last change on this file since 9853 was 9853, checked in by kjdon, 19 years ago

fixed up maxdocs - now pass an extra parameter to the read function

  • Property svn:keywords set to Author Date Id Revision
File size: 7.2 KB
Line 
1###########################################################################
2#
3# XMLPlug.pm -- base class for XML plugins
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 2001 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26package XMLPlug;
27
28use BasPlug;
29use doc;
30
31sub BEGIN {
32 @XMLPlug::ISA = ('BasPlug');
33 unshift (@INC, "$ENV{'GSDLHOME'}/perllib/cpan");
34}
35
36use XMLParser;
37
38my $arguments =
39 [ { 'name' => "process_exp",
40 'desc' => "{BasPlug.process_exp}",
41 'type' => "regexp",
42 'deft' => &get_default_process_exp(),
43 'reqd' => "no" } ];
44
45my $options = { 'name' => "XMLPlug",
46 'desc' => "{XMLPlug.desc}",
47 'abstract' => "yes",
48 'inherits' => "yes",
49 'args' => $arguments };
50
51
52my ($self);
53sub new {
54 my $class = shift (@_);
55
56 # $self is global for use within subroutines called by XML::Parser
57 $self = new BasPlug ($class, @_);
58 $self->{'plugin_type'} = "XMLPlug";
59 # 14-05-02 To allow for proper inheritance of arguments - John Thompson
60 my $option_list = $self->{'option_list'};
61 push( @{$option_list}, $options );
62
63 my $parser = new XML::Parser('Style' => 'Stream',
64 'Handlers' => {'Char' => \&Char,
65 'XMLDecl' => \&XMLDecl,
66 'Entity' => \&Entity,
67 'Doctype' => \&Doctype,
68 'Default' => \&Default
69 });
70
71
72
73 $self->{'parser'} = $parser;
74
75 return bless $self, $class;
76}
77
78
79sub read {
80 # this must be global!
81 $self = shift (@_);
82
83 my ($pluginfo, $base_dir, $file, $metadata, $processor, $maxdocs, $total_count, $gli) = @_;
84
85 my $filename = $file;
86 $filename = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\w/;
87
88 if ($self->{'block_exp'} ne "" && $filename =~ /$self->{'block_exp'}/) {
89 $self->{'num_blocked'} ++;
90 return 0;
91 }
92 if ($filename !~ /$self->{'process_exp'}/ || !-f $filename) {
93 return undef;
94 }
95 $file =~ s/^[\/\\]+//; # $file often begins with / so we'll tidy it up
96 $self->{'file'} = $file;
97 $self->{'filename'} = $filename;
98 $self->{'processor'} = $processor;
99 $self->{'metadata'} = $metadata;
100 $self->{'gli'} = $gli;
101 eval {
102 $self->{'parser'}->parsefile($filename);
103 };
104
105 if ($@) {
106
107 # parsefile may either croak somewhere in XML::Parser (e.g. because
108 # the document is not well formed) or die somewhere in XMLPlug or a
109 # derived plugin (e.g. because we're attempting to process a
110 # document whose DOCTYPE is not meant for this plugin). For the
111 # first case we'll print a warning and continue, for the second
112 # we'll just continue quietly
113
114 ## print STDERR "**** Error is: $@\n";
115
116 my ($msg) = $@ =~ /Carp::croak\(\'(.*?)\'\)/;
117 if (defined $msg) {
118 my $outhandle = $self->{'outhandle'};
119 my $plugin_name = ref ($self);
120 print $outhandle "$plugin_name failed to process $file ($msg)\n";
121 }
122
123 # reset ourself for the next document
124 $self->{'section_level'}=0;
125 print STDERR "<ProcessingError n='$file'>\n" if ($gli);
126 return -1; # error during processing
127 }
128 return 1; # processed the file
129}
130
131sub get_default_process_exp {
132 my $self = shift (@_);
133
134 return q^(?i)\.xml$^;
135}
136
137sub StartDocument {$self->xml_start_document(@_);}
138sub XMLDecl {$self->xml_xmldecl(@_);}
139sub Entity {$self->xml_entity(@_);}
140sub Doctype {$self->xml_doctype(@_);}
141sub StartTag {$self->xml_start_tag(@_);}
142sub EndTag {$self->xml_end_tag(@_);}
143sub Text {$self->xml_text(@_);}
144sub PI {$self->xml_pi(@_);}
145sub EndDocument {$self->xml_end_document(@_);}
146sub Default {$self->xml_default(@_);}
147
148# This Char function overrides the one in XML::Parser::Stream to overcome a
149# problem where $expat->{Text} is treated as the return value, slowing
150# things down significantly in some cases.
151sub Char {
152 use bytes; # Necessary to prevent encoding issues with XML::Parser 2.31+
153 $_[0]->{'Text'} .= $_[1];
154 return undef;
155}
156
157# Called at the beginning of the XML document.
158sub xml_start_document {
159 my $self = shift(@_);
160 my ($expat) = @_;
161
162 $self->open_document();
163}
164
165# Called for XML declarations
166sub xml_xmldecl {
167 my $self = shift(@_);
168 my ($expat, $version, $encoding, $standalone) = @_;
169}
170
171# Called for XML entities
172sub xml_entity {
173 my $self = shift(@_);
174 my ($expat, $name, $val, $sysid, $pubid, $ndata) = @_;
175}
176
177# Called for DOCTYPE declarations - use die to bail out if this doctype
178# is not meant for this plugin
179sub xml_doctype {
180 my $self = shift(@_);
181 my ($expat, $name, $sysid, $pubid, $internal) = @_;
182 die "XMLPlug Cannot process XML document with DOCTYPE of $name";
183}
184
185# Called for every start tag. The $_ variable will contain a copy of the
186# tag and the %_ variable will contain the element's attributes.
187sub xml_start_tag {
188 my $self = shift(@_);
189 my ($expat, $element) = @_;
190}
191
192# Called for every end tag. The $_ variable will contain a copy of the tag.
193sub xml_end_tag {
194 my $self = shift(@_);
195 my ($expat, $element) = @_;
196}
197
198# Called just before start or end tags with accumulated non-markup text in
199# the $_ variable.
200sub xml_text {
201 my $self = shift(@_);
202 my ($expat) = @_;
203}
204
205# Called for processing instructions. The $_ variable will contain a copy
206# of the pi.
207sub xml_pi {
208 my $self = shift(@_);
209 my ($expat, $target, $data) = @_;
210}
211
212# Called at the end of the XML document.
213sub xml_end_document {
214 my $self = shift(@_);
215 my ($expat) = @_;
216
217 $self->close_document();
218}
219
220# Called for any characters not handled by the above functions.
221sub xml_default {
222 my $self = shift(@_);
223 my ($expat, $text) = @_;
224}
225
226sub open_document {
227 my $self = shift(@_);
228
229 # create a new document
230 $self->{'doc_obj'} = new doc ($self->{'filename'}, "indexed_doc");
231 $self->{'doc_obj'}->set_OIDtype ($self->{'processor'}->{'OIDtype'});
232}
233
234sub close_document {
235 my $self = shift(@_);
236 my $doc_obj = $self->{'doc_obj'};
237 # include any metadata passed in from previous plugins
238 # note that this metadata is associated with the top level section
239 $self->extra_metadata ($doc_obj,
240 $doc_obj->get_top_section(),
241 $self->{'metadata'});
242
243 # do any automatic metadata extraction
244 $self->auto_extract_metadata ($doc_obj);
245
246 # add an OID
247 $doc_obj->set_OID();
248
249 $doc_obj->add_utf8_metadata($doc_obj->get_top_section(), "Plugin", "$self->{'plugin_type'}");
250 $doc_obj->add_metadata($doc_obj->get_top_section(), "FileFormat", "XML");
251
252 # process the document
253 $self->{'processor'}->process($doc_obj);
254
255 $self->{'num_processed'} ++;
256}
257
2581;
259
260
261
262
Note: See TracBrowser for help on using the repository browser.