← Index
Performance Profile   « block view • line view • sub view »
For /home/chris/git/koha.git/cataloguing/addbiblio.pl
  Run on Tue Aug 25 11:37:23 2009
Reported on Tue Aug 25 11:37:53 2009

File /usr/share/perl/5.10/CGI/Cookie.pm
Statements Executed 442
Total Time 0.0037882 seconds
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1421312µs312µsCGI::Cookie::::nameCGI::Cookie::name
322191µs430µsCGI::Cookie::::newCGI::Cookie::new
1021160µs160µsCGI::Cookie::::pathCGI::Cookie::path
822123µs123µsCGI::Cookie::::valueCGI::Cookie::value
711121µs121µsCGI::Cookie::::secureCGI::Cookie::secure
711106µs106µsCGI::Cookie::::max_ageCGI::Cookie::max_age
711100µs100µsCGI::Cookie::::domainCGI::Cookie::domain
711100µs100µsCGI::Cookie::::expiresCGI::Cookie::expires
71193µs93µsCGI::Cookie::::httponlyCGI::Cookie::httponly
11186µs468µsCGI::Cookie::::parseCGI::Cookie::parse
11132µs193µsCGI::Cookie::::as_stringCGI::Cookie::as_string
11127µs513µsCGI::Cookie::::fetchCGI::Cookie::fetch
11118µs18µsCGI::Cookie::::get_raw_cookieCGI::Cookie::get_raw_cookie
0000s0sCGI::Cookie::::BEGINCGI::Cookie::BEGIN
0000s0sCGI::Cookie::::bakeCGI::Cookie::bake
0000s0sCGI::Cookie::::compareCGI::Cookie::compare
0000s0sCGI::Cookie::::raw_fetchCGI::Cookie::raw_fetch
LineStmts.Exclusive
Time
Avg.Code
1package CGI::Cookie;
2
3# See the bottom of this file for the POD documentation. Search for the
4# string '=head'.
5
6# You can run this file through either pod2man or pod2html to produce pretty
7# documentation in manual or html file format (these utilities are part of the
8# Perl 5 distribution).
9
10# Copyright 1995-1999, Lincoln D. Stein. All rights reserved.
11# It may be used and modified freely, but I do request that this copyright
12# notice remain attached to the file. You may modify this module as you
13# wish, but if you redistribute a modified version, please attach a note
14# listing the modifications you have made.
15
1611µs1µs$CGI::Cookie::VERSION='1.28';
17
18250µs25µsuse CGI::Util qw(rearrange unescape escape);
# spent 249µs making 1 call to Exporter::import
19366µs22µsuse CGI;
# spent 50µs making 1 call to CGI::import
20129µs29µsuse overload '""' => \&as_string,
# spent 280µs making 1 call to overload::import
21 'cmp' => \&compare,
2221.69ms847µs 'fallback'=>1;
23
24# Turn on special checking for Doug MacEachern's modperl
251700ns700nsmy $MOD_PERL = 0;
2612µs2µsif (exists $ENV{MOD_PERL}) {
27 if (exists $ENV{MOD_PERL_API_VERSION} && $ENV{MOD_PERL_API_VERSION} == 2) {
28 $MOD_PERL = 2;
29 require Apache2::RequestUtil;
30151µs51µs require APR::Table;
31140µs40µs } else {
32 $MOD_PERL = 1;
33 require Apache;
34 }
35}
36
37# fetch a list of cookies from the environment and
38# return as a hash. the cookies are parsed as normal
39# escaped URL data.
40
# spent 513µs (27+486) within CGI::Cookie::fetch which was called # once (27µs+486µs) by CGI::cookie at line 12 of (eval 0)[/usr/share/perl/5.10/CGI.pm:867] at line 867 of /usr/share/perl/5.10/CGI.pm
sub fetch {
4111µs1µs my $class = shift;
42113µs13µs my $raw_cookie = get_raw_cookie(@_) or return;
# spent 18µs making 1 call to CGI::Cookie::get_raw_cookie
43113µs13µs return $class->parse($raw_cookie);
# spent 468µs making 1 call to CGI::Cookie::parse
44}
45
46# Fetch a list of cookies from the environment or the incoming headers and
47# return as a hash. The cookie values are not unescaped or altered in any way.
48 sub raw_fetch {
49 my $class = shift;
50 my $raw_cookie = get_raw_cookie(@_) or return;
51 my %results;
52 my($key,$value);
53
54 my(@pairs) = split("[;,] ?",$raw_cookie);
55 foreach (@pairs) {
56 s/\s*(.*?)\s*/$1/;
57 if (/^([^=]+)=(.*)/) {
58 $key = $1;
59 $value = $2;
60 }
61 else {
62 $key = $_;
63 $value = '';
64 }
65 $results{$key} = $value;
66 }
67 return \%results unless wantarray;
68 return %results;
69}
70
71
# spent 18µs within CGI::Cookie::get_raw_cookie which was called # once (18µs+0s) by CGI::Cookie::fetch at line 42
sub get_raw_cookie {
721700ns700ns my $r = shift;
731200ns200ns $r ||= eval { $MOD_PERL == 2 ?
74 Apache2::RequestUtil->request() :
75 Apache->request } if $MOD_PERL;
7612µs2µs if ($r) {
77 $raw_cookie = $r->headers_in->{'Cookie'};
78 } else {
791300ns300ns if ($MOD_PERL && !exists $ENV{REQUEST_METHOD}) {
80 die "Run $r->subprocess_env; before calling fetch()";
81 }
8213µs3µs $raw_cookie = $ENV{HTTP_COOKIE} || $ENV{COOKIE};
83 }
84}
85
86
87
# spent 468µs (86+382) within CGI::Cookie::parse which was called # once (86µs+382µs) by CGI::Cookie::fetch at line 43
sub parse {
8813µs3µs my ($self,$raw_cookie) = @_;
891300ns300ns my %results;
90
91110µs10µs my(@pairs) = split("; ?",$raw_cookie);
9211µs1µs foreach (@pairs) {
93216µs8µs s/\s*(.*?)\s*/$1/;
9426µs3µs my($key,$value) = split("=",$_,2);
95
96 # Some foreign cookies are not in name=value format, so ignore
97 # them.
982900ns450ns next if !defined($value);
9921µs500ns my @values = ();
10022µs900ns if ($value ne '') {
101271µs36µs @values = map unescape($_),split(/[&;]/,$value.'&dmy');
# spent 89µs making 6 calls to CGI::Util::unescape, avg 15µs/call
1022800ns400ns pop @values;
103 }
104224µs12µs $key = unescape($key);
# spent 32µs making 2 calls to CGI::Util::unescape, avg 16µs/call
105 # A bug in Netscape can cause several cookies with same name to
106 # appear. The FIRST one in HTTP_COOKIE is the most recent version.
107243µs21µs $results{$key} ||= $self->new(-name=>$key,-value=>\@values);
# spent 261µs making 2 calls to CGI::Cookie::new, avg 131µs/call
108 }
10912µs2µs return \%results unless wantarray;
110 return %results;
111}
112
113
# spent 430µs (191+239) within CGI::Cookie::new which was called 3 times, avg 143µs/call: # 2 times (114µs+147µs) by CGI::Cookie::parse at line 107, avg 131µs/call # once (77µs+92µs) by CGI::cookie at line 34 of (eval 0)[/usr/share/perl/5.10/CGI.pm:867] at line 867 of /usr/share/perl/5.10/CGI.pm
sub new {
11433µs1µs my $class = shift;
11532µs500ns $class = ref($class) if ref($class);
116 # Ignore mod_perl request object--compatability with Apache::Cookie.
117 shift if ref $_[0]
11832µs500ns && eval { $_[0]->isa('Apache::Request::Req') || $_[0]->isa('Apache') };
119351µs17µs my($name,$value,$path,$domain,$secure,$expires,$httponly) =
# spent 184µs making 3 calls to CGI::Util::rearrange, avg 61µs/call
120 rearrange([NAME,[VALUE,VALUES],PATH,DOMAIN,SECURE,EXPIRES,HTTPONLY],@_);
121
122 # Pull out our parameters.
1233700ns233ns my @values;
12433µs900ns if (ref($value)) {
12524µs2µs if (ref($value) eq 'ARRAY') {
126 @values = @$value;
127 } elsif (ref($value) eq 'HASH') {
128 @values = %$value;
129 }
130 } else {
13111µs1µs @values = ($value);
132 }
133
134393µs31µs bless my $self = {
135 'name'=>$name,
136 'value'=>[@values],
137 },$class;
138
139 # IE requires the path and domain to be present for some reason.
14032µs633ns $path ||= "/";
141 # however, this breaks networks which use host tables without fully qualified
142 # names, so we comment it out.
143 # $domain = CGI::virtual_host() unless defined $domain;
144
145344µs15µs $self->path($path) if defined $path;
# spent 55µs making 3 calls to CGI::Cookie::path, avg 18µs/call
1463800ns267ns $self->domain($domain) if defined $domain;
1473400ns133ns $self->secure($secure) if defined $secure;
1483700ns233ns $self->expires($expires) if defined $expires;
1493400ns133ns $self->httponly($httponly) if defined $httponly;
150# $self->max_age($expires) if defined $expires;
15134µs1µs return $self;
152}
153
154
# spent 193µs (32+161) within CGI::Cookie::as_string which was called # once (32µs+161µs) by CGI::header at line 53 of (eval 0)[/usr/share/perl/5.10/CGI.pm:867] at line 867 of /usr/share/perl/5.10/CGI.pm
sub as_string {
15576µs886ns my $self = shift;
1567173µs25µs return "" unless $self->name;
# spent 196µs making 7 calls to CGI::Cookie::name, avg 28µs/call
157
15877µs957ns my(@constant_values,$domain,$path,$expires,$max_age,$secure,$httponly);
159
160790µs13µs push(@constant_values,"domain=$domain") if $domain = $self->domain;
# spent 100µs making 7 calls to CGI::Cookie::domain, avg 14µs/call
1617100µs14µs push(@constant_values,"path=$path") if $path = $self->path;
# spent 105µs making 7 calls to CGI::Cookie::path, avg 15µs/call
162786µs12µs push(@constant_values,"expires=$expires") if $expires = $self->expires;
# spent 100µs making 7 calls to CGI::Cookie::expires, avg 14µs/call
163797µs14µs push(@constant_values,"max-age=$max_age") if $max_age = $self->max_age;
# spent 106µs making 7 calls to CGI::Cookie::max_age, avg 15µs/call
1647109µs16µs push(@constant_values,"secure") if $secure = $self->secure;
# spent 121µs making 7 calls to CGI::Cookie::secure, avg 17µs/call
165782µs12µs push(@constant_values,"HttpOnly") if $httponly = $self->httponly;
# spent 93µs making 7 calls to CGI::Cookie::httponly, avg 13µs/call
166
1677190µs27µs my($key) = escape($self->name);
# spent 177µs making 7 calls to CGI::Util::escape, avg 25µs/call # spent 116µs making 7 calls to CGI::Cookie::name, avg 17µs/call
1687192µs27µs my($cookie) = join("=",(defined $key ? $key : ''),join("&",map escape(defined $_ ? $_ : ''),$self->value));
# spent 150µs making 7 calls to CGI::Util::escape, avg 21µs/call # spent 108µs making 7 calls to CGI::Cookie::value, avg 15µs/call
169713µs2µs return join("; ",$cookie,@constant_values);
170}
171
172sub compare {
173 my $self = shift;
174 my $value = shift;
175 return "$self" cmp $value;
176}
177
178sub bake {
179 my ($self, $r) = @_;
180
181 $r ||= eval {
182 $MOD_PERL == 2
183 ? Apache2::RequestUtil->request()
184 : Apache->request
185 } if $MOD_PERL;
186 if ($r) {
187 $r->headers_out->add('Set-Cookie' => $self->as_string);
188 } else {
189 print CGI::header(-cookie => $self);
190 }
191
192}
193
194# accessors
195
# spent 312µs within CGI::Cookie::name which was called 14 times, avg 22µs/call: # 7 times (196µs+0s) by CGI::Cookie::as_string at line 156, avg 28µs/call # 7 times (116µs+0s) by CGI::Cookie::as_string at line 167, avg 17µs/call
sub name {
1961411µs793ns my $self = shift;
197145µs329ns my $name = shift;
198145µs379ns $self->{'name'} = $name if defined $name;
1991446µs3µs return $self->{'name'};
200}
201
202
# spent 123µs within CGI::Cookie::value which was called 8 times, avg 15µs/call: # 7 times (108µs+0s) by CGI::Cookie::as_string at line 168, avg 15µs/call # once (14µs+0s) by CGI::cookie at line 19 of (eval 0)[/usr/share/perl/5.10/CGI.pm:867] at line 867 of /usr/share/perl/5.10/CGI.pm
sub value {
20386µs688ns my $self = shift;
20483µs425ns my $value = shift;
20583µs388ns if (defined $value) {
206 my @values;
207 if (ref($value)) {
208 if (ref($value) eq 'ARRAY') {
209 @values = @$value;
210 } elsif (ref($value) eq 'HASH') {
211 @values = %$value;
212 }
213 } else {
214 @values = ($value);
215 }
216 $self->{'value'} = [@values];
217 }
218828µs4µs return wantarray ? @{$self->{'value'}} : $self->{'value'}->[0]
219}
220
221
# spent 100µs within CGI::Cookie::domain which was called 7 times, avg 14µs/call: # 7 times (100µs+0s) by CGI::Cookie::as_string at line 160, avg 14µs/call
sub domain {
22275µs700ns my $self = shift;
22373µs386ns my $domain = shift;
22472µs343ns $self->{'domain'} = lc $domain if defined $domain;
225714µs2µs return $self->{'domain'};
226}
227
228
# spent 121µs within CGI::Cookie::secure which was called 7 times, avg 17µs/call: # 7 times (121µs+0s) by CGI::Cookie::as_string at line 164, avg 17µs/call
sub secure {
22975µs714ns my $self = shift;
23073µs414ns my $secure = shift;
23173µs400ns $self->{'secure'} = $secure if defined $secure;
232716µs2µs return $self->{'secure'};
233}
234
235
# spent 100µs within CGI::Cookie::expires which was called 7 times, avg 14µs/call: # 7 times (100µs+0s) by CGI::Cookie::as_string at line 162, avg 14µs/call
sub expires {
23675µs757ns my $self = shift;
23773µs429ns my $expires = shift;
23873µs386ns $self->{'expires'} = CGI::Util::expires($expires,'cookie') if defined $expires;
239714µs2µs return $self->{'expires'};
240}
241
242
# spent 106µs within CGI::Cookie::max_age which was called 7 times, avg 15µs/call: # 7 times (106µs+0s) by CGI::Cookie::as_string at line 163, avg 15µs/call
sub max_age {
24375µs657ns my $self = shift;
24473µs429ns my $expires = shift;
24573µs429ns $self->{'max-age'} = CGI::Util::expire_calc($expires)-time() if defined $expires;
246713µs2µs return $self->{'max-age'};
247}
248
249
# spent 160µs within CGI::Cookie::path which was called 10 times, avg 16µs/call: # 7 times (105µs+0s) by CGI::Cookie::as_string at line 161, avg 15µs/call # 3 times (55µs+0s) by CGI::Cookie::new at line 145, avg 18µs/call
sub path {
250107µs720ns my $self = shift;
251105µs460ns my $path = shift;
2521010µs1µs $self->{'path'} = $path if defined $path;
2531023µs2µs return $self->{'path'};
254}
255
256
257
# spent 93µs within CGI::Cookie::httponly which was called 7 times, avg 13µs/call: # 7 times (93µs+0s) by CGI::Cookie::as_string at line 165, avg 13µs/call
sub httponly { # HttpOnly
25875µs700ns my $self = shift;
25973µs386ns my $httponly = shift;
26073µs443ns $self->{'httponly'} = $httponly if defined $httponly;
261713µs2µs return $self->{'httponly'};
262}
263
26419µs9µs1;
265
266=head1 NAME
267
268CGI::Cookie - Interface to Netscape Cookies
269
270=head1 SYNOPSIS
271
272 use CGI qw/:standard/;
273 use CGI::Cookie;
274
275 # Create new cookies and send them
276 $cookie1 = new CGI::Cookie(-name=>'ID',-value=>123456);
277 $cookie2 = new CGI::Cookie(-name=>'preferences',
278 -value=>{ font => Helvetica,
279 size => 12 }
280 );
281 print header(-cookie=>[$cookie1,$cookie2]);
282
283 # fetch existing cookies
284 %cookies = fetch CGI::Cookie;
285 $id = $cookies{'ID'}->value;
286
287 # create cookies returned from an external source
288 %cookies = parse CGI::Cookie($ENV{COOKIE});
289
290=head1 DESCRIPTION
291
292CGI::Cookie is an interface to Netscape (HTTP/1.1) cookies, an
293innovation that allows Web servers to store persistent information on
294the browser's side of the connection. Although CGI::Cookie is
295intended to be used in conjunction with CGI.pm (and is in fact used by
296it internally), you can use this module independently.
297
298For full information on cookies see
299
300 http://www.ics.uci.edu/pub/ietf/http/rfc2109.txt
301
302=head1 USING CGI::Cookie
303
304CGI::Cookie is object oriented. Each cookie object has a name and a
305value. The name is any scalar value. The value is any scalar or
306array value (associative arrays are also allowed). Cookies also have
307several optional attributes, including:
308
309=over 4
310
311=item B<1. expiration date>
312
313The expiration date tells the browser how long to hang on to the
314cookie. If the cookie specifies an expiration date in the future, the
315browser will store the cookie information in a disk file and return it
316to the server every time the user reconnects (until the expiration
317date is reached). If the cookie species an expiration date in the
318past, the browser will remove the cookie from the disk file. If the
319expiration date is not specified, the cookie will persist only until
320the user quits the browser.
321
322=item B<2. domain>
323
324This is a partial or complete domain name for which the cookie is
325valid. The browser will return the cookie to any host that matches
326the partial domain name. For example, if you specify a domain name
327of ".capricorn.com", then Netscape will return the cookie to
328Web servers running on any of the machines "www.capricorn.com",
329"ftp.capricorn.com", "feckless.capricorn.com", etc. Domain names
330must contain at least two periods to prevent attempts to match
331on top level domains like ".edu". If no domain is specified, then
332the browser will only return the cookie to servers on the host the
333cookie originated from.
334
335=item B<3. path>
336
337If you provide a cookie path attribute, the browser will check it
338against your script's URL before returning the cookie. For example,
339if you specify the path "/cgi-bin", then the cookie will be returned
340to each of the scripts "/cgi-bin/tally.pl", "/cgi-bin/order.pl", and
341"/cgi-bin/customer_service/complain.pl", but not to the script
342"/cgi-private/site_admin.pl". By default, the path is set to "/", so
343that all scripts at your site will receive the cookie.
344
345=item B<4. secure flag>
346
347If the "secure" attribute is set, the cookie will only be sent to your
348script if the CGI request is occurring on a secure channel, such as SSL.
349
350=item B<4. httponly flag>
351
352If the "httponly" attribute is set, the cookie will only be accessible
353through HTTP Requests. This cookie will be inaccessible via JavaScript
354(to prevent XSS attacks).
355
356But, currently this feature only used and recognised by
357MS Internet Explorer 6 Service Pack 1 and later.
358
359See this URL for more information:
360
361L<http://msdn.microsoft.com/workshop/author/dhtml/httponly_cookies.asp>
362
363=back
364
365=head2 Creating New Cookies
366
367 my $c = new CGI::Cookie(-name => 'foo',
368 -value => 'bar',
369 -expires => '+3M',
370 -domain => '.capricorn.com',
371 -path => '/cgi-bin/database',
372 -secure => 1
373 );
374
375Create cookies from scratch with the B<new> method. The B<-name> and
376B<-value> parameters are required. The name must be a scalar value.
377The value can be a scalar, an array reference, or a hash reference.
378(At some point in the future cookies will support one of the Perl
379object serialization protocols for full generality).
380
381B<-expires> accepts any of the relative or absolute date formats
382recognized by CGI.pm, for example "+3M" for three months in the
383future. See CGI.pm's documentation for details.
384
385B<-domain> points to a domain name or to a fully qualified host name.
386If not specified, the cookie will be returned only to the Web server
387that created it.
388
389B<-path> points to a partial URL on the current server. The cookie
390will be returned to all URLs beginning with the specified path. If
391not specified, it defaults to '/', which returns the cookie to all
392pages at your site.
393
394B<-secure> if set to a true value instructs the browser to return the
395cookie only when a cryptographic protocol is in use.
396
397B<-httponly> if set to a true value, the cookie will not be accessible
398via JavaScript.
399
400For compatibility with Apache::Cookie, you may optionally pass in
401a mod_perl request object as the first argument to C<new()>. It will
402simply be ignored:
403
404 my $c = new CGI::Cookie($r,
405 -name => 'foo',
406 -value => ['bar','baz']);
407
408=head2 Sending the Cookie to the Browser
409
410The simplest way to send a cookie to the browser is by calling the bake()
411method:
412
413 $c->bake;
414
415Under mod_perl, pass in an Apache request object:
416
417 $c->bake($r);
418
419If you want to set the cookie yourself, Within a CGI script you can send
420a cookie to the browser by creating one or more Set-Cookie: fields in the
421HTTP header. Here is a typical sequence:
422
423 my $c = new CGI::Cookie(-name => 'foo',
424 -value => ['bar','baz'],
425 -expires => '+3M');
426
427 print "Set-Cookie: $c\n";
428 print "Content-Type: text/html\n\n";
429
430To send more than one cookie, create several Set-Cookie: fields.
431
432If you are using CGI.pm, you send cookies by providing a -cookie
433argument to the header() method:
434
435 print header(-cookie=>$c);
436
437Mod_perl users can set cookies using the request object's header_out()
438method:
439
440 $r->headers_out->set('Set-Cookie' => $c);
441
442Internally, Cookie overloads the "" operator to call its as_string()
443method when incorporated into the HTTP header. as_string() turns the
444Cookie's internal representation into an RFC-compliant text
445representation. You may call as_string() yourself if you prefer:
446
447 print "Set-Cookie: ",$c->as_string,"\n";
448
449=head2 Recovering Previous Cookies
450
451 %cookies = fetch CGI::Cookie;
452
453B<fetch> returns an associative array consisting of all cookies
454returned by the browser. The keys of the array are the cookie names. You
455can iterate through the cookies this way:
456
457 %cookies = fetch CGI::Cookie;
458 foreach (keys %cookies) {
459 do_something($cookies{$_});
460 }
461
462In a scalar context, fetch() returns a hash reference, which may be more
463efficient if you are manipulating multiple cookies.
464
465CGI.pm uses the URL escaping methods to save and restore reserved characters
466in its cookies. If you are trying to retrieve a cookie set by a foreign server,
467this escaping method may trip you up. Use raw_fetch() instead, which has the
468same semantics as fetch(), but performs no unescaping.
469
470You may also retrieve cookies that were stored in some external
471form using the parse() class method:
472
473 $COOKIES = `cat /usr/tmp/Cookie_stash`;
474 %cookies = parse CGI::Cookie($COOKIES);
475
476If you are in a mod_perl environment, you can save some overhead by
477passing the request object to fetch() like this:
478
479 CGI::Cookie->fetch($r);
480
481=head2 Manipulating Cookies
482
483Cookie objects have a series of accessor methods to get and set cookie
484attributes. Each accessor has a similar syntax. Called without
485arguments, the accessor returns the current value of the attribute.
486Called with an argument, the accessor changes the attribute and
487returns its new value.
488
489=over 4
490
491=item B<name()>
492
493Get or set the cookie's name. Example:
494
495 $name = $c->name;
496 $new_name = $c->name('fred');
497
498=item B<value()>
499
500Get or set the cookie's value. Example:
501
502 $value = $c->value;
503 @new_value = $c->value(['a','b','c','d']);
504
505B<value()> is context sensitive. In a list context it will return
506the current value of the cookie as an array. In a scalar context it
507will return the B<first> value of a multivalued cookie.
508
509=item B<domain()>
510
511Get or set the cookie's domain.
512
513=item B<path()>
514
515Get or set the cookie's path.
516
517=item B<expires()>
518
519Get or set the cookie's expiration time.
520
521=back
522
523
524=head1 AUTHOR INFORMATION
525
526Copyright 1997-1998, Lincoln D. Stein. All rights reserved.
527
528This library is free software; you can redistribute it and/or modify
529it under the same terms as Perl itself.
530
531Address bug reports and comments to: lstein@cshl.org
532
533=head1 BUGS
534
535This section intentionally left blank.
536
537=head1 SEE ALSO
538
539L<CGI::Carp>, L<CGI>
540
541=cut