summaryrefslogtreecommitdiff
path: root/lib/MooseX/Net/API/Role/Serialization.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-07-16 16:12:32 +0200
committerfranck cuny <franck@lumberjaph.net>2010-07-16 16:12:32 +0200
commit5fdee9e79b5b6a72522bee59e4bd7c62506a43c7 (patch)
tree9e9f16e674310d95f7c39cea92e87aaa57d67746 /lib/MooseX/Net/API/Role/Serialization.pm
parentanother fix for path (diff)
downloadmoosex-net-api-5fdee9e79b5b6a72522bee59e4bd7c62506a43c7.tar.gz
remove tests and old lib; use base net::http::api; DEPRECATED
Diffstat (limited to 'lib/MooseX/Net/API/Role/Serialization.pm')
-rw-r--r--lib/MooseX/Net/API/Role/Serialization.pm103
1 files changed, 0 insertions, 103 deletions
diff --git a/lib/MooseX/Net/API/Role/Serialization.pm b/lib/MooseX/Net/API/Role/Serialization.pm
deleted file mode 100644
index f10a101..0000000
--- a/lib/MooseX/Net/API/Role/Serialization.pm
+++ /dev/null
@@ -1,103 +0,0 @@
-package MooseX::Net::API::Role::Serialization;
-
-# ABSTRACT: do (de)serialization
-
-use 5.010;
-
-use Try::Tiny;
-use Moose::Role;
-use MooseX::Net::API::Error;
-
-has serializers => (
- traits => ['Hash'],
- is => 'rw',
- isa => 'HashRef[MooseX::Net::API::Parser]',
- default => sub { {} },
- auto_deref => 1,
- handles => {
- _add_serializer => 'set',
- _get_serializer => 'get',
- },
-);
-
-sub get_content {
- my ($self, $result) = @_;
-
- return undef unless $result->content;
-
- my $content_type = $self->api_format // $result->header('Content-Type');
- $content_type =~ s/(;.+)$//;
-
- my $content;
- if ($result->is_success && $result->code != 204) {
- my @deserialize_order = ($content_type, $self->api_format);
- $content = $self->deserialize($result->content, \@deserialize_order);
-
- if (!$content) {
- die MooseX::Net::API::Error->new(
- reason => "can't deserialize content",
- http_error => $result,
- );
- }
- }
- $content;
-}
-
-sub deserialize {
- my ($self, $content, $list_of_formats) = @_;
-
- foreach my $format (@$list_of_formats) {
- my $s = $self->_get_serializer($format)
- || $self->_load_serializer($format);
- next unless $s;
- my $result = try { $s->decode($content) };
- return $result if $result;
- }
-}
-
-sub serialize {
- my ($self, $content) = @_;
- my $s = $self->_get_serializer($self->api_format)
- || $self->_load_serializer();
- my $result = try { $s->encode($content) };
- return $result if $result;
-}
-
-sub _load_serializer {
- my $self = shift;
- my $format = shift || $self->api_format;
- my $parser = "MooseX::Net::API::Parser::" . uc($format);
- if (Class::MOP::load_class($parser)) {
- my $o = $parser->new;
- $self->_add_serializer($format => $o);
- return $o;
- }
-}
-
-1;
-
-=head1 SYNOPSIS
-
-=head1 DESCRIPTION
-
-=head2 ATTRIBUTES
-
-=over 4
-
-=item B<serializers>
-
-=back
-
-=head2 METHODS
-
-=over 4
-
-=item B<get_content>
-
-=item B<serialize>
-
-=item B<deserialize>
-
-=back
-99: hit eof while in pod documentation (no =cut seen)
- this can cause trouble with some pod utilities