← 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 17:10:45 2013
Reported on Tue Oct 15 17:12:31 2013

Filename/usr/lib/perl5/XML/LibXML/NodeList.pm
StatementsExecuted 21 statements in 823µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111613µs2.40msXML::LibXML::NodeList::::BEGIN@12XML::LibXML::NodeList::BEGIN@12
11119µs24µsXML::LibXML::NodeList::::BEGIN@11XML::LibXML::NodeList::BEGIN@11
11115µs49µsXML::LibXML::NodeList::::BEGIN@20XML::LibXML::NodeList::BEGIN@20
11110µs12µsXML::LibXML::NodeList::::BEGIN@13XML::LibXML::NodeList::BEGIN@13
1119µs10µsXML::LibXML::NodeList::::BEGIN@14XML::LibXML::NodeList::BEGIN@14
1118µs33µsXML::LibXML::NodeList::::BEGIN@16XML::LibXML::NodeList::BEGIN@16
0000s0sXML::LibXML::NodeList::::appendXML::LibXML::NodeList::append
0000s0sXML::LibXML::NodeList::::get_nodeXML::LibXML::NodeList::get_node
0000s0sXML::LibXML::NodeList::::get_nodelistXML::LibXML::NodeList::get_nodelist
0000s0sXML::LibXML::NodeList::::iteratorXML::LibXML::NodeList::iterator
0000s0sXML::LibXML::NodeList::::newXML::LibXML::NodeList::new
0000s0sXML::LibXML::NodeList::::new_from_refXML::LibXML::NodeList::new_from_ref
0000s0sXML::LibXML::NodeList::::popXML::LibXML::NodeList::pop
0000s0sXML::LibXML::NodeList::::prependXML::LibXML::NodeList::prepend
0000s0sXML::LibXML::NodeList::::pushXML::LibXML::NodeList::push
0000s0sXML::LibXML::NodeList::::shiftXML::LibXML::NodeList::shift
0000s0sXML::LibXML::NodeList::::sizeXML::LibXML::NodeList::size
0000s0sXML::LibXML::NodeList::::string_valueXML::LibXML::NodeList::string_value
0000s0sXML::LibXML::NodeList::::to_booleanXML::LibXML::NodeList::to_boolean
0000s0sXML::LibXML::NodeList::::to_literalXML::LibXML::NodeList::to_literal
0000s0sXML::LibXML::NodeList::::to_numberXML::LibXML::NodeList::to_number
0000s0sXML::LibXML::NodeList::::unshiftXML::LibXML::NodeList::unshift
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# $Id: NodeList.pm 785 2009-07-16 14:17:46Z pajas $
2#
3# This is free software, you may use it and distribute it under the same terms as
4# Perl itself.
5#
6# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
7#
8#
9
10package XML::LibXML::NodeList;
11345µs229µs
# spent 24µs (19+5) within XML::LibXML::NodeList::BEGIN@11 which was called: # once (19µs+5µs) by XML::LibXML::BEGIN@24 at line 11
use strict;
# spent 24µs making 1 call to XML::LibXML::NodeList::BEGIN@11 # spent 5µs making 1 call to strict::import
123140µs22.40ms
# spent 2.40ms (613µs+1.78) within XML::LibXML::NodeList::BEGIN@12 which was called: # once (613µs+1.78ms) by XML::LibXML::BEGIN@24 at line 12
use XML::LibXML::Boolean;
# spent 2.40ms making 1 call to XML::LibXML::NodeList::BEGIN@12 # spent 3µs making 1 call to UNIVERSAL::import
13327µs213µs
# spent 12µs (10+2) within XML::LibXML::NodeList::BEGIN@13 which was called: # once (10µs+2µs) by XML::LibXML::BEGIN@24 at line 13
use XML::LibXML::Literal;
# spent 12µs making 1 call to XML::LibXML::NodeList::BEGIN@13 # spent 2µs making 1 call to UNIVERSAL::import
14326µs212µs
# spent 10µs (9+1) within XML::LibXML::NodeList::BEGIN@14 which was called: # once (9µs+1µs) by XML::LibXML::BEGIN@24 at line 14
use XML::LibXML::Number;
# spent 10µs making 1 call to XML::LibXML::NodeList::BEGIN@14 # spent 1µs making 1 call to UNIVERSAL::import
15
16350µs259µs
# spent 33µs (8+26) within XML::LibXML::NodeList::BEGIN@16 which was called: # once (8µs+26µs) by XML::LibXML::BEGIN@24 at line 16
use vars qw ($VERSION);
# spent 33µs making 1 call to XML::LibXML::NodeList::BEGIN@16 # spent 26µs making 1 call to vars::import
171700ns$VERSION = "1.70"; # VERSION TEMPLATE: DO NOT CHANGE
18
19use overload
20112µs134µs
# spent 49µs (15+34) within XML::LibXML::NodeList::BEGIN@20 which was called: # once (15µs+34µs) by XML::LibXML::BEGIN@24 at line 22
'""' => \&to_literal,
# spent 34µs making 1 call to overload::import
21 'bool' => \&to_boolean,
222517µs149µs ;
# spent 49µs making 1 call to XML::LibXML::NodeList::BEGIN@20
23
24sub new {
25 my $class = shift;
26 bless [@_], $class;
27}
28
29sub new_from_ref {
30 my ($class,$array_ref,$reuse) = @_;
31 return bless $reuse ? $array_ref : [@$array_ref], $class;
32}
33
34sub pop {
35 my $self = CORE::shift;
36 CORE::pop @$self;
37}
38
39sub push {
40 my $self = CORE::shift;
41 CORE::push @$self, @_;
42}
43
44sub append {
45 my $self = CORE::shift;
46 my ($nodelist) = @_;
47 CORE::push @$self, $nodelist->get_nodelist;
48}
49
50sub shift {
51 my $self = CORE::shift;
52 CORE::shift @$self;
53}
54
55sub unshift {
56 my $self = CORE::shift;
57 CORE::unshift @$self, @_;
58}
59
60sub prepend {
61 my $self = CORE::shift;
62 my ($nodelist) = @_;
63 CORE::unshift @$self, $nodelist->get_nodelist;
64}
65
66sub size {
67 my $self = CORE::shift;
68 scalar @$self;
69}
70
71sub get_node {
72 # uses array index starting at 1, not 0
73 # this is mainly because of XPath.
74 my $self = CORE::shift;
75 my ($pos) = @_;
76 $self->[$pos - 1];
77}
78
7912µs*item = \&get_node;
80
81sub get_nodelist {
82 my $self = CORE::shift;
83 @$self;
84}
85
86sub to_boolean {
87 my $self = CORE::shift;
88 return (@$self > 0) ? XML::LibXML::Boolean->True : XML::LibXML::Boolean->False;
89}
90
91# string-value of a nodelist is the string-value of the first node
92sub string_value {
93 my $self = CORE::shift;
94 return '' unless @$self;
95 return $self->[0]->string_value;
96}
97
98sub to_literal {
99 my $self = CORE::shift;
100 return XML::LibXML::Literal->new(
101 join('', grep {defined $_} map { $_->string_value } @$self)
102 );
103}
104
105sub to_number {
106 my $self = CORE::shift;
107 return XML::LibXML::Number->new(
108 $self->to_literal
109 );
110}
111
112sub iterator {
113 warn "this function is obsolete!\nIt was disabled in version 1.54\n";
114 return undef;
115}
116
11714µs1;
118__END__