NAME
CGI::Cookie::Jam - Jam a large number of cookies to a small one.
SYNOPSIS
use CGI::Cookie::Jam;
my %param1(
name => 'Masanori HATA' ,
mail => 'lovewing@dream.big.or.jp',
sex => 'male' ,
birth => '2003-04-09' ,
nation => 'Japan' ,
pref => 'Saitama' ,
city => 'Kawaguchi' ,
tel => '+81-48-2XX-XXXX' ,
fax => '+81-48-2XX-XXXX' ,
job => 'student' ,
role => 'president' ,
hobby => 'exaggeration' ,
);
my @cookie = enjam('cookie_jammed', '4096', %param1);
my %param2 = dejam($ENV{'HTTP_COOKIE'});
DESCRIPTION
This module provides jamming method about WWW cookie. Cookie is convenient but there are some limitations on number of cookies that a client can store at a time:
300 total cookies
4KB per cookie, where the NAME and the VALUE combine to form the 4KB limit.
20 cookies per server or domain.
Especially, 20 cookies limitation could be a bottle neck. So this module try to jam some cookies (which holds single pair of the NAME and the VALUE) to a cookie at maximum size of 4KB, that you can save total number of cookies to a minimum one.
FUNCTIONS
-
This function jams a lot number of multiple
NAME=VALUE
strings forSet-Cookie:
HTTP header to a minimum number ofNAME=VALUE
strings forSet-Cookie:
HTTP header. It returns a list of multiple enjammed strings.The enjamming algorithm is realized by twice uri-escaping. At first, each cookie's
NAME
andVALUE
pairs are uri-escaped and joined with=
(an equal mark). Then, multipleNAME=VALUE
pairs are joined with&
(an ampersand mark). This procedure is very the uri-encoding (see http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1).Still a cookie has only one
NAME=VALUE
pair, the uri-encoded string must be re-uri-escaped at the second procedure. As a result:'=' is converted to '%3D' '&' is converted to '%26' '%' is converted to '%25'
At last, this module uses the jam's
$cookie_name
(which is, of course, uri-escaped, and coupled with a serial number like$cookie_name_XX
) as cookieNAME
and uses the twice uri_escaped string as cookieVALUE
, then join both with=
to make aNAME=VALUE
string. The final product is very the enjammed multi-spanning cookies.With
size
attribute you can specify the size (bytes) of a cookie (that is the size ofNAME=VALUE
string). Generally, to set4096
bytes (4KB) is recommended. If you set0
byte, no size limitation will work and only one cookie will be generated without filename numbering (_XX
).When you use enjammed cookies, you may dejam to reverse the above procedure:
1: Extract VALUEs and join the splitted enjammed VALUE strings to a string. 2: uri-unescape '%3D' to '=', '%26' to '&', '%25' to '%'. 3: uri-decode the uri-encoded string to multiple NAME and VALUE pairs.
This module implements above the function as dejam() method except for the first procedure. Otherwise, you may implement dejam() function by client side using with JavaScript and so on.
-
This function dejams an enjammed cookie string. It returns
NAME
andVALUE
pairs as a list. You may use those dejammed data to put into an hash.Note that this method does not care multi-spanning enjammed cookies.
SEE ALSO
- RFC 2965: http://www.ietf.org/rfc/rfc2965.txt (Cookie)
- HTML 4: http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1 (uri-encode)
AUTHOR
Masanori HATA <lovewing@dream.big.or.jp> (Saitama, JAPAN)
COPYRIGHT
Copyright (c) 2003-2005 Masanori HATA. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.