source: gsdl/trunk/perllib/classify/GenericList.pm@ 18455

Last change on this file since 18455 was 18455, checked in by davidb, 15 years ago

Addition of 'edit_mode' parameter to classify(). This can be either 'add' 'delete' or 'reindex' (should think about renaming the last one to something more appropriate, e.g. update).

  • Property svn:keywords set to Author Date Id Revision
File size: 19.7 KB
RevLine 
[10398]1###########################################################################
2#
3# GenericList.pm -- A general and flexible list classifier with most of
4# the abilities of AZCompactList, and better Unicode,
5# metadata and sorting capabilities.
6#
7# A component of the Greenstone digital library software
8# from the New Zealand Digital Library Project at the
9# University of Waikato, New Zealand.
10#
11# Author: Michael Dewsnip, NZDL Project, University of Waikato, NZ
12#
13# Copyright (C) 2005 New Zealand Digital Library Project
14#
15# This program is free software; you can redistribute it and/or modify
16# it under the terms of the GNU General Public License as published by
17# the Free Software Foundation; either version 2 of the License, or
18# (at your option) any later version.
19#
20# This program is distributed in the hope that it will be useful,
21# but WITHOUT ANY WARRANTY; without even the implied warranty of
22# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23# GNU General Public License for more details.
24#
25# You should have received a copy of the GNU General Public License
26# along with this program; if not, write to the Free Software
27# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28#
[13741]29# TO DO: - Remove punctuation from metadata values before sorting.
30# - Add an AZCompactList-style hlist option?
[10398]31#
32###########################################################################
33
34package GenericList;
35
36
[17209]37use BaseClassifier;
[10398]38
39use strict;
40
41
42sub BEGIN {
[17209]43 @GenericList::ISA = ('BaseClassifier');
[10398]44}
45
46
47my $arguments =
48 [ { 'name' => "metadata",
49 'desc' => "{GenericList.metadata}",
50 'type' => "metadata",
51 'reqd' => "yes" },
[12889]52
[10398]53 # The interesting options
[10498]54 { 'name' => "always_bookshelf_last_level",
55 'desc' => "{GenericList.always_bookshelf_last_level}",
56 'type' => "flag" },
57 { 'name' => "classify_sections",
58 'desc' => "{GenericList.classify_sections}",
59 'type' => "flag" },
60 { 'name' => "partition_type_within_level",
61 'desc' => "{GenericList.partition_type_within_level}",
[10398]62 'type' => "string",
63 'deft' => "none" },
[10498]64 { 'name' => "partition_size_within_level",
65 'desc' => "{GenericList.partition_size_within_level}",
[10398]66 'type' => "string" },
[14084]67 { 'name' => "partition_name_length",
68 'desc' => "{GenericList.partition_name_length}",
69 'type' => "string" },
[10498]70 { 'name' => "sort_leaf_nodes_using",
71 'desc' => "{GenericList.sort_leaf_nodes_using}",
[10398]72 'type' => "metadata",
[10499]73 'deft' => "Title" },
[13551]74 { 'name' => "sort_using_unicode_collation",
75 'desc' => "{GenericList.sort_using_unicode_collation}",
76 'type' => "flag" },
[10499]77 { 'name' => "use_hlist_for",
78 'desc' => "{GenericList.use_hlist_for}",
79 'type' => "string" } ];
[10398]80
81my $options = { 'name' => "GenericList",
82 'desc' => "{GenericList.desc}",
[10502]83 'abstract' => "no",
[10398]84 'inherits' => "Yes",
85 'args' => $arguments };
86
87
88sub new
89{
90 my ($class) = shift(@_);
91 my ($classifierslist, $inputargs, $hashArgOptLists) = @_;
92 push(@$classifierslist, $class);
93
[17209]94 push(@{$hashArgOptLists->{"ArgList"}}, @{$arguments});
95 push(@{$hashArgOptLists->{"OptList"}}, $options);
[10398]96
[17209]97 my $self = new BaseClassifier($classifierslist, $inputargs, $hashArgOptLists);
[10398]98
99 if ($self->{'info_only'}) {
100 # don't worry about any options etc
101 return bless $self, $class;
102 }
103
104 # The metadata elements to use (required)
[12894]105 if (!$self->{'metadata'}) {
[10398]106 die "Error: No metadata fields specified for GenericList.\n";
107 }
[12894]108 my @metadata_groups = split(/\//, $self->{'metadata'});
[12889]109 $self->{'metadata_groups'} = \@metadata_groups;
[10398]110
[12894]111 # The classifier button name (default: the first metadata element specified)
112 if (!$self->{'buttonname'}) {
113 my $first_metadata_group = $metadata_groups[0];
114 my $first_metadata_element = (split(/\;/, $first_metadata_group))[0];
115 $self->{'buttonname'} = $self->generate_title_from_metadata($first_metadata_element);
[10398]116 }
117
118 # Whether to group single items into a bookshelf (must be true for all metadata fields except the last)
[12889]119 foreach my $metadata_group (@metadata_groups) {
120 $self->{$metadata_group . ".always_bookshelf"} = "t";
[10398]121 }
[10498]122 if (!$self->{'always_bookshelf_last_level'}) {
[12894]123 # Default: leave leaf nodes ungrouped (equivalent to AZCompactList -mingroup 2)
[12889]124 my $last_metadata_group = $metadata_groups[$#metadata_groups];
125 $self->{$last_metadata_group . ".always_bookshelf"} = "f";
[10398]126 }
127
[12892]128 # Whether to use an hlist or a vlist for each level in the hierarchy (default: vlist)
[12889]129 foreach my $metadata_group (@metadata_groups) {
[12892]130 $self->{$metadata_group . ".list_type"} = "VList";
[10499]131 }
[12892]132 foreach my $metadata_group (split(/\,/, $self->{'use_hlist_for'})) {
133 $self->{$metadata_group . ".list_type"} = "HList";
[10499]134 }
135
[12894]136 # How the items are grouped into partitions (default: no partition)
137 if (!$self->{"partition_type_within_level"}) {
138 $self->{"partition_type_within_level"} = "none";
[10398]139 }
140
[10499]141 # The number of items in each partition
[12894]142 if (!$self->{'partition_size_within_level'}) {
[10398]143 # Default: 20
[12889]144 foreach my $metadata_group (@metadata_groups) {
145 $self->{$metadata_group . ".partition_size_within_level"} = 20;
[10398]146 }
147 }
148 else {
[12894]149 my @partition_size_within_levellist = split(/\//, $self->{'partition_size_within_level'});
[10398]150
[10498]151 # Assign values based on the partition_size_within_level parameter
[12889]152 foreach my $metadata_group (@metadata_groups) {
[10498]153 my $partition_size_within_levelelem = shift(@partition_size_within_levellist);
154 if (defined($partition_size_within_levelelem)) {
[12889]155 $self->{$metadata_group . ".partition_size_within_level"} = $partition_size_within_levelelem;
[10398]156 }
157 else {
[12889]158 $self->{$metadata_group . ".partition_size_within_level"} = $self->{$metadata_groups[0] . ".partition_size_within_level"};
[10398]159 }
160 }
161 }
162
[12894]163 # The metadata elements to use to sort the leaf nodes (default: Title)
164 my @sort_leaf_nodes_using_metadata_groups = ( "Title" );
165 if ($self->{'sort_leaf_nodes_using'}) {
166 @sort_leaf_nodes_using_metadata_groups = split(/\|/, $self->{'sort_leaf_nodes_using'});
[10398]167 }
[12894]168 $self->{'sort_leaf_nodes_using_metadata_groups'} = \@sort_leaf_nodes_using_metadata_groups;
[10398]169
[13551]170 # Create an instance of the Unicode::Collate object if better Unicode sorting is desired
171 if ($self->{'sort_using_unicode_collation'}) {
[13791]172 # To use this you first need to download the allkeys.txt file from
173 # http://www.unicode.org/Public/UCA/latest/allkeys.txt and put it in the Perl
174 # Unicode/Collate directory.
[13551]175 require Unicode::Collate;
176 $self->{'unicode_collator'} = Unicode::Collate->new();
177 }
178
[12894]179 # An empty array for the document OIDs
180 $self->{'OIDs'} = [];
181
[10398]182 return bless $self, $class;
183}
184
185
186sub init
187{
188 # Nothing to do...
189}
190
191
[12896]192# Called for each document in the collection
[10398]193sub classify
194{
195 my $self = shift(@_);
[18455]196 my ($doc_obj,$edit_mode) = @_;
[10398]197
[12896]198 # If "-classify_sections" is set, classify every section of the document
[10398]199 if ($self->{'classify_sections'}) {
200 my $section = $doc_obj->get_next_section($doc_obj->get_top_section());
201 while (defined $section) {
[18455]202 $self->classify_section($doc_obj, $doc_obj->get_OID() . ".$section", $section, $edit_mode);
[10398]203 $section = $doc_obj->get_next_section($section);
204 }
205 }
[12896]206 # Otherwise just classify the top document section
[10398]207 else {
[18455]208 $self->classify_section($doc_obj, $doc_obj->get_OID(), $doc_obj->get_top_section(), $edit_mode);
[10398]209 }
210}
211
212
213sub classify_section
214{
215 my $self = shift(@_);
[18455]216 my ($doc_obj,$section_OID,$section,$edit_mode) = @_;
[10398]217
[12889]218 my @metadata_groups = @{$self->{'metadata_groups'}};
[10398]219
[12896]220 # Only classify the section if it has a value for one of the metadata elements in the first group
221 my $classify_section = 0;
222 my $first_metadata_group = $metadata_groups[0];
223 foreach my $first_metadata_group_element (split(/\;/, $first_metadata_group)) {
224 my $first_metadata_group_element_value = $doc_obj->get_metadata_element($section, $first_metadata_group_element);
225 if (defined($first_metadata_group_element_value) && $first_metadata_group_element_value ne "") {
226 # This section must be included in the classifier
227 $classify_section = 1;
228 last;
229 }
230 }
[10398]231
[12896]232 # We're not classifying this section because it doesn't have the required metadata
233 return if (!$classify_section);
[10398]234
[18455]235 if ($edit_mode eq "delete") {
236 $self->oid_array_delete($section_OID,'OIDs');
237 return;
238 }
239
[12896]240 # Otherwise, include this section in the classifier
241 push(@{$self->{'OIDs'}}, $section_OID);
242
243 # Create a hash for the metadata values of each metadata element we're interested in
244 my %metadata_groups_done = ();
245 foreach my $metadata_group (@metadata_groups, @{$self->{'sort_leaf_nodes_using_metadata_groups'}}) {
246 # Take care not to do a metadata group more than once
247 unless ($metadata_groups_done{$metadata_group}) {
248 foreach my $metadata_element (split(/\;/, $metadata_group)) {
249 my @metadata_values = @{$doc_obj->get_metadata($section, $metadata_element)};
250 foreach my $metadata_value (@metadata_values) {
251 # Strip leading and trailing whitespace
252 $metadata_value =~ s/^\s*//;
253 $metadata_value =~ s/\s*$//;
[13550]254
255 # Convert the metadata value from a UTF-8 string to a Unicode string
256 # This means that length() and substr() work properly
257 # We need to be careful to convert classifier node title values back to UTF-8, however
[14173]258 my $metadata_value_unicode_string = $self->convert_utf8_string_to_unicode_string($metadata_value);
[13550]259
260 # Add the metadata value into the list for this combination of metadata group and section
261 push(@{$self->{$metadata_group . ".list"}->{$section_OID}}, $metadata_value_unicode_string);
[10398]262 }
[12896]263 last if (@metadata_values > 0);
[10398]264 }
265
[12896]266 $metadata_groups_done{$metadata_group} = 1;
[10398]267 }
268 }
269}
270
271
272sub get_classify_info
273{
274 my $self = shift(@_);
275
[12896]276 # The metadata groups to classify by
[12889]277 my @metadata_groups = @{$self->{'metadata_groups'}};
278 my $first_metadata_group = $metadata_groups[0];
[10398]279
[12896]280 # The OID values of the documents to include in the classifier
[12889]281 my @OIDs = @{$self->{'OIDs'}};
[10398]282
[12896]283 # Create the root node of the classification hierarchy
[12893]284 my %classifier_node = ( 'thistype' => "Invisible",
[12895]285 'childtype' => $self->{$first_metadata_group . ".list_type"},
[12894]286 'Title' => $self->{'buttonname'},
[13271]287 'contains' => [],
288 'mdtype' => $first_metadata_group );
[10398]289
[12895]290 # Recursively create the classification hierarchy, one level for each metadata group
[14173]291 $self->add_level(\@metadata_groups, \@OIDs, \%classifier_node);
[12893]292 return \%classifier_node;
[10398]293}
294
295
[12895]296sub add_level
[10398]297{
298 my $self = shift(@_);
[12889]299 my @metadata_groups = @{shift(@_)};
300 my @OIDs = @{shift(@_)};
[12893]301 my $classifier_node = shift(@_);
302 # print STDERR "\nAdding AZ list for " . $classifier_node->{'Title'} . "\n";
[10398]303
[12889]304 my $metadata_group = $metadata_groups[0];
305 # print STDERR "Processing metadata group: " . $metadata_group . "\n";
306 # print STDERR "Number of OID values: " . @OIDs . "\n";
[10398]307
[13340]308 if (!defined($self->{$metadata_group . ".list"})) {
309 print STDERR "Warning: No metadata values assigned to $metadata_group.\n";
310 return;
311 }
[10398]312
313 # Create a mapping from metadata value to OID
[14845]314 my $OID_to_metadata_values_hash_ref = $self->{$metadata_group . ".list"};
315 my %metadata_value_to_OIDs_hash = ();
316 foreach my $OID (@OIDs)
317 {
318 if ($OID_to_metadata_values_hash_ref->{$OID})
319 {
320 my @metadata_values = @{$OID_to_metadata_values_hash_ref->{$OID}};
321 foreach my $metadata_value (@metadata_values)
322 {
323 push(@{$metadata_value_to_OIDs_hash{$metadata_value}}, $OID);
[10398]324 }
325 }
326 }
[14845]327 # print STDERR "Number of distinct values: " . scalar(keys %metadata_value_to_OIDs_hash) . "\n";
[10398]328
329 # Partition the values (if necessary)
[10498]330 my $partition_type_within_level = $self->{"partition_type_within_level"};
331 if ($partition_type_within_level =~ /^per_letter$/i) {
[10398]332 # Generate one hlist for each letter
[14845]333 my @sortedmetadata_values = $self->sort_metadata_values_array(keys(%metadata_value_to_OIDs_hash));
334 my %metadata_value_to_OIDs_subhash = ();
[10398]335
[14845]336 my $lastpartition = substr($sortedmetadata_values[0], 0, 1);
337 foreach my $metadata_value (@sortedmetadata_values) {
338 my $metadata_valuepartition = substr($metadata_value, 0, 1);
[10398]339
340 # Is this the start of a new partition?
[14845]341 if ($metadata_valuepartition ne $lastpartition) {
342 $self->add_hlist_partition(\@metadata_groups, $classifier_node, $lastpartition, \%metadata_value_to_OIDs_subhash);
343 %metadata_value_to_OIDs_subhash = ();
344 $lastpartition = $metadata_valuepartition;
[10398]345 }
346
[14845]347 $metadata_value_to_OIDs_subhash{$metadata_value} = $metadata_value_to_OIDs_hash{$metadata_value};
[10398]348 }
349
350 # Don't forget to add the last partition
[14845]351 $self->add_hlist_partition(\@metadata_groups, $classifier_node, $lastpartition, \%metadata_value_to_OIDs_subhash);
[10398]352
353 # The partitions are stored in an HList
[12893]354 $classifier_node->{'childtype'} = "HList";
[10398]355 }
356
357 else {
358 # Generate hlists of a certain size
[12889]359 my $partition_size_within_level = $self->{$metadata_group . ".partition_size_within_level"};
[14845]360 if ($partition_type_within_level =~ /^constant_size$/i && scalar(keys %metadata_value_to_OIDs_hash) > $partition_size_within_level) {
361 my @sortedmetadata_values = $self->sort_metadata_values_array(keys(%metadata_value_to_OIDs_hash));
[10398]362 my $itemsdone = 0;
[14845]363 my %metadata_value_to_OIDs_subhash = ();
[10398]364 my $lastpartitionend = "";
365 my $partitionstart;
[14845]366 foreach my $metadata_value (@sortedmetadata_values) {
367 $metadata_value_to_OIDs_subhash{$metadata_value} = $metadata_value_to_OIDs_hash{$metadata_value};
[10398]368 $itemsdone++;
[14845]369 my $itemsinpartition = scalar(keys %metadata_value_to_OIDs_subhash);
[10398]370
371 # Is this the start of a new partition?
372 if ($itemsinpartition == 1) {
[14845]373 $partitionstart = $self->generate_partition_start($metadata_value, $lastpartitionend, $self->{"partition_name_length"});
[10398]374 }
375
376 # Is this the end of the partition?
[14845]377 if ($itemsinpartition == $partition_size_within_level || $itemsdone == @sortedmetadata_values) {
378 my $partitionend = $self->generate_partition_end($metadata_value, $partitionstart, $self->{"partition_name_length"});
[10398]379 my $partitionname = $partitionstart;
380 if ($partitionend ne $partitionstart) {
381 $partitionname = $partitionname . "-" . $partitionend;
382 }
383
[14845]384 $self->add_hlist_partition(\@metadata_groups, $classifier_node, $partitionname, \%metadata_value_to_OIDs_subhash);
385 %metadata_value_to_OIDs_subhash = ();
[10398]386 $lastpartitionend = $partitionend;
387 }
388 }
389
390 # The partitions are stored in an HList
[12893]391 $classifier_node->{'childtype'} = "HList";
[10398]392 }
393
394 # Otherwise just add all the values to a VList
395 else {
[14845]396 $self->add_vlist(\@metadata_groups, $classifier_node, \%metadata_value_to_OIDs_hash);
[10398]397 }
398 }
399}
400
401
[13550]402sub convert_utf8_string_to_unicode_string
[10398]403{
[14173]404 my $self = shift(@_);
[13550]405 my $utf8_string = shift(@_);
[10398]406
[13550]407 my $unicode_string = "";
408 foreach my $unicode_value (@{&unicode::utf82unicode($utf8_string)}) {
409 $unicode_string .= chr($unicode_value);
410 }
411 return $unicode_string;
[10398]412}
413
414
[13550]415sub convert_unicode_string_to_utf8_string
416{
[14173]417 my $self = shift(@_);
[13550]418 my $unicode_string = shift(@_);
419
420 my @unicode_array;
421 for (my $i = 0; $i < length($unicode_string); $i++) {
422 push(@unicode_array, ord(substr($unicode_string, $i, 1)));
423 }
424 return &unicode::unicode2utf8(\@unicode_array);
425}
426
427
[10398]428sub generate_partition_start
429{
[14173]430 my $self = shift(@_);
[14845]431 my $metadata_value = shift(@_);
[10398]432 my $lastpartitionend = shift(@_);
[14084]433 my $partition_name_length = shift(@_);
[10398]434
[14084]435 if ($partition_name_length) {
[14845]436 return substr($metadata_value, 0, $partition_name_length);
[14084]437 }
438
[14845]439 my $partitionstart = substr($metadata_value, 0, 1);
[10398]440 if ($partitionstart le $lastpartitionend) {
[14845]441 $partitionstart = substr($metadata_value, 0, 2);
[10398]442 # Give up after three characters
443 if ($partitionstart le $lastpartitionend) {
[14845]444 $partitionstart = substr($metadata_value, 0, 3);
[10398]445 }
446 }
447
448 return $partitionstart;
449}
450
451
452sub generate_partition_end
453{
[14173]454 my $self = shift(@_);
[14845]455 my $metadata_value = shift(@_);
[10398]456 my $partitionstart = shift(@_);
[14084]457 my $partition_name_length = shift(@_);
[10398]458
[14084]459 if ($partition_name_length) {
[14845]460 return substr($metadata_value, 0, $partition_name_length);
[14084]461 }
462
[14845]463 my $partitionend = substr($metadata_value, 0, length($partitionstart));
[10398]464 if ($partitionend gt $partitionstart) {
[14845]465 $partitionend = substr($metadata_value, 0, 1);
[10398]466 if ($partitionend le $partitionstart) {
[14845]467 $partitionend = substr($metadata_value, 0, 2);
[10398]468 # Give up after three characters
469 if ($partitionend le $partitionstart) {
[14845]470 $partitionend = substr($metadata_value, 0, 3);
[10398]471 }
472 }
473 }
474
475 return $partitionend;
476}
477
478
479sub add_hlist_partition
480{
481 my $self = shift(@_);
[12889]482 my @metadata_groups = @{shift(@_)};
[12893]483 my $classifier_node = shift(@_);
[10398]484 my $partitionname = shift(@_);
[14845]485 my $metadata_value_to_OIDs_hash_ref = shift(@_);
[10398]486
487 # Create an hlist partition
[14173]488 my %child_classifier_node = ( 'Title' => $self->convert_unicode_string_to_utf8_string($partitionname),
[12893]489 'childtype' => "VList",
490 'contains' => [] );
[10398]491
492 # Add the children to the hlist partition
[14845]493 $self->add_vlist(\@metadata_groups, \%child_classifier_node, $metadata_value_to_OIDs_hash_ref);
[12893]494 push(@{$classifier_node->{'contains'}}, \%child_classifier_node);
[10398]495}
496
497
498sub add_vlist
499{
500 my $self = shift(@_);
[12889]501 my @metadata_groups = @{shift(@_)};
[12893]502 my $classifier_node = shift(@_);
[14845]503 my $metadata_value_to_OIDs_hash_ref = shift(@_);
[10398]504
[12889]505 my $metadata_group = shift(@metadata_groups);
[13287]506 $classifier_node->{'mdtype'} = $metadata_group;
[10398]507
508 # Create an entry in the vlist for each value
[14845]509 foreach my $metadata_value ($self->sort_metadata_values_array(keys(%{$metadata_value_to_OIDs_hash_ref})))
510 {
511 my @OIDs = @{$metadata_value_to_OIDs_hash_ref->{$metadata_value}};
[10398]512
[10498]513 # If there is only one item and 'always_bookshelf' is false, add the item to the list
[12889]514 if (@OIDs == 1 && $self->{$metadata_group . ".always_bookshelf"} eq "f") {
[13271]515 my $OID = $OIDs[0];
516
517 # Find the offset of this metadata value
518 my $offset = 0;
[14845]519 my $OID_to_metadata_values_hash_ref = $self->{$metadata_group . ".list"};
520 my @metadata_values = @{$OID_to_metadata_values_hash_ref->{$OID}};
521 for (my $i = 0; $i < scalar(@metadata_values); $i++) {
522 if ($metadata_value eq $metadata_values[$i]) {
[13271]523 $offset = $i;
524 last;
525 }
526 }
527 push(@{$classifier_node->{'contains'}}, { 'OID' => $OID, 'offset' => $offset });
[10398]528 }
529
530 # Otherwise create a sublist (bookshelf) for the metadata value
531 else {
[14845]532 my %child_classifier_node = ( 'Title' => $self->convert_unicode_string_to_utf8_string($metadata_value),
[12893]533 'childtype' => "VList",
534 'contains' => [] );
[10398]535
536 # If there are metadata elements remaining, recursively apply the process
[12889]537 if (@metadata_groups > 0) {
538 my $next_metadata_group = $metadata_groups[0];
[12895]539 $child_classifier_node{'childtype'} = $self->{$next_metadata_group . ".list_type"};
[14173]540 $self->add_level(\@metadata_groups, \@OIDs, \%child_classifier_node);
[10398]541 }
542 # Otherwise just add the documents as children of this list
543 else {
[10498]544 # Sort the leaf nodes by the metadata elements specified with -sort_leaf_nodes_using
[12894]545 my @sort_leaf_nodes_usingmetadata_groups = @{$self->{'sort_leaf_nodes_using_metadata_groups'}};
[12889]546 foreach my $sort_leaf_nodes_usingmetaelem (reverse @sort_leaf_nodes_usingmetadata_groups) {
[14845]547 my $OID_to_metadata_values_hash_ref = $self->{$sort_leaf_nodes_usingmetaelem . ".list"};
[10398]548 # Force a stable sort (Perl 5.6's sort isn't stable)
549 # !! The [0] bits aren't ideal (multiple metadata values) !!
[14845]550 @OIDs = @OIDs[ sort { $OID_to_metadata_values_hash_ref->{$OIDs[$a]}[0] cmp $OID_to_metadata_values_hash_ref->{$OIDs[$b]}[0] || $a <=> $b; } 0..$#OIDs ];
[10398]551 }
552
[12889]553 foreach my $OID (@OIDs) {
[12893]554 push(@{$child_classifier_node{'contains'}}, { 'OID' => $OID });
[10398]555 }
556 }
557
558 # Add the sublist to the list
[12893]559 push(@{$classifier_node->{'contains'}}, \%child_classifier_node);
[10398]560 }
561 }
562}
563
564
[13551]565sub sort_metadata_values_array
566{
567 my $self = shift(@_);
568 my @metadata_values = @_;
569
570 if ($self->{'unicode_collator'}) {
571 return $self->{'unicode_collator'}->sort(@metadata_values);
572 }
573 else {
574 return sort(@metadata_values);
575 }
576}
577
578
[10398]5791;
Note: See TracBrowser for help on using the repository browser.