source: main/trunk/greenstone2/perllib/basebuildproc.pm@ 24950

Last change on this file since 24950 was 24754, checked in by sjm84, 13 years ago

Some changes to support the store_metadata_coverage option

  • Property svn:keywords set to Author Date Id Revision
File size: 22.6 KB
Line 
1##########################################################################
2#
3# basebuildproc.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# This document processor outputs a document for indexing (should be
27# implemented by subclass) and storing in the database
28
29package basebuildproc;
30
31eval {require bytes};
32
33use classify;
34use dbutil;
35use doc;
36use docproc;
37use strict;
38no strict 'subs';
39no strict 'refs';
40use util;
41
42BEGIN {
43 @basebuildproc::ISA = ('docproc');
44}
45
46sub new()
47 {
48 my ($class, $collection, $source_dir, $build_dir, $keepold, $verbosity, $outhandle) = @_;
49 my $self = new docproc ();
50
51 # outhandle is where all the debugging info goes
52 # output_handle is where the output of the plugins is piped
53 # to (i.e. mg, database etc.)
54 $outhandle = STDERR unless defined $outhandle;
55
56 $self->{'collection'} = $collection;
57 $self->{'source_dir'} = $source_dir;
58 $self->{'build_dir'} = $build_dir;
59 $self->{'keepold'} = $keepold;
60 $self->{'verbosity'} = $verbosity;
61 $self->{'outhandle'} = $outhandle;
62
63 $self->{'classifiers'} = [];
64 $self->{'mode'} = "text";
65 $self->{'assocdir'} = $build_dir;
66 $self->{'dontdb'} = {};
67 $self->{'store_metadata_coverage'} = "false";
68
69 $self->{'index'} = "section:text";
70 $self->{'indexexparr'} = [];
71
72 $self->{'separate_cjk'} = 0;
73
74 my $found_num_data = 0;
75 my $buildconfigfile = undef;
76
77 if ($keepold) {
78 # For incremental building need to seed num_docs etc from values
79 # stored in build.cfg (if present)
80 $buildconfigfile = &util::filename_cat($build_dir, "build.cfg");
81 if (-e $buildconfigfile) {
82 $found_num_data = 1;
83 }
84 else {
85 # try the index dir
86 $buildconfigfile = &util::filename_cat($ENV{'GSDLCOLLECTDIR'},
87 "index", "build.cfg");
88 if (-e $buildconfigfile) {
89 $found_num_data = 1;
90 }
91 }
92
93 }
94
95 if ($found_num_data)
96 {
97 #print STDERR "Found_Num_Data!\n";
98 my $buildcfg = &colcfg::read_build_cfg($buildconfigfile);
99 $self->{'starting_num_docs'} = $buildcfg->{'numdocs'};
100 #print STDERR "- num_docs: $self->{'starting_num_docs'}\n";
101 $self->{'starting_num_sections'} = $buildcfg->{'numsections'};
102 #print STDERR "- num_sections: $self->{'starting_num_sections'}\n";
103 $self->{'starting_num_bytes'} = $buildcfg->{'numbytes'};
104 #print STDERR "- num_bytes: $self->{'starting_num_bytes'}\n";
105 }
106 else
107 {
108 #print STDERR "NOT Found_Num_Data!\n";
109 $self->{'starting_num_docs'} = 0;
110 $self->{'starting_num_sections'} = 0;
111 $self->{'starting_num_bytes'} = 0;
112 }
113
114 $self->{'output_handle'} = "STDOUT";
115 $self->{'num_docs'} = $self->{'starting_num_docs'};
116 $self->{'num_sections'} = $self->{'starting_num_sections'};
117 $self->{'num_bytes'} = $self->{'starting_num_bytes'};
118
119 $self->{'num_processed_bytes'} = 0;
120 $self->{'store_text'} = 1;
121
122 # what level (section/document) the database - indexer intersection is
123 $self->{'db_level'} = "section";
124 #used by browse interface
125 $self->{'doclist'} = [];
126
127 $self->{'indexing_text'} = 0;
128
129 return bless $self, $class;
130
131}
132
133sub reset {
134 my $self = shift (@_);
135
136 $self->{'num_docs'} = $self->{'starting_num_docs'};
137 $self->{'num_sections'} = $self->{'starting_num_sections'};
138 $self->{'num_bytes'} = $self->{'starting_num_bytes'};
139
140 $self->{'num_processed_bytes'} = 0;
141}
142
143sub zero_reset {
144 my $self = shift (@_);
145
146 $self->{'num_docs'} = 0;
147 $self->{'num_sections'} = 0;
148 # reconstructed docs have no text, just metadata, so we need to
149 # remember how many bytes we had initially
150 #$self->{'num_bytes'} = $self->{'starting_num_bytes'};
151 $self->{'num_bytes'} = 0; # we'll store num bytes in db for reconstructed docs.
152 $self->{'num_processed_bytes'} = 0;
153}
154
155sub is_incremental_capable
156{
157 # By default we return 'no' as the answer
158 # Safer to assume non-incremental to start with, and then override in
159 # inherited classes that are.
160
161 return 0;
162}
163
164sub get_num_docs {
165 my $self = shift (@_);
166
167 return $self->{'num_docs'};
168}
169
170sub get_num_sections {
171 my $self = shift (@_);
172
173 return $self->{'num_sections'};
174}
175
176# num_bytes is the actual number of bytes in the collection
177# this is normally the same as what's processed during text compression
178sub get_num_bytes {
179 my $self = shift (@_);
180
181 return $self->{'num_bytes'};
182}
183
184# num_processed_bytes is the number of bytes actually passed
185# to mg for the current index
186sub get_num_processed_bytes {
187 my $self = shift (@_);
188
189 return $self->{'num_processed_bytes'};
190}
191
192sub set_output_handle {
193 my $self = shift (@_);
194 my ($handle) = @_;
195
196 $self->{'output_handle'} = $handle;
197 binmode($handle,":utf8");
198}
199
200
201sub set_mode {
202 my $self = shift (@_);
203 my ($mode) = @_;
204
205 $self->{'mode'} = $mode;
206}
207
208sub get_mode {
209 my $self = shift (@_);
210
211 return $self->{'mode'};
212}
213
214sub set_assocdir {
215 my $self = shift (@_);
216 my ($assocdir) = @_;
217
218 $self->{'assocdir'} = $assocdir;
219}
220
221sub set_dontdb {
222 my $self = shift (@_);
223 my ($dontdb) = @_;
224
225 $self->{'dontdb'} = $dontdb;
226}
227
228sub set_infodbtype
229{
230 my $self = shift(@_);
231 my $infodbtype = shift(@_);
232 $self->{'infodbtype'} = $infodbtype;
233}
234
235sub set_index {
236 my $self = shift (@_);
237 my ($index, $indexexparr) = @_;
238
239 $self->{'index'} = $index;
240 $self->{'indexexparr'} = $indexexparr if defined $indexexparr;
241}
242
243sub set_index_languages {
244 my $self = shift (@_);
245 my ($lang_meta, $langarr) = @_;
246 $lang_meta =~ s/^ex\.([^.]+)$/$1/; # strip any ex. namespace iff it's the only namespace prefix (will leave ex.dc.* intact)
247
248 $self->{'lang_meta'} = $lang_meta;
249 $self->{'langarr'} = $langarr;
250}
251
252sub get_index {
253 my $self = shift (@_);
254
255 return $self->{'index'};
256}
257
258sub set_classifiers {
259 my $self = shift (@_);
260 my ($classifiers) = @_;
261
262 $self->{'classifiers'} = $classifiers;
263}
264
265sub set_indexing_text {
266 my $self = shift (@_);
267 my ($indexing_text) = @_;
268
269 $self->{'indexing_text'} = $indexing_text;
270}
271
272sub get_indexing_text {
273 my $self = shift (@_);
274
275 return $self->{'indexing_text'};
276}
277
278sub set_store_text {
279 my $self = shift (@_);
280 my ($store_text) = @_;
281
282 $self->{'store_text'} = $store_text;
283}
284
285sub set_store_metadata_coverage {
286 my $self = shift (@_);
287 my ($store_metadata_coverage) = @_;
288
289 $self->{'store_metadata_coverage'} = $store_metadata_coverage || "";
290}
291
292sub get_doc_list {
293 my $self = shift(@_);
294
295 return @{$self->{'doclist'}};
296}
297
298# the standard database level is section, but you may want to change it to document
299sub set_db_level {
300 my $self= shift (@_);
301 my ($db_level) = @_;
302
303 $self->{'db_level'} = $db_level;
304}
305
306sub set_sections_index_document_metadata {
307 my $self= shift (@_);
308 my ($index_type) = @_;
309
310 $self->{'sections_index_document_metadata'} = $index_type;
311}
312
313sub set_separate_cjk {
314 my $self = shift (@_);
315 my ($sep_cjk) = @_;
316
317 $self->{'separate_cjk'} = $sep_cjk;
318}
319
320sub process {
321 my $self = shift (@_);
322 my $method = $self->{'mode'};
323
324 $self->$method(@_);
325}
326
327# post process text depending on field. Currently don't do anything here
328# except cjk separation, and only for indexing
329# should only do this for indexed text (if $self->{'indexing_text'}),
330# but currently search term highlighting doesn't work if you do that.
331# once thats fixed up, then fix this.
332sub filter_text {
333 my $self = shift (@_);
334 my ($field, $text) = @_;
335
336 # lets do cjk seg here
337 my $new_text =$text;
338 if ($self->{'separate_cjk'}) {
339 $new_text = &cnseg::segment($text);
340 }
341 return $new_text;
342}
343
344
345sub infodb_metadata_stats
346{
347 my $self = shift (@_);
348 my ($field,$edit_mode) = @_;
349
350 # Keep some statistics relating to metadata sets used and
351 # frequency of particular metadata fields within each set
352
353 # Union of metadata prefixes and frequency of fields
354 # (both scoped for this document alone, and across whole collection)
355
356 if ($field =~ m/^(.+)\.(.*)$/) {
357 my $prefix = $1;
358 my $core_field = $2;
359
360 if (($edit_mode eq "add") || ($edit_mode eq "update")) {
361 $self->{'doc_mdprefix_fields'}->{$prefix}->{$core_field}++;
362 $self->{'mdprefix_fields'}->{$prefix}->{$core_field}++;
363 }
364 else {
365 # delete
366 $self->{'doc_mdprefix_fields'}->{$prefix}->{$core_field}--;
367 $self->{'mdprefix_fields'}->{$prefix}->{$core_field}--;
368 }
369
370 }
371 elsif ($field =~ m/^[[:upper:]]/) {
372 # implicit 'ex' metadata set
373
374 if (($edit_mode eq "add") || ($edit_mode eq "update")) {
375
376 $self->{'doc_mdprefix_fields'}->{'ex'}->{$field}++;
377 $self->{'mdprefix_fields'}->{'ex'}->{$field}++;
378 }
379 else {
380 # delete
381 $self->{'doc_mdprefix_fields'}->{'ex'}->{$field}--;
382 $self->{'mdprefix_fields'}->{'ex'}->{$field}--;
383 }
384 }
385
386}
387
388
389sub infodbedit {
390 my $self = shift (@_);
391 my ($doc_obj, $filename, $edit_mode) = @_;
392
393 # only output this document if it is a "indexed_doc" or "info_doc" (database only) document
394 my $doctype = $doc_obj->get_doc_type();
395 return if ($doctype ne "indexed_doc" && $doctype ne "info_doc");
396
397 my $archivedir = "";
398 if (defined $filename)
399 {
400 # doc_obj derived directly from file
401 my ($dir) = $filename =~ /^(.*?)(?:\/|\\)[^\/\\]*$/;
402 $dir = "" unless defined $dir;
403 $dir =~ s/\\/\//g;
404 $dir =~ s/^\/+//;
405 $dir =~ s/\/+$//;
406
407 $archivedir = $dir;
408
409 if ($edit_mode eq "delete") {
410 # record this doc so we don't process the reconstructed doc later
411 $self->{'dont_process_reconstructed'}->{$doc_obj->get_OID()} = 1;
412 # we don't need to do anything else for the info database for a deleted document. The infodb starts from scratch each time, so no deletion is necessary
413 $self->delete_assoc_files ($archivedir, "delete");
414 return;
415 }
416 if ($edit_mode eq "update") {
417 # we don't want to process the reconstructed doc later, but we will process this version now.
418 $self->{'dont_process_reconstructed'}->{$doc_obj->get_OID()} = 1;
419 # delete the old assoc files as they may have changed
420 $self->delete_assoc_files ($archivedir, "update");
421 }
422
423 # resolve the final filenames of the files associated with this document
424 # now save the new assoc files for an update/new doc.
425 $self->assoc_files ($doc_obj, $archivedir);
426 }
427 else
428 {
429 # doc_obj reconstructed from database (has metadata, doc structure but no text)
430 my $top_section = $doc_obj->get_top_section();
431 $archivedir = $doc_obj->get_metadata_element($top_section,"archivedir");
432 }
433
434 # rest of code used for add and update. In both cases, we add to the classifiers and to the info database.
435
436 #add this document to the browse structure
437 push(@{$self->{'doclist'}},$doc_obj->get_OID())
438 unless ($doctype eq "classification");
439 $self->{'num_docs'} += 1 unless ($doctype eq "classification");
440
441 if (!defined $filename) {
442 # a reconstructed doc
443 my $num_reconstructed_bytes = $doc_obj->get_metadata_element ($doc_obj->get_top_section (), "total_numbytes");
444 if (defined $num_reconstructed_bytes) {
445 $self->{'num_bytes'} += $num_reconstructed_bytes;
446 }
447 }
448 # classify the document
449 &classify::classify_doc ($self->{'classifiers'}, $doc_obj);
450
451 # now add all the sections to the infodb.
452
453 # is this a paged or a hierarchical document
454 my ($thistype, $childtype) = $self->get_document_type ($doc_obj);
455
456 my $section = $doc_obj->get_top_section ();
457 my $doc_OID = $doc_obj->get_OID();
458 my $first = 1;
459 my $infodb_handle = $self->{'output_handle'};
460
461 $self->{'doc_mdprefix_fields'} = {};
462
463 while (defined $section)
464 {
465 my $section_OID = $doc_OID;
466 if ($section ne "")
467 {
468 $section_OID = $doc_OID . "." . $section;
469 }
470 my %section_infodb = ();
471
472 # update a few statistics
473 $self->{'num_bytes'} += $doc_obj->get_text_length ($section);
474 $self->{'num_sections'} += 1 unless ($doctype eq "classification");
475
476 # output the fact that this document is a document (unless doctype
477 # has been set to something else from within a plugin
478 my $dtype = $doc_obj->get_metadata_element ($section, "doctype");
479 if (!defined $dtype || $dtype !~ /\w/) {
480 $section_infodb{"doctype"} = [ "doc" ];
481 }
482
483 if ($first && defined $filename) {
484 # if we are at the top level of the document, and we are not a reconstructed document, set the total_text_length - used to count bytes when we reconstruct later
485 my $length = $doc_obj->get_total_text_length();
486 $section_infodb{"total_numbytes"} = [ $length ];
487 }
488 # Output whether this node contains text
489 #
490 # If doc_obj reconstructed from database file then no need to
491 # explicitly add <hastxt> as this is preserved as metadata when
492 # the database file is loaded in
493 if (defined $filename)
494 {
495 # doc_obj derived directly from file
496 if ($doc_obj->get_text_length($section) > 0) {
497 $section_infodb{"hastxt"} = [ "1" ];
498 } else {
499 $section_infodb{"hastxt"} = [ "0" ];
500 }
501 }
502
503 # output all the section metadata
504 my $metadata = $doc_obj->get_all_metadata ($section);
505 foreach my $pair (@$metadata) {
506 my ($field, $value) = (@$pair);
507
508 if ($field ne "Identifier" && $field !~ /^gsdl/ &&
509 defined $value && $value ne "") {
510
511 # escape problematic stuff
512 $value =~ s/([^\\])\\([^\\])/$1\\\\$2/g;
513 $value =~ s/\n/\\n/g;
514 $value =~ s/\r/\\r/g;
515 # remove any ex. iff it's the only namespace prefix (will leave ex.dc.* intact)
516 $field =~ s/^ex\.([^.]+)$/$1/; # $field =~ s/^ex\.//;
517
518 # special case for UTF8URL metadata
519 if ($field =~ m/^UTF8URL$/i) {
520 &dbutil::write_infodb_entry($self->{'infodbtype'}, $infodb_handle,
521 $value, { 'section' => [ $section_OID ] });
522 }
523
524 if (!defined $self->{'dontdb'}->{$field}) {
525 push(@{$section_infodb{$field}}, $value);
526
527 if ($section eq ""
528 && (($self->{'store_metadata_coverage'} =~ /^true$/i)
529 || $self->{'store_metadata_coverage'} eq "1"))
530 {
531 $self->infodb_metadata_stats($field,$edit_mode);
532 }
533 }
534 }
535 }
536
537 if ($section eq "")
538 {
539 my $doc_mdprefix_fields = $self->{'doc_mdprefix_fields'};
540
541 foreach my $prefix (keys %$doc_mdprefix_fields)
542 {
543 push(@{$section_infodb{"metadataset"}}, $prefix);
544
545 foreach my $field (keys %{$doc_mdprefix_fields->{$prefix}})
546 {
547 push(@{$section_infodb{"metadatalist-$prefix"}}, $field);
548
549 my $val = $doc_mdprefix_fields->{$prefix}->{$field};
550 push(@{$section_infodb{"metadatafreq-$prefix-$field"}}, $val);
551 }
552 }
553 }
554
555 # If doc_obj reconstructed from database file then no need to
556 # explicitly add <archivedir> as this is preserved as metadata when
557 # the database file is loaded in
558 if (defined $filename)
559 {
560 # output archivedir if at top level
561 if ($section eq $doc_obj->get_top_section()) {
562 $section_infodb{"archivedir"} = [ $archivedir ];
563 }
564 }
565
566 # output document display type
567 if ($first) {
568 $section_infodb{"thistype"} = [ $thistype ];
569 }
570
571 if ($self->{'db_level'} eq "document") {
572 # doc num is num_docs not num_sections
573 # output the matching document number
574 $section_infodb{"docnum"} = [ $self->{'num_docs'} ];
575 }
576 else {
577 # output a list of children
578 my $children = $doc_obj->get_children ($section);
579 if (scalar(@$children) > 0) {
580 $section_infodb{"childtype"} = [ $childtype ];
581 my $contains = "";
582 foreach my $child (@$children)
583 {
584 $contains .= ";" unless ($contains eq "");
585 if ($child =~ /^.*?\.(\d+)$/)
586 {
587 $contains .= "\".$1";
588 }
589 else
590 {
591 $contains .= "\".$child";
592 }
593 }
594 $section_infodb{"contains"} = [ $contains ];
595 }
596 # output the matching doc number
597 $section_infodb{"docnum"} = [ $self->{'num_sections'} ];
598 }
599
600 &dbutil::write_infodb_entry($self->{'infodbtype'}, $infodb_handle, $section_OID, \%section_infodb);
601
602 # output a database entry for the document number, unless we are incremental
603 unless ($self->is_incremental_capable())
604 {
605 if ($self->{'db_level'} eq "document") {
606 &dbutil::write_infodb_entry($self->{'infodbtype'}, $infodb_handle, $self->{'num_docs'}, { 'section' => [ $doc_OID ] });
607 }
608 else {
609 &dbutil::write_infodb_entry($self->{'infodbtype'}, $infodb_handle, $self->{'num_sections'}, { 'section' => [ $section_OID ] });
610 }
611 }
612
613 $first = 0;
614 $section = $doc_obj->get_next_section($section);
615 last if ($self->{'db_level'} eq "document"); # if no sections wanted, only add the docs
616 } # while defined section
617
618}
619
620
621
622
623sub infodb {
624 my $self = shift (@_);
625 my ($doc_obj, $filename) = @_;
626
627 $self->infodbedit($doc_obj,$filename,"add");
628}
629
630sub infodbreindex {
631 my $self = shift (@_);
632 my ($doc_obj, $filename) = @_;
633
634 $self->infodbedit($doc_obj,$filename,"update");
635}
636
637sub infodbdelete {
638 my $self = shift (@_);
639 my ($doc_obj, $filename) = @_;
640
641 $self->infodbedit($doc_obj,$filename,"delete");
642}
643
644
645sub text {
646 my $self = shift (@_);
647 my ($doc_obj) = @_;
648
649 my $handle = $self->{'outhandle'};
650 print $handle "basebuildproc::text function must be implemented in sub classes\n";
651 die "\n";
652}
653
654sub textreindex
655{
656 my $self = shift @_;
657
658 my $outhandle = $self->{'outhandle'};
659 print $outhandle "basebuildproc::textreindex function must be implemented in sub classes\n";
660 if (!$self->is_incremental_capable()) {
661
662 print $outhandle " This operation is only possible with indexing tools with that support\n";
663 print $outhandle " incremental building\n";
664 }
665 die "\n";
666}
667
668sub textdelete
669{
670 my $self = shift @_;
671
672 my $outhandle = $self->{'outhandle'};
673 print $outhandle "basebuildproc::textdelete function must be implemented in sub classes\n";
674 if (!$self->is_incremental_capable()) {
675
676 print $outhandle " This operation is only possible with indexing tools with that support\n";
677 print $outhandle " incremental building\n";
678 }
679 die "\n";
680}
681
682
683# should the document be indexed - according to the subcollection and language
684# specification.
685sub is_subcollection_doc {
686 my $self = shift (@_);
687 my ($doc_obj) = @_;
688
689 my $indexed_doc = 1;
690 foreach my $indexexp (@{$self->{'indexexparr'}}) {
691 $indexed_doc = 0;
692 my ($field, $exp, $options) = split /\//, $indexexp;
693 if (defined ($field) && defined ($exp)) {
694 my ($bool) = $field =~ /^(.)/;
695 $field =~ s/^.// if $bool eq '!';
696 my @metadata_values;
697 if ($field =~ /^filename$/i) {
698 push(@metadata_values, $doc_obj->get_source_filename());
699 }
700 else {
701 $field =~ s/^ex\.([^.]+)$/$1/; # remove any ex. iff it's the only namespace prefix (will leave ex.dc.* intact)
702 @metadata_values = @{$doc_obj->get_metadata($doc_obj->get_top_section(), $field)};
703 }
704 next unless @metadata_values;
705 foreach my $metadata_value (@metadata_values) {
706 if ($bool eq '!') {
707 if ($options =~ /^i$/i) {
708 if ($metadata_value !~ /$exp/i) {$indexed_doc = 1; last;}
709 } else {
710 if ($metadata_value !~ /$exp/) {$indexed_doc = 1; last;}
711 }
712 } else {
713 if ($options =~ /^i$/i) {
714 if ($metadata_value =~ /$exp/i) {$indexed_doc = 1; last;}
715 } else {
716 if ($metadata_value =~ /$exp/) {$indexed_doc = 1; last;}
717 }
718 }
719 }
720
721 last if ($indexed_doc == 1);
722 }
723 }
724
725 # if this doc is so far in the sub collection, and we have lang info,
726 # now we check the languages to see if it matches
727 if($indexed_doc && defined $self->{'lang_meta'}) {
728 $indexed_doc = 0;
729 my $field = $doc_obj->get_metadata_element($doc_obj->get_top_section(), $self->{'lang_meta'});
730 if (defined $field) {
731 foreach my $lang (@{$self->{'langarr'}}) {
732 my ($bool) = $lang =~ /^(.)/;
733 if ($bool eq '!') {
734 $lang =~ s/^.//;
735 if ($field !~ /$lang/) {
736 $indexed_doc = 1; last;
737 }
738 } else {
739 if ($field =~ /$lang/) {
740 $indexed_doc = 1; last;
741 }
742 }
743 }
744 }
745 }
746 return $indexed_doc;
747
748}
749
750# use 'Paged' if document has no more than 2 levels
751# and each section at second level has a number for
752# Title metadata
753# also use Paged if gsdlthistype metadata is set to Paged
754sub get_document_type {
755 my $self = shift (@_);
756 my ($doc_obj) = @_;
757
758 my $thistype = "VList";
759 my $childtype = "VList";
760 my $title;
761 my @tmp = ();
762
763 my $section = $doc_obj->get_top_section ();
764
765 my $gsdlthistype = $doc_obj->get_metadata_element ($section, "gsdlthistype");
766 if (defined $gsdlthistype) {
767 if ($gsdlthistype eq "Paged") {
768 $childtype = "Paged";
769 if ($doc_obj->get_text_length ($doc_obj->get_top_section())) {
770 $thistype = "Paged";
771 } else {
772 $thistype = "Invisible";
773 }
774
775 return ($thistype, $childtype);
776 } elsif ($gsdlthistype eq "Hierarchy") {
777 return ($thistype, $childtype); # use VList, VList
778 }
779 }
780 my $first = 1;
781 while (defined $section) {
782 @tmp = split /\./, $section;
783 if (scalar(@tmp) > 1) {
784 return ($thistype, $childtype);
785 }
786 if (!$first) {
787 $title = $doc_obj->get_metadata_element ($section, "Title");
788 if (!defined $title || $title !~ /^\d+$/) {
789 return ($thistype, $childtype);
790 }
791 }
792 $first = 0;
793 $section = $doc_obj->get_next_section($section);
794 }
795 if ($doc_obj->get_text_length ($doc_obj->get_top_section())) {
796 $thistype = "Paged";
797 } else {
798 $thistype = "Invisible";
799 }
800 $childtype = "Paged";
801 return ($thistype, $childtype);
802}
803
804sub assoc_files
805{
806 my $self = shift (@_);
807 my ($doc_obj, $archivedir) = @_;
808 my ($afile);
809
810 foreach my $assoc_file (@{$doc_obj->get_assoc_files()}) {
811 #rint STDERR "Processing associated file - copy " . $assoc_file->[0] . " to " . $assoc_file->[1] . "\n";
812 # if assoc file starts with a slash, we put it relative to the assoc
813 # dir, otherwise it is relative to the HASH... directory
814 if ($assoc_file->[1] =~ m@^[/\\]@) {
815 $afile = &util::filename_cat($self->{'assocdir'}, $assoc_file->[1]);
816 } else {
817 $afile = &util::filename_cat($self->{'assocdir'}, $archivedir, $assoc_file->[1]);
818 }
819 &util::hard_link ($assoc_file->[0], $afile, $self->{'verbosity'});
820 }
821}
822
823sub delete_assoc_files
824{
825 my $self = shift (@_);
826 my ($archivedir, $edit_mode) = @_;
827
828 my $assoc_dir = &util::filename_cat($self->{'assocdir'}, $archivedir);
829 if (-d $assoc_dir) {
830 &util::rm_r($assoc_dir);
831 }
832}
Note: See TracBrowser for help on using the repository browser.