Module::Generic::Hash - Hash Manipulation Object Class
my $h = Module::Generic::Hash->new({ first_name => 'John', last_name => 'Doe', age => 30, email => 'john.doe@example.com', }); # or my $h = Module::Generic::Hash->new( first_name => 'John', last_name => 'Doe', age => 30, email => 'john.doe@example.com', ); my $keys = $h->keys # Module::Generic::Array returned $h->keys->length # e.g. 10 $keys->pop # See Module::Generic::Array print( $h->as_string, "\n" ); # or print( "$h\n" ); # Produces: { "age" => 30, "email" => "john.doe\@example.com", "first_name" => "John", "last_name" => "Doe" } $h->json({ pretty => 1 }); # Produces { "age" : 30, "email" : "john.doe@example.com", "first_name" : "John", "last_name" : "Doe" } # Or $h->json # Produces {"age":30,"email":"john.doe@example.com","first_name":"John","last_name":"Doe"} # Adding a key and value as usual: $h->{role} = 'customer'; $h->defined( 'role' ) # True $h->delete( 'role' ) # Removes and returns 'customer' $h->each(sub { my( $k, $v ) = @_; print( "Key $k has value '$v'\n" ); }); exists( $h->{age} ); # same as $h->exists( 'age' ); # Same as $h->foreach(sub{ #.. }); $h->for(sub{ my( $k, $v ) = @_; print( "Key $k has value '$v'\n" ); }); $h->length # Returns a Module::Generic::Number my $hash2 = { address => { line1 => '1-2-3 Kudan-minami, Chiyoda-ku', line2 => 'Big bld 7F', postal_code => '123-4567', city => 'Tokyo', country => 'jp', }, last_name => 'Smith', }; my $h2 = Module::Generic::Hash->new( $hash2 ); $h->merge( $hash2 ); # same as $h->merge( $h2 ); $h > $h2 # True $h gt $h2 # True $h >= $h2 # True $h2 < $h # True $h2 lt $h # True $h2 <= $h # True 3 < $h # True # Merge $hash2 into $h, but without overwriting existing entries $h->merge( $hash2, { overwrite => 0 }); # Otherwise, bluntly overwriting existing entries, if any $h->merge( $hash2 ); # Same copy my $h3 = $h->clone; my $vals = $h->values; # Returns a Module::Generic::Array # Must return an empty list to prevent the entry from being added to the result, as per perlfunc documentation, see map my $vals = $h->values(sub{ ref( $_[0] ) ? () : $_[0]; }, { sort => 1 }); # Using reference as key is ok too. my $h = Module::Generic::Hash->new; # Enable the use of reference or objects as hash keys $h->key_object(1); # or local $Module::Generic::Hash::KEY_OBJECT = 1; my $h = Module::Generic::Hash->new; # Now, we can use reference or object as hash keys my $array = [qw( John Paul Jack Peter )]; my $ref = { name => 'John Doe' }; my $code = sub{1}; my $scalar = \'Hello' my $glob = \*main; my $foo = Foo::Bar->new; $h->{ $array } = 'array'; $h->{ $ref } = 'hash'; $h->{ $code } = 'code'; $h->{ $scalar } = 'scalar'; $h->{ $glob } = 'glob'; $h->{ $foo } = 'object';
v1.3.1
The purpos of this class/package is to provide a lightweight object-oriented approach to hash manipulation and to enable the use of any type of hash key, including regular string and reference, such as array reference, hash reference, anonymous subroutine, scalar reference, filehandle and objects.
If you want to store keys as reference, just make sure to instantiate the object first and set the method key_object to a true value, before adding keys as reference, because perl regular hash will transform any reference into a string to be used as a key.
key_object
Thus the following would not work as you would expect:
my $ref = {}; my $array = [qw( John Paul Jack Peter )]; $ref->{ $array } = 'my array'; local $Module::Generic::Hash::KEY_OBJECT = 1; my $h = Module::Generic::Hash->new( $ref );
Instead, do either:
my $array = [qw( John Paul Jack Peter )]; my $h = Module::Generic::Hash->new; $h->key_object(1); # or local $Module::Generic::Hash::KEY_OBJECT = 1; my $h = Module::Generic::Hash->new; # then $h->{ $array } = 'my array';
or:
my $array = [qw( John Paul Jack Peter )]; local $Module::Generic::Hash::KEY_OBJECT = 1; my $h = Module::Generic::Hash->new( $array => 'my array' );
This uses perl core functions only and Clone for cloning. This module's methods act as a wrapper to them.
Because the object is overloaded, you can use the variable with comparison perl operators, such as :
$h > 3 # True $h <= 3 # False # etc...
You can also compare two hashes reliably, such as :
$h1 eq $h2 # True
But if you use ==, it will compare the hash size, i.e. the number of keys
==
$h1 == $h2
Which could be true if both hashes have the same number of keys (==), but may not be true if they are not the same (eq)
eq
Otherwise, the hash can be accessed like a regular hash. For example :
print( "Customer is $h->{first_name} $h->{last_name}\n" );
Provided with a hash reference, some optional parameters and this returns a new object.
Possible optional parameters are:
Provided with an integer and this actives or deactivates debugging messages. Nothing meaningful happens below 3
Returns the hash object as a regular hash reference. It copies all the keys and their values into a new anonymous hash and returns it.
Returns a json representation of the hash by calling "json"
Return a string version of the hash as produced by Data::Dumper
print( "$h\n" ); # or print( $h->as_string, "\n" ); # Produces { "age" => 30, "email" => "john.doe\@example.com", "first_name" => "John", "last_name" => "Doe" }
Performs a "chomp" in perlfunc on the entire hash values and returns the current object it was called with.
Qyoting from perlfunc: "If variable is a hash, it chomps the hash's values, but not its keys".
Produce a deep clone of the hash and return a new object. This uses "clone" in Clone to achieve that.
Sets or gets the debug level
Provided with a hash key and this returns true if there is a value defined for this key. See "defined" in perlfunc
Provided with a hash key and this remove the hash entry and return the previous value, exactly as "delete" in perlfunc does.
Returns a string representation of the hash. This uses Data::Dumper to produce the result.
Provided with with a reference to a subroutine, this will do a loop using "each" in perlfunc and this will call the code, passing it the hash key and its value.
If the code returns false, it will exit the "while" in perlfunc loop.
To exit the loop, return undef(), for example:
undef()
$a->each(sub { my( $k, $v ) = @_; return if( $key eq $not_this_one ); print( "ok, this one\n" ); });
Given a hash key, this will return true or false depending if the hash key exists. This uses "exists" in perlfunc.
This is simply an alias for "foreach"
Same as "foreach" in perlfunc, given a reference to a subroutine, and this will execute foreach and call the code providing it as arguments the hash key and value. For convenience, $_ is also available and represent the 2nd argument, i.e. the value.
$_
$a->foreach(sub { my( $k, $v ) = @_; return if( $key eq $not_this_one ); print( "ok, this one\n" ); });
Provided with an hash key and this will return whatever value was set.
$a->get( 'last_name' ); # Return 'Doe' maybe?
See "set" for the opposite method, i.e. setting a key value.
Returns true if the given value exists in the hash. This is effectively an alias for "exists"
Returns true if the hash object contains no data, or false otherwise.
This returns a JSON representation of the hash. You can provided optionally an hash reference of parameters.
All parameters supported by "JSON" can be used here.
For example:
my $json = $h->json({ pretty => 1, canonical => 1 }); # pretty only will trigger canonical to be true my $json = $h->json({ pretty => 1 });
This would yield something like:
{ "age" : 30, "email" : "john.doe@example.com", "first_name" : "John", "last_name" : "Doe" }
Otherwise, you would get a more terse result, such as :
{"age":30,"email":"john.doe@example.com","first_name":"John","last_name":"Doe"}
When pretty is enabled, it will automatically also enable canonical, indent and relaxed unless those are explicitly specified:
canonical
indent
relaxed
my $json = $h->json({ pretty => 1, canonical => 0 });
For simplicity, you can also use, as alias to canonical, sort, sorted, order or ordered
sort
sorted
order
ordered
It returns the JSON encoded data as a scalar object
Sets or gets the boolean value as to whether this hash should allow the use of reference as keys. Default is false.
When false, any reference used as key, will be converted to a string by perl, since perl natively does not recognise reference as keys.
Returns the hash keys as a Module::Generic::Array object.
Also note that if you have a multi-level hash, this will return only the first level keys, just like "keys" in perlfunc would do.
printf( "%d hash keys found\n", $h->keys->length );
And even, chaining through different objects :
if( $h->keys->length->is_positive ) { # Do something }
This returns the keys as an Module::Generic::Array object, then returns the size of the array as a Module::Generic::Number object.
This returns the number of keys in the hash, as a Module::Generic::Number object.
Provided with a code reference and this calls "map" in perlfunc and pass the code reference the hash key and its value.
It returns a regular list, i.e. not an object, just like perl's "map" in perlfunc would do.
Does the same as "map" above, except it returns a new array as a Module::Generic::Array object.
Does the same as "map" above, except it returns a new Module::Generic::Hash object.
For this to work properly, the code reference needs to return a key-value pair.
Provided with an hash reference and an optional hash of parameters and this will mergge the given hash with hash in our object. It does so recursively and prevents looping by using "refaddr" in Scalar::Util.
Currently the only parameter possible is overwrite. By default this is set to a true value, and you can provide this argument to specifically indicates you do not want the hash key value to be overwriten.
Just an alias for "delete"
This simply empty the hash. See also "undef" for the same result.
Provided with a key and a value, and this adds it to the hash, possibly overwriting any previous entry.
See "get" for the opposite method, i.e. to get the key value.
Alias method for "length"
This simply empty the hash. See also "reset" for the same result.
This returns the values of the hash as a Module::Generic::Array, but please note that jsut like the "values" in perlfunc, it only provides the first level values.
If an optional reference to a subroutine is provided, the code will be called for each value as its sole argument, and the subroutine can decide what to do with it, possibly altering the value and discarding it by returning the value, possibly altered, or an empty list to indicte this entry shoul be discarded. For example :
my $vals = $h->values(sub{ ref( $_[0] ) ? () : $_[0]; });
This will make sure to get all values, except the ones that are reference (perlref)
To return entries with uppercase first :
my $vals = $h->values(sub{ join( ' ', map( ucfirst( lc( $_ ) ), split( /[[:blank:]]+/, $_[0] ) ) ); });
And if one of the value were JohN DOE, this would result in John Doe
JohN DOE
John Doe
If the parameter sort is provided, then it will sort the array before returning the values and before executing the reference of the subroutine on each entry.
Serialisation by CBOR, Sereal and Storable::Improved (or the legacy Storable) is supported by this package. To that effect, the following subroutines are implemented: FREEZE, THAW, STORABLE_freeze and STORABLE_thaw
FREEZE
THAW
STORABLE_freeze
STORABLE_thaw
Module::Generic::Scalar, Module::Generic::Array, Module::Generic::Boolean, Module::Generic::Number, Module::Generic::Dynamic
Math::BigInt
Jacques Deguest <jack@deguest.jp>
Copyright (c) 2000-2020 DEGUEST Pte. Ltd.
You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.
To install Module::Generic, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Module::Generic
CPAN shell
perl -MCPAN -e shell install Module::Generic
For more information on module installation, please visit the detailed CPAN module installation guide.