[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: RV.pm
File is not writable. Editing disabled.
package CPANPLUS::Backend::RV; use strict; use vars qw[$STRUCT $VERSION]; $VERSION = "0.9138"; use CPANPLUS::Error; use CPANPLUS::Internals::Constants; use IPC::Cmd qw[can_run run]; use Params::Check qw[check]; use base 'Object::Accessor'; local $Params::Check::VERBOSE = 1; =pod =head1 NAME CPANPLUS::Backend::RV - return value objects =head1 SYNOPSIS ### create a CPANPLUS::Backend::RV object $backend_rv = CPANPLUS::Backend::RV->new( ok => $boolean, args => $args, rv => $return_value function => $calling_function ); ### if you have a CPANPLUS::Backend::RV object $passed_args = $backend_rv->args; # args passed to function $ok = $backend_rv->ok; # boolean indication overall # result of the call $function = $backend_rv->function # name of the calling # function $rv = $backend_rv->rv # the actual return value # of the calling function =head1 DESCRIPTION This module provides return value objects for multi-module calls to CPANPLUS::Backend. In boolean context, it returns the status of the overall result (ie, the same as the C<ok> method would). =head1 METHODS =head2 new( ok => BOOL, args => DATA, rv => DATA, [function => $method_name] ) Creates a new CPANPLUS::Backend::RV object from the data provided. This method should only be called by CPANPLUS::Backend functions. The accessors may be used by users inspecting an RV object. All the argument names can be used as accessors later to retrieve the data. Arguments: =over 4 =item ok Boolean indicating overall success =item args The arguments provided to the function that returned this rv object. Useful to inspect later to see what was actually passed to the function in case of an error. =item rv An arbitrary data structure that has the detailed return values of each of your multi-module calls. =item function The name of the function that created this rv object. Can be explicitly passed. If not, C<new()> will try to deduce the name from C<caller()> information. =back =cut sub new { my $class = shift; my %hash = @_; my $tmpl = { ok => { required => 1, allow => BOOLEANS }, args => { required => 1 }, rv => { required => 1 }, function => { default => CALLING_FUNCTION->() }, }; my $args = check( $tmpl, \%hash ) or return; my $self = bless {}, $class; # $self->mk_accessors( qw[ok args function rv] ); $self->mk_accessors( keys %$tmpl ); ### set the values passed in the struct ### while( my($key,$val) = each %$args ) { $self->$key( $val ); } return $self; } sub _ok { return shift->ok } #sub _stringify { Carp::carp( "stringifying!" ); overload::StrVal( shift ) } ### make it easier to check if($rv) { foo() } ### this allows people to not have to explicitly say ### if( $rv->ok ) { foo() } ### XXX add an explicit stringify, so it doesn't fall back to "bool"? :( use overload bool => \&_ok, # '""' => \&_stringify, fallback => 1; =pod =head1 BUG REPORTS Please report bugs or other issues to E<lt>bug-cpanplus@rt.cpan.org<gt>. =head1 AUTHOR This module by Jos Boumans E<lt>kane@cpan.orgE<gt>. =head1 COPYRIGHT The CPAN++ interface (of which this module is a part of) is copyright (c) 2001 - 2007, Jos Boumans E<lt>kane@cpan.orgE<gt>. All rights reserved. This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. =cut 1;
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 691.57 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A