source: trunk/gsdl/perllib/classify/AZSectionList.pm@ 1250

Last change on this file since 1250 was 1250, checked in by sjboddie, 24 years ago

Tidied up the classfiers slightly, made them a little more object oriented
and removed large chunks of identical code that existed in several
different places. There's still lots to be done to them but I'd like to
wait for gsdl-3.0 (as one of the changes will effect the way options are
passed so all collect.cfg files will need to be updated).

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1###########################################################################
2#
3# AZSectionList.pm --
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) 1999 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
26# classifier plugin for sorting sections alphabetically
27
28# this is very similar to AZList except it sorts by
29# section level metadata (excluding the top level)
30# instead of just top level metadata
31
32# the only change is to the classify() subroutine which
33# must now iterate through each section, adding each
34# to the classification
35
36package AZSectionList;
37
38use AZList;
39use sorttools;
40
41sub BEGIN {
42 @ISA = ('AZList');
43}
44
45sub classify {
46 my $self = shift (@_);
47 my ($doc_obj) = @_;
48
49 my $doc_OID = $doc_obj->get_OID();
50 my $thissection = $doc_obj->get_next_section ($doc_obj->get_top_section());
51
52 while (defined $thissection) {
53 $self->classify_section ($thissection, $doc_obj);
54 $thissection = $doc_obj->get_next_section ($thissection);
55 }
56}
57
58sub classify_section {
59 my $self = shift (@_);
60 my ($section, $doc_obj) = @_;
61
62 my $doc_OID = $doc_obj->get_OID();
63 my $metavalue = $doc_obj->get_metadata_element ($section, $self->{'metaname'});
64
65 # if this section doesn't contain the metadata element we're
66 # sorting by we won't include it in this classification
67 if (defined $metavalue && $metavalue ne "") {
68 if ($self->{'metaname'} eq 'Creator') {
69 &sorttools::format_string_name_english (\$metavalue);
70 } else {
71 &sorttools::format_string_english (\$metavalue);
72 }
73 if (defined $self->{'list'}->{"$doc_OID.$section"}) {
74 print STDERR "WARNING: AZSectionList::classify called multiple times " .
75 "for $doc_OID.$section\n";
76 }
77 $self->{'list'}->{"$doc_OID.$section"} = $metavalue;
78 }
79}
80
81
821;
Note: See TracBrowser for help on using the repository browser.