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

Last change on this file since 7405 was 6969, checked in by kjdon, 20 years ago

removed the args, cos it only uses AZlist args anyway. now uses self->format_metadata_for_sorting, and uses comma separated list of metadata instead of just one

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
RevLine 
[537]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
[391]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
[3540]36# 12/05/02 Added usage datastructure - John Thompson
37
[391]38package AZSectionList;
39
[1250]40use AZList;
[391]41use sorttools;
42
[1250]43sub BEGIN {
44 @ISA = ('AZList');
[391]45}
46
[4759]47my $options = { 'name' => "AZSectionList",
[5645]48 'desc' => "{AZSectionList.desc}",
[6408]49 'abstract' => "no",
[6969]50 'inherits' => "yes" };
[3540]51
[1839]52
[1483]53sub new {
[1839]54 my $class = shift (@_);
55 my $self = new AZList($class, @_);
56
[4759]57 # 14-05-02 To allow for proper inheritance of arguments - John Thompson
58 my $option_list = $self->{'option_list'};
59 push( @{$option_list}, $options );
[6968]60
61 #if ($self->{'info_only'}) {
62 # created from classinfo.pl - don't need to parse the arguments
63 # return bless $self, $class;
64 #}
[3540]65
[1611]66 return bless $self, $class;
[1483]67}
68
[391]69sub classify {
70 my $self = shift (@_);
71 my ($doc_obj) = @_;
72
73 my $doc_OID = $doc_obj->get_OID();
74 my $thissection = $doc_obj->get_next_section ($doc_obj->get_top_section());
75
76 while (defined $thissection) {
[424]77 $self->classify_section ($thissection, $doc_obj);
78 $thissection = $doc_obj->get_next_section ($thissection);
79 }
80}
[391]81
[424]82sub classify_section {
83 my $self = shift (@_);
84 my ($section, $doc_obj) = @_;
[391]85
[424]86 my $doc_OID = $doc_obj->get_OID();
87
[6969]88 my $metavalue;
89 my $metaname;
90
91 if (!defined $self->{'meta_list'}) {
92 # just in case
93 return;
94 }
95
96 # find the first available metadata
97 foreach $m (@{$self->{'meta_list'}}) {
98 $metavalue = $doc_obj->get_metadata_element($section, $m);
99 $metaname = $m;
100 last if defined $metavalue;
101 }
102
[424]103 # if this section doesn't contain the metadata element we're
104 # sorting by we won't include it in this classification
[3540]105
[618]106 if (defined $metavalue && $metavalue ne "") {
[2954]107 if ($self->{'removeprefix'}) {
108 $metavalue =~ s/^$self->{'removeprefix'}//;
109 }
[6969]110
111 $metavalue = $self->format_metadata_for_sorting($metaname, $metavalue, $doc_obj);
[424]112 if (defined $self->{'list'}->{"$doc_OID.$section"}) {
[1483]113 my $outhandle = $self->{'outhandle'};
114 print $outhandle "WARNING: AZSectionList::classify called multiple times " .
[652]115 "for $doc_OID.$section\n";
[424]116 }
117 $self->{'list'}->{"$doc_OID.$section"} = $metavalue;
[391]118 }
119}
120
121
1221;
Note: See TracBrowser for help on using the repository browser.