← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 11:58:52 2013
Reported on Tue Oct 15 12:01:07 2013

Filename/usr/share/perl/5.10/Text/Abbrev.pm
StatementsExecuted 195 statements in 415µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
311339µs339µsText::Abbrev::::abbrevText::Abbrev::abbrev
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Text::Abbrev;
2136µsrequire 5.005; # Probably works on earlier versions too.
311µsrequire Exporter;
4
511µsour $VERSION = '1.01';
6
7=head1 NAME
8
- -
35115µs@ISA = qw(Exporter);
3611µs@EXPORT = qw(abbrev);
37
38# Usage:
39# abbrev \%foo, LIST;
40# ...
41# $long = $foo{$short};
42
43
# spent 339µs within Text::Abbrev::abbrev which was called 3 times, avg 113µs/call: # 3 times (339µs+0s) by CGI::Session::parse_dsn at line 152 of CGI/Session.pm, avg 113µs/call
sub abbrev {
44189352µs my ($word, $hashref, $glob, %table, $returnvoid);
45
46 @_ or return; # So we don't autovivify onto @_ and trigger warning
47 if (ref($_[0])) { # hash reference preferably
48 $hashref = shift;
49 $returnvoid = 1;
50 } elsif (ref \$_[0] eq 'GLOB') { # is actually a glob (deprecated)
51 $hashref = \%{shift()};
52 $returnvoid = 1;
53 }
54 %{$hashref} = ();
55
56 WORD: foreach $word (@_) {
57 for (my $len = (length $word) - 1; $len > 0; --$len) {
58 my $abbrev = substr($word,0,$len);
59 my $seen = ++$table{$abbrev};
60 if ($seen == 1) { # We're the first word so far to have
61 # this abbreviation.
62 $hashref->{$abbrev} = $word;
63 } elsif ($seen == 2) { # We're the second word to have this
64 # abbreviation, so we can't use it.
65 delete $hashref->{$abbrev};
66 } else { # We're the third word to have this
67 # abbreviation, so skip to the next word.
68 next WORD;
69 }
70 }
71 }
72 # Non-abbreviations always get entered, even if they aren't unique
73 foreach $word (@_) {
74 $hashref->{$word} = $word;
75 }
76 return if $returnvoid;
77 if (wantarray) {
78 %{$hashref};
79 } else {
80 $hashref;
81 }
82}
83
8418µs1;