package CGI::Session::Serialize::Storable; # $Id: Storable.pm,v 1.1.1.1 2003/08/02 23:39:35 takezoe Exp $ use strict; use Storable; use vars qw($VERSION); ($VERSION) = '$Revision: 1.1.1.1 $' =~ m/Revision:\s*(\S+)/; sub freeze { my ($self, $data) = @_; return Storable::freeze($data); } sub thaw { my ($self, $string) = @_; return Storable::thaw($string); } # $Id: Storable.pm,v 1.1.1.1 2003/08/02 23:39:35 takezoe Exp $ 1; =pod =head1 NAME CGI::Session::Serialize::Storable - serializer for CGI::Session =head1 DESCRIPTION This library is used by CGI::Session driver to serialize session data before storing it in disk. Uses Storable =head1 METHODS =over 4 =item freeze() receives two arguments. First is the CGI::Session driver object, the second is the data to be stored passed as a reference to a hash. Should return true to indicate success, undef otherwise, passing the error message with as much details as possible to $self->error() =item thaw() receives two arguments. First being CGI::Session driver object, the second is the string to be deserialized. Should return deserialized data structure to indicate successs. undef otherwise, passing the error message with as much details as possible to $self->error(). =back =head1 COPYRIGHT Copyright (C) 2002 Sherzod Ruzmetov. All rights reserved. This library is free software. It can be distributed under the same terms as Perl itself. =head1 AUTHOR Sherzod Ruzmetov All bug reports should be directed to Sherzod Ruzmetov . =head1 SEE ALSO =over 4 =item * L - CGI::Session manual =item * L - extended CGI::Session manual =item * L - practical solutions for real life problems =item * B - "HTTP State Management Mechanism" found at ftp://ftp.isi.edu/in-notes/rfc2965.txt =item * L - standard CGI library =item * L - another fine alternative to CGI::Session =back =cut # $Id: Storable.pm,v 1.1.1.1 2003/08/02 23:39:35 takezoe Exp $