source: trunk/gsdl/perllib/classify/SectionList.pm@ 8852

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

shifted format_metadata_for_sorting from BasCLas to sorttools, so other things can use it

  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1###########################################################################
2#
3# SectionList.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# Same as List classifier but includes all sections of document
27# (excluding top level) rather than just top level document
28# itself
29
30# 12/05/02 Added usage datastructure - John Thompson
31
32package SectionList;
33
34use List;
35use sorttools;
36
37sub BEGIN {
38 @ISA = ('List');
39}
40
41my $options = { 'name' => "SectionList",
42 'desc' => "{SectionList.desc}",
43 'abstract' => "no",
44 'inherits' => "yes" };
45
46
47sub new {
48 my $class = shift (@_);
49 my $self = new List($class, @_);
50
51 # 14-05-02 To allow for proper inheritance of arguments - John Thompson
52 my $option_list = $self->{'option_list'};
53 push( @{$option_list}, $options );
54
55 #if ($self->{'info_only'}) {
56 # created from classinfo.pl - don't need to parse the arguments
57 # return bless $self, $class;
58 #}
59 return bless $self, $class;
60}
61
62sub classify {
63 my $self = shift (@_);
64 my ($doc_obj, @options) = @_;
65
66 # @options used by AZCompactList when is uses SectionList internally
67 # are we sorting the list??
68 my $nosort = 0;
69 if (defined $self->{'sortname'} && $self->{'sortname'} eq "nosort") {
70 $nosort = 1;
71 }
72
73 my $thissection = undef;
74
75 my $option;
76 foreach $option (@options)
77 {
78 if ($option =~ m/^section=(\d+)$/i)
79 {
80 $thissection = $1;
81 }
82 }
83
84 my $sortmeta = "";
85 if (!$nosort && defined $self->{'sortname'}) {
86 if ($self->{'sortname'} =~ /^filename$/i) {
87 $sortmeta = $doc_obj->get_source_filename();
88 } else {
89 $sortmeta = $doc_obj->get_metadata_element($doc_obj->get_top_section(), $self->{'sortname'});
90 if (defined $sortmeta) {
91 $sortmeta = &sorttools::format_metadata_for_sorting($self->{'sortname'}, $sortmeta, $doc_obj);
92 }
93 }
94 $sortmeta = "" unless defined $sortmeta;
95 }
96
97 if (defined $thissection) {
98 # just classify the one section
99 $self->classify_section($thissection, $doc_obj, $sortmeta, $nosort);
100 } else
101 {
102 $thissection = $doc_obj->get_next_section ($doc_obj->get_top_section());
103 while (defined $thissection) {
104 $self->classify_section($thissection, $doc_obj, $sortmeta, $nosort);
105 $thissection = $doc_obj->get_next_section ($thissection);
106 }
107 }
108}
109
110sub classify_section {
111 my $self = shift (@_);
112 my ($section, $doc_obj, $sortmeta, $nosort) = @_;
113
114 my $doc_OID = $doc_obj->get_OID();
115 $nosort = 0 unless defined $nosort;
116 $sortmeta = "" unless defined $sortmeta;
117
118 my $metavalue;
119 my $metaname;
120 if (defined $self->{'meta_list'}) {
121 # find the first available metadata
122 foreach $m (@{$self->{'meta_list'}}) {
123 $metavalue = $doc_obj->get_metadata_element($section, $m);
124 $metaname = $m;
125 last if defined $metavalue;
126 }
127 #if we haven't found a metavalue here, then the section shouldn't be included
128 return unless defined $metavalue;
129 }
130
131 # we know the section should be included, add it now if we are not sorting
132 if ($nosort) {
133 push (@{$self->{'list'}}, "$doc_OID.$section");
134 return;
135 }
136 # check that it hasn't been added already
137 if (defined $self->{'list'}->{"$doc_OID.$section"}) {
138 my $outhandle = $self->{'outhandle'};
139 print $outhandle "WARNING: SectionList::classify called multiple times for $doc_OID.$section\n";
140 }
141
142 if (defined $self->{'sortname'}) {
143 # sorting on alternative metadata
144 $self->{'list'}->{"$doc_OID.$section"} = $sortmeta;
145 } else {
146 # sortingon the classification metadata
147 # do the same formatting on the meta value as for sort meta
148 $metavalue = &sorttools::format_metadata_for_sorting($metaname, $metavalue, $doc_obj);
149 $self->{'list'}->{"$doc_OID.$section"} = $metavalue;
150 }
151}
1521;
Note: See TracBrowser for help on using the repository browser.