File Coverage

lib/CPAN/Kwalify.pm
Criterion Covered Total %
statement 9 56 16.0
branch 0 22 0.0
condition 0 3 0.0
subroutine 3 6 50.0
pod 1 1 100.0
total 13 88 14.7


line stmt bran cond sub pod time code
1             =head1 NAME
2              
3             CPAN::Kwalify - Interface between CPAN.pm and Kwalify.pm
4              
5             =head1 SYNOPSIS
6              
7             use CPAN::Kwalify;
8             validate($schema_name, $data, $file, $doc);
9              
10             =head1 DESCRIPTION
11              
12             =over
13              
14             =item _validate($schema_name, $data, $file, $doc)
15              
16             $schema_name is the name of a supported schema. Currently only
17             C is supported. $data is the data to be validated. $file
18             is the absolute path to the file the data are coming from. $doc is the
19             index of the document within $doc that is to be validated. The last
20             two arguments are only there for better error reporting.
21              
22             Relies on being called from within CPAN.pm.
23              
24             Dies if something fails. Does not return anything useful.
25              
26             =item yaml($schema_name)
27              
28             Returns the YAML text of that schema. Dies if something fails.
29              
30             =back
31              
32             =head1 AUTHOR
33              
34             Andreas Koenig C<< >>
35              
36             =head1 LICENSE
37              
38             This program is free software; you can redistribute it and/or
39             modify it under the same terms as Perl itself.
40              
41             See L
42              
43              
44              
45             =cut
46              
47              
48 3     3   2278 use strict;
  3         5  
  3         120  
49              
50             package CPAN::Kwalify;
51 3     3   12 use vars qw($VERSION $VAR1);
  3         7  
  3         166  
52             $VERSION = "5.50";
53              
54 3     3   13 use File::Spec ();
  3         5  
  3         1354  
55              
56             my %vcache = ();
57              
58             my $schema_loaded = {};
59              
60             sub _validate {
61 0     0     my($schema_name,$data,$abs,$y) = @_;
62 0           my $yaml_module = CPAN->_yaml_module;
63 0 0 0       if (
64             $CPAN::META->has_inst($yaml_module)
65             &&
66             $CPAN::META->has_inst("Kwalify")
67             ) {
68 0           my $load = UNIVERSAL::can($yaml_module,"Load");
69 0 0         unless ($schema_loaded->{$schema_name}) {
70 0           eval {
71 0           my $schema_yaml = yaml($schema_name);
72 0           $schema_loaded->{$schema_name} = $load->($schema_yaml);
73             };
74 0 0         if ($@) {
75             # we know that YAML.pm 0.62 cannot parse the schema,
76             # so we try a fallback
77 0           my $content = do {
78 0           my $path = __FILE__;
79 0           $path =~ s/\.pm$//;
80 0           $path = File::Spec->catfile($path, "$schema_name.dd");
81 0           local *FH;
82 0 0         open FH, $path or die "Could not open '$path': $!";
83 0           local $/;
84 0           ;
85             };
86 0           $VAR1 = undef;
87 0           eval $content;
88 0 0         if (my $err = $@) {
89 0           die "parsing of '$schema_name.dd' failed: $err";
90             }
91 0           $schema_loaded->{$schema_name} = $VAR1;
92             }
93             }
94             }
95 0 0         if (my $schema = $schema_loaded->{$schema_name}) {
96 0           my $mtime = (stat $abs)[9];
97 0           for my $k (keys %{$vcache{$abs}}) {
  0            
98 0 0         delete $vcache{$abs}{$k} unless $k eq $mtime;
99             }
100 0 0         return if $vcache{$abs}{$mtime}{$y}++;
101 0           eval { Kwalify::validate($schema, $data) };
  0            
102 0 0         if (my $err = $@) {
103 0           my $info = {}; yaml($schema_name, info => $info);
  0            
104 0           die "validation of distropref '$abs'[$y] against schema '$info->{path}' failed: $err";
105             }
106             }
107             }
108              
109             sub _clear_cache {
110 0     0     %vcache = ();
111             }
112              
113             sub yaml {
114 0     0 1   my($schema_name, %opt) = @_;
115 0           my $content = do {
116 0           my $path = __FILE__;
117 0           $path =~ s/\.pm$//;
118 0           $path = File::Spec->catfile($path, "$schema_name.yml");
119 0 0         if ($opt{info}) {
120 0           $opt{info}{path} = $path;
121             }
122 0           local *FH;
123 0 0         open FH, $path or die "Could not open '$path': $!";
124 0           local $/;
125 0           ;
126             };
127 0           return $content;
128             }
129              
130             1;
131              
132             # Local Variables:
133             # mode: cperl
134             # cperl-indent-level: 4
135             # End:
136