source: main/trunk/greenstone2/perllib/classify.pm@ 27665

Last change on this file since 27665 was 27665, checked in by kjdon, 11 years ago

Needed to add a second change to the previous commit

  • Property svn:keywords set to Author Date Id Revision
File size: 14.5 KB
Line 
1###########################################################################
2#
3# classify.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# functions to handle classifiers
27
28package classify;
29
30require util;
31use FileUtils;
32require AllList;
33
34use dbutil;
35use gsprintf;
36use strict; no strict 'subs';
37
38
39sub gsprintf
40{
41 return &gsprintf::gsprintf(@_);
42}
43
44
45sub load_classifier_for_info {
46 my ($classifier) = shift @_;
47
48 # find the classifier
49 # - used to have hardcoded list of places to load classifier from. We
50 # should, instead, try loading from all of the perllib places on the
51 # library path, as that improves support for extensions. Special cases
52 # needed for collection specific and custom classifier. [jmt12]
53 my @possible_class_paths;
54 if (defined($ENV{'GSDLCOLLECTION'}))
55 {
56 push(@possible_class_paths, &FileUtils::filenameConcatenate($ENV{'GSDLCOLLECTDIR'}, 'custom', $ENV{'GSDLCOLLECTION'}, 'perllib', 'classify', $classifier . '.pm'));
57 }
58 # (why does GSDLCOLLECTDIR get set to GSDLHOME for classinfo calls?)
59 if ($ENV{'GSDLCOLLECTDIR'} ne $ENV{'GSDLHOME'})
60 {
61 push(@possible_class_paths, &FileUtils::filenameConcatenate($ENV{'GSDLCOLLECTDIR'}, 'perllib', 'classify', $classifier . '.pm'));
62 }
63 foreach my $library_path (@INC)
64 {
65 # only interested in classify paths found in the library paths
66 if ($library_path =~ /classify$/)
67 {
68 push(@possible_class_paths, &FileUtils::filenameConcatenate($library_path, $classifier . '.pm'));
69 }
70 }
71 my $found_class = 0;
72 foreach my $possible_class_path (@possible_class_paths)
73 {
74 if (-e $possible_class_path)
75 {
76 require $possible_class_path;
77 $found_class = 1;
78 last;
79 }
80 }
81 if (!$found_class)
82 {
83 &gsprintf(STDERR, "{classify.could_not_find_classifier}\n", $classifier) && die "\n";
84 }
85
86 my ($classobj);
87 my $options = "-gsdlinfo";
88 eval ("\$classobj = new \$classifier([],[$options])");
89 die "$@" if $@;
90
91 return $classobj;
92}
93
94sub load_classifiers {
95 my ($classify_list, $build_dir, $outhandle) = @_;
96 my @classify_objects = ();
97 my $classify_number = 1;
98
99 # - ensure colclassdir doesn't already exist in INC before adding, other-
100 # wise we risk clobbering classifier inheritence implied by order of paths
101 # in INC [jmt12]
102 my $colclassdir = &FileUtils::filenameConcatenate($ENV{'GSDLCOLLECTDIR'},"perllib/classify");
103 &util::augmentINC($colclassdir);
104
105 foreach my $classifyoption (@$classify_list) {
106
107 # get the classifier name
108 my $classname = shift @$classifyoption;
109 next unless defined $classname;
110
111 # find the classifier
112 # - replaced as explained in load_classifier_for_info() [jmt12]
113 my @possible_class_paths;
114 if (defined($ENV{'GSDLCOLLECTION'}))
115 {
116 push(@possible_class_paths, &FileUtils::filenameConcatenate($ENV{'GSDLCOLLECTDIR'}, 'custom', $ENV{'GSDLCOLLECTION'}, 'perllib', 'classify', $classname . '.pm'));
117 }
118 # (why does GSDLCOLLECTDIR get set to GSDLHOME for classinfo calls?)
119 if ($ENV{'GSDLCOLLECTDIR'} ne $ENV{'GSDLHOME'})
120 {
121 push(@possible_class_paths,&FileUtils::filenameConcatenate($ENV{'GSDLCOLLECTDIR'}, 'perllib', 'classify', $classname . '.pm'));
122 }
123 foreach my $library_path (@INC)
124 {
125 # only interested in classify paths found in the library paths
126 if ($library_path =~ /classify$/)
127 {
128 push(@possible_class_paths, &FileUtils::filenameConcatenate($library_path, $classname . '.pm'));
129 }
130 }
131 my $found_class = 0;
132 foreach my $possible_class_path (@possible_class_paths)
133 {
134 if (-e $possible_class_path)
135 {
136 require $possible_class_path;
137 $found_class = 1;
138 last;
139 }
140 }
141 if (!$found_class)
142 {
143 &gsprintf(STDERR, "{classify.could_not_find_classifier}\n", $classname) && die "\n";
144 }
145
146 # create the classify object
147 my ($classobj);
148
149 my @newoptions;
150
151 # do these first so they can be overriden by user supplied options
152 (my $build_dir_re = $build_dir) =~ s@\\@\\\\@g;
153 push @newoptions, "-builddir", "$build_dir_re" if ($build_dir);
154 push @newoptions, "-outhandle", "$outhandle" if ($outhandle);
155 push @newoptions, "-verbosity", "2";
156
157 # backwards compatability hack: if the classifier options are
158 # in "x=y" format, convert them to parsearg ("-x y") format.
159 my ($opt, $key, $value);
160 foreach $opt (@$classifyoption) {
161 # if ($opt =~ /^(\w+)=(.*)$/) {
162 # push @newoptions, "-$1", $2;
163 # } else {
164 push @newoptions, $opt;
165 #}
166 }
167
168 map { $_ = "\"$_\""; } @newoptions;
169 my $options .= join (",", @newoptions);
170
171
172 eval ("\$classobj = new \$classname([],[$options])");
173 die "$@" if $@;
174
175 $classobj->set_number($classify_number);
176 $classify_number ++;
177
178 # add this object to the list
179 push (@classify_objects, $classobj);
180 }
181
182 my ($classobj);
183 eval ("\$classobj = new AllList()");
184 die "$@" if $@;
185 push (@classify_objects, $classobj);
186
187 return \@classify_objects;
188}
189
190# init_classifiers resets all the classifiers and readys them to process
191# the documents.
192sub init_classifiers {
193 my ($classifiers) = @_;
194
195 foreach my $classobj (@$classifiers) {
196 $classobj->init();
197 }
198}
199
200
201
202# takes a hashref containing the metadata for an infodb entry, and extracts
203# the childrens numbers (from the 'contains' entry).
204# assumes format is ".1;".2;".3
205sub get_children {
206 my ($doc_db_hash) = @_;
207
208 my $children = undef;
209
210 my $contains = $doc_db_hash->{'contains'};
211 if (defined ($contains)) {
212 $contains =~ s/\@$//; #remove trailing @
213 $contains =~ s/^\"\.//; #remove initial ".
214 @$children = split /\;\"\./, $contains;
215 }
216
217 return $children;
218}
219
220
221sub recurse_sections {
222 my ($doc_obj, $children, $parentoid, $parentsection, $database_recs) = @_;
223
224 return if (!defined $children);
225
226 foreach my $child (sort { $a <=> $b} @$children) {
227 $doc_obj->create_named_section("$parentsection.$child");
228 my $doc_db_rec = $database_recs->{"$parentoid.$child"};
229 my $doc_db_hash = db_rec_to_hash($doc_db_rec);
230
231 # get child's children
232 my $newchildren = &get_children($doc_db_hash);
233
234 # add content for current section
235 add_section_content($doc_obj, "$parentsection.$child", $doc_db_hash);
236
237 # process all the children if there are any
238 if (defined ($newchildren))
239 {
240 recurse_sections($doc_obj, $newchildren, "$parentoid.$child",
241 "$parentsection.$child", $database_recs);
242 }
243 }
244}
245
246
247sub add_section_content {
248 my ($doc_obj, $cursection, $doc_db_hash) = @_;
249
250 foreach my $key (keys %$doc_db_hash) {
251 #don't need to store these metadata
252 next if $key =~ /(thistype|childtype|contains|docnum|doctype|classifytype)/i;
253 # but do want things like hastxt and archivedir
254 my @items = split /@/, $doc_db_hash->{$key};
255 # metadata is all from the info database so should already be in utf8
256 map {$doc_obj->add_utf8_metadata ($cursection, $key, $_); } @items;
257
258 }
259}
260
261
262# gets all the metadata from an infodb entry, and puts it into a hashref
263sub db_rec_to_hash {
264
265 my ($infodb_str_ref) = @_;
266
267 my $hashref = {};
268
269 my @entries = split(/\n/, $infodb_str_ref);
270 foreach my $entry (@entries) {
271 my($key, $value) = ($entry =~ /^<([^>]*)>(.*?)$/ );
272 $hashref->{$key} .= '@' if defined $hashref->{$key};
273 $hashref->{$key} .= $value;
274
275 }
276
277 return $hashref;
278}
279
280
281sub reconstruct_doc_objs_metadata
282{
283 my $infodb_type = shift(@_);
284 my $infodb_file_path = shift(@_);
285 my $database_recs = shift(@_);
286
287 # dig out top level doc sections
288 my %top_sections = ();
289 my %top_docnums = ();
290 foreach my $key ( keys %$database_recs )
291 {
292 my $md_rec = $database_recs->{$key};
293 my $md_hash = db_rec_to_hash($md_rec);
294
295 if ((defined $md_hash->{'doctype'}) && ($md_hash->{'doctype'} eq "doc")) {
296 next if ($key =~ m/\./);
297 $top_sections{$key} = $md_hash;
298 $top_docnums{$key} = $md_hash->{'docnum'};
299 }
300 }
301
302 # for greenstone document objects based on metadata in database file
303 my @all_docs = ();
304 # we need to make sure the documents were processed in the same order as
305 # before, so sort based on their docnums
306 foreach my $oid ( sort { $top_docnums{$a} <=> $top_docnums{$b} } keys %top_sections )
307 {
308 my $doc_db_hash = $top_sections{$oid};
309
310 my $doc_obj = new doc();
311 $doc_obj->set_OID($oid);
312 my $top = $doc_obj->get_top_section();
313 add_section_content ($doc_obj, $top, $doc_db_hash);
314 my $children = &get_children($doc_db_hash);
315 recurse_sections($doc_obj, $children, $oid, $top, $database_recs);
316
317 push(@all_docs,$doc_obj);
318 }
319
320 return \@all_docs;
321}
322
323
324
325
326
327# classify_doc lets each of the classifiers classify a document
328sub classify_doc {
329 my ($classifiers, $doc_obj) = @_;
330
331 foreach my $classobj (@$classifiers) {
332 my $title = $classobj->{'title'};
333
334 $classobj->classify($doc_obj);
335 }
336}
337
338
339our $next_classify_num = 1;
340
341# output_classify_info outputs all the info needed for the classification
342# to the database
343sub output_classify_info
344{
345 my ($classifiers, $infodb_type, $infodb_handle, $remove_empty_classifications, $gli) = @_;
346
347 $gli = 0 unless defined $gli;
348
349 # create a classification containing all the info
350 my $classifyinfo = { 'classifyOID'=> 'browse',
351 'contains' => [] };
352
353 # get each of the classifications
354 foreach my $classifier (@$classifiers)
355 {
356 my $classifier_info = $classifier->get_classify_info($gli);
357 $classifier_info->{'classifyOID'} = "CL$next_classify_num" unless defined($classifier_info->{'classifyOID'});
358 print STDERR "*** outputting information for classifier: $classifier_info->{'classifyOID'}\n";
359
360 push(@{$classifyinfo->{'contains'}}, $classifier_info);
361 $next_classify_num++;
362 }
363
364 &print_classify_info($infodb_type, $infodb_handle, $classifyinfo, "", $remove_empty_classifications);
365}
366
367
368sub print_classify_info
369{
370 my ($infodb_type, $infodb_handle, $classifyinfo, $OID, $remove_empty_classifications) = @_;
371
372 $OID =~ s/^\.+//; # just for good luck
373
374 # book information is printed elsewhere
375 return if (defined ($classifyinfo->{'OID'}));
376
377 # don't want empty classifications
378 return if (&check_contents ($classifyinfo, $remove_empty_classifications) == 0 && $remove_empty_classifications);
379
380 $OID = $classifyinfo->{'classifyOID'} if defined ($classifyinfo->{'classifyOID'});
381
382 my %classify_infodb = ();
383 $classify_infodb{"doctype"} = [ "classify" ];
384 $classify_infodb{"hastxt"} = [ "0" ];
385 $classify_infodb{"childtype"} = [ $classifyinfo->{'childtype'} ]
386 if defined $classifyinfo->{'childtype'};
387 $classify_infodb{"Title"} = [ $classifyinfo->{'Title'} ]
388 if defined $classifyinfo->{'Title'};
389 $classify_infodb{"numleafdocs"} = [ $classifyinfo->{'numleafdocs'} ]
390 if defined $classifyinfo->{'numleafdocs'};
391 $classify_infodb{"thistype"} = [ $classifyinfo->{'thistype'} ]
392 if defined $classifyinfo->{'thistype'};
393 $classify_infodb{"parameters"} = [ $classifyinfo->{'parameters'} ]
394 if defined $classifyinfo->{'parameters'};
395 $classify_infodb{"supportsmemberof"} = [ $classifyinfo->{'supportsmemberof'} ]
396 if defined $classifyinfo->{'supportsmemberof'};
397
398 my $contains_text = "";
399 my $mdoffset_text = "";
400
401 my $next_subOID = 1;
402 my $first = 1;
403 foreach my $tempinfo (@{$classifyinfo->{'contains'}}) {
404 # empty contents were made undefined by clean_contents()
405 next unless defined $tempinfo;
406 if (!defined ($tempinfo->{'classifyOID'}) ||
407 $tempinfo->{'classifyOID'} ne "oai") {
408 $contains_text .= ";" unless $first;
409 }
410 $mdoffset_text .= ";" unless $first;
411 $first = 0;
412
413 if (defined ($tempinfo->{'classifyOID'}))
414 {
415 if ($tempinfo->{'classifyOID'} ne "oai")
416 {
417 $contains_text .= $tempinfo->{'classifyOID'};
418 }
419
420 &print_classify_info ($infodb_type, $infodb_handle, $tempinfo, $tempinfo->{'classifyOID'},
421 $remove_empty_classifications);
422 }
423 elsif (defined ($tempinfo->{'OID'}))
424 {
425 $contains_text .= $tempinfo->{'OID'};
426 $mdoffset_text .= $tempinfo->{'offset'} if (defined ($tempinfo->{'offset'}));
427 }
428 else
429 {
430 # Supress having top-level node in Collage classifier
431 # so no bookshelf icon appears, top-level, along with the
432 # applet
433 if (!defined ($tempinfo->{'Title'}) || $tempinfo->{'Title'} ne "Collage")
434 {
435 $contains_text .= "\".$next_subOID";
436 }
437
438 &print_classify_info ($infodb_type, $infodb_handle, $tempinfo, "$OID.$next_subOID",
439 $remove_empty_classifications);
440 $next_subOID++;
441 }
442 }
443
444 $classify_infodb{"contains"} = [ $contains_text ];
445 $classify_infodb{"mdtype"} = [ $classifyinfo->{'mdtype'} ]
446 if defined $classifyinfo->{'mdtype'};
447 $classify_infodb{"mdoffset"} = [ $mdoffset_text ]
448 if ($mdoffset_text !~ m/^;+$/);
449
450 &dbutil::write_infodb_entry($infodb_type, $infodb_handle, $OID, \%classify_infodb);
451}
452
453
454sub check_contents {
455 my ($classifyinfo,$remove_empty_classifications) = @_;
456 $remove_empty_classifications = 0 unless ($remove_empty_classifications);
457 my $num_leaf_docs = 0;
458 my $sub_num_leaf_docs = 0;
459
460 return $classifyinfo->{'numleafdocs'} if (defined $classifyinfo->{'numleafdocs'});
461
462 foreach my $content (@{$classifyinfo->{'contains'}}) {
463 if (defined $content->{'OID'}) {
464 # found a book
465 $num_leaf_docs ++;
466 } elsif (($sub_num_leaf_docs = &check_contents ($content,$remove_empty_classifications)) > 0) {
467 # there's a book somewhere below
468 $num_leaf_docs += $sub_num_leaf_docs;
469 } else {
470 if ($remove_empty_classifications){
471 # section contains no books so we want to remove
472 # it from its parents contents
473 $content = undef;
474 }
475 }
476 }
477
478 $classifyinfo->{'numleafdocs'} = $num_leaf_docs;
479 return $num_leaf_docs;
480}
481
4821;
Note: See TracBrowser for help on using the repository browser.