package CPAN::Testers::WWW::Reports::Parser::JSON; use 5.006; use strict; use warnings; use vars qw($VERSION); $VERSION = '0.03'; #---------------------------------------------------------------------------- # Library Modules use JSON::XS; #---------------------------------------------------------------------------- # Variables #---------------------------------------------------------------------------- # The Application Programming Interface sub new { my $class = shift; my $self = {}; bless $self, $class; return $self; } sub DESTROY { my $self = shift; } # full data set methods sub register { my $self = shift; my %hash = @_; $self->{file} = $hash{file}; $self->{data} = $hash{data}; } sub raw_data { my $self = shift; $self->{data} = $self->_load_file($self->{file}) if($self->{file}); return decode_json($self->{data}); } sub _load_file { my ($self,$file) = @_; my $fh; if (ref $file eq 'GLOB') { $fh = $file; } else { open $fh, $file or die "Can't open file [$file]: $!\n"; } return do { local $/; <$fh> }; } q{ Is all that we or seem, but a dream within a dream ? }; __END__ =head1 NAME CPAN::Testers::WWW::Reports::Parser::JSON - CPAN Testers JSON parser =head1 SYNOPSIS use CPAN::Testers::WWW::Reports::Parser::JSON; my $obj = CPAN::Testers::WWW::Reports::Parser::JSON->new(); $obj->register( file => $file ); # local file name $obj->register( data => $data ); # reference to a data block my $data = $obj->raw_data(); =head1 DESCRIPTION This distribution is used to extract the data from a JSON file containing metadata regarding reports submitted by CPAN Testers, and available from the CPAN Testers website. =head1 INTERFACE =head2 The Constructor =over =item * new Instatiates the object. =back =head2 Public Methods =over =item * register =item * raw_data =back =head1 BUGS, PATCHES & FIXES There are no known bugs at the time of this release. However, if you spot a bug or are experiencing difficulties, that is not explained within the POD documentation, please send bug reports and patches to the RT Queue (see below). Fixes are dependant upon their severity and my availablity. Should a fix not be forthcoming, please feel free to (politely) remind me. RT: http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Testers-WWW-Reports-Parser =head1 SEE ALSO F, F, F, F =head1 AUTHOR Barbie 2009-present =head1 COPYRIGHT AND LICENSE Copyright (C) 2009-2010 Barbie This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut