/usr/share/perl5/SHARYANTO/Array/Util.pm is in libsharyanto-utils-perl 0.77-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | package SHARYANTO::Array::Util;
our $DATE = '2015-09-04'; # DATE
our $VERSION = '0.77'; # VERSION
use 5.010;
use strict;
use warnings;
use experimental 'smartmatch';
use Perinci::Sub::Util qw(gen_modified_sub);
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(
match_array_or_regex
match_regex_or_array
split_array
replace_array_content
);
our %SPEC;
$SPEC{':package'} = {
v => 1.1,
summary => 'Array-related utilities',
};
my $_str_or_re = ['any*'=>{of=>['re*','str*']}];
$SPEC{match_array_or_regex} = {
v => 1.1,
summary => 'Check whether an item matches (list of) values/regexes',
description => <<'_',
This routine can be used to match an item against a regex or a list of
strings/regexes, e.g. when matching against an ACL.
Since the smartmatch (`~~`) operator can already match against a list of strings
or regexes, this function is currently basically equivalent to:
if (ref($haystack) eq 'ARRAY') {
return $needle ~~ @$haystack;
} else {
return $needle =~ /$haystack/;
}
_
examples => [
{args=>{needle=>"abc", haystack=>["abc", "abd"]}, result=>1},
{args=>{needle=>"abc", haystack=>qr/ab./}, result=>1},
{args=>{needle=>"abc", haystack=>[qr/ab./, "abd"]}, result=>1},
],
args_as => 'array',
args => {
needle => {
schema => ["str*"],
pos => 0,
req => 1,
},
haystack => {
# XXX checking this schema might actually take longer than matching
# the needle! so when arg validation is implemented, provide a way
# to skip validating this schema
schema => ["any*" => {
of => [$_str_or_re, ["array*"=>{of=>$_str_or_re}]],
}],
pos => 1,
req => 1,
},
},
result_naked => 1,
};
sub match_array_or_regex {
my ($needle, $haystack) = @_;
my $ref = ref($haystack);
if ($ref eq 'ARRAY') {
return $needle ~~ @$haystack;
} elsif (!$ref) {
return $needle =~ /$haystack/;
} elsif ($ref eq 'Regexp') {
return $needle =~ $haystack;
} else {
die "Invalid haystack, must be regex or array of strings/regexes";
}
}
gen_modified_sub(
output_name => 'match_regex_or_array',
base_name => 'match_array_or_regex',
summary => 'Alias for match_array_or_regex',
);
sub split_array {
no strict 'refs';
my ($pat, $ary, $limit) = @_;
die "BUG: Second argument must be an array" unless ref($ary) eq 'ARRAY';
$pat = qr/\A\Q$pat\E\z/ unless ref($pat) eq 'Regexp';
my @res;
my $num_elems = 0;
my $i = 0;
ELEM:
while ($i < @$ary) {
push @res, [];
COLLECT:
while (1) {
if ($ary->[$i] =~ $pat) {
push @res, [map { ${"$_"} } 1..@+-1] if @+ > 1;
last COLLECT;
}
push @{ $res[-1] }, $ary->[$i];
last ELEM unless ++$i < @$ary;
}
$num_elems++;
LIMIT:
if (defined($limit) && $limit > 0 && $num_elems >= $limit) {
push @{ $res[-1] }, $ary->[$_] for $i..(@$ary-1);
last ELEM;
}
$i++;
}
return @res;
}
sub replace_array_content {
my $aryref = shift;
@$aryref = @_;
$aryref;
}
1;
# ABSTRACT: Array-related utilities
__END__
=pod
=encoding UTF-8
=head1 NAME
SHARYANTO::Array::Util - Array-related utilities
=head1 VERSION
This document describes version 0.77 of SHARYANTO::Array::Util (from Perl distribution SHARYANTO-Utils), released on 2015-09-04.
=head1 SYNOPSIS
use SHARYANTO::Array::Util qw(match_array_or_regex split_array);
match_array_or_regex('bar', ['foo', 'bar', qr/[xyz]/]); # true, matches string
match_array_or_regex('baz', ['foo', 'bar', qr/[xyz]/]); # true, matches regex
match_array_or_regex('oops', ['foo', 'bar', qr/[xyz]/]); # false
my @res = split_array('--', [qw/--opt1 --opt2 -- foo bar -- --val/]);
# -> ([qw/--opt1 --opt2/], [qw/foo bar/], [qw/--val/])
my @res = split_array(qr/--/, [qw/--opt1 --opt2 -- foo bar -- --val/], 2);
# -> ([qw/--opt1 --opt2/], [qw/foo bar -- --val/])
my @res = split_array(qr/(--)/, [qw/--opt1 --opt2 -- foo bar -- --val/], 2);
# -> ([qw/--opt1 --opt2/], [qw/--/], [qw/foo bar -- --val/])
my @res = split_array(qr/(-)(-)/, [qw/--opt1 --opt2 -- foo bar -- --val/], 2);
# -> ([qw/--opt1 --opt2/], [qw/- -/], [qw/foo bar -- --val/])
=head1 DESCRIPTION
=head1 FUNCTIONS
=head2 match_array_or_regex($needle, $haystack) -> any
Check whether an item matches (list of) values/regexes.
Examples:
match_array_or_regex("abc", ["abc", "abd"]); # -> 1
match_array_or_regex("abc", qr/ab./); # -> 1
match_array_or_regex("abc", [qr/ab./, "abd"]); # -> 1
This routine can be used to match an item against a regex or a list of
strings/regexes, e.g. when matching against an ACL.
Since the smartmatch (C<~~>) operator can already match against a list of strings
or regexes, this function is currently basically equivalent to:
if (ref($haystack) eq 'ARRAY') {
return $needle ~~ @$haystack;
} else {
return $needle =~ /$haystack/;
}
Arguments ('*' denotes required arguments):
=over 4
=item * B<haystack>* => I<re|str|array[re|str]>
=item * B<needle>* => I<str>
=back
Return value: (any)
=head2 match_regex_or_array($needle, $haystack) -> any
Alias for match_array_or_regex.
Examples:
match_regex_or_array("abc", ["abc", "abd"]); # -> 1
match_regex_or_array("abc", qr/ab./); # -> 1
match_regex_or_array("abc", [qr/ab./, "abd"]); # -> 1
This routine can be used to match an item against a regex or a list of
strings/regexes, e.g. when matching against an ACL.
Since the smartmatch (C<~~>) operator can already match against a list of strings
or regexes, this function is currently basically equivalent to:
if (ref($haystack) eq 'ARRAY') {
return $needle ~~ @$haystack;
} else {
return $needle =~ /$haystack/;
}
Arguments ('*' denotes required arguments):
=over 4
=item * B<haystack>* => I<re|str|array[re|str]>
=item * B<needle>* => I<str>
=back
Return value: (any)
=head2 split_array($str_or_re, \@array[, $limit]) => LIST
Like the C<split()> builtin Perl function, but applies on an array instead of a
scalar. It loosely follows the C<split()> semantic, with some exceptions.
=head2 replace_array_content($aryref, @elems) => $aryref
Replace elements in <$aryref> with @elems. Return C<$aryref>. Do not create a
new arrayref object (i.e. it is different from: C<< $aryref = ["new", "content"]
>>).
Do not use this function. In Perl you can just use: C<< splice(@$aryref, 0,
length(@$aryref), @elems) >> or even easier: C<< @$aryref = @elems >>. I put the
function here for reminder.
=head1 SEE ALSO
L<SHARYANTO>
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/SHARYANTO-Utils>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-SHARYANTO-Utils>.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=SHARYANTO-Utils>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|