File Coverage

blib/lib/SQL/Translator/Types.pm
Criterion Covered Total %
statement 34 34 100.0
branch 13 16 81.2
condition 8 13 61.5
subroutine 11 11 100.0
pod 2 2 100.0
total 68 76 89.4


line stmt bran cond sub pod time code
1             package SQL::Translator::Types;
2              
3 74     74   545 use warnings;
  74         229  
  74         2636  
4 74     74   749 use strict;
  74         166  
  74         3715  
5              
6             =head1 NAME
7              
8             SQL::Translator::Types - Type checking functions
9              
10             =head1 SYNOPSIS
11              
12             package Foo;
13             use Moo;
14             use SQL::Translator::Types qw(schema_obj enum);
15              
16             has foo => ( is => 'rw', isa => schema_obj('Trigger') );
17             has bar => ( is => 'rw', isa => enum([qw(baz quux quuz)], {
18             msg => "Invalid value for bar: '%s'", icase => 1,
19             });
20              
21             =head1 DESCRIPTIONS
22              
23             This module exports functions that return coderefs suitable for L
24             C type checks.
25             Errors are reported using L.
26              
27             =cut
28              
29 74     74   422 use SQL::Translator::Utils qw(throw);
  74         186  
  74         3601  
30 74     74   471 use Scalar::Util qw(blessed);
  74         177  
  74         3781  
31              
32 74     74   540 use Exporter qw(import);
  74         187  
  74         30636  
33             our @EXPORT_OK = qw(schema_obj enum);
34              
35             =head1 FUNCTIONS
36              
37             =head2 schema_obj($type)
38              
39             Returns a coderef that checks that its arguments is an object of the
40             class C<< SQL::Translator::Schema::I<$type> >>.
41              
42             =cut
43              
44             sub schema_obj {
45 647     647 1 2214 my ($class) = @_;
46 647         2013 my $name = lc $class;
47 647 100       2816 $class = 'SQL::Translator::Schema' . ($class eq 'Schema' ? '' : "::$class");
48             return sub {
49 2691 50 33 2691   118562 throw("Not a $name object")
50             unless blessed($_[0]) and $_[0]->isa($class);
51 647         6401 };
52             }
53              
54             =head2 enum(\@strings, [$msg | \%parameters])
55              
56             Returns a coderef that checks that the argument is one of the provided
57             C<@strings>.
58              
59             =head3 Parameters
60              
61             =over
62              
63             =item msg
64              
65             L string for the error message.
66             If no other parameters are needed, this can be provided on its own,
67             instead of the C<%parameters> hashref.
68             The invalid value is passed as the only argument.
69             Defaults to C.
70              
71             =item icase
72              
73             If true, folds the values to lower case before checking for equality.
74              
75             =item allow_undef
76              
77             If true, allow C in addition to the specified strings.
78              
79             =item allow_false
80              
81             If true, allow any false value in addition to the specified strings.
82              
83             =back
84              
85             =cut
86              
87             sub enum {
88 359     359 1 41835 my ($values, $args) = @_;
89 359   50     1403 $args ||= {};
90 359 50       1418 $args = { msg => $args } unless ref($args) eq 'HASH';
91 359         1053 my $icase = !!$args->{icase};
92 359 100       702 my %values = map { ($icase ? lc : $_) => undef } @{$values};
  1229         3935  
  359         934  
93 359   50     1448 my $msg = $args->{msg} || "Invalid value: '%s'";
94             my $extra_test =
95 101     101   2171 $args->{allow_undef} ? sub { defined $_[0] } :
96 359 50   1284   2154 $args->{allow_false} ? sub { !!$_[0] } : undef;
  1284 100       26440  
97              
98             return sub {
99 1385 100   1385   53310 my $val = $icase ? lc $_[0] : $_[0];
100             throw(sprintf($msg, $val))
101             if (!defined($extra_test) || $extra_test->($val))
102 1385 100 66     4692 && !exists $values{$val};
      100        
103 359         2973 };
104             }
105              
106             1;