########################################################################### # # DateList.pm -- # A component of the Greenstone digital library software # from the New Zealand Digital Library Project at the # University of Waikato, New Zealand. # # Copyright (C) 1999 New Zealand Digital Library Project # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # ########################################################################### # classifier plugin for sorting by date # date is assumed to be in the form yyyymmdd # at present dates are split by year - this should change # jrm21 - added option "bymonth", which splits by year and month. # 23/09/03 Added some more options -kjdon. # these include: # -nogroup, which makes each year (or year+month) an individual entry in # the horizontal list and prevents compaction # -metadata, use a different metadata for the date (instead of Date), still expects yyyymmdd format. this affects display cos greenstone displays Date metadata as dd month yyyy, whereas any other date metadata is displayed as yyyymmdd - this needs fixing # -sort specifies an additional metadata to use in sorting, will take affect when two docs have the same date. package DateList; use BasClas; use sorttools; sub BEGIN { @ISA = ('BasClas'); } my $arguments = [ { 'name' => "metadata", 'desc' => "{DateList.metadata}", 'type' => "metadata", 'deft' => "Date", 'reqd' => "no" } , { 'name' => "sort", 'desc' => "{DateList.sort}", 'type' => "metadata", 'reqd' => "no" } , { 'name' => "bymonth", 'desc' => "{DateList.bymonth}", 'type' => "flag", 'reqd' => "no" }, { 'name' => "nogroup", 'desc' => "{DateList.nogroup}", 'type' => "flag", 'reqd' => "no" }, ]; my $options = { 'name' => "DateList", 'desc' => "{DateList.desc}", 'abstract' => "no", 'inherits' => "yes", 'args' => $arguments }; sub new { my $class = shift (@_); my $self = new BasClas($class, @_); # 14-05-02 To allow for proper inheritance of arguments - John Thompson my $option_list = $self->{'option_list'}; push( @{$option_list}, $options ); if ($self->{'info_only'}) { # created from classinfo.pl - don't need to parse the arguments return bless $self, $class; } $self->{'list'} = {}; my ($datemeta, $sortmeta); $self->{'nogroup'}=0; if (!parsargv::parse(\@_, q^bymonth^, \$self->{'bymonth'}, q^nogroup^, \$self->{'nogroup'}, q^metadata/.*/^, \$datemeta, q^sort/.*/^, \$sortmeta, "allow_extra_options")) { $self->print_txt_usage(""); # Use default resource bundle die "\n"; } if (!defined $datemeta || $datemeta eq "") { $datemeta = "Date"; } $self->{'datemeta'} = $datemeta; if (defined $sortmeta && $sortmeta ne "") { $self->{'sortmeta'} = $sortmeta; } return bless $self, $class; } sub init { my $self = shift (@_); $self->{'list'} = {}; } sub classify { my $self = shift (@_); my ($doc_obj) = @_; my $doc_OID = $doc_obj->get_OID(); my $date = $doc_obj->get_metadata_element ($doc_obj->get_top_section(), $self->{'datemeta'}); my $sort_other = ""; if (defined $self->{'sortmeta'} && $self->{'sortmeta'} ne "") { $sort_other = $doc_obj->get_metadata_element ($doc_obj->get_top_section(), $self->{'sortmeta'}); } # if this document doesn't contain Date element we won't # include it in this classification if (defined $date && $date =~ /\d/) { if (defined $self->{'list'}->{$doc_OID}) { my $outhandle = $self->{'outhandle'}; print $outhandle "WARNING: DateList::classify called multiple times for $doc_OID\n"; } $self->{'list'}->{$doc_OID} = "$date$sort_other"; } } sub get_classify_info { my $self = shift (@_); my @classlist = sort {$self->{'list'}->{$a} cmp $self->{'list'}->{$b};} keys %{$self->{'list'}}; return $self->splitlist (\@classlist); } sub get_entry { my $self = shift (@_); my ($title, $childtype, $thistype) = @_; # organise into classification structure my %classifyinfo = ('childtype'=>$childtype, 'Title'=>$title, 'contains'=>[], 'mdtype'=>$self->{'datemeta'}); $classifyinfo{'thistype'} = $thistype if defined $thistype && $thistype =~ /\w/; return \%classifyinfo; } # splitlist takes an ordered list of classifications (@$classlistref) and # splits it up into sub-sections by date sub splitlist { my $self = shift (@_); my ($classlistref) = @_; my $classhash = {}; # top level my $childtype = "HList"; if (scalar (@$classlistref) <= 39 && !$self->{'nogroup'}) {$childtype = "DateList";} my $classifyinfo = $self->get_entry ("Date", $childtype, "Invisible"); # don't need to do any splitting if there are less than 39 (max + min -1) # classifications, unless nogroup is specified if ((scalar @$classlistref) <= 39 && !$self->{'nogroup'}) { foreach $subOID (@$classlistref) { push (@{$classifyinfo->{'contains'}}, {'OID'=>$subOID}); } return $classifyinfo; } if ($self->{'bymonth'}) { # first split up the list into separate year+month classifications if (!$self->{'nogroup'}) { # hlist of year+month pairs # single level of classifications foreach $classification (@$classlistref) { my $date = $self->{'list'}->{$classification}; $date =~ s/^(\d\d\d\d)(\d\d).*$/$1 _textmonth$2_/; # sanity check if month is zero if ($date =~ /00_$/) { $date =~ s/^(\d\d\d\d).*$/$1/g; } $classhash->{$date} = [] unless defined $classhash->{$date}; push (@{$classhash->{$date}}, $classification); } } else { # don't group - individual years and months foreach $classification (@$classlistref) { my $date = $self->{'list'}->{$classification}; $date =~ s/^(\d\d\d\d)(\d\d).*$/$1 _textmonth$2_/; my ($year, $month)=($1,$2); # sanity check if month is zero if ($date =~ /00_$/) { $date =~ s/^(\d\d\d\d).*$/$1/g; } # create subclass if it doesn't already exist $classhash->{$year} = () unless defined $classhash->{$year}; $classhash->{$year}->{$month} = [] unless defined $classhash->{$year}->{$month}; push (@{$classhash->{$year}->{$month}}, $classification); } # create hlist of years containing hlists of months foreach my $subclass (sort {$a <=> $b} keys %$classhash) { my $yearclassify = $self->get_entry($subclass, "HList"); foreach my $subsubclass (sort {$a <=> $b} (keys %{$classhash->{$subclass}})) { my $monthname=$subsubclass; if ($monthname >= 1 && $monthname <= 12) { $monthname="_textmonth" . $monthname . "_"; } my $monthclassify=$self->get_entry($monthname, "DateList"); push (@{$yearclassify->{'contains'}}, $monthclassify); foreach $subsubOID (@{$classhash->{$subclass}->{$subsubclass}}) { push (@{$monthclassify->{'contains'}}, {'OID'=>$subsubOID}); } } push (@{$classifyinfo->{'contains'}}, $yearclassify); } return $classifyinfo; } # nogroup } else { # not by month # first split up the list into separate year classifications foreach $classification (@$classlistref) { my $date = $self->{'list'}->{$classification}; $date =~ s/^(\d\d\d\d).*$/$1/; $classhash->{$date} = [] unless defined $classhash->{$date}; push (@{$classhash->{$date}}, $classification); } } # only compact the list if nogroup not specified if (!$self->{'nogroup'}) { $classhash = $self->compactlist ($classhash); } foreach $subclass (sort keys %$classhash) { my $tempclassify = $self->get_entry($subclass, "DateList"); foreach $subsubOID (@{$classhash->{$subclass}}) { push (@{$tempclassify->{'contains'}}, {'OID'=>$subsubOID}); } push (@{$classifyinfo->{'contains'}}, $tempclassify); } return $classifyinfo; } sub compactlist { my $self = shift (@_); my ($classhashref) = @_; my $compactedhash = {}; my @currentOIDs = (); my $currentfirstdate = ""; my $currentlastdate = ""; my $lastkey = ""; # minimum and maximum documents to be displayed per page. # the actual maximum will be max + (min-1). # the smallest sub-section is a single letter at present # so in this case there may be many times max documents # displayed on a page. my $min = 10; my $max = 30; foreach my $subsection (sort keys %$classhashref) { $currentfirstdate = $subsection if $currentfirstdate eq ""; if ((scalar (@currentOIDs) < $min) || ((scalar (@currentOIDs) + scalar (@{$classhashref->{$subsection}})) <= $max)) { push (@currentOIDs, @{$classhashref->{$subsection}}); $currentlastdate = $subsection; } else { if ($currentfirstdate eq $currentlastdate) { @{$compactedhash->{$currentfirstdate}} = @currentOIDs; $lastkey = $currentfirstdate; } else { @{$compactedhash->{"$currentfirstdate-$currentlastdate"}} = @currentOIDs; $lastkey = "$currentfirstdate-$currentlastdate"; } if (scalar (@{$classhashref->{$subsection}}) >= $max) { $compactedhash->{$subsection} = $classhashref->{$subsection}; @currentOIDs = (); $currentfirstdate = ""; $lastkey = $subsection; } else { @currentOIDs = @{$classhashref->{$subsection}}; $currentfirstdate = $subsection; $currentlastdate = $subsection; } } } # add final OIDs to last sub-classification if there aren't many otherwise # add final sub-classification if ((scalar (@currentOIDs) < $min) && (scalar (@currentOIDs) > 0)) { # want every thing in previous up to the dash my ($newkey) = $lastkey =~ /^([^\-]+)/; @currentOIDs = (@{$compactedhash->{$lastkey}}, @currentOIDs); delete $compactedhash->{$lastkey}; @{$compactedhash->{"$newkey-$currentlastdate"}} = @currentOIDs; } else { if ($currentfirstdate eq $currentlastdate) { @{$compactedhash->{$currentfirstdate}} = @currentOIDs; } else { @{$compactedhash->{"$currentfirstdate-$currentlastdate"}} = @currentOIDs; } } return $compactedhash; } 1;