Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

internals(3) [mojave man page]

Internals(3)						User Contributed Perl Documentation					      Internals(3)

NAME
Internals - Write-protect variables, manipulate refcounts SYNOPSIS
use Internals qw(IsWriteProtected SetReadOnly SetReadWrite GetRefCount SetRefCount); use Internals qw(:all); $object = My::Class->new(@parameters); SetReadOnly($object); SetReadWrite($object); if (IsWriteProtected($object)) { ... } $value = GetRefCount($object); SetRefCount($object,$value); or package My::Class; use Internals; @ISA = qw(Internals); $object = My::Class->new(@parameters)->SetReadOnly(); $object->SetReadWrite(); if ($object->IsWriteProtected()) { ... } $value = $object->GetRefCount(); $object->SetRefCount($value); or use Internals qw(IsWriteProtected SetReadOnly SetReadWrite GetRefCount SetRefCount); use Internals qw(:all); SetReadOnly($scalar); SetReadOnly(@array); SetReadOnly(\%hash); SetReadOnly($hash{$element}); SetReadOnly($reference); etc. DESCRIPTION
This module allows you to write-protect and write-enable your Perl variables, objects and data structures. Moreover, the reference count of any Perl variable can be read and set. You can never pass the object directly on which to perform the desired action, you always have to pass a reference to the variable or data structure in question. This comes in handy for objects and anonymous data structures, where you only have a reference anyway! BEWARE: This module is DANGEROUS! DO NOT attempt to unlock Perl's built-in variables! DO NOT manipulate reference counts unless you know exactly what you're doing! ANYTHING might happen! Hell might break loose! ":-)" YOU HAVE BEEN WARNED! VERSION
This man page documents "Internals" version 1.1. AUTHOR
Steffen Beyer mailto:sb@engelschall.com http://www.engelschall.com/u/sb/download/ COPYRIGHT
Copyright (c) 2001 by Steffen Beyer. All rights reserved. LICENSE
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e., under the terms of the "Artistic License" or the "GNU General Public License". Please refer to the files "Artistic.txt" and "GNU_GPL.txt" in this distribution for details! DISCLAIMER
This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the "GNU General Public License" for more details. perl v5.18.2 2001-09-30 Internals(3)

Check Out this Related Man Page

CPANPLUS::Internals(3perl)				 Perl Programmers Reference Guide				CPANPLUS::Internals(3perl)

NAME
CPANPLUS::Internals - CPANPLUS internals SYNOPSIS
my $internals = CPANPLUS::Internals->_init( _conf => $conf ); my $backend = CPANPLUS::Internals->_retrieve_id( $ID ); DESCRIPTION
This module is the guts of CPANPLUS -- it inherits from all other modules in the CPANPLUS::Internals::* namespace, thus defying normal rules of OO programming -- but if you're reading this, you already know what's going on ;) Please read the "CPANPLUS::Backend" documentation for the normal API. ACCESSORS
_conf Get/set the configure object _id Get/set the id METHODS
$internals = CPANPLUS::Internals->_init( _conf => CONFIG_OBJ ) "_init" creates a new CPANPLUS::Internals object. You have to pass it a valid "CPANPLUS::Configure" object. Returns the object on success, or dies on failure. $bool = $internals->_flush( list => @caches ) Flushes the designated caches from the "CPANPLUS" object. Returns true on success, false if one or more caches could not be be flushed. $bool = $internals->_register_callback( name => CALLBACK_NAME, code => CODEREF ); Registers a callback for later use by the internal libraries. Here is a list of the currently used callbacks: install_prerequisite Is called when the user wants to be "asked" about what to do with prerequisites. Should return a boolean indicating true to install the prerequisite and false to skip it. send_test_report Is called when the user should be prompted if he wishes to send the test report. Should return a boolean indicating true to send the test report and false to skip it. munge_test_report Is called when the test report message has been composed, giving the user a chance to programatically alter it. Should return the (munged) message to be sent. edit_test_report Is called when the user should be prompted to edit test reports about to be sent out by Test::Reporter. Should return a boolean indicating true to edit the test report in an editor and false to skip it. proceed_on_test_failure Is called when 'make test' or 'Build test' fails. Should return a boolean indicating whether the install should continue even if the test failed. munge_dist_metafile Is called when the "CPANPLUS::Dist::*" metafile is created, like "control" for "CPANPLUS::Dist::Deb", giving the user a chance to programatically alter it. Should return the (munged) text to be written to the metafile. $bool = $internals->_add_to_includepath( directories => @dirs ) Adds a list of directories to the include path. This means they get added to @INC as well as $ENV{PERL5LIB}. Returns true on success, false on failure. $id = CPANPLUS::Internals->_last_id Return the id of the last object stored. $id = CPANPLUS::Internals->_store_id( $internals ) Store this object; return its id. $obj = CPANPLUS::Internals->_retrieve_id( $ID ) Retrieve an object based on its ID -- return false on error. CPANPLUS::Internals->_remove_id( $ID ) Remove the object marked by $ID from storage. @objs = CPANPLUS::Internals->_return_all_objects Return all stored objects. perl v5.14.2 2014-09-29 CPANPLUS::Internals(3perl)
Man Page