X-Git-Url: http://git.shiar.net/perl/list-index.git/blobdiff_plain/e5fa8cd7b5cc84943c5f7c32c4f34974613a235b..2af0622fdc633320a7172164ddb9c7436e41998f:/lib/List/Index.pm diff --git a/lib/List/Index.pm b/lib/List/Index.pm index 339bd7d..4ce9c25 100644 --- a/lib/List/Index.pm +++ b/lib/List/Index.pm @@ -24,43 +24,52 @@ sub ranges { $pagesize = @$self / $pages; my $offset = $pagesize + .5; - my $penalty = 0; + my $shrunk = 0; + my $enlarged = 0; my @links = (''); while ($offset < @$self) { my $link = substr $self->[$offset], 0, $length; if ($context) { - if ($offset > $context - 1 + $penalty) { - # take a value slightly before the current offset - my $before = $self->[$offset - $context - 1 + $penalty]; + my $penalty = 0; + # take a value slightly before the current offset + if ((my $before = $offset - $context + $shrunk) > 0) { # see how much of it matches the current link my $trim = 1; - for my $match (split //, $before) { + for my $match (split //, $self->[$before - 1]) { scalar $link =~ /\G\Q$match/g or last; $trim++; } # truncate link upto where the earlier value starts to differ - substr($link, $trim) = '' unless $trim > length $link; + if ($trim < length $link) { + substr($link, $trim) = ''; + for (reverse $before .. $offset) { + $self->[$offset - $penalty] =~ /^\Q$link/ or last; + $penalty++; + } + } } - $penalty = 0; - if ($offset + $context < $#$self) { - # take a value after the current offset - my $after = $self->[$offset + $context]; + $shrunk = 0; + # take a value after the current offset + if ((my $after = $offset + $context - $enlarged) < $#$self) { # see how much of it matches the current link my $trim = 1; - for my $match (split //, $after) { + for my $match (split //, $self->[$after]) { scalar $link =~ /\G\Q$match/g or last; $trim++; } # use this link if it's shorter if ($trim < length $link) { - $link = substr $after, 0, $trim; + $link = substr $self->[$after], 0, $trim; + # advance lookbehind offset on the next page + $penalty = 0; for ($offset .. $#$self) { - last if $self->[$offset + $penalty] =~ /^\Q$link/; - $penalty++; + last if $self->[$offset + $shrunk] =~ /^\Q$link/; + $shrunk++; } } } + $enlarged = $penalty; } push @links, $link;