/[webpac2]/trunk/lib/WebPAC/Normalize.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/WebPAC/Normalize.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14 by dpavlin, Sun Jul 17 00:04:25 2005 UTC revision 548 by dpavlin, Thu Jun 29 23:29:02 2006 UTC
# Line 1  Line 1 
1  package WebPAC::Normalize;  package WebPAC::Normalize;
2    use Exporter 'import';
3    @EXPORT = qw/
4            _set_rec _set_lookup
5            _get_ds _clean_ds
6    
7            tag search display
8            marc marc_indicators marc_repeatable_subfield
9    
10            rec1 rec2 rec
11            regex prefix suffix surround
12            first lookup join_with
13    /;
14    
15  use warnings;  use warnings;
16  use strict;  use strict;
17    
18    #use base qw/WebPAC::Common/;
19  use Data::Dumper;  use Data::Dumper;
20  use Storable;  use Encode qw/from_to/;
21    
22  =head1 NAME  =head1 NAME
23    
24  WebPAC::Normalize - normalisation of source file  WebPAC::Normalize - describe normalisaton rules using sets
25    
26  =head1 VERSION  =head1 VERSION
27    
28  Version 0.01  Version 0.06
29    
30  =cut  =cut
31    
32  our $VERSION = '0.01';  our $VERSION = '0.06';
33    
34  =head1 SYNOPSIS  =head1 SYNOPSIS
35    
36  This package contains code that could be helpful in implementing different  This module uses C<conf/normalize/*.pl> files to perform normalisation
37  normalisation front-ends.  from input records using perl functions which are specialized for set
38    processing.
39    
40    Sets are implemented as arrays, and normalisation file is valid perl, which
41    means that you check it's validity before running WebPAC using
42    C<perl -c normalize.pl>.
43    
44    Normalisation can generate multiple output normalized data. For now, supported output
45    types (on the left side of definition) are: C<tag>, C<display>, C<search> and
46    C<marc>.
47    
48  =head1 FUNCTIONS  =head1 FUNCTIONS
49    
50  =head2 new  Functions which start with C<_> are private and used by WebPAC internally.
51    All other functions are available for use within normalisation rules.
52    
53    =head2 data_structure
54    
55  Create new normalisation object  Return data structure
56    
57    my $n = new WebPAC::Normalize::Something(    my $ds = WebPAC::Normalize::data_structure(
58          cache_data_structure => './cache/ds/',          lookup => $lookup->lookup_hash,
59          lookup_regex => $lookup->regex,          row => $row,
60            rules => $normalize_pl_config,
61            marc_encoding => 'utf-8',
62    );    );
63    
64  Optional parameter C<cache_data_structure> defines path to directory  Options C<lookup>, C<row>, C<rules> and C<log> are mandatory while all
65  in which cache file for C<data_structure> call will be created.  other are optional.
66    
67    This function will B<die> if normalizastion can't be evaled.
68    
69  Recommended parametar C<lookup_regex> is used to enable parsing of lookups  Since this function isn't exported you have to call it with
70  in structures.  C<WebPAC::Normalize::data_structure>.
71    
72  =cut  =cut
73    
74  sub new {  sub data_structure {
75          my $class = shift;          my $arg = {@_};
         my $self = {@_};  
         bless($self, $class);  
76    
77          $self->setup_cache_dir( $self->{'cache_data_structure'} );          die "need row argument" unless ($arg->{row});
78            die "need normalisation argument" unless ($arg->{rules});
79    
80          $self ? return $self : return undef;          no strict 'subs';
81  }          _set_lookup( $arg->{lookup} );
82            _set_rec( $arg->{row} );
83            _clean_ds( %{ $arg } );
84            eval "$arg->{rules}";
85            die "error evaling $arg->{rules}: $@\n" if ($@);
86    
87  =head2 setup_cache_dir          return _get_ds();
88    }
89    
90  Check if specified cache directory exist, and if not, disable caching.  =head2 _set_rec
91    
92   $setup_cache_dir('./cache/ds/');  Set current record hash
93    
94  If you pass false or zero value to this function, it will disable    _set_rec( $rec );
 cacheing.  
95    
96  =cut  =cut
97    
98  sub setup_cache_dir {  my $rec;
         my $self = shift;  
99    
100          my $dir = shift;  sub _set_rec {
101            $rec = shift or die "no record hash";
         my $log = $self->_get_logger();  
   
         if ($dir) {  
                 my $msg;  
                 if (! -e $dir) {  
                         $msg = "doesn't exist";  
                 } elsif (! -d $dir) {  
                         $msg = "is not directory";  
                 } elsif (! -w $dir) {  
                         $msg = "not writable";  
                 }  
   
                 if ($msg) {  
                         undef $self->{'cache_data_structure'};  
                         $log->warn("cache_data_structure $dir $msg, disabling...");  
                 } else {  
                         $log->debug("using cache dir $dir");  
                 }  
         } else {  
                 $log->debug("disabling cache");  
                 undef $self->{'cache_data_structure'};  
         }  
102  }  }
103    
104    =head2 _get_ds
105    
106  =head2 data_structure  Return hash formatted as data structure
   
 Create in-memory data structure which represents normalized layout from  
 C<conf/normalize/*.xml>.  
   
 This structures are used to produce output.  
   
  my @ds = $webpac->data_structure($rec);  
   
 B<Note: historical oddity follows>  
107    
108  This method will also set C<< $webpac->{'currnet_filename'} >> if there is    my $ds = _get_ds();
 C<< <filename> >> tag and C<< $webpac->{'headline'} >> if there is  
 C<< <headline> >> tag.  
109    
110  =cut  =cut
111    
112  sub data_structure {  my ($out,$marc_record, $marc_encoding, $marc_repeatable_subfield, $marc_indicators);
         my $self = shift;  
   
         my $log = $self->_get_logger();  
   
         my $rec = shift;  
         $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  
113    
114          my $cache_file;  sub _get_ds {
115            return $out;
116          if (my $cache_path = $self->{'cache_data_structure'}) {  }
                 my $id = $rec->{'000'};  
                 $id = $rec->{'000'}->[0] if ($id =~ m/^ARRAY/o);  
                 unless (defined($id)) {  
                         $log->warn("Can't use cache_data_structure on records without unique identifier in field 000");  
                         undef $self->{'cache_data_structure'};  
                 } else {  
                         $cache_file = "$cache_path/$id";  
                         if (-r $cache_file) {  
                                 my $ds_ref = retrieve($cache_file);  
                                 if ($ds_ref) {  
                                         $log->debug("cache hit: $cache_file");  
                                         my $ok = 1;  
                                         foreach my $f (qw(current_filename headline)) {  
                                                 if ($ds_ref->{$f}) {  
                                                         $self->{$f} = $ds_ref->{$f};  
                                                 } else {  
                                                         $ok = 0;  
                                                 }  
                                         };  
                                         if ($ok && $ds_ref->{'ds'}) {  
                                                 return @{ $ds_ref->{'ds'} };  
                                         } else {  
                                                 $log->warn("cache_data_structure $cache_path corrupt. Use rm $cache_path/* to re-create it on next run!");  
                                                 undef $self->{'cache_data_structure'};  
                                         }  
                                 }  
                         }  
                 }  
         }  
117    
118          undef $self->{'currnet_filename'};  =head2 _clean_ds
         undef $self->{'headline'};  
119    
120          my @sorted_tags;  Clean data structure hash for next record
         if ($self->{tags_by_order}) {  
                 @sorted_tags = @{$self->{tags_by_order}};  
         } else {  
                 @sorted_tags = sort { $self->_sort_by_order } keys %{$self->{'import_xml'}->{'indexer'}};  
                 $self->{tags_by_order} = \@sorted_tags;  
         }  
121    
122          my @ds;    _clean_ds();
123    
124          $log->debug("tags: ",sub { join(", ",@sorted_tags) });  =cut
125    
126          foreach my $field (@sorted_tags) {  sub _clean_ds {
127            my $a = {@_};
128            ($out,$marc_record, $marc_encoding, $marc_repeatable_subfield, $marc_indicators) = (undef);
129            $marc_encoding = $a->{marc_encoding};
130    }
131    
132                  my $row;  =head2 _set_lookup
133    
134  #print "field $field [",$self->{'tag'},"] = ",Dumper($self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}});  Set current lookup hash
135    
136                  foreach my $tag (@{$self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}}}) {    _set_lookup( $lookup );
                         my $format = $tag->{'value'} || $tag->{'content'};  
137    
138                          $log->debug("format: $format");  =cut
139    
140                          my @v;  my $lookup;
                         if ($self->{'lookup_regex'} && $format =~ $self->{'lookup_regex'}) {  
                                 @v = $self->fill_in_to_arr($rec,$format);  
                         } else {  
                                 @v = $self->parse_to_arr($rec,$format);  
                         }  
                         next if (! @v);  
141    
142                          if ($tag->{'sort'}) {  sub _set_lookup {
143                                  @v = $self->sort_arr(@v);          $lookup = shift;
144                          }  }
145    
146                          # use format?  =head2 _get_marc_fields
                         if ($tag->{'format_name'}) {  
                                 @v = map { $self->apply_format($tag->{'format_name'},$tag->{'format_delimiter'},$_) } @v;  
                         }  
147    
148                          if ($field eq 'filename') {  Get all fields defined by calls to C<marc>
                                 $self->{'current_filename'} = join('',@v);  
                                 $log->debug("filename: ",$self->{'current_filename'});  
                         } elsif ($field eq 'headline') {  
                                 $self->{'headline'} .= join('',@v);  
                                 $log->debug("headline: ",$self->{'headline'});  
                                 next; # don't return headline in data_structure!  
                         }  
149    
150                          # delimiter will join repeatable fields          $marc->add_fields( WebPAC::Normalize:_get_marc_fields() );
                         if ($tag->{'delimiter'}) {  
                                 @v = ( join($tag->{'delimiter'}, @v) );  
                         }  
151    
                         # default types  
                         my @types = qw(display swish);  
                         # override by type attribute  
                         @types = ( $tag->{'type'} ) if ($tag->{'type'});  
   
                         foreach my $type (@types) {  
                                 # append to previous line?  
                                 $log->debug("type: $type ",sub { join(" ",@v) }, $row->{'append'} || 'no append');  
                                 if ($tag->{'append'}) {  
   
                                         # I will delimit appended part with  
                                         # delimiter (or ,)  
                                         my $d = $tag->{'delimiter'};  
                                         # default delimiter  
                                         $d ||= " ";  
   
                                         my $last = pop @{$row->{$type}};  
                                         $d = "" if (! $last);  
                                         $last .= $d . join($d, @v);  
                                         push @{$row->{$type}}, $last;  
   
                                 } else {  
                                         push @{$row->{$type}}, @v;  
                                 }  
                         }  
152    
153    
154                  }  We are using I<magic> which detect repeatable fields only from
155    sequence of field/subfield data generated by normalization.
156    
157                  if ($row) {  Repeatable field is created if there is second occurence of same subfield or
158                          $row->{'tag'} = $field;  if any of indicators are different. This is sane for most cases except for
159    non-repeatable fields with repeatable subfields.
160    
161                          # TODO: name_sigular, name_plural  You can change behaviour of that using C<marc_repeatable_subfield>.
                         my $name = $self->{'import_xml'}->{'indexer'}->{$field}->{'name'};  
                         $row->{'name'} = $name ? $self->_x($name) : $field;  
   
                         # post-sort all values in field  
                         if ($self->{'import_xml'}->{'indexer'}->{$field}->{'sort'}) {  
                                 $log->warn("sort at field tag not implemented");  
                         }  
162    
163                          push @ds, $row;  =cut
164    
165                          $log->debug("row $field: ",sub { Dumper($row) });  sub _get_marc_fields {
166            my @m;
167            my $last;
168            foreach my $row (@{ $marc_record }) {
169                    if ($last &&
170                            $last->[0] eq $row->[0] &&              # check if field is same
171                            $last->[1] eq $row->[1] &&              # check for i1
172                            $last->[2] eq $row->[2] &&              # and for i2
173                                    ( $last->[3] ne $row->[3] ||                            # and subfield is different
174                                    $last->[3] eq $row->[3] &&                                      # or subfield is same,
175                                    $marc_repeatable_subfield->{ $row->[3] }        # but is repeatable
176                            )
177                    ) {
178                            push @$last, ( $row->[3] , $row->[4] );
179                            next;
180                    } elsif ($last) {
181                            push @m, $last;
182                  }                  }
183    
184                    $last = $row;
185          }          }
186    
187          if ($cache_file) {          push @m, $last if ($last);
                 store {  
                         ds => \@ds,  
                         current_filename => $self->{'current_filename'},  
                         headline => $self->{'headline'},  
                 }, $cache_file;  
                 $log->debug("created storable cache file $cache_file");  
         }  
   
         return @ds;  
188    
189            return @m;
190  }  }
191    
192  =head2 apply_format  =head1 Functions to create C<data_structure>
193    
194  Apply format specified in tag with C<format_name="name"> and  Those functions generally have to first in your normalization file.
 C<format_delimiter=";;">.  
195    
196   my $text = $webpac->apply_format($format_name,$format_delimiter,$data);  =head2 tag
197    
198    Define new tag for I<search> and I<display>.
199    
200      tag('Title', rec('200','a') );
201    
 Formats can contain C<lookup{...}> if you need them.  
202    
203  =cut  =cut
204    
205  sub apply_format {  sub tag {
206          my $self = shift;          my $name = shift or die "tag needs name as first argument";
207            my @o = grep { defined($_) && $_ ne '' } @_;
208            return unless (@o);
209            $out->{$name}->{tag} = $name;
210            $out->{$name}->{search} = \@o;
211            $out->{$name}->{display} = \@o;
212    }
213    
214          my ($name,$delimiter,$data) = @_;  =head2 display
215    
216          my $log = $self->_get_logger();  Define tag just for I<display>
217    
218          if (! $self->{'import_xml'}->{'format'}->{$name}) {    @v = display('Title', rec('200','a') );
219                  $log->warn("<format name=\"$name\"> is not defined in ",$self->{'import_xml_file'});  
220                  return $data;  =cut
         }  
221    
222          $log->warn("no delimiter for format $name") if (! $delimiter);  sub display {
223            my $name = shift or die "display needs name as first argument";
224            my @o = grep { defined($_) && $_ ne '' } @_;
225            return unless (@o);
226            $out->{$name}->{tag} = $name;
227            $out->{$name}->{display} = \@o;
228    }
229    
230          my $format = $self->_x($self->{'import_xml'}->{'format'}->{$name}->{'content'}) || $log->logdie("can't find format '$name'");  =head2 search
231    
232          my @data = split(/\Q$delimiter\E/, $data);  Prepare values just for I<search>
233    
234          my $out = sprintf($format, @data);    @v = search('Title', rec('200','a') );
         $log->debug("using format $name [$format] on $data to produce: $out");  
235    
236          if ($self->{'lookup_regex'} && $out =~ $self->{'lookup_regex'}) {  =cut
                 return $self->lookup($out);  
         } else {  
                 return $out;  
         }  
237    
238    sub search {
239            my $name = shift or die "search needs name as first argument";
240            my @o = grep { defined($_) && $_ ne '' } @_;
241            return unless (@o);
242            $out->{$name}->{tag} = $name;
243            $out->{$name}->{search} = \@o;
244  }  }
245    
246  =head2 parse  =head2 marc
247    
248  Perform smart parsing of string, skipping delimiters for fields which aren't  Save value for MARC field
 defined. It can also eval code in format starting with C<eval{...}> and  
 return output or nothing depending on eval code.  
249    
250   my $text = $webpac->parse($rec,'eval{"v901^a" eq "Deskriptor"}descriptor: v250^a', $i);    marc('900','a', rec('200','a') );
251    
252  =cut  =cut
253    
254  sub parse {  sub marc {
255          my $self = shift;          my $f = shift or die "marc needs field";
256            die "marc field must be numer" unless ($f =~ /^\d+$/);
257    
258          my ($rec, $format_utf8, $i) = @_;          my $sf = shift or die "marc needs subfield";
259    
260          return if (! $format_utf8);          foreach (@_) {
261                    my $v = $_;             # make var read-write for Encode
262                    next unless (defined($v) && $v !~ /^\s*$/);
263                    from_to($v, 'iso-8859-2', $marc_encoding) if ($marc_encoding);
264                    my ($i1,$i2) = defined($marc_indicators->{$f}) ? @{ $marc_indicators->{$f} } : (' ',' ');
265                    push @{ $marc_record }, [ $f, $i1, $i2, $sf => $v ];
266            }
267    }
268    
269          my $log = $self->_get_logger();  =head2 marc_repeatable_subfield
270    
271          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  Save values for MARC repetable subfield
272    
273          $i = 0 if (! $i);    marc_repeatable_subfield('910', 'z', rec('909') );
274    
275          my $format = $self->_x($format_utf8) || $log->logconfess("can't convert '$format_utf8' from UTF-8 to ",$self->{'code_page'});  =cut
276    
277          my @out;  sub marc_repeatable_subfield {
278            die "marc_repeatable_subfield need subfield!\n" unless (defined($_[1]));
279            $marc_repeatable_subfield->{ $_[1] }++;
280            marc(@_);
281    }
282    
283          $log->debug("format: $format");  =head2 marc_indicators
284    
285          my $eval_code;  Set both indicators for MARC field
         # remove eval{...} from beginning  
         $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);  
286    
287          my $filter_name;    marc_indicators('900', ' ', 1);
         # remove filter{...} from beginning  
         $filter_name = $1 if ($format =~ s/^filter{([^}]+)}//s);  
288    
289          my $prefix;  Any indicator value other than C<0-9> will be treated as undefined.
         my $all_found=0;  
290    
291          while ($format =~ s/^(.*?)(v|s)(\d+)(?:\^(\w))?//s) {  =cut
292    
293                  my $del = $1 || '';  sub marc_indicators {
294                  $prefix ||= $del if ($all_found == 0);          my $f = shift || die "marc_indicators need field!\n";
295            my ($i1,$i2) = @_;
296            die "marc_indicators($f, ...) need i1!\n" unless(defined($i1));
297            die "marc_indicators($f, $i1, ...) need i2!\n" unless(defined($i2));
298    
299                  # repeatable index          $i1 = ' ' if ($i1 !~ /^\d$/);
300                  my $r = $i;          $i2 = ' ' if ($i2 !~ /^\d$/);
301                  $r = 0 if (lc("$2") eq 's');          @{ $marc_indicators->{$f} } = ($i1,$i2);
302    }
303    
                 my $found = 0;  
                 my $tmp = $self->get_data(\$rec,$3,$4,$r,\$found);  
304    
305                  if ($found) {  =head1 Functions to extract data from input
                         push @out, $del;  
                         push @out, $tmp;  
                         $all_found += $found;  
                 }  
         }  
306    
307          return if (! $all_found);  This function should be used inside functions to create C<data_structure> described
308    above.
309    
310          my $out = join('',@out);  =head2 rec1
311    
312          if ($out) {  Return all values in some field
                 # add rest of format (suffix)  
                 $out .= $format;  
313    
314                  # add prefix if not there    @v = rec1('200')
                 $out = $prefix . $out if ($out !~ m/^\Q$prefix\E/);  
315    
316                  $log->debug("result: $out");  TODO: order of values is probably same as in source data, need to investigate that
         }  
317    
318          if ($eval_code) {  =cut
                 my $eval = $self->fill_in($rec,$eval_code,$i) || return;  
                 $log->debug("about to eval{$eval} format: $out");  
                 return if (! $self->_eval($eval));  
         }  
           
         if ($filter_name && $self->{'filter'}->{$filter_name}) {  
                 $log->debug("about to filter{$filter_name} format: $out");  
                 $out = $self->{'filter'}->{$filter_name}->($out);  
                 return unless(defined($out));  
                 $log->debug("filter result: $out");  
         }  
319    
320          return $out;  sub rec1 {
321            my $f = shift;
322            return unless (defined($rec) && defined($rec->{$f}));
323            if (ref($rec->{$f}) eq 'ARRAY') {
324                    return map {
325                            if (ref($_) eq 'HASH') {
326                                    values %{$_};
327                            } else {
328                                    $_;
329                            }
330                    } @{ $rec->{$f} };
331            } elsif( defined($rec->{$f}) ) {
332                    return $rec->{$f};
333            }
334  }  }
335    
336  =head2 parse_to_arr  =head2 rec2
337    
338  Similar to C<parse>, but returns array of all repeatable fields  Return all values in specific field and subfield
339    
340   my @arr = $webpac->parse_to_arr($rec,'v250^a');    @v = rec2('200','a')
341    
342  =cut  =cut
343    
344  sub parse_to_arr {  sub rec2 {
345          my $self = shift;          my $f = shift;
346            return unless (defined($rec && $rec->{$f}));
347            my $sf = shift;
348            return map { $_->{$sf} } grep { ref($_) eq 'HASH' && $_->{$sf} } @{ $rec->{$f} };
349    }
350    
351          my ($rec, $format_utf8) = @_;  =head2 rec
352    
353          my $log = $self->_get_logger();  syntaxtic sugar for
354    
355          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);    @v = rec('200')
356          return if (! $format_utf8);    @v = rec('200','a')
357    
358          my $i = 0;  =cut
         my @arr;  
359    
360          while (my $v = $self->parse($rec,$format_utf8,$i++)) {  sub rec {
361                  push @arr, $v;          if ($#_ == 0) {
362                    return rec1(@_);
363            } elsif ($#_ == 1) {
364                    return rec2(@_);
365          }          }
   
         $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);  
   
         return @arr;  
366  }  }
367    
368  =head2 fill_in_to_arr  =head2 regex
369    
370  Similar to C<fill_in>, but returns array of all repeatable fields. Usable  Apply regex to some or all values
 for fields which have lookups, so they shouldn't be parsed but rather  
 C<fill_id>ed.  
371    
372   my @arr = $webpac->fill_in_to_arr($rec,'[v900];;[v250^a]');    @v = regex( 's/foo/bar/g', @v );
373    
374  =cut  =cut
375    
376  sub fill_in_to_arr {  sub regex {
377          my $self = shift;          my $r = shift;
378            my @out;
379          my ($rec, $format_utf8) = @_;          #warn "r: $r\n",Dumper(\@_);
380            foreach my $t (@_) {
381          my $log = $self->_get_logger();                  next unless ($t);
382                    eval "\$t =~ $r";
383                    push @out, $t if ($t && $t ne '');
384            }
385            return @out;
386    }
387    
388          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  =head2 prefix
         return if (! $format_utf8);  
389    
390          my $i = 0;  Prefix all values with a string
         my @arr;  
391    
392          while (my @v = $self->fill_in($rec,$format_utf8,$i++)) {    @v = prefix( 'my_', @v );
                 push @arr, @v;  
         }  
393    
394          $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);  =cut
395    
396          return @arr;  sub prefix {
397            my $p = shift or die "prefix needs string as first argument";
398            return map { $p . $_ } grep { defined($_) } @_;
399  }  }
400    
401  =head2 sort_arr  =head2 suffix
402    
403  Sort array ignoring case and html in data  suffix all values with a string
404    
405   my @sorted = $webpac->sort_arr(@unsorted);    @v = suffix( '_my', @v );
406    
407  =cut  =cut
408    
409  sub sort_arr {  sub suffix {
410          my $self = shift;          my $s = shift or die "suffix needs string as first argument";
411            return map { $_ . $s } grep { defined($_) } @_;
412    }
413    
414    =head2 surround
415    
416          my $log = $self->_get_logger();  surround all values with a two strings
417    
418          # FIXME add Schwartzian Transformation?    @v = surround( 'prefix_', '_suffix', @v );
419    
420          my @sorted = sort {  =cut
                 $a =~ s#<[^>]+/*>##;  
                 $b =~ s#<[^>]+/*>##;  
                 lc($b) cmp lc($a)  
         } @_;  
         $log->debug("sorted values: ",sub { join(", ",@sorted) });  
421    
422          return @sorted;  sub surround {
423            my $p = shift or die "surround need prefix as first argument";
424            my $s = shift or die "surround needs suffix as second argument";
425            return map { $p . $_ . $s } grep { defined($_) } @_;
426  }  }
427    
428    =head2 first
429    
430  =head2 _sort_by_order  Return first element
431    
432  Sort xml tags data structure accoding to C<order=""> attribute.    $v = first( @v );
433    
434  =cut  =cut
435    
436  sub _sort_by_order {  sub first {
437          my $self = shift;          my $r = shift;
438            return $r;
         my $va = $self->{'import_xml'}->{'indexer'}->{$a}->{'order'} ||  
                 $self->{'import_xml'}->{'indexer'}->{$a};  
         my $vb = $self->{'import_xml'}->{'indexer'}->{$b}->{'order'} ||  
                 $self->{'import_xml'}->{'indexer'}->{$b};  
   
         return $va <=> $vb;  
439  }  }
440    
441  =head2 _x  =head2 lookup
   
 Convert strings from C<conf/normalize> encoding into application specific  
 (optinally specified using C<code_page> to C<new> constructor.  
442    
443   my $text = $n->_x('normalize text string');  Consult lookup hashes for some value
444    
445  This is a stub so that other modules doesn't have to implement it.    @v = lookup( $v );
446      @v = lookup( @v );
447    
448  =cut  =cut
449    
450  sub _x {  sub lookup {
451          my $self = shift;          my $k = shift or return;
452          return shift;          return unless (defined($lookup->{$k}));
453            if (ref($lookup->{$k}) eq 'ARRAY') {
454                    return @{ $lookup->{$k} };
455            } else {
456                    return $lookup->{$k};
457            }
458  }  }
459    
460    =head2 join_with
461    
462  =head1 AUTHOR  Joins walues with some delimiter
   
 Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>  
   
 =head1 COPYRIGHT & LICENSE  
463    
464  Copyright 2005 Dobrica Pavlinusic, All Rights Reserved.    $v = join_with(", ", @v);
   
 This program is free software; you can redistribute it and/or modify it  
 under the same terms as Perl itself.  
465    
466  =cut  =cut
467    
468  1; # End of WebPAC::DB  sub join_with {
469            my $d = shift;
470            return join($d, grep { defined($_) && $_ ne '' } @_);
471    }
472    
473    # END
474    1;

Legend:
Removed from v.14  
changed lines
  Added in v.548

  ViewVC Help
Powered by ViewVC 1.1.26