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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
|
package Specio::Constraint::Role::Interface;
use strict;
use warnings;
our $VERSION = '0.53';
use Carp qw( confess );
use Eval::Closure qw( eval_closure );
use List::Util 1.33 qw( all any first );
use Specio::Exception;
use Specio::PartialDump qw( partial_dump );
use Specio::TypeChecks qw( is_CodeRef );
use Role::Tiny 1.003003;
use Specio::Role::Inlinable;
with 'Specio::Role::Inlinable';
use overload(
q{""} => '_stringify',
'&{}' => '_subification',
'bool' => sub {1},
'eq' => 'is_same_type_as',
);
{
## no critic (Subroutines::ProtectPrivateSubs)
my $role_attrs = Specio::Role::Inlinable::_attrs();
## use critic
my $attrs = {
%{$role_attrs},
name => {
isa => 'Str',
predicate => '_has_name',
},
parent => {
does => 'Specio::Constraint::Role::Interface',
predicate => '_has_parent',
},
_constraint => {
isa => 'CodeRef',
init_arg => 'constraint',
predicate => '_has_constraint',
},
_optimized_constraint => {
isa => 'CodeRef',
init_arg => undef,
lazy => 1,
builder => '_build_optimized_constraint',
},
_ancestors => {
isa => 'ArrayRef',
init_arg => undef,
lazy => 1,
builder => '_build_ancestors',
},
_message_generator => {
isa => 'CodeRef',
init_arg => undef,
},
_coercions => {
builder => '_build_coercions',
clone => '_clone_coercions',
},
_subification => {
init_arg => undef,
lazy => 1,
builder => '_build_subification',
},
# Because types are cloned on import, we can't directly compare type
# objects. Because type names can be reused between packages (no global
# registry) we can't compare types based on name either.
_signature => {
isa => 'Str',
init_arg => undef,
lazy => 1,
builder => '_build_signature',
},
};
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _attrs {
return $attrs;
}
}
my $NullConstraint = sub {1};
# See Specio::OO to see how this is used.
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _Specio_Constraint_Role_Interface_BUILD {
my $self = shift;
my $p = shift;
unless ( $self->_has_constraint || $self->_has_inline_generator ) {
$self->{_constraint} = $NullConstraint;
}
die
'A type constraint should have either a constraint or inline_generator parameter, not both'
if $self->_has_constraint && $self->_has_inline_generator;
$self->{_message_generator}
= $self->_wrap_message_generator( $p->{message_generator} );
return;
}
## use critic
sub _wrap_message_generator {
my $self = shift;
my $generator = shift;
unless ( defined $generator ) {
$generator = sub {
my $description = shift;
my $value = shift;
return "Validation failed for $description with value "
. partial_dump($value);
};
}
my $d = $self->description;
return sub { $generator->( $d, @_ ) };
}
sub coercions { values %{ $_[0]->{_coercions} } }
sub coercion_from_type { $_[0]->{_coercions}{ $_[1] } }
sub _has_coercion_from_type { exists $_[0]->{_coercions}{ $_[1] } }
sub _add_coercion { $_[0]->{_coercions}{ $_[1] } = $_[2] }
sub has_coercions { scalar keys %{ $_[0]->{_coercions} } }
sub validate_or_die {
my $self = shift;
my $value = shift;
return if $self->value_is_valid($value);
Specio::Exception->throw(
message => $self->_message_generator->($value),
type => $self,
value => $value,
);
}
sub value_is_valid {
my $self = shift;
my $value = shift;
return $self->_optimized_constraint->($value);
}
sub _ancestors_and_self {
my $self = shift;
return ( ( reverse @{ $self->_ancestors } ), $self );
}
sub is_a_type_of {
my $self = shift;
my $type = shift;
return
any { $_->_signature eq $type->_signature }
$self->_ancestors_and_self;
}
sub is_same_type_as {
my $self = shift;
my $type = shift;
return $self->_signature eq $type->_signature;
}
sub is_anon {
my $self = shift;
return !$self->_has_name;
}
sub has_real_constraint {
my $self = shift;
return ( $self->_has_constraint && $self->_constraint ne $NullConstraint )
|| $self->_has_inline_generator;
}
sub can_be_inlined {
my $self = shift;
return 1 if $self->_has_inline_generator;
return 0
if $self->_has_constraint && $self->_constraint ne $NullConstraint;
# If this type is an empty subtype of an inlinable parent, then we can
# inline this type as well.
return 1 if $self->_has_parent && $self->parent->can_be_inlined;
return 0;
}
sub _build_generated_inline_sub {
my $self = shift;
my $type = $self->_self_or_first_inlinable_ancestor;
my $source
= 'sub { ' . $type->_inline_generator->( $type, '$_[0]' ) . '}';
return eval_closure(
source => $source,
environment => $type->inline_environment,
description => 'inlined sub for ' . $self->description,
);
}
sub _self_or_first_inlinable_ancestor {
my $self = shift;
my $type = first { $_->_has_inline_generator }
reverse $self->_ancestors_and_self;
# This should never happen because ->can_be_inlined should always be
# checked before this builder is called.
die 'Cannot generate an inline sub' unless $type;
return $type;
}
sub _build_optimized_constraint {
my $self = shift;
if ( $self->can_be_inlined ) {
return $self->_generated_inline_sub;
}
else {
return $self->_constraint_with_parents;
}
}
sub _constraint_with_parents {
my $self = shift;
my @constraints;
for my $type ( $self->_ancestors_and_self ) {
next unless $type->has_real_constraint;
# If a type can be inlined, we can use that and discard all of the
# ancestors we've seen so far, since we can assume that the inlined
# constraint does all of the ancestor checks in addition to its own.
if ( $type->can_be_inlined ) {
@constraints = $type->_generated_inline_sub;
}
else {
push @constraints, $type->_constraint;
}
}
return $NullConstraint unless @constraints;
return sub {
all { $_->( $_[0] ) } @constraints;
};
}
# This is only used for identifying from types as part of coercions, but I
# want to leave open the possibility of using something other than
# _description in the future.
sub id {
my $self = shift;
return $self->description;
}
sub add_coercion {
my $self = shift;
my $coercion = shift;
my $from_id = $coercion->from->id;
confess "Cannot add two coercions fom the same type: $from_id"
if $self->_has_coercion_from_type($from_id);
$self->_add_coercion( $from_id => $coercion );
return;
}
sub has_coercion_from_type {
my $self = shift;
my $type = shift;
return $self->_has_coercion_from_type( $type->id );
}
sub coerce_value {
my $self = shift;
my $value = shift;
for my $coercion ( $self->coercions ) {
next unless $coercion->from->value_is_valid($value);
return $coercion->coerce($value);
}
return $value;
}
sub can_inline_coercion {
my $self = shift;
return all { $_->can_be_inlined } $self->coercions;
}
sub can_inline_coercion_and_check {
my $self = shift;
return all { $_->can_be_inlined } $self, $self->coercions;
}
sub inline_coercion {
my $self = shift;
my $arg_name = shift;
die 'Cannot inline coercion'
unless $self->can_inline_coercion;
my $source = 'do { my $value = ' . $arg_name . ';';
my ( $coerce, $env );
( $coerce, $arg_name, $env ) = $self->_inline_coercion($arg_name);
$source .= $coerce . $arg_name . '};';
return ( $source, $env );
}
sub inline_coercion_and_check {
my $self = shift;
my $arg_name = shift;
die 'Cannot inline coercion and check'
unless $self->can_inline_coercion_and_check;
my $source = 'do { my $value = ' . $arg_name . ';';
my ( $coerce, $env );
( $coerce, $arg_name, $env ) = $self->_inline_coercion($arg_name);
my ( $assert, $assert_env ) = $self->inline_assert($arg_name);
$source .= $coerce;
$source .= $assert;
$source .= $arg_name . '};';
return ( $source, { %{$env}, %{$assert_env} } );
}
sub _inline_coercion {
my $self = shift;
my $arg_name = shift;
return ( q{}, $arg_name, {} ) unless $self->has_coercions;
my %env;
$arg_name = '$value';
my $source = $arg_name . ' = ';
for my $coercion ( $self->coercions ) {
$source
.= '('
. $coercion->from->inline_check($arg_name) . ') ? ('
. $coercion->inline_coercion($arg_name) . ') : ';
%env = (
%env,
%{ $coercion->inline_environment },
%{ $coercion->from->inline_environment },
);
}
$source .= $arg_name . ';';
return ( $source, $arg_name, \%env );
}
{
my $counter = 1;
sub inline_assert {
my $self = shift;
my $type_var_name = '$_Specio_Constraint_Interface_type' . $counter;
my $message_generator_var_name
= '$_Specio_Constraint_Interface_message_generator' . $counter;
my %env = (
$type_var_name => \$self,
$message_generator_var_name => \( $self->_message_generator ),
%{ $self->inline_environment },
);
my $source = $self->inline_check( $_[0] );
$source .= ' or ';
$source .= $self->_inline_throw_exception(
$_[0],
$message_generator_var_name,
$type_var_name
);
$source .= ';';
$counter++;
return ( $source, \%env );
}
}
sub inline_check {
my $self = shift;
die 'Cannot inline' unless $self->can_be_inlined;
my $type = $self->_self_or_first_inlinable_ancestor;
return $type->_inline_generator->( $type, @_ );
}
# For some idiotic reason I called $type->_subify directly in Code::TidyAll so
# I'll leave this in here for now.
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _subify { $_[0]->_subification }
## use critic
sub _build_subification {
my $self = shift;
if ( defined &Sub::Quote::quote_sub && $self->can_be_inlined ) {
return Sub::Quote::quote_sub( $self->inline_assert('$_[0]') );
}
else {
return sub { $self->validate_or_die( $_[0] ) };
}
}
sub _inline_throw_exception {
shift;
my $value_var = shift;
my $message_generator_var_name = shift;
my $type_var_name = shift;
#<<<
return 'Specio::Exception->throw( '
. ' message => ' . $message_generator_var_name . '->(' . $value_var . '),'
. ' type => ' . $type_var_name . ','
. ' value => ' . $value_var . ' )';
#>>>
}
# This exists for the benefit of Moo
sub coercion_sub {
my $self = shift;
if ( defined &Sub::Quote::quote_sub
&& all { $_->can_be_inlined } $self->coercions ) {
my $inline = q{};
my %env;
for my $coercion ( $self->coercions ) {
$inline .= sprintf(
'$_[0] = %s if %s;' . "\n",
$coercion->inline_coercion('$_[0]'),
$coercion->from->inline_check('$_[0]')
);
%env = (
%env,
%{ $coercion->inline_environment },
%{ $coercion->from->inline_environment },
);
}
$inline .= sprintf( "%s;\n", '$_[0]' );
return Sub::Quote::quote_sub( $inline, \%env );
}
else {
return sub { $self->coerce_value(shift) };
}
}
sub _build_ancestors {
my $self = shift;
my @parents;
my $type = $self;
while ( $type = $type->parent ) {
push @parents, $type;
}
return \@parents;
}
sub _build_description {
my $self = shift;
my $desc
= $self->is_anon ? 'anonymous type' : 'type named ' . $self->name;
$desc .= q{ } . $self->declared_at->description;
return $desc;
}
sub _build_coercions { {} }
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _clone_coercions {
my $self = shift;
my $coercions = $self->_coercions;
my %clones;
for my $name ( keys %{$coercions} ) {
my $coercion = $coercions->{$name};
$clones{$name} = $coercion->clone_with_new_to($self);
}
return \%clones;
}
## use critic
sub _stringify {
my $self = shift;
return $self->name unless $self->is_anon;
return sprintf( '__ANON__(%s)', $self->parent . q{} );
}
sub _build_signature {
my $self = shift;
# This assumes that when a type is cloned, the underlying constraint or
# generator sub is copied by _reference_, so it has the same memory
# address and stringifies to the same value. XXX - will this break under
# threads?
return join "\n",
## no critic (Subroutines::ProtectPrivateSubs)
( $self->_has_parent ? $self->parent->_signature : () ),
(
defined $self->_constraint
? $self->_constraint
: $self->_inline_generator
);
}
# Moose compatibility methods - these exist as a temporary hack to make Specio
# work with Moose.
sub has_coercion {
shift->has_coercions;
}
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _inline_check {
shift->inline_check(@_);
}
sub _compiled_type_constraint {
shift->_optimized_constraint;
}
## use critic;
# This class implements the methods that Moose expects from coercions as well.
sub coercion {
return shift;
}
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
sub _compiled_type_coercion {
my $self = shift;
return sub {
return $self->coerce_value(shift);
};
}
## use critic
sub has_message {
1;
}
sub message {
shift->_message_generator;
}
sub get_message {
my $self = shift;
my $value = shift;
return $self->_message_generator->( $self, $value );
}
sub check {
shift->value_is_valid(@_);
}
sub coerce {
shift->coerce_value(@_);
}
1;
# ABSTRACT: The interface all type constraints should provide
__END__
=pod
=encoding UTF-8
=head1 NAME
Specio::Constraint::Role::Interface - The interface all type constraints should provide
=head1 VERSION
version 0.53
=head1 DESCRIPTION
This role defines the interface that all type constraints must provide, and
provides most (or all) of the implementation. The L<Specio::Constraint::Simple>
class simply consumes this role and provides no additional code. Other
constraint classes add features or override some of this role's functionality.
=for Pod::Coverage .*
=head1 API
See the L<Specio::Constraint::Simple> documentation for details. See the
internals of various constraint classes to see how this role can be overridden
or expanded upon.
=head1 ROLES
This role does the L<Specio::Role::Inlinable> role.
=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
|