NAME
BusyBird::Util - utility functions for BusyBird
SYNOPSIS
use BusyBird::Util qw(sort_statuses split_with_entities future_of);
future_of($timeline, "get_statuses", count => 100)->then(sub {
my ($statuses) = @_;
my @sorted_statuses = sort_statuses(@$statuses);
my $status = $sorted_statuses[0];
my $segments_arrayref = split_with_entities($status->{text}, $status->{entities});
return $segments_arrayref;
})->catch(sub {
my ($error, $is_normal_error) = @_;
warn $error;
});
DESCRIPTION
This module provides some utility functions useful in BusyBird.
EXPORTABLE FUNCTIONS
The following functions are exported only by request.
@sorted = sort_statuses(@statuses)
Sorts an array of status objects appropriately.
The sort refers to $status->{created_at} and $status->{busybird}{acked_at} fields. See "Order_of_Statuses" in BusyBird::StatusStorage section.
$segments_arrayref = split_with_entities($text, $entities_hashref)
Splits the given $text with the "entities" and returns the split segments.
$text is a string to be split. $entities_hashref is a hash-ref which has the same stucture as Twitter Entities. Each entity object annotates a part of $text with such information as linked URLs, mentioned users, mentioned hashtags, etc.
The return value $segments_arrayref is an array-ref of "segment" objects. A "segment" is a hash-ref containing a part of $text and the entity object (if any) attached to it. Note that $segments_arrayref has segments that no entity is attached to. $segments_arrayref is sorted, so you can assemble the complete $text by concatenating all the segments.
Example:
my $text = 'aaa --- bb ---- ccaa -- ccccc';
my $entities = {
a => [
{indices => [0, 3], url => 'http://hoge.com/a/1'},
{indices => [18, 20], url => 'http://hoge.com/a/2'},
],
b => [
{indices => [8, 10], style => "bold"},
],
c => [
{indices => [16, 18], footnote => 'first c'},
{indices => [24, 29], some => {complex => 'structure'}},
],
d => []
};
my $segments = split_with_entities($text, $entities);
## $segments = [
## { text => 'aaa', start => 0, end => 3, type => 'a',
## entity => {indices => [0, 3], url => 'http://hoge.com/a/1'} },
## { text => ' --- ', start => 3, end => 8, type => undef,
## entity => undef},
## { text => 'bb', start => 8, end => 10, type => 'b',
## entity => {indices => [8, 10], style => "bold"} },
## { text => ' ---- ', start => 10, end => 16, type => undef,
## entity => undef },
## { text => 'cc', start => 16, end => 18, type => 'c',
## entity => {indices => [16, 18], footnote => 'first c'} },
## { text => 'aa', start => 18, end => 20, type => 'a',
## entity => {indices => [18, 20], url => 'http://hoge.com/a/2'} },
## { text => ' -- ', start => 20, end => 24, type => undef,
## entity => undef },
## { text => 'ccccc', start => 24, end => 29, type => 'c',
## entity => {indices => [24, 29], some => {complex => 'structure'}} }
## ];
Any entity object is required to have indices field, which is an array-ref of starting and ending indices of the text part. The ending index must be greater than or equal to the starting index. Other fields in entity objects are optional.
Entity objects must not overlap. In that case, the result is undefined.
A segment hash-ref has the following fields.
text-
Substring of the
$text. start-
Starting index of the segment in
$text. end-
Ending index of the segment in
$text. type-
Type of the entity. If the segment has no entity attached, it is
undef. entity-
Attached entity object. If the segment has no entity attached, it is
undef.
It croaks if $text is undef.
$future = future_of($invocant, $method, %args)
Wraps a callback-style method call with a Future::Q object.
This function executes $invocant->$method(%args), which is supposed to be a callback-style method. Before the execution, callback field in %args is overwritten, so that the result of the $method can be obtained from $future.
To use future_of(), the $method must conform to the following specification. (Most of BusyBird::Timeline's callback-style methods follow this specification)
The
$methodtakes named arguments as in$invocant->$method(key1 => value1, key2 => value2 ... ).When the
$method's operation is done, the subroutine reference stored in$args{callback}must be called exactly once.$args{callback}must be called as in$args{callback}->($error, @results)In success, the
$errormust be a falsy scalar and the rest of the arguments is the result of the operation. The arguments other than$errorare used to fulfill the$future.In failure, the
$errormust be a truthy scalar that describes the error. The$erroris used to reject the$future.
The return value ($future) is a Future::Q object, which represents the result of the $method call. If $method throws an exception, it is caught by future_of() and $future becomes rejected.
In success, $future is fulfilled with the results the $method returns.
$future->then(sub {
my @results = @_;
...
});
In failure, $future is rejected with the error and a flag.
$future->catch(sub {
my ($error, $is_normal_error) = @_;
...
});
If $error is the error passed to the callback, $is_normal_error is true. If $error is the exception the method throws, $is_normal_error does not even exist.
AUTHOR
Toshio Ito <toshioito [at] cpan.org>