Digital Mages

Digital Mages - Paranoid::Data(3)

Paranoid::Data

Section: User Contributed Perl Documentation (3)
Updated: 2022-03-08
Index  

NAME

Paranoid::Data - Misc. Data Manipulation Functions  

VERSION

$Id: lib/Paranoid/Data.pm, 2.10 2022/03/08 00:01:04 acorliss Exp $  

SYNOPSIS

    $rv = deepCopy($source, $target);
    $rv = deepCopy(@source, @target);
    $rv = deepCopy(%source, %target);

    $rv = deepCmp($source, $target);
    $rv = deepCmp(@source, @target);
    $rv = deepCmp(%source, %target);

    $rv = has64bInt();
    ($low, $high) = quad2Longs($quad);
    $quad         = longs2Quad($low, $high);

 

DESCRIPTION

This module provides data manipulation functions.  

IMPORT LISTS

This module exports the following symbols by default:

    deepCopy deepCmp has64bInt

The following specialized import lists also exist:

    List        Members
    --------------------------------------------------------
    all         @defaults

 

SUBROUTINES/METHODS

 

deepCopy

    $rv = deepCopy($source, $target);
    $rv = deepCopy(@source, @target);
    $rv = deepCopy(%source, %target);

This function performs a deep and safe copy of arbitrary data structures, checking for circular references along the way. Hashes and lists are safely duplicated while all other data types are just copied. This means that any embedded object references, etc., are identical in both the source and the target, which is probably not what you want.

In short, this should only be used on pure hash/list/scalar value data structures. Both the source and the target data types must be of an identical type.

This function returns the number of elements copied unless it runs into a problem (such as a circular reference), in which case it returns a zero.  

deepCmp

    $rv = deepCmp($source, $target);
    $rv = deepCmp(@source, @target);
    $rv = deepCmp(%source, %target);

This function performs a deep comparison of arbitrarily complex data structures (i.e., hashes of lists of lists of scalars, etc.). It returns true if the values of the structures are identical, false otherwise. Like the deepCopy function there are no provisions for evaluating objects beyond what their values are when coerced as scalar types.

End sum, the same caveats that applied to deepCopy apply here.  

has64bInt

    $rv = has64bInt();

This function returns a boolean value denoting whether the platform has native 64bit integers or not.  

quad2Longs

    ($low, $high) = quad2Longs($quad);

This function takes any 64bit integer and splits it into two native longs, in the order of low order long, high order long. This function will still work on platforms that don't support native quads. In that case, it will just be assumed that the high order bytes equal zero.  

longs2Quad

    $quad = longs2Quad($low, $high);

This function takes two longs and combines them into a single native quad. This function will still work on platforms without native quad support, but only if the value of the quad is small enough to fit into a long, which is what's actually returned in that scenario.

In the case of the high order bytes are not zero on a platform without native quad support, this function will return undef.  

DEPENDENCIES

o
Carp
o
Paranoid
o
Paranoid::Debug
 

BUGS AND LIMITATIONS

 

AUTHOR

Arthur Corliss (corliss@digitalmages.com)  

LICENSE AND COPYRIGHT

This software is free software. Similar to Perl, you can redistribute it and/or modify it under the terms of either:

  a)     the GNU General Public License
         <https://www.gnu.org/licenses/gpl-1.0.html> as published by the 
         Free Software Foundation <http://www.fsf.org/>; either version 1
         <https://www.gnu.org/licenses/gpl-1.0.html>, or any later version
         <https://www.gnu.org/licenses/license-list.html#GNUGPL>, or
  b)     the Artistic License 2.0
         <https://opensource.org/licenses/Artistic-2.0>,

subject to the following additional term: No trademark rights to ``Paranoid'' have been or are conveyed under any of the above licenses. However, ``Paranoid'' may be used fairly to describe this unmodified software, in good faith, but not as a trademark.

(c) 2005 - 2020, Arthur Corliss (corliss@digitalmages.com) (tm) 2008 - 2020, Paranoid Inc. (www.paranoid.com)


 

Index

NAME
VERSION
SYNOPSIS
DESCRIPTION
IMPORT LISTS
SUBROUTINES/METHODS
deepCopy
deepCmp
has64bInt
quad2Longs
longs2Quad
DEPENDENCIES
BUGS AND LIMITATIONS
AUTHOR
LICENSE AND COPYRIGHT