annotate Lib/IMPL/Web/QueryHandler/JsonFormat.pm @ 128:08753833173d

Fixed a error handling issue in JSON output: errors are correctly transfered A complete documentation for a IMPL::Web::Application::ControllerUnit
author wizard
date Tue, 15 Jun 2010 02:41:07 +0400
parents 41e9d9ea3db5
children 44977efed303
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
119
8114aaa7feba Json format
wizard
parents:
diff changeset
1 use strict;
8114aaa7feba Json format
wizard
parents:
diff changeset
2 package IMPL::Transform::Json;
8114aaa7feba Json format
wizard
parents:
diff changeset
3
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
4 package IMPL::Web::QueryHandler::JsonFormat;
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
5 use base qw(IMPL::Web::QueryHandler);
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
6 use Error qw(:try);
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
7 use JSON;
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
8
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
9 sub Process {
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
10 my ($this,$action,$nextHandler) = @_;
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
11
119
8114aaa7feba Json format
wizard
parents:
diff changeset
12 my $result;
8114aaa7feba Json format
wizard
parents:
diff changeset
13 my $t = new IMPL::Transform::Json;
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
14
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
15 try {
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
16 $result = $nextHandler->();
119
8114aaa7feba Json format
wizard
parents:
diff changeset
17 $result = [$result] unless ref $result;
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
18 } otherwise {
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
19 my $err = shift;
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
20 $result = { error => $err };
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
21 };
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
22
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
23 $action->response->contentType('text/javascript');
119
8114aaa7feba Json format
wizard
parents:
diff changeset
24
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
25 my $hout = $action->response->streamBody;
119
8114aaa7feba Json format
wizard
parents:
diff changeset
26 print $hout to_json( $t->Transform($result), {pretty => 1} );
8114aaa7feba Json format
wizard
parents:
diff changeset
27 }
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
28
119
8114aaa7feba Json format
wizard
parents:
diff changeset
29 package IMPL::Transform::Json;
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
30
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
31 use base qw(IMPL::Transform);
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
32 use IMPL::Class::Property;
119
8114aaa7feba Json format
wizard
parents:
diff changeset
33 my %propListCache;
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
34
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
35 our %CTOR = (
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
36 'IMPL::Transform' => sub {
119
8114aaa7feba Json format
wizard
parents:
diff changeset
37 ARRAY => sub {
8114aaa7feba Json format
wizard
parents:
diff changeset
38 my ($this,$object) = @_;
8114aaa7feba Json format
wizard
parents:
diff changeset
39
8114aaa7feba Json format
wizard
parents:
diff changeset
40 return [
8114aaa7feba Json format
wizard
parents:
diff changeset
41 map { $this->Transform($_) } @$object
8114aaa7feba Json format
wizard
parents:
diff changeset
42 ];
8114aaa7feba Json format
wizard
parents:
diff changeset
43 },
8114aaa7feba Json format
wizard
parents:
diff changeset
44 HASH => sub {
8114aaa7feba Json format
wizard
parents:
diff changeset
45 my ($this,$object) = @_;
8114aaa7feba Json format
wizard
parents:
diff changeset
46
8114aaa7feba Json format
wizard
parents:
diff changeset
47 return {
8114aaa7feba Json format
wizard
parents:
diff changeset
48 map { $_, $this->Transform($object->{$_}) } keys %$object
8114aaa7feba Json format
wizard
parents:
diff changeset
49 };
8114aaa7feba Json format
wizard
parents:
diff changeset
50 },
8114aaa7feba Json format
wizard
parents:
diff changeset
51 'IMPL::Object::List' => sub {
8114aaa7feba Json format
wizard
parents:
diff changeset
52 my ($this,$object) = @_;
8114aaa7feba Json format
wizard
parents:
diff changeset
53
8114aaa7feba Json format
wizard
parents:
diff changeset
54 return [
8114aaa7feba Json format
wizard
parents:
diff changeset
55 map { $this->Transform($_) } @$object
8114aaa7feba Json format
wizard
parents:
diff changeset
56 ];
8114aaa7feba Json format
wizard
parents:
diff changeset
57 },
8114aaa7feba Json format
wizard
parents:
diff changeset
58 -plain => sub {
8114aaa7feba Json format
wizard
parents:
diff changeset
59 $_[1];
8114aaa7feba Json format
wizard
parents:
diff changeset
60 },
8114aaa7feba Json format
wizard
parents:
diff changeset
61 -default => sub {
8114aaa7feba Json format
wizard
parents:
diff changeset
62 my ($this,$object) = @_;
8114aaa7feba Json format
wizard
parents:
diff changeset
63
8114aaa7feba Json format
wizard
parents:
diff changeset
64 return "$object" unless $object->isa('IMPL::Object::Abstract');
8114aaa7feba Json format
wizard
parents:
diff changeset
65
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
66 if ( $object->isa(typeof IMPL::Exception) ) {
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
67 return {
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
68 type => $object->typeof,
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
69 message => $object->Message,
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
70 arguments => $this->Transform(scalar $object->Args)
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
71 };
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
72 }
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 120
diff changeset
73
119
8114aaa7feba Json format
wizard
parents:
diff changeset
74 my $propList = $propListCache{ref $object};
8114aaa7feba Json format
wizard
parents:
diff changeset
75 unless ( $propList ) {
8114aaa7feba Json format
wizard
parents:
diff changeset
76 my %props = map {
8114aaa7feba Json format
wizard
parents:
diff changeset
77 $_->Name, (ref $_->Mutators ? 0 : ($_->Mutators & prop_list))
8114aaa7feba Json format
wizard
parents:
diff changeset
78 } $object->get_meta('IMPL::Class::PropertyInfo',sub { $_->Access == IMPL::Class::Member::MOD_PUBLIC and $_->Name !~ /^_/}, 1 );
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
79
119
8114aaa7feba Json format
wizard
parents:
diff changeset
80 $propListCache{ref $object} = $propList = \%props;
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
81 }
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
82
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
83 return {
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
84 map {
119
8114aaa7feba Json format
wizard
parents:
diff changeset
85 $_, $propList->{$_} ? $this->Transform([$object->$_()]) : $this->Transform(scalar $object->$_());
8114aaa7feba Json format
wizard
parents:
diff changeset
86 } keys %$propList
118
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
87 };
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
88 }
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
89 }
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
90 );
79cdd6c86409 JSON support (experimental)
wizard
parents:
diff changeset
91
119
8114aaa7feba Json format
wizard
parents:
diff changeset
92 1;