support Cpanel::JSON::XS and JSON::MaybeXS
[p5sagit/Config-Any.git] / lib / Config / Any / JSON.pm
CommitLineData
f0e3c221 1package Config::Any::JSON;
2
3use strict;
4use warnings;
5
dcfb1d1d 6use base 'Config::Any::Base';
7
f0e3c221 8=head1 NAME
9
10Config::Any::JSON - Load JSON config files
11
12=head1 DESCRIPTION
13
14Loads JSON files. Example:
15
16 {
17 "name": "TestApp",
18 "Controller::Foo": {
19 "foo": "bar"
20 },
21 "Model::Baz": {
22 "qux": "xyzzy"
23 }
24 }
25
26=head1 METHODS
27
28=head2 extensions( )
29
30return an array of valid extensions (C<json>, C<jsn>).
31
32=cut
33
34sub extensions {
35 return qw( json jsn );
36}
37
38=head2 load( $file )
39
40Attempts to load C<$file> as a JSON file.
41
42=cut
43
44sub load {
45 my $class = shift;
46 my $file = shift;
47
3a27e96d 48 open( my $fh, '<', $file ) or die $!;
49 binmode $fh;
f0e3c221 50 my $content = do { local $/; <$fh> };
51 close $fh;
52
837fdc4c 53 if ( eval { require Cpanel::JSON::XS } ) {
54 my $decoder = Cpanel::JSON::XS->new->utf8->relaxed;
55 return $decoder->decode( $content );
56 }
57 elsif ( eval { require JSON::MaybeXS } ) {
58 my $decoder = JSON::MaybeXS::JSON()->new->utf8->relaxed;
59 return $decoder->decode( $content );
60 }
61 elsif ( eval { require JSON::DWIW } ) {
49ae6583 62 my $decoder = JSON::DWIW->new;
63 my ( $data, $error ) = $decoder->from_json( $content );
64 die $error if $error;
65 return $data;
66 }
4473d906 67 elsif ( eval { require JSON::XS } ) {
3a27e96d 68 my $decoder = JSON::XS->new->utf8->relaxed;
49ae6583 69 return $decoder->decode( $content );
f0e3c221 70 }
4473d906 71 elsif ( eval { require JSON::Syck } ) {
3a27e96d 72 require Encode;
73 return JSON::Syck::Load( Encode::decode('UTF-8', $content ) );
f0e3c221 74 }
4473d906 75 elsif ( eval { require JSON::PP; JSON::PP->VERSION( 2 ); } ) {
3a27e96d 76 my $decoder = JSON::PP->new->utf8->relaxed;
a8ffcd3b 77 return $decoder->decode( $content );
78 }
d49610ab 79 require JSON;
4473d906 80 if ( eval { JSON->VERSION( 2 ) } ) {
3a27e96d 81 return JSON::decode_json( $content );
4473d906 82 }
83 else {
84 return JSON::jsonToObj( $content );
85 }
f0e3c221 86}
87
dcfb1d1d 88=head2 requires_any_of( )
72628dc7 89
49ae6583 90Specifies that this modules requires one of, L<JSON::DWIW>, L<JSON::XS>,
91L<JSON::Syck> or L<JSON> in order to work.
72628dc7 92
93=cut
94
a8ffcd3b 95sub requires_any_of { 'JSON::DWIW', 'JSON::XS', 'JSON::Syck', 'JSON::PP', 'JSON' }
72628dc7 96
f0e3c221 97=head1 AUTHOR
98
a918b0b8 99Brian Cassidy E<lt>bricas@cpan.orgE<gt>
f0e3c221 100
101=head1 COPYRIGHT AND LICENSE
102
3d43e104 103Copyright 2006-2016 by Brian Cassidy
f0e3c221 104
105This library is free software; you can redistribute it and/or modify
106it under the same terms as Perl itself.
107
108=head1 SEE ALSO
109
110=over 4
111
112=item * L<Catalyst>
113
114=item * L<Config::Any>
115
49ae6583 116=item * L<JSON::DWIW>
117
118=item * L<JSON::XS>
f0e3c221 119
120=item * L<JSON::Syck>
121
49ae6583 122=item * L<JSON>
d49610ab 123
f0e3c221 124=back
125
126=cut
127
1281;