Apache2-ClickPath
view release on metacpan or search on metacpan
lib/Apache2/ClickPath/StoreClient.pm view on Meta::CPAN
use strict;
use warnings;
no warnings qw(uninitialized);
use Storable ();
use LWP::UserAgent;
use LWP::ConnCache;
use Class::Member qw{session store store_is_local ua lasterror _r};
our $VERSION = '1.9';
my $MOD_PERL;
my $apache_ok;
BEGIN {
$MOD_PERL=0;
if( exists $ENV{MOD_PERL} and $ENV{MOD_PERL_API_VERSION}==2 ) {
$MOD_PERL=2;
require Apache2::RequestRec;
require Apache2::RequestUtil;
require Apache2::RequestIO;
require Apache2::Filter;
require Apache2::SubRequest;
require APR::Brigade;
require APR::Bucket;
require Apache2::Const;
Apache2::Const->import( -compile=>qw{OK} );
$apache_ok=&Apache2::Const::OK;
}
}
sub new {
my $class=shift;
my $I=bless {}=>ref($class)||$class;
if( $MOD_PERL ) {
$I->_r=Apache2::RequestUtil->request;
$I->session=$I->_r->subprocess_env('SESSION');
$I->store=$I->_r->subprocess_env('ClickPathMachineStore');
$I->store_is_local=$I->store=~m!^/!;
} else {
$I->session=$ENV{SESSION};
$I->store=$ENV{ClickPathMachineStore};
if( $I->store=~m!^/! ) {
my $https=($ENV{HTTPS}=~/on/i ? 'https' : 'http');
if( length $ENV{HTTP_HOST} ) {
my $host=$ENV{HTTP_HOST};
$host=~s/:\d+$//;
$I->store="$https://$host:$ENV{SERVER_PORT}".$I->store;
} else {
$I->store="$https://$ENV{SERVER_ADDR}:$ENV{SERVER_PORT}".$I->store;
}
}
}
return unless( length $I->store );
unless( $I->store_is_local ) {
$I->ua=LWP::UserAgent->new( timeout=>5,
keep_alive=>3 );
}
return $I;
}
sub _get {
my ($I,$k)=@_;
if( $I->store_is_local ) {
my $subr=$I->_r->lookup_uri( $I->store );
$subr->pnotes( __PACKAGE__."::storeparams"=>{'a'=>'get',
's'=>$I->session,
'k'=>$k} );
my $content;
$subr->add_output_filter( sub {
my ($f, $bb) = @_;
while (my $e = $bb->first) {
$e->read(my $buf);
$content.=$buf;
$e->delete;
}
return $apache_ok;
});
$I->lasterror=$subr->run;
$I->lasterror=200 if( $I->lasterror==$apache_ok );
return $content if( $I->lasterror==200 );
return;
} else {
my $res=$I->ua->post( $I->store, {'a'=>'get',
's'=>$I->session,
'k'=>$k} );
$I->lasterror=$res->code;
return $res->content if( $res->code==200 );
return;
}
}
sub _set {
my ($I,$k,$v)=@_;
if( $I->store_is_local ) {
my $subr=$I->_r->lookup_uri( $I->store );
$subr->pnotes( __PACKAGE__."::storeparams"=>{'a'=>'set',
's'=>$I->session,
'k'=>$k,
'v'=>$v} );
my $content;
$subr->add_output_filter( sub {
my ($f, $bb) = @_;
while (my $e = $bb->first) {
$e->read(my $buf);
$content.=$buf;
$e->delete;
}
return $apache_ok;
});
$I->lasterror=$subr->run;
$I->lasterror=200 if( $I->lasterror==$apache_ok );
return 1 if( $I->lasterror==200 );
return;
lib/Apache2/ClickPath/StoreClient.pm view on Meta::CPAN
sub get {
my $I=shift;
my $k=shift;
my $res=Storable::thaw($I->_get( $k ))||[];
if( wantarray ) {
return @{$res};
} else {
return $res->[0];
}
}
sub set {
my $I=shift;
my $k=shift;
return $I->_set( $k, Storable::nfreeze( \@_ ) );
}
1;
__END__
=head1 NAME
Apache2::ClickPath::StoreClient - an Apache2::ClickPath::Store client
=head1 SYNOPSIS
use Apache2::ClickPath::StoreClient;
my $store=Apache2::ClickPath::StoreClient->new;
my $val=$store->get( 'val' );
unless( $store->set( val=>$v ) ) {
my $code=$store->lasterror;
...
}
=head1 DESCRIPTION
C<Apache2::ClickPath::Store> and C<Apache2::ClickPath::StoreClient> can
be used in conjunction with C<Apache2::ClickPath> to store arbitrary
information for a session. The information itself is stored on a WEB
server and accessed via HTTP. C<Apache2::ClickPath::Store> implements the
server side and C<Apache2::ClickPath::StoreClient> the client side.
For more information see the L<Apache2::ClickPath::Store> manpage.
C<Apache2::ClickPath::StoreClient> provides a OO interface to the data
stored in an C<Apache2::ClickPath::Store>. It uses the information exported
by C<Apache2::ClickPath> to find the correct store.
C<Apache2::ClickPath::StoreClient> can be used from within a mod_perl handler
or a CGI script.
If called from a mod_perl handler it requires the GlobalRequest to be set.
See L<Apache2::RequestUtil> for more information.
For communication with the store an L<LWP::UserAgent> is used unless a local
store is used, see L<"Local Store"> below. It is configured to use
keep-alive requests.
=head1 METHODS
=over 4
=item B<< Apache2::ClickPath::StoreClient->new >>
the constructor. It uses the environment variables C<SESSION> and
C<ClickPathMachineStore> to initiate itself. These variables are exported
from L<Apache2::ClickPath>. The store address is given as the 3rd column
of a C<ClickPathMachineTable>. It can be either an absolute URL like
C<http://server.com/store> or a URI without the server part (C</store>).
In the second case the store is assumed to be located on the same WEB server
(in terms of Hostname or IP address, port and protocol (HTTP or HTTPS)).
=item B<< $store->set( name => $value1, $value2, ... ) >>
The C<set> method is used to write a data item.
On success 1 is returned on failure undef. If there was an error the HTTP
response code of the last store operation can be fetched using C<lasterror()>.
=item B<< @list=$store->get( 'name' ) >>
returns a previously stored data item. In scalar context the first data
element is returned.
On error undef is returned. The reason can be examined via C<lasterror()>.
=item B<< $code=$store->lasterror >>
returns the HTTP status code of the last store operation. See
L<Apache2::ClickPath::Store> for a list of possible codes.
=item B<< $ua=$store->ua >> or B<< $store->ua=$ua >>
provides access to the internal L<LWP::UserAgent>. In case the store is
behind a proxy this can be useful. If a local store is used no user agent
is created, see L<"Local Store"> below.
=back
=head1 Local Store
If this module is called from within a modperl handler and the store address
passed in the C<ClickPathMachineStore> environment variable starts with
a slash (C</>), i.e. the machine part of the URL is omitted, then the store
is taken as local. That means the WEB server handling the current request
is also providing the store. Hence, access to the store can be short-circuited
using a simple sub-request instead of a full-featured user agent.
In this case the C<ua> method will return C<undef>.
Using a local store is the fastest method to access the data. Use it if
you can spare an URI for the store on your main server.
=head1 SEE ALSO
L<Apache2::ClickPath>
L<Apache2::ClickPath::Store>
( run in 0.781 second using v1.01-cache-2.11-cpan-df04353d9ac )