1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
package Specio::OO;
use strict;
use warnings;
use Carp qw( confess );
use List::Util 1.33 qw( all );
use MRO::Compat;
use Role::Tiny;
use Scalar::Util qw( weaken );
use Specio qw( _clone );
use Specio::Helpers qw( perlstring );
use Specio::PartialDump qw( partial_dump );
use Specio::TypeChecks;
our $VERSION = '0.52';
use Exporter qw( import );
## no critic (Modules::ProhibitAutomaticExportation)
our @EXPORT = qw(
clone
_ooify
);
## use critic
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _ooify {
my $class = shift;
my $attrs = $class->_attrs;
for my $name ( sort keys %{$attrs} ) {
my $attr = $attrs->{$name};
_inline_reader( $class, $name, $attr );
_inline_predicate( $class, $name, $attr );
}
_inline_constructor($class);
}
## use critic
sub _inline_reader {
my $class = shift;
my $name = shift;
my $attr = shift;
my $reader;
if ( $attr->{lazy} && ( my $builder = $attr->{builder} ) ) {
my $source = <<'EOF';
sub {
unless ( exists $_[0]->{%s} ) {
$_[0]->{%s} = $_[0]->%s;
Scalar::Util::weaken( $_[0]->{%s} ) if %s && ref $_[0]->{%s};
}
$_[0]->{%s};
}
EOF
$reader = sprintf(
$source,
$name,
$name,
$builder,
$name,
( $attr->{weak_ref} ? 1 : 0 ),
$name,
$name,
);
}
else {
$reader = sprintf( 'sub { $_[0]->{%s} }', $name );
}
{
## no critic (TestingAndDebugging::ProhibitNoStrict)
no strict 'refs';
*{ $class . '::' . $name } = _eval_or_die(
$reader, $class . '->' . $name,
);
}
}
sub _inline_predicate {
my $class = shift;
my $name = shift;
my $attr = shift;
return unless $attr->{predicate};
my $predicate = "sub { exists \$_[0]->{$name} }";
{
## no critic (TestingAndDebugging::ProhibitNoStrict)
no strict 'refs';
*{ $class . '::' . $attr->{predicate} } = _eval_or_die(
$predicate, $class . '->' . $attr->{predicate},
);
}
}
my @RolesWithBUILD = qw( Specio::Constraint::Role::Interface );
# This is an optimization to avoid calling this many times over:
#
# Specio::TypeChecks->can( 'is_' . $attr->{isa} )
my %TypeChecks;
BEGIN {
for my $sub (@Specio::TypeChecks::EXPORT_OK) {
my ($type) = $sub =~ /^is_(.+)$/
or next;
$TypeChecks{$type} = Specio::TypeChecks->can($sub);
}
}
sub _inline_constructor {
my $class = shift;
my @build_subs;
for my $parent ( @{ mro::get_linear_isa($class) } ) {
{
## no critic (TestingAndDebugging::ProhibitNoStrict)
no strict 'refs';
push @build_subs, $parent . '::BUILD'
if defined &{ $parent . '::BUILD' };
}
}
# This is all a hack to avoid needing Class::Method::Modifiers to add a
# BUILD from a role. We can't just call the method in the role "BUILD" or
# it will be shadowed by a class's BUILD. So we give it a wacky unique
# name. We need to explicitly know which roles have a _X_BUILD method
# because Role::Tiny doesn't provide a way to list all the roles applied
# to a class.
for my $role (@RolesWithBUILD) {
if ( Role::Tiny::does_role( $class, $role ) ) {
( my $build_name = $role ) =~ s/::/_/g;
$build_name = q{_} . $build_name . '_BUILD';
push @build_subs, $role . '::' . $build_name;
}
}
my $constructor = <<'EOF';
sub {
my $class = shift;
my %p = do {
if ( @_ == 1 ) {
if ( ref $_[0] eq 'HASH' ) {
%{ shift() };
}
else {
Specio::OO::_constructor_confess(
Specio::OO::_bad_args_message( $class, @_ ) );
}
}
else {
Specio::OO::_constructor_confess(
Specio::OO::_bad_args_message( $class, @_ ) )
if @_ % 2;
@_;
}
};
my $self = bless {}, $class;
EOF
my $attrs = $class->_attrs;
for my $name ( sort keys %{$attrs} ) {
my $attr = $attrs->{$name};
my $key_name = defined $attr->{init_arg} ? $attr->{init_arg} : $name;
if ( $attr->{required} ) {
$constructor .= <<"EOF";
Specio::OO::_constructor_confess(
"$class->new requires a $key_name argument.")
unless exists \$p{$key_name};
EOF
}
if ( $attr->{builder} && !$attr->{lazy} ) {
my $builder = $attr->{builder};
$constructor .= <<"EOF";
\$p{$key_name} = $class->$builder unless exists \$p{$key_name};
EOF
}
if ( $attr->{isa} ) {
my $validator;
if ( $TypeChecks{ $attr->{isa} } ) {
$validator
= 'Specio::TypeChecks::is_'
. $attr->{isa}
. "( \$p{$key_name} )";
}
else {
my $quoted_class = perlstring( $attr->{isa} );
$validator
= "Specio::TypeChecks::isa_class( \$p{$key_name}, $quoted_class )";
}
$constructor .= <<"EOF";
if ( exists \$p{$key_name} && !$validator ) {
Carp::confess(
Specio::OO::_bad_value_message(
"The value you provided to $class->new for $key_name is not a valid $attr->{isa}.",
\$p{$key_name},
)
);
}
EOF
}
if ( $attr->{does} ) {
my $quoted_role = perlstring( $attr->{does} );
$constructor .= <<"EOF";
if ( exists \$p{$key_name} && !Specio::TypeChecks::does_role( \$p{$key_name}, $quoted_role ) ) {
Carp::confess(
Specio::OO::_bad_value_message(
"The value you provided to $class->new for $key_name does not do the $attr->{does} role.",
\$p{$key_name},
)
);
}
EOF
}
if ( $attr->{weak_ref} ) {
$constructor .= " Scalar::Util::weaken( \$p{$key_name} );\n";
}
$constructor
.= " \$self->{$name} = \$p{$key_name} if exists \$p{$key_name};\n";
$constructor .= "\n";
}
$constructor .= ' $self->' . $_ . "(\\%p);\n" for @build_subs;
$constructor .= <<'EOF';
return $self;
}
EOF
{
## no critic (TestingAndDebugging::ProhibitNoStrict)
no strict 'refs';
*{ $class . '::new' } = _eval_or_die(
$constructor, $class . '->new',
);
}
}
# This used to be done with Eval::Closure but that added a lot of unneeded
# overhead. We're never actually eval'ing a closure, just plain source, so
# doing it by hand is a worthwhile optimization.
sub _eval_or_die {
local $@ = undef;
## no critic (Variables::RequireInitializationForLocalVars)
# $SIG{__DIE__} = undef causes warnings with 5.8.x
local $SIG{__DIE__};
## no critic (BuiltinFunctions::ProhibitStringyEval)
my $sub = eval <<"EOF";
#line 1 "$_[1]"
$_[0];
EOF
my $e = $@;
die $e if $e;
return $sub;
}
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _constructor_confess {
local $Carp::CarpLevel = $Carp::CarpLevel + 1;
confess shift;
}
sub _bad_args_message {
my $class = shift;
return
"$class->new requires either a hashref or hash as arguments. You passed "
. partial_dump(@_);
}
sub _bad_value_message {
my $message = shift;
my $value = shift;
return $message . ' You passed ' . partial_dump($value);
}
## use critic
my %BuiltinTypes = map { $_ => 1 } qw(
SCALAR
ARRAY
HASH
CODE
REF
GLOB
LVALUE
FORMAT
IO
VSTRING
Regexp
);
sub clone {
my $self = shift;
# Attributes which provide a clone method are cloned by calling that
# method on the _clone_ (not the original). This is primarily to allow us
# to clone the coercions contained by a type in a way that doesn't lead to
# circular clone (type clones coercions which in turn need to clone their
# to/from types which in turn ...).
my $attrs = $self->_attrs;
my %special = map { $_ => $attrs->{$_}{clone} }
grep { $attrs->{$_}{clone} } keys %{$attrs};
my $new;
for my $key ( keys %{$self} ) {
my $value = $self->{$key};
if ( $special{$key} ) {
$new->{$key} = $value;
next;
}
# This is a weird hacky way of trying to avoid calling
# Scalar::Util::blessed, which showed up as a hotspot in profiling of
# loading DateTime. That's because we call ->clone a _lot_ (it's
# called every time a type is exported).
my $ref = ref $value;
$new->{$key}
= !$ref ? $value
: $ref eq 'CODE' ? $value
: $BuiltinTypes{$ref} ? _clone($value)
: $value->clone;
}
bless $new, ( ref $self );
for my $key ( keys %special ) {
my $method = $special{$key};
$new->{$key} = $new->$method;
}
return $new;
}
1;
# ABSTRACT: A painfully poor reimplementation of Moo(se)
__END__
=pod
=encoding UTF-8
=head1 NAME
Specio::OO - A painfully poor reimplementation of Moo(se)
=head1 VERSION
version 0.52
=head1 DESCRIPTION
Specio can't depend on Moo or Moose, so this module provides a terrible
reimplementation of a small slice of their features.
=for Pod::Coverage .*
=head1 SUPPORT
Bugs may be submitted at L<https://github.com/houseabsolute/Specio/issues>.
=head1 SOURCE
The source code repository for Specio can be found at L<https://github.com/houseabsolute/Specio>.
=head1 AUTHOR
Dave Rolsky <autarch@urth.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2012 - 2025 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
The full text of the license can be found in the
F<LICENSE> file included with this distribution.
=cut
|