/usr/share/perl5/Perinci/Sub/Util.pm is in libperinci-sub-util-perl 0.44-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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | package Perinci::Sub::Util;
our $DATE = '2015-12-31'; # DATE
our $VERSION = '0.44'; # VERSION
use 5.010001;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(
err
caller
gen_modified_sub
warn_err
die_err
);
our %SPEC;
$SPEC{':package'} = {
v => 1.1,
summary => 'Helper when writing functions',
};
our $STACK_TRACE;
our @_c; # to store temporary celler() result
our $_i; # temporary variable
sub err {
require Scalar::Util;
# get information about caller
my @caller = CORE::caller(1);
if (!@caller) {
# probably called from command-line (-e)
@caller = ("main", "-e", 1, "program");
}
my ($status, $msg, $meta, $prev);
for (@_) {
my $ref = ref($_);
if ($ref eq 'ARRAY') { $prev = $_ }
elsif ($ref eq 'HASH') { $meta = $_ }
elsif (!$ref) {
if (Scalar::Util::looks_like_number($_)) {
$status = $_;
} else {
$msg = $_;
}
}
}
$status //= 500;
$msg //= "$caller[3] failed";
$meta //= {};
$meta->{prev} //= $prev if $prev;
# put information on who produced this error and where/when
if (!$meta->{logs}) {
# should we produce a stack trace?
my $stack_trace;
{
no warnings;
# we use Carp::Always as a sign that user wants stack traces
last unless $STACK_TRACE // $INC{"Carp/Always.pm"};
# stack trace is already there in previous result's log
last if $prev && ref($prev->[3]) eq 'HASH' &&
ref($prev->[3]{logs}) eq 'ARRAY' &&
ref($prev->[3]{logs}[0]) eq 'HASH' &&
$prev->[3]{logs}[0]{stack_trace};
$stack_trace = [];
$_i = 1;
while (1) {
{
package DB;
@_c = CORE::caller($_i);
if (@_c) {
$_c[4] = [@DB::args];
}
}
last unless @_c;
push @$stack_trace, [@_c];
$_i++;
}
}
push @{ $meta->{logs} }, {
type => 'create',
time => time(),
package => $caller[0],
file => $caller[1],
line => $caller[2],
func => $caller[3],
( stack_trace => $stack_trace ) x !!$stack_trace,
};
}
#die;
[$status, $msg, undef, $meta];
}
sub caller {
my $n0 = shift;
my $n = $n0 // 0;
my $pkg = $Perinci::Sub::Wrapper::default_wrapped_package //
'Perinci::Sub::Wrapped';
my @r;
my $i = 0;
my $j = -1;
while ($i <= $n+1) { # +1 for this sub itself
$j++;
@r = CORE::caller($j);
last unless @r;
if ($r[0] eq $pkg && $r[1] =~ /^\(eval /) {
next;
}
$i++;
}
return unless @r;
return defined($n0) ? @r : $r[0];
}
$SPEC{gen_modified_sub} = {
v => 1.1,
summary => 'Generate modified metadata (and subroutine) based on another',
description => <<'_',
Often you'll want to create another sub (and its metadata) based on another, but
with some modifications, e.g. add/remove/rename some arguments, change summary,
add/remove some properties, and so on.
Instead of cloning the Rinci metadata and modify it manually yourself, this
routine provides some shortcuts.
You can specify base sub/metadata using `base_name` (string, subroutine name,
either qualified or not) or `base_code` (coderef) + `base_meta` (hash).
_
args => {
base_name => {
summary => 'Subroutine name (either qualified or not)',
schema => 'str*',
description => <<'_',
If not qualified with package name, will be searched in the caller's package.
Rinci metadata will be searched in `%SPEC` package variable.
Alternatively, you can also specify `base_code` and `base_meta`.
_
},
base_code => {
summary => 'Base subroutine code',
schema => 'code*',
description => <<'_',
If you specify this, you'll also need to specify `base_meta`.
Alternatively, you can specify `base_name` instead, to let this routine search
the base subroutine from existing Perl package.
_
},
base_meta => {
summary => 'Base Rinci metadata',
schema => 'hash*', # XXX defhash/rifunc
},
output_name => {
summary => 'Where to install the modified sub',
schema => 'str*',
description => <<'_',
Subroutine will be put in the specified name. If the name is not qualified with
package name, will use caller's package. If no `output_code` is specified, the
base subroutine reference will be assigned here.
Note that this argument is optional.
_
},
output_code => {
summary => 'Code for the modified sub',
schema => 'code*',
description => <<'_',
If not specified will use `base_code` (which will then be required).
_
},
summary => {
summary => 'Summary for the mod subroutine',
schema => 'str*',
},
description => {
summary => 'Description for the mod subroutine',
schema => 'str*',
},
remove_args => {
summary => 'List of arguments to remove',
schema => 'array*',
},
add_args => {
summary => 'Arguments to add',
schema => 'hash*',
},
replace_args => {
summary => 'Arguments to add',
schema => 'hash*',
},
rename_args => {
summary => 'Arguments to rename',
schema => 'hash*',
},
modify_args => {
summary => 'Arguments to modify',
description => <<'_',
For each argument you can specify a coderef. The coderef will receive the
argument ($arg_spec) and is expected to modify the argument specification.
_
schema => 'hash*',
},
modify_meta => {
summary => 'Specify code to modify metadata',
schema => 'code*',
description => <<'_',
Code will be called with arguments ($meta) where $meta is the cloned Rinci
metadata.
_
},
install_sub => {
schema => 'bool',
default => 1,
},
},
result => {
schema => ['hash*' => {
keys => {
code => ['code*'],
meta => ['hash*'], # XXX defhash/risub
},
}],
},
};
sub gen_modified_sub {
require Function::Fallback::CoreOrPP;
my %args = @_;
# get base code/meta
my ($base_code, $base_meta);
if ($args{base_name}) {
my ($pkg, $leaf);
if ($args{base_name} =~ /(.+)::(.+)/) {
($pkg, $leaf) = ($1, $2);
} else {
$pkg = CORE::caller();
$leaf = $args{base_name};
}
no strict 'refs';
$base_code = \&{"$pkg\::$leaf"};
$base_meta = ${"$pkg\::SPEC"}{$leaf};
die "Can't find Rinci metadata for $pkg\::$leaf" unless $base_meta;
} elsif ($args{base_meta}) {
$base_meta = $args{base_meta};
$base_code = $args{base_code}
or die "Please specify base_code";
} else {
die "Please specify base_name or base_code+base_meta";
}
my $output_meta = Function::Fallback::CoreOrPP::clone($base_meta);
my $output_code = $args{output_code} // $base_code;
# modify metadata
for (qw/summary description/) {
$output_meta->{$_} = $args{$_} if $args{$_};
}
if ($args{remove_args}) {
delete $output_meta->{args}{$_} for @{ $args{remove_args} };
}
if ($args{add_args}) {
for my $k (keys %{ $args{add_args} }) {
my $v = $args{add_args}{$k};
die "Can't add arg '$k' in mod sub: already exists"
if $output_meta->{args}{$k};
$output_meta->{args}{$k} = $v;
}
}
if ($args{replace_args}) {
for my $k (keys %{ $args{replace_args} }) {
my $v = $args{replace_args}{$k};
die "Can't replace arg '$k' in mod sub: doesn't exist"
unless $output_meta->{args}{$k};
$output_meta->{args}{$k} = $v;
}
}
if ($args{rename_args}) {
for my $old (keys %{ $args{rename_args} }) {
my $new = $args{rename_args}{$old};
my $as = $output_meta->{args}{$old};
die "Can't rename arg '$old' in mod sub: doesn't exist" unless $as;
die "Can't rename arg '$old'->'$new' in mod sub: ".
"new name already exist" if $output_meta->{args}{$new};
$output_meta->{args}{$new} = $as;
delete $output_meta->{args}{$old};
}
}
if ($args{modify_args}) {
for (keys %{ $args{modify_args} }) {
$args{modify_args}{$_}->($output_meta->{args}{$_});
}
}
if ($args{modify_meta}) {
$args{modify_meta}->($output_meta);
}
# install
if ($args{output_name}) {
my ($pkg, $leaf);
if ($args{output_name} =~ /(.+)::(.+)/) {
($pkg, $leaf) = ($1, $2);
} else {
$pkg = CORE::caller();
$leaf = $args{output_name};
}
no strict 'refs';
no warnings 'redefine';
*{"$pkg\::$leaf"} = $output_code if $args{install_sub} // 1;
${"$pkg\::SPEC"}{$leaf} = $output_meta;
}
[200, "OK", {code=>$output_code, meta=>$output_meta}];
}
# TODO: for simpler cases (e.g. only remove some arguments, or preset some
# arguments), create more convenient helper, e.g.
#
# gen_curried_sub('list_users', {is_suspended=>1}, ?'list_suspended_users'); # equivalent to remove args => ['is_suspended'] and create a wrapper that calls list_users with is_suspended=>1
sub warn_err {
require Carp;
my $res = err(@_);
Carp::carp("ERROR $res->[0]: $res->[1]");
}
sub die_err {
require Carp;
my $res = err(@_);
Carp::croak("ERROR $res->[0]: $res->[1]");
}
1;
# ABSTRACT: Helper when writing functions
__END__
=pod
=encoding UTF-8
=head1 NAME
Perinci::Sub::Util - Helper when writing functions
=head1 VERSION
This document describes version 0.44 of Perinci::Sub::Util (from Perl distribution Perinci-Sub-Util), released on 2015-12-31.
=head1 SYNOPSIS
Example for err() and caller():
use Perinci::Sub::Util qw(err caller);
sub foo {
my %args = @_;
my $res;
my $caller = caller();
$res = bar(...);
return err($err, 500, "Can't foo") if $res->[0] != 200;
[200, "OK"];
}
Example for gen_modified_sub():
use Perinci::Sub::Util qw(gen_modified_sub);
$SPEC{list_users} = {
v => 1.1,
args => {
search => {},
is_suspended => {},
},
};
sub list_users { ... }
gen_modified_sub(
output_name => 'list_suspended_users',
base_name => 'list_users',
remove_args => ['is_suspended'],
output_code => sub {
list_users(@_, is_suspended=>1);
},
);
Example for die_err() and warn_err():
use Perinci::Sub::Util qw(warn_err die_err);
warn_err(403, "Forbidden");
die_err(403, "Forbidden");
=head1 FAQ
=head2 What if I want to put result ($res->[2]) into my result with err()?
You can do something like this:
my $err = err(...) if ERROR_CONDITION;
$err->[2] = SOME_RESULT;
return $err;
=head1 SEE ALSO
L<Perinci>
=head1 FUNCTIONS
=head2 gen_modified_sub(%args) -> [status, msg, result, meta]
Generate modified metadata (and subroutine) based on another.
Often you'll want to create another sub (and its metadata) based on another, but
with some modifications, e.g. add/remove/rename some arguments, change summary,
add/remove some properties, and so on.
Instead of cloning the Rinci metadata and modify it manually yourself, this
routine provides some shortcuts.
You can specify base sub/metadata using C<base_name> (string, subroutine name,
either qualified or not) or C<base_code> (coderef) + C<base_meta> (hash).
This function is not exported by default, but exportable.
Arguments ('*' denotes required arguments):
=over 4
=item * B<add_args> => I<hash>
Arguments to add.
=item * B<base_code> => I<code>
Base subroutine code.
If you specify this, you'll also need to specify C<base_meta>.
Alternatively, you can specify C<base_name> instead, to let this routine search
the base subroutine from existing Perl package.
=item * B<base_meta> => I<hash>
Base Rinci metadata.
=item * B<base_name> => I<str>
Subroutine name (either qualified or not).
If not qualified with package name, will be searched in the caller's package.
Rinci metadata will be searched in C<%SPEC> package variable.
Alternatively, you can also specify C<base_code> and C<base_meta>.
=item * B<description> => I<str>
Description for the mod subroutine.
=item * B<install_sub> => I<bool> (default: 1)
=item * B<modify_args> => I<hash>
Arguments to modify.
For each argument you can specify a coderef. The coderef will receive the
argument ($arg_spec) and is expected to modify the argument specification.
=item * B<modify_meta> => I<code>
Specify code to modify metadata.
Code will be called with arguments ($meta) where $meta is the cloned Rinci
metadata.
=item * B<output_code> => I<code>
Code for the modified sub.
If not specified will use C<base_code> (which will then be required).
=item * B<output_name> => I<str>
Where to install the modified sub.
Subroutine will be put in the specified name. If the name is not qualified with
package name, will use caller's package. If no C<output_code> is specified, the
base subroutine reference will be assigned here.
Note that this argument is optional.
=item * B<remove_args> => I<array>
List of arguments to remove.
=item * B<rename_args> => I<hash>
Arguments to rename.
=item * B<replace_args> => I<hash>
Arguments to add.
=item * B<summary> => I<str>
Summary for the mod subroutine.
=back
Returns an enveloped result (an array).
First element (status) is an integer containing HTTP status code
(200 means OK, 4xx caller error, 5xx function error). Second element
(msg) is a string containing error message, or 'OK' if status is
200. Third element (result) is optional, the actual result. Fourth
element (meta) is called result metadata and is optional, a hash
that contains extra information.
Return value: (hash)
=head2 caller([ $n ])
Just like Perl's builtin caller(), except that this one will ignore wrapper code
in the call stack. You should use this if your code is potentially wrapped. See
L<Perinci::Sub::Wrapper> for more details.
=head2 err(...) => ARRAY
Experimental.
Generate an enveloped error response (see L<Rinci::function>). Can accept
arguments in an unordered fashion, by utilizing the fact that status codes are
always integers, messages are strings, result metadata are hashes, and previous
error responses are arrays. Error responses also seldom contain actual result.
Status code defaults to 500, status message will default to "FUNC failed". This
function will also fill the information in the C<logs> result metadata.
Examples:
err(); # => [500, "FUNC failed", undef, {...}];
err(404); # => [404, "FUNC failed", undef, {...}];
err(404, "Not found"); # => [404, "Not found", ...]
err("Not found", 404); # => [404, "Not found", ...]; # order doesn't matter
err([404, "Prev error"]); # => [500, "FUNC failed", undef,
# {logs=>[...], prev=>[404, "Prev error"]}]
Will put C<stack_trace> in logs only if C<Carp::Always> module is loaded.
=head2 warn_err(...)
This is a shortcut for:
$res = err(...);
warn "ERROR $res->[0]: $res->[1]";
=head2 die_err(...)
This is a shortcut for:
$res = err(...);
die "ERROR $res->[0]: $res->[1]";
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/Perinci-Sub-Util>.
=head1 SOURCE
Source repository is at L<https://github.com/sharyanto/perl-Perinci-Sub-Util>.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Perinci-Sub-Util>
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
|