Module-Generic
view release on metacpan or search on metacpan
lib/Module/Generic/Dynamic.pm view on Meta::CPAN
##----------------------------------------------------------------------------
## Module Generic - ~/lib/Module/Generic/Dynamic.pm
## Version v1.3.1
## Copyright(c) 2025 DEGUEST Pte. Ltd.
## Author: Jacques Deguest <jack@deguest.jp>
## Created 2021/03/20
## Modified 2026/01/22
## All rights reserved
##
## This program is free software; you can redistribute it and/or modify it
## under the same terms as Perl itself.
##----------------------------------------------------------------------------
package Module::Generic::Dynamic;
BEGIN
{
use strict;
use warnings;
use parent qw( Module::Generic );
use warnings::register;
use vars qw( $AUTOLOAD $VERSION $DEBUG );
use Config;
use Module::Generic::Global ':const';
use Scalar::Util ();
our $DEBUG = 0;
our $VERSION = 'v1.3.1';
};
use strict;
no warnings 'redefine';
sub new
{
my $this = shift( @_ );
my $class = ref( $this ) || $this;
my $self = bless( {} => $class );
my $data = $self->{_data} = {};
# A Module::Generic object standard parameter
$self->{_data_repo} = '_data';
my $hash = {};
@_ = () if( scalar( @_ ) == 1 && !defined( $_[0] ) );
if( scalar( @_ ) == 1 && ( Scalar::Util::reftype( $_[0] ) // '' ) eq 'HASH' )
{
$hash = shift( @_ );
$self->{debug} = $DEBUG if( $DEBUG && !CORE::exists( $hash->{debug} ) );
}
elsif( @_ )
{
CORE::warn( "Parameter provided is not an hash reference: '", join( "', '", @_ ), "'\n" ) if( $this->_warnings_is_enabled );
}
if( HAS_THREADS )
{
if( threads->tid != 0 )
{
warn( "Module::Generic::Dynamic is not thread-safe and should not be called from a thread." ) if( $this->_warnings_is_enabled );
}
}
my $make_clean_field = sub
{
my $k = shift( @_ );
my $clean_field = $k;
$clean_field =~ tr/-/_/;
$clean_field =~ s/\_{2,}/_/g;
$clean_field =~ s/[^a-zA-Z0-9\_]+//g;
$clean_field =~ s/^\d+//g;
return( $clean_field );
};
my $make_class = sub
{
my $k = shift( @_ );
my $new_class = $k;
$new_class =~ tr/-/_/;
$new_class =~ s/\_{2,}/_/g;
$new_class = join( '', map( ucfirst( lc( $_ ) ), split( /\_/, $new_class ) ) );
$new_class = "${class}\::${new_class}";
# Sanitise the key which will serve as a method name
my $clean_field = $make_clean_field->( $k );
my $perl = <<EOT;
package $new_class;
BEGIN
{
use strict;
use Module::Generic;
use parent -norequire, qw( Module::Generic::Dynamic );
};
1;
EOT
local $@;
my $rc = eval( $perl );
die( "Unable to dynamically create module $new_class: $@" ) if( $@ );
return( $new_class, $clean_field );
lib/Module/Generic/Dynamic.pm view on Meta::CPAN
# Fallback for unknown refs: use generic _set_get to store safely
my $clean_field = $make_clean_field->( $k );
next unless( length( $clean_field ) );
my $func_name = '_set_get';
my $pl = "sub ${class}::${clean_field} { return( shift->${func_name}( '$clean_field', \@_ ) ); }";
eval( $pl );
die( $@ ) if( $@ );
my $rv = $self->$clean_field( $hash->{ $k } );
return( $self->pass_error ) if( !defined( $rv ) && $self->error );
}
}
return( $self );
}
sub FREEZE
{
my $self = CORE::shift( @_ );
my $serialiser = CORE::shift( @_ ) // '';
my $class = CORE::ref( $self );
my %hash = %$self;
# Return an array reference rather than a list so this works with Sereal and CBOR
# On or before Sereal version 4.023, Sereal did not support multiple values returned
if( $serialiser eq 'Sereal' )
{
require Sereal::Encoder;
require version;
if( version->parse( Sereal::Encoder->VERSION ) <= version->parse( '4.023' ) )
{
CORE::return( [$class, \%hash] );
}
}
# But CBOR and Storable want a list with the first element being the serialised element
CORE::return( $class, \%hash );
}
sub STORABLE_freeze { CORE::return( CORE::shift->FREEZE( @_ ) ); }
sub STORABLE_thaw { CORE::return( CORE::shift->THAW( @_ ) ); }
# NOTE: CBOR will call the THAW method with the stored classname as first argument, the constant string CBOR as second argument, and all values returned by FREEZE as remaining arguments.
# NOTE: Storable calls it with a blessed object it created followed with $cloning and any other arguments initially provided by STORABLE_freeze
sub THAW
{
my( $self, undef, @args ) = @_;
my $ref = ( CORE::scalar( @args ) == 1 && CORE::ref( $args[0] ) eq 'ARRAY' ) ? CORE::shift( @args ) : \@args;
my $class = ( CORE::defined( $ref ) && CORE::ref( $ref ) eq 'ARRAY' && CORE::scalar( @$ref ) > 1 ) ? CORE::shift( @$ref ) : ( CORE::ref( $self ) || $self );
my $hash = CORE::ref( $ref ) eq 'ARRAY' ? CORE::shift( @$ref ) : {};
my $new;
# Storable pattern requires to modify the object it created rather than returning a new one
if( CORE::ref( $self ) )
{
foreach( CORE::keys( %$hash ) )
{
$self->{ $_ } = CORE::delete( $hash->{ $_ } );
}
$new = $self;
}
else
{
$new = CORE::bless( $hash => $class );
}
CORE::return( $new );
}
sub TO_JSON
{
my $self = CORE::shift( @_ );
my $ref = { %$self };
CORE::delete( $ref->{_data} );
CORE::delete( $ref->{_data_repo} );
CORE::return( $ref );
}
sub AUTOLOAD
{
my( $method ) = our $AUTOLOAD =~ /([^:]+)$/;
no overloading;
my $self = shift( @_ );
my $class = ref( $self ) || $self;
my $args = \@_;
if( HAS_THREADS )
{
if( threads->tid != 0 )
{
CORE::warn( "Module::Generic::Dynamic::AUTOLOAD is not thread-safe and should not be called from a thread." ) if( warnings::enabled() );
# return( $self->error( "Module::Generic::Dynamic::AUTOLOAD is not thread-safe and should not be called from a thread." ) );
}
}
# Check if method already exists
if( my $code = $self->can( $method ) )
{
return( $code->( @_ ) );
}
# Default handler
# my $handler = '_set_get_scalar_as_object';
my( $handler, $pl, $ref );
my $has_args = scalar( @_ );
my $first_arg = \'';
if( $has_args )
{
$ref = lc( ref( $_[0] // '' ) );
$first_arg = \$_[0] if( defined( $_[0] ) );
}
# We try to find the right handler based on the method name
# Those checks should be very conservative. If nothing is found, and we received data, we will check the data type to find the proper handler.
if( $method =~ /(^|\b)date|datetime|created|modified($|\b)/ )
{
$handler = '_set_get_datetime';
}
elsif( $method =~ /(^|\b)(uri|url)($|\b)/ )
{
$handler = '_set_get_uri';
}
elsif( $method =~ /(^id$|id$|_id$)/ )
{
$handler = '_set_get_uuid';
( run in 0.891 second using v1.01-cache-2.11-cpan-39bf76dae61 )