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

Last change on this file since 7900 was 7900, checked in by chi, 20 years ago

Some minor changes in preparation for the introduction of METSPlug.

  • Property svn:keywords set to Author Date Id Revision
File size: 6.9 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 @ISA = ('BasPlug');
33 unshift (@INC, "$ENV{'GSDLHOME'}/perllib/cpan");
34}
35
36use XML::Parser;
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) = @_;
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
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 return -1; # error during processing
126 }
127 return 1; # processed the file
128}
129
130sub get_default_process_exp {
131 my $self = shift (@_);
132
133 return q^(?i)\.xml$^;
134}
135
136sub StartDocument {$self->xml_start_document(@_);}
137sub XMLDecl {$self->xml_xmldecl(@_);}
138sub Entity {$self->xml_entity(@_);}
139sub Doctype {$self->xml_doctype(@_);}
140sub StartTag {$self->xml_start_tag(@_);}
141sub EndTag {$self->xml_end_tag(@_);}
142sub Text {$self->xml_text(@_);}
143sub PI {$self->xml_pi(@_);}
144sub EndDocument {$self->xml_end_document(@_);}
145sub Default {$self->xml_default(@_);}
146
147# This Char function overrides the one in XML::Parser::Stream to overcome a
148# problem where $expat->{Text} is treated as the return value, slowing
149# things down significantly in some cases.
150sub Char {
151 $_[0]->{'Text'} .= $_[1];
152 return undef;
153}
154
155# Called at the beginning of the XML document.
156sub xml_start_document {
157 my $self = shift(@_);
158 my ($expat) = @_;
159
160 $self->open_document();
161}
162
163# Called for XML declarations
164sub xml_xmldecl {
165 my $self = shift(@_);
166 my ($expat, $version, $encoding, $standalone) = @_;
167}
168
169# Called for XML entities
170sub xml_entity {
171 my $self = shift(@_);
172 my ($expat, $name, $val, $sysid, $pubid, $ndata) = @_;
173}
174
175# Called for DOCTYPE declarations - use die to bail out if this doctype
176# is not meant for this plugin
177sub xml_doctype {
178 my $self = shift(@_);
179 my ($expat, $name, $sysid, $pubid, $internal) = @_;
180 die "XMLPlug Cannot process XML document with DOCTYPE of $name";
181}
182
183# Called for every start tag. The $_ variable will contain a copy of the
184# tag and the %_ variable will contain the element's attributes.
185sub xml_start_tag {
186 my $self = shift(@_);
187 my ($expat, $element) = @_;
188}
189
190# Called for every end tag. The $_ variable will contain a copy of the tag.
191sub xml_end_tag {
192 my $self = shift(@_);
193 my ($expat, $element) = @_;
194}
195
196# Called just before start or end tags with accumulated non-markup text in
197# the $_ variable.
198sub xml_text {
199 my $self = shift(@_);
200 my ($expat) = @_;
201}
202
203# Called for processing instructions. The $_ variable will contain a copy
204# of the pi.
205sub xml_pi {
206 my $self = shift(@_);
207 my ($expat, $target, $data) = @_;
208}
209
210# Called at the end of the XML document.
211sub xml_end_document {
212 my $self = shift(@_);
213 my ($expat) = @_;
214
215 $self->close_document();
216}
217
218# Called for any characters not handled by the above functions.
219sub xml_default {
220 my $self = shift(@_);
221 my ($expat, $text) = @_;
222}
223
224sub open_document {
225 my $self = shift(@_);
226
227 # create a new document
228 $self->{'doc_obj'} = new doc ($self->{'filename'}, "indexed_doc");
229 $self->{'doc_obj'}->set_OIDtype ($self->{'processor'}->{'OIDtype'});
230}
231
232sub close_document {
233 my $self = shift(@_);
234
235 # include any metadata passed in from previous plugins
236 # note that this metadata is associated with the top level section
237 $self->extra_metadata ($self->{'doc_obj'},
238 $self->{'doc_obj'}->get_top_section(),
239 $self->{'metadata'});
240
241 # do any automatic metadata extraction
242 $self->auto_extract_metadata ($self->{'doc_obj'});
243
244 # add an OID
245 $self->{'doc_obj'}->set_OID();
246
247 $doc_obj->add_utf8_metadata($doc_obj->get_top_section(), "Plugin", "$self->{'plugin_type'}");
248
249 # process the document
250 $self->{'processor'}->process($self->{'doc_obj'});
251
252 $self->{'num_processed'} ++;
253}
254
2551;
256
257
258
259
Note: See TracBrowser for help on using the repository browser.