convert to Dist::Zilla
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Util.pm
CommitLineData
69b45b7d 1package MooseX::Storage::Util;
2use Moose qw(confess blessed);
3
4use MooseX::Storage::Engine ();
6f491fae 5use utf8 ();
69b45b7d 6
69b45b7d 7sub peek {
8 my ($class, $data, %options) = @_;
ec725183 9
69b45b7d 10 if (exists $options{'format'}) {
ec725183 11
69b45b7d 12 my $inflater = $class->can('_inflate_' . lc($options{'format'}));
ec725183 13
69b45b7d 14 (defined $inflater)
15 || confess "No inflater found for " . $options{'format'};
ec725183 16
69b45b7d 17 $data = $class->$inflater($data);
18 }
19
20 (ref($data) && ref($data) eq 'HASH' && !blessed($data))
21 || confess "The data has to be a HASH reference, but not blessed";
ec725183 22
69b45b7d 23 $options{'key'} ||= $MooseX::Storage::Engine::CLASS_MARKER;
ec725183 24
69b45b7d 25 return $data->{$options{'key'}};
26
27}
28
29sub _inflate_json {
30 my ($class, $json) = @_;
8f677182 31
32 eval { require JSON::Any; JSON::Any->import };
ec725183 33 confess "Could not load JSON module because : $@" if $@;
34
35 utf8::encode($json) if utf8::is_utf8($json);
36
69b45b7d 37 my $data = eval { JSON::Any->jsonToObj($json) };
38 if ($@) {
39 confess "There was an error when attempting to peek at JSON: $@";
40 }
ec725183 41
69b45b7d 42 return $data;
43}
44
45sub _inflate_yaml {
46 my ($class, $yaml) = @_;
ec725183 47
48 require Best;
021c860a 49 eval { Best->import([[ qw[YAML::Syck YAML] ]]) };
ec725183 50 confess "Could not load YAML module because : $@" if $@;
51
69b45b7d 52 my $inflater = Best->which('YAML::Syck')->can('Load');
ec725183 53
69b45b7d 54 (defined $inflater)
55 || confess "Could not load the YAML inflator";
ec725183 56
69b45b7d 57 my $data = eval { $inflater->($yaml) };
58 if ($@) {
59 confess "There was an error when attempting to peek at YAML : $@";
60 }
61 return $data;
62}
63
f82612bc 64no Moose::Role;
65
69b45b7d 661;
67
68__END__
69
70=pod
71
72=head1 NAME
73
74MooseX::Storage::Util - A MooseX::Storage swiss-army chainsaw
75
76=head1 DESCRIPTION
77
ec725183 78This module provides a set of tools, some sharp and focused,
69b45b7d 79others more blunt and crude. But no matter what, they are useful
ec725183 80bits to have around when dealing with MooseX::Storage code.
69b45b7d 81
82=head1 METHODS
83
ec725183 84All the methods in this package are class methods and should
85be called appropriately.
69b45b7d 86
87=over 4
88
89=item B<peek ($data, %options)>
90
ec725183 91This method will help you to verify that the serialized class you
92have gotten is what you expect it to be before you actually
69b45b7d 93unfreeze/unpack it.
94
95The C<$data> can be either a perl HASH ref or some kind of serialized
96data (JSON, YAML, etc.).
97
98The C<%options> are as follows:
99
100=over 4
101
102=item I<format>
103
104If this is left blank, we assume that C<$data> is a plain perl HASH ref
105otherwise we attempt to inflate C<$data> based on the value of this option.
106
107Currently only JSON and YAML are supported here.
108
109=item I<key>
110
ec725183 111The default is to try and extract the class name, but if you want to check
69b45b7d 112another key in the data, you can set this option. It will return the value
113found in the key for you.
114
115=back
116
117=back
118
119=head2 Introspection
120
121=over 4
122
123=item B<meta>
124
125=back
126
127=head1 TODO
128
129Add more stuff to this module :)
130
131=head1 BUGS
132
ec725183 133All complex software has bugs lurking in it, and this module is no
69b45b7d 134exception. If you find a bug please either email me, or add the bug
135to cpan-RT.
136
137=head1 AUTHOR
138
139Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
140
141=head1 COPYRIGHT AND LICENSE
142
1f3074ea 143Copyright 2007-2008 by Infinity Interactive, Inc.
69b45b7d 144
145L<http://www.iinteractive.com>
146
147This library is free software; you can redistribute it and/or modify
148it under the same terms as Perl itself.
149
150=cut