|
APR::Bucket - Perl API for manipulating APR Buckets |
deletedestroyeos_createflush_createinsert_afterinsert_beforeis_eosis_flushlengthnewreadremovetype
APR::Bucket - Perl API for manipulating APR Buckets
use APR::Bucket (); my $ba = $c->bucket_alloc;
$b1 = APR::Bucket->new("aaa");
$b2 = APR::Bucket::eos_create($ba);
$b3 = APR::Bucket::flush_create($ba);
$b2->is_eos; $b3->is_flush;
$len = $b1->length; $len = $b1->read($data); $type = $b1->type;
$b1->insert_after($b2); $b1->insert_before($b3); $b1->remove; $b1->destroy;
$b2->delete; # remove+destroy
APR::Bucket allows you to create, manipulate and delete APR
buckets.
You will probably find the various insert methods confusing, the tip is to read the function right to left. The following code sample helps to visualize the operations:
my $bb = APR::Brigade->new($r->pool, $ba);
my $d1 = APR::Bucket->new("d1");
my $d2 = APR::Bucket->new("d2");
my $f1 = APR::Bucket::flush_create($ba);
my $f2 = APR::Bucket::flush_create($ba);
my $e1 = APR::Bucket::eos_create($ba);
# head->tail
$bb->insert_head( $d1); # head->d1->tail
$d1->insert_after( $d2); # head->d1->d2->tail
$d2->insert_before($f1); # head->d1->f1->d2->tail
$d2->insert_after( $f2); # head->d1->f1->d2->f2->tail
$bb->insert_tail( $e1); # head->d1->f1->d2->f2->e1->tail
APR::Bucket provides the following functions and/or methods:
deleteTell the bucket to remove itself from the bucket brigade it belongs to, and destroy itself.
$bucket->delete();
$bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )If the bucket is not attached to any bucket brigade then this operation just destroys the bucket.
delete is a convenience wrapper, internally doing:
$b->remove; $b->destroy;
Examples:
Assuming that $bb already exists and filled with buckets, replace
the existing data buckets with new buckets with upcased data;
for (my $b = $bb->first; $b; $b = $bb->next($b)) {
if ($b->read(my $data)) {
my $nb = APR::Bucket->new(uc $data);
$b->insert_before($nb);
$b->delete;
$b = $nb;
}
}
destroyFree the resources used by a bucket. If multiple buckets refer to the same resource it is freed when the last one goes away.
$bucket->destroy();
$bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )A bucket needs to be destroyed if it was removed from a bucket brigade, to avoid memory leak.
If a bucket is linked to a bucket brigade, it needs to be removed from it, before it can be destroyed.
Usually instead of calling:
$b->remove; $b->destroy;
it's better to call delete|/C_delete_ which does exactly that.
eos_createCreate an EndOfStream bucket.
$b = APR::Bucket::eos_create($ba);
$ba
( APR::BucketAlloc object|docs::2.0::api::APR::BucketAlloc )$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )This bucket type indicates that there is no more data coming from down the filter stack. All filters should flush any buffered data at this point.
Example:
use APR::Bucket (); use Apache::Connection (); my $ba = $c->bucket_alloc; my $eos_b = APR::Bucket::eos_create($ba);
flush_createCreate a flush bucket.
$b = APR::Bucket::flush_create($ba);
$ba
( APR::BucketAlloc object|docs::2.0::api::APR::BucketAlloc )$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )This bucket type indicates that filters should flush their data. There is no guarantee that they will flush it, but this is the best we can do.
insert_afterInsert a list of buckets after a specified bucket
$after_bucket->insert_after($add_bucket);
$after_bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )$add_bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )$add_bucket may have
more buckets attached after itself.
insert_beforeInsert a list of buckets before a specified bucket
$before_bucket->insert_before($add_bucket);
$before_bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )$add_bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )$add_bucket may have
more buckets attached after itself.
is_eosDetermine if a bucket is an EOS bucket
$ret = $bucket->is_eos();
$bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )$ret ( boolean )
is_flushDetermine if a bucket is a FLUSH bucket
$ret = $bucket->is_flush();
$bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )$ret ( boolean )
lengthGet the length of the data in the bucket.
$len = $b->length;
$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )$len ( integer )$len value will be -1.
newCreate a new bucket and initialize it with data:
$nb = APR::Bucket->new($data); $nb = $b->new($data); $nb = APR::Bucket->new($data, $offset); $nb = APR::Bucket->new($data, $offset, $len);
$b
( APR::Bucket object or class|docs::2.0::api::APR::Bucket )$data ( string )Important: in order to avoid unnecessary data copying the variable
is stored in the bucket object. That means that if you modify $data
after passing it to new() you will modify the data in the bucket as
well. To avoid that pass to new() a copy which you won't modify.
$offset ( number )$data. Default: 0.
$len ( number )If $offset is specified, then:
length $buffer - $offset;
will be used. Otherwise the default is to use:
length $buffer;
$nb
( APR::Bucket object|docs::2.0::api::APR::Bucket )Examples:
use APR::Bucket (); my $data = "my data"; my $b = APR::Bucket->new($data);
now the bucket contains the string 'my data'.
use APR::Bucket (); my $data = "my data"; my $offset = 3; my $b = APR::Bucket->new($data, $offset);
now the bucket contains the string 'data'.
use APR::Bucket (); my $data = "my data"; my $offset = 3; my $len = 3; my $b = APR::Bucket->new($data, $offset, $len);
now the bucket contains the string 'dat'.
readRead the data from the bucket.
$len = $b->read($buffer,); $len = $b->read($buffer, $block);
$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )$buffer ( SCALAR )$block ( APR::Const :read_type
constant|docs::2.0::api::APR::Const/C__read_type_> )By default the read is blocking, via APR::BLOCK_READ
constant|docs::2.0::api::APR::Const/C_APR__BLOCK_READ_>.
$len ( number )$buffer gets populated with the string that is read. It will
contain an empty string if there was nothing to read.
APR::Error|docs::2.0::api::APR::ErrorIt's important to know that certain bucket types (e.g. file bucket),
may perform a split and insert extra buckets following the current
one. Therefore never call $b->remove|/C_remove_, before
calling $b->read, or you may lose data.
Examples:
Blocking read:
my $len = $b->read(my $buffer);
Non-blocking read:
use APR::Const -compile 'NONBLOCK_READ'; my $len = $b->read(my $buffer, APR::NONBLOCK_READ);
removeTell the bucket to remove itself from the bucket brigade it belongs to.
$bucket->remove();
$bucket
( APR::Bucket object|docs::2.0::api::APR::Bucket )If the bucket is not attached to any bucket brigade then this operation doesn't do anything.
When the bucket is removed, it's not not destroyed. Usually this is done in order to move the bucket to another bucket brigade. Or to copy the data way before destroying the bucket. If the bucket wasn't moved to another bucket brigade it must be destroyed.
Examples:
Assuming that $bb1 already exists and filled with buckets, move
every odd bucket number to $bb2 and every even to $bb3:
my $bb2 = APR::Brigade->new($c->pool, $c->bucket_alloc);
my $bb3 = APR::Brigade->new($c->pool, $c->bucket_alloc);
my $count = 0;
while (my $bucket = $bb->first) {
$count++;
$bucket->remove;
$count % 2
? $bb2->insert_tail($bucket)
: $bb3->insert_tail($bucket);
}
typeGet the type of the data in the bucket.
$type = $b->type;
$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )$type
( APR::BucketType object|docs::2.0::api::APR::BucketType )You need to invoke
APR::BucketType|docs::2.0::api::APR::BucketType methods to
access the data.
Example:
Create a flush bucket and read its type's name:
use APR::Bucket (); use APR::BucketType (); my $b = APR::Bucket::flush_create($ba); my $type = $b->type; my $type_name = $type->name; # FLUSH
The type name will be 'FLUSH' in this example.
APR::Socket also provides auto-generated Perl interface for a few
other methods which aren't tested at the moment and therefore their
API is a subject to change. These methods will be finalized later as a
need arises. If you want to rely on any of the following methods
please contact the the mod_perl development mailing list so we can help each other take the steps necessary
to shift the method to an officially supported API.
data$data = $b->data;
Gives a C pointer to the address of the data in the bucket. I can't see what use can be done of it in Perl.
$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )$data ( C pointer )
start$start = $b->start;
It gives the offset to when a new bucket is created with a non-zero offset value:
my $b = APR::Bucket->new($data, $offset, $len);
So if the offset was 3. $start will be 3 too.
I fail to see what it can be useful for to the end user (it's mainly used internally).
$b
( APR::Bucket object|docs::2.0::api::APR::Bucket )$start ( offset number )
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.
The mod_perl development team and numerous contributors.
|
APR::Bucket - Perl API for manipulating APR Buckets |