| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use 5.010; |
|
3
|
6
|
|
|
6
|
|
91
|
use strict; |
|
|
6
|
|
|
|
|
19
|
|
|
4
|
6
|
|
|
6
|
|
27
|
use warnings; |
|
|
6
|
|
|
|
|
9
|
|
|
|
6
|
|
|
|
|
99
|
|
|
5
|
6
|
|
|
6
|
|
23
|
use Log::ger; |
|
|
6
|
|
|
|
|
8
|
|
|
|
6
|
|
|
|
|
141
|
|
|
6
|
6
|
|
|
6
|
|
38
|
|
|
|
6
|
|
|
|
|
10
|
|
|
|
6
|
|
|
|
|
36
|
|
|
7
|
|
|
|
|
|
|
use Mo qw(build default); |
|
8
|
6
|
|
|
6
|
|
1211
|
use Role::Tiny::With; |
|
|
6
|
|
|
|
|
10
|
|
|
|
6
|
|
|
|
|
28
|
|
|
9
|
6
|
|
|
6
|
|
1576
|
|
|
|
6
|
|
|
|
|
13
|
|
|
|
6
|
|
|
|
|
5985
|
|
|
10
|
|
|
|
|
|
|
extends 'Data::Sah::Compiler::perl::TH'; |
|
11
|
|
|
|
|
|
|
with 'Data::Sah::Type::array'; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
14
|
|
|
|
|
|
|
our $DATE = '2022-09-30'; # DATE |
|
15
|
|
|
|
|
|
|
our $DIST = 'Data-Sah'; # DIST |
|
16
|
|
|
|
|
|
|
our $VERSION = '0.913'; # VERSION |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
my ($self, $cd) = @_; |
|
19
|
|
|
|
|
|
|
my $c = $self->compiler; |
|
20
|
403
|
|
|
403
|
0
|
733
|
|
|
21
|
403
|
|
|
|
|
1081
|
my $dt = $cd->{data_term}; |
|
22
|
|
|
|
|
|
|
$cd->{_ccl_check_type} = "ref($dt) eq 'ARRAY'"; |
|
23
|
403
|
|
|
|
|
1683
|
} |
|
24
|
403
|
|
|
|
|
1143
|
|
|
25
|
|
|
|
|
|
|
my ($self, $which, $cd) = @_; |
|
26
|
|
|
|
|
|
|
my $c = $self->compiler; |
|
27
|
|
|
|
|
|
|
my $ct = $cd->{cl_term}; |
|
28
|
288
|
|
|
288
|
0
|
586
|
my $dt = $cd->{data_term}; |
|
29
|
288
|
|
|
|
|
820
|
|
|
30
|
288
|
|
|
|
|
1097
|
$c->add_runtime_module($cd, $cd->{args}{dump_module}); |
|
31
|
288
|
|
|
|
|
469
|
|
|
32
|
|
|
|
|
|
|
if ($which eq 'is') { |
|
33
|
288
|
|
|
|
|
912
|
$c->add_ccl($cd, $c->expr_dump($cd, $dt).' eq '.$c->expr_dump($cd, $ct)); |
|
34
|
|
|
|
|
|
|
} elsif ($which eq 'in') { |
|
35
|
288
|
100
|
|
|
|
892
|
$c->add_ccl($cd, "do { my \$_sahv_dt_str = ".$c->expr_dump($cd, $dt)."; my \$_sahv_res = 0; " . |
|
|
|
50
|
|
|
|
|
|
|
36
|
150
|
|
|
|
|
363
|
"for my \$_sahv_el (\@{ $ct }) { my \$_sahv_el_str = ".$c->expr_dump($cd, "\$_sahv_el")."; ". |
|
37
|
|
|
|
|
|
|
"if (\$_sahv_dt_str eq \$_sahv_el_str) { \$_sahv_res = 1; last } } \$_sahv_res }"); |
|
38
|
138
|
|
|
|
|
425
|
} |
|
39
|
|
|
|
|
|
|
} |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
my ($self_th, $which, $cd) = @_; |
|
42
|
|
|
|
|
|
|
my $c = $self_th->compiler; |
|
43
|
|
|
|
|
|
|
my $cv = $cd->{cl_value}; |
|
44
|
|
|
|
|
|
|
my $ct = $cd->{cl_term}; |
|
45
|
123
|
|
|
123
|
0
|
209
|
my $dt = $cd->{data_term}; |
|
46
|
123
|
|
|
|
|
320
|
|
|
47
|
123
|
|
|
|
|
494
|
if ($which eq 'len') { |
|
48
|
123
|
|
|
|
|
177
|
$c->add_ccl($cd, "\@{$dt} == $ct"); |
|
49
|
123
|
|
|
|
|
197
|
} elsif ($which eq 'min_len') { |
|
50
|
|
|
|
|
|
|
$c->add_ccl($cd, "\@{$dt} >= $ct"); |
|
51
|
123
|
100
|
|
|
|
435
|
} elsif ($which eq 'max_len') { |
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
52
|
6
|
|
|
|
|
21
|
$c->add_ccl($cd, "\@{$dt} <= $ct"); |
|
53
|
|
|
|
|
|
|
} elsif ($which eq 'len_between') { |
|
54
|
34
|
|
|
|
|
105
|
if ($cd->{cl_is_expr}) { |
|
55
|
|
|
|
|
|
|
$c->add_ccl( |
|
56
|
21
|
|
|
|
|
68
|
$cd, "\@{$dt} >= $ct\->[0] && \@{$dt} >= $ct\->[1]"); |
|
57
|
|
|
|
|
|
|
} else { |
|
58
|
6
|
50
|
|
|
|
13
|
# simplify code |
|
59
|
0
|
|
|
|
|
0
|
$c->add_ccl( |
|
60
|
|
|
|
|
|
|
$cd, "\@{$dt} >= $cv->[0] && \@{$dt} <= $cv->[1]"); |
|
61
|
|
|
|
|
|
|
} |
|
62
|
|
|
|
|
|
|
} elsif ($which eq 'has') { |
|
63
|
6
|
|
|
|
|
23
|
$c->add_runtime_module($cd, $cd->{args}{dump_module}); |
|
64
|
|
|
|
|
|
|
$c->add_ccl($cd, "do { my \$_sahv_ct_str = ".$c->expr_dump($cd, $ct)."; my \$_sahv_res = 0; " . |
|
65
|
|
|
|
|
|
|
"for my \$_sahv_el (\@{ $dt }) { my \$_sahv_el_str = ".$c->expr_dump($cd, "\$_sahv_el")."; ". |
|
66
|
|
|
|
|
|
|
"if (\$_sahv_ct_str eq \$_sahv_el_str) { \$_sahv_res = 1; last } } \$_sahv_res }"); |
|
67
|
19
|
|
|
|
|
60
|
} elsif ($which eq 'each_index') { |
|
68
|
19
|
|
|
|
|
64
|
$self_th->set_tmp_data_term($cd) if $cd->{args}{data_term_includes_topic_var}; |
|
69
|
|
|
|
|
|
|
$self_th->gen_each($cd, "0..\@{$cd->{data_term}}-1", '_', '$_'); |
|
70
|
|
|
|
|
|
|
$self_th->restore_data_term($cd) if $cd->{args}{data_term_includes_topic_var}; |
|
71
|
|
|
|
|
|
|
} elsif ($which eq 'each_elem') { |
|
72
|
6
|
50
|
|
|
|
14
|
$self_th->set_tmp_data_term($cd) if $cd->{args}{data_term_includes_topic_var}; |
|
73
|
6
|
|
|
|
|
21
|
$self_th->gen_each($cd, "0..\@{$cd->{data_term}}-1", '_', "$cd->{data_term}\->[\$_]"); |
|
74
|
6
|
50
|
|
|
|
25
|
$self_th->restore_data_term($cd) if $cd->{args}{data_term_includes_topic_var}; |
|
75
|
|
|
|
|
|
|
} elsif ($which eq 'check_each_index') { |
|
76
|
31
|
100
|
|
|
|
103
|
$self_th->compiler->_die_unimplemented_clause($cd); |
|
77
|
31
|
|
|
|
|
164
|
} elsif ($which eq 'check_each_elem') { |
|
78
|
31
|
100
|
|
|
|
162
|
$self_th->compiler->_die_unimplemented_clause($cd); |
|
79
|
|
|
|
|
|
|
} elsif ($which eq 'uniq') { |
|
80
|
0
|
|
|
|
|
0
|
$self_th->compiler->_die_unimplemented_clause($cd); |
|
81
|
|
|
|
|
|
|
} elsif ($which eq 'exists') { |
|
82
|
0
|
|
|
|
|
0
|
$self_th->compiler->_die_unimplemented_clause($cd); |
|
83
|
|
|
|
|
|
|
} |
|
84
|
0
|
|
|
|
|
0
|
} |
|
85
|
|
|
|
|
|
|
|
|
86
|
0
|
|
|
|
|
0
|
my ($self_th, $cd) = @_; |
|
87
|
|
|
|
|
|
|
my $c = $self_th->compiler; |
|
88
|
|
|
|
|
|
|
my $cv = $cd->{cl_value}; |
|
89
|
|
|
|
|
|
|
my $dt = $cd->{data_term}; |
|
90
|
|
|
|
|
|
|
|
|
91
|
30
|
|
|
30
|
0
|
75
|
local $cd->{_subdata_level} = $cd->{_subdata_level} + 1; |
|
92
|
30
|
|
|
|
|
88
|
|
|
93
|
30
|
|
|
|
|
120
|
my $jccl; |
|
94
|
30
|
|
|
|
|
50
|
{ |
|
95
|
|
|
|
|
|
|
local $cd->{ccls} = []; |
|
96
|
30
|
|
|
|
|
64
|
|
|
97
|
|
|
|
|
|
|
my $cdef = $cd->{clset}{"elems.create_default"} // 1; |
|
98
|
30
|
|
|
|
|
40
|
delete $cd->{uclset}{"elems.create_default"}; |
|
99
|
|
|
|
|
|
|
|
|
100
|
30
|
|
|
|
|
39
|
for my $i (0..@$cv-1) { |
|
|
30
|
|
|
|
|
49
|
|
|
101
|
|
|
|
|
|
|
local $cd->{spath} = [@{$cd->{spath}}, $i]; |
|
102
|
30
|
|
100
|
|
|
90
|
my $nsch = $c->main->normalize_schema($cv->[$i]); |
|
103
|
30
|
|
|
|
|
48
|
my $edt = "$dt\->[$i]"; |
|
104
|
|
|
|
|
|
|
my %iargs = %{$cd->{args}}; |
|
105
|
30
|
|
|
|
|
82
|
$iargs{outer_cd} = $cd; |
|
106
|
60
|
|
|
|
|
98
|
$iargs{data_name} = "$cd->{args}{data_name}_$i"; |
|
|
60
|
|
|
|
|
158
|
|
|
107
|
60
|
|
|
|
|
193
|
$iargs{data_term} = $edt; |
|
108
|
60
|
|
|
|
|
2312
|
$iargs{schema} = $nsch; |
|
109
|
60
|
|
|
|
|
80
|
$iargs{schema_is_normalized} = 1; |
|
|
60
|
|
|
|
|
730
|
|
|
110
|
60
|
|
|
|
|
178
|
$iargs{cache} = $cd->{args}{cache}; |
|
111
|
60
|
|
|
|
|
126
|
$iargs{indent_level}++; |
|
112
|
60
|
|
|
|
|
104
|
my $icd = $c->compile(%iargs); |
|
113
|
60
|
|
|
|
|
77
|
my @code = ( |
|
114
|
60
|
|
|
|
|
110
|
($c->indent_str($cd), "(\$_sahv_dpath->[-1] = $i),\n") x !!$cd->{use_dpath}, |
|
115
|
60
|
|
|
|
|
109
|
$icd->{result}, "\n", |
|
116
|
60
|
|
|
|
|
83
|
); |
|
117
|
60
|
|
|
|
|
316
|
my $ires = join("", @code); |
|
118
|
|
|
|
|
|
|
local $cd->{_debug_ccl_note} = "elem: $i"; |
|
119
|
|
|
|
|
|
|
if ($cdef && defined($nsch->[1]{default})) { |
|
120
|
60
|
|
|
|
|
313
|
$c->add_ccl($cd, $ires); |
|
121
|
|
|
|
|
|
|
} else { |
|
122
|
60
|
|
|
|
|
576
|
$c->add_ccl($cd, "\@{$dt} < ".($i+1)." || ($ires)"); |
|
123
|
60
|
|
|
|
|
139
|
} |
|
124
|
60
|
100
|
100
|
|
|
225
|
} |
|
125
|
18
|
|
|
|
|
55
|
$jccl = $c->join_ccls( |
|
126
|
|
|
|
|
|
|
$cd, $cd->{ccls}, {err_msg => ''}); |
|
127
|
42
|
|
|
|
|
177
|
} |
|
128
|
|
|
|
|
|
|
$c->add_ccl($cd, $jccl, {subdata=>1}); |
|
129
|
|
|
|
|
|
|
} |
|
130
|
|
|
|
|
|
|
|
|
131
|
30
|
|
|
|
|
114
|
1; |
|
132
|
|
|
|
|
|
|
# ABSTRACT: perl's type handler for type "array" |
|
133
|
30
|
|
|
|
|
150
|
|
|
134
|
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
=pod |
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
=encoding UTF-8 |
|
138
|
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
=head1 NAME |
|
140
|
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
Data::Sah::Compiler::perl::TH::array - perl's type handler for type "array" |
|
142
|
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
=head1 VERSION |
|
144
|
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
This document describes version 0.913 of Data::Sah::Compiler::perl::TH::array (from Perl distribution Data-Sah), released on 2022-09-30. |
|
146
|
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
=for Pod::Coverage ^(clause_.+|superclause_.+)$ |
|
148
|
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
=head1 HOMEPAGE |
|
150
|
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
Please visit the project's homepage at L<https://metacpan.org/release/Data-Sah>. |
|
152
|
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
=head1 SOURCE |
|
154
|
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
Source repository is at L<https://github.com/perlancar/perl-Data-Sah>. |
|
156
|
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=head1 AUTHOR |
|
158
|
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
perlancar <perlancar@cpan.org> |
|
160
|
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
=head1 CONTRIBUTING |
|
162
|
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
To contribute, you can send patches by email/via RT, or send pull requests on |
|
165
|
|
|
|
|
|
|
GitHub. |
|
166
|
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
Most of the time, you don't need to build the distribution yourself. You can |
|
168
|
|
|
|
|
|
|
simply modify the code, then test via: |
|
169
|
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
% prove -l |
|
171
|
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
If you want to build the distribution (e.g. to try to install it locally on your |
|
173
|
|
|
|
|
|
|
system), you can install L<Dist::Zilla>, |
|
174
|
|
|
|
|
|
|
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>, |
|
175
|
|
|
|
|
|
|
L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other |
|
176
|
|
|
|
|
|
|
Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond |
|
177
|
|
|
|
|
|
|
that are considered a bug and can be reported to me. |
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
180
|
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
This software is copyright (c) 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 by perlancar <perlancar@cpan.org>. |
|
182
|
|
|
|
|
|
|
|
|
183
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
184
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
185
|
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
=head1 BUGS |
|
187
|
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Sah> |
|
189
|
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
|
191
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
|
192
|
|
|
|
|
|
|
feature. |
|
193
|
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
=cut |