annotate Lib/IMPL/Web/Application/ControllerUnit.pm @ 172:068acfe903c3

corrected schema resolution mechanism
author sourcer
date Mon, 20 Jun 2011 23:42:44 +0400
parents 59e5fcb59d86
children aaab45153411
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
1 use strict;
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
2 package IMPL::Web::Application::ControllerUnit;
166
4267a2ac3d46 Added Class::Template,
wizard
parents: 160
diff changeset
3 use parent qw(IMPL::Object);
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
4
c13a215508ca Refactoring,
wizard
parents:
diff changeset
5 use IMPL::Class::Property;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
6 use IMPL::DOM::Transform::PostToDOM;
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
7 use IMPL::DOM::Schema;
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
8 use Class::Inspector;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
9 use File::Spec;
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
10 use Sub::Name;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
11
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
12 use constant {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
13 CONTROLLER_METHODS => 'controller_methods',
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
14 STATE_CORRECT => 'correct',
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
15 STATE_NEW => 'new',
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
16 STATE_INVALID => 'invalid'
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
17 };
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
18
c13a215508ca Refactoring,
wizard
parents:
diff changeset
19 BEGIN {
c13a215508ca Refactoring,
wizard
parents:
diff changeset
20 public property action => prop_get | owner_set;
c13a215508ca Refactoring,
wizard
parents:
diff changeset
21 public property application => prop_get | owner_set;
c13a215508ca Refactoring,
wizard
parents:
diff changeset
22 public property query => prop_get | owner_set;
144
b56ebc31bf18 Empty nodes no more created while transforming a post request to the DOM document
wizard
parents: 142
diff changeset
23 public property response => prop_get | owner_set;
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
24 public property formData => prop_get | owner_set;
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
25 public property formSchema => prop_get | owner_set;
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
26 public property formErrors => prop_get | owner_set;
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
27 }
c13a215508ca Refactoring,
wizard
parents:
diff changeset
28
170
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
29 my %publicProps = map {$_->Name , 1} __PACKAGE__->get_meta(typeof IMPL::Class::PropertyInfo);
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
30
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
31 __PACKAGE__->class_data(CONTROLLER_METHODS,{});
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
32
170
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
33 our @schemaInc;
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
34
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
35 sub CTOR {
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
36 my ($this,$action,$args) = @_;
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
37
c13a215508ca Refactoring,
wizard
parents:
diff changeset
38 $this->action($action);
c13a215508ca Refactoring,
wizard
parents:
diff changeset
39 $this->application($action->application);
c13a215508ca Refactoring,
wizard
parents:
diff changeset
40 $this->query($action->query);
144
b56ebc31bf18 Empty nodes no more created while transforming a post request to the DOM document
wizard
parents: 142
diff changeset
41 $this->response($action->response);
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
42
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
43 $this->$_($args->{$_}) foreach qw(formData formSchema formErrors);
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
44 }
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
45
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
46 sub unitNamespace() {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
47 ""
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
48 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
49
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
50 sub transactions {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
51 my ($self,%methods) = @_;
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
52
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
53 while (my ($method,$info) = each %methods) {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
54 if ($info and ref $info ne 'HASH') {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
55 warn "Bad transaction $method description";
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
56 $info = {};
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
57 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
58
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
59 $info->{wrapper} = 'TransactionWrapper';
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
60 $info->{method} ||= $method;
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
61 $self->class_data(CONTROLLER_METHODS)->{$method} = $info;
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
62 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
63 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
64
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
65 sub forms {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
66 my ($self,%forms) = @_;
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
67
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
68 while ( my ($method,$info) = each %forms ) {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
69 die new IMPL::Exception("A method doesn't exists in the controller",$self,$method) unless $self->can($method);
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
70 if ( not ref $info ) {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
71 $self->class_data(CONTROLLER_METHODS)->{$method} = {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
72 wrapper => 'FormWrapper',
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
73 schema => $info,
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
74 method => $method
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
75 };
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
76 } elsif (ref $info eq 'HASH') {
148
e6447ad85cb4 DOM objects now have a schema and schemaSource properties
wizard
parents: 146
diff changeset
77 $info->{wrapper} = 'FormWrapper';
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
78 $info->{method} ||= $method;
148
e6447ad85cb4 DOM objects now have a schema and schemaSource properties
wizard
parents: 146
diff changeset
79
e6447ad85cb4 DOM objects now have a schema and schemaSource properties
wizard
parents: 146
diff changeset
80 $self->class_data(CONTROLLER_METHODS)->{$method} = $info;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
81 } else {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
82 die new IMPL::Exception("Unsupported method information",$self,$method);
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
83 }
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
84 }
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
85 }
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
86
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
87 sub InvokeAction {
c13a215508ca Refactoring,
wizard
parents:
diff changeset
88 my ($self,$method,$action) = @_;
c13a215508ca Refactoring,
wizard
parents:
diff changeset
89
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
90 if (my $methodInfo = $self->class_data(CONTROLLER_METHODS)->{$method}) {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
91 if (my $wrapper = $methodInfo->{wrapper}) {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
92 return $self->$wrapper($method,$action,$methodInfo);
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
93 } else {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
94 return $self->TransactionWrapper($method,$action,$methodInfo);
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
95 }
110
c13a215508ca Refactoring,
wizard
parents:
diff changeset
96 } else {
c13a215508ca Refactoring,
wizard
parents:
diff changeset
97 die new IMPL::InvalidOperationException("Invalid method call",$self,$method);
c13a215508ca Refactoring,
wizard
parents:
diff changeset
98 }
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
99 }
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
100
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
101 sub MakeParams {
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
102 my ($this,$methodInfo) = @_;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
103
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
104 my $params;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
105 if ($params = $methodInfo->{parameters} and ref $params eq 'ARRAY') {
146
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
106 return map $this->ResolveParam($_,$methodInfo->{inflate}{$_}), @$params;
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
107 }
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
108 return();
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
109 }
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
110
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
111 sub ResolveParam {
146
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
112 my ($this,$param,$inflate) = @_;
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
113
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
114 if ( $param =~ /^::(\w+)$/ and $publicProps{$1}) {
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
115 return $this->$1();
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
116 } else {
146
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
117 my $value;
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
118 if ( my $rx = $inflate->{rx} ) {
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
119 $value = $this->action->param($param,$rx);
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
120 } else {
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
121 $value = $this->query->param($param);
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
122 }
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
123
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
124 if (my $method = $inflate->{method}) {
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
125 $value = $this->$method($value);
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
126 }
60fd224f3e3c fixed cgi parameters processing
wizard
parents: 144
diff changeset
127 return $value;
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
128 }
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
129 }
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
130
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
131 sub TransactionWrapper {
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
132 my ($self,$method,$action,$methodInfo) = @_;
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
133
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
134 my $unit = $self->new($action);
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
135 my $handler = $methodInfo->{method};
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
136 return $unit->$handler($unit->MakeParams($methodInfo));
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
137 }
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
138
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
139 sub FormWrapper {
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
140 my ($self,$method,$action,$methodInfo) = @_;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
141
171
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
142 my $schema = $methodInfo->{schema} ? $self->loadSchema($methodInfo->{schema}) : $self->unitSchema;
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
143
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
144 my $process = $action->query->param('process') || 0;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
145 my $form = $methodInfo->{form}
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
146 || $action->query->param('form')
171
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
147 || $method;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
148
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
149 my %result;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
150
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
151 my $transform = IMPL::DOM::Transform::PostToDOM->new(
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
152 undef,
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
153 $schema,
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
154 $form
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
155 );
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
156
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
157 my $handler = $methodInfo->{method};
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
158
138
c5bc900eefd3 IMPL::Web::Application: Fixed file uploading
wizard
parents: 134
diff changeset
159 $result{formName} = $form;
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
160 $result{formSchema} = $schema;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
161
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
162 if ($process) {
171
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
163 $result{formData} = $transform->Transform($action->query);
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
164 $result{formErrors} = $transform->Errors->as_list;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
165 if ($transform->Errors->Count) {
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
166 $result{state} = STATE_INVALID;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
167 } else {
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
168 $result{state} = STATE_CORRECT;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
169 my $unit = $self->new($action,\%result);
127
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
170
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
171 eval {
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
172 $result{result} = $unit->$handler($unit->MakeParams($methodInfo));
127
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
173 };
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
174 if (my $err = $@) {
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
175 $result{state} = STATE_INVALID;
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
176 if (eval { $err->isa(typeof IMPL::WrongDataException) } ) {
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
177 $result{formErrors} = $err->Args;
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
178 } else {
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
179 die $err;
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
180 }
0dce0470a3d8 In the IMPL::Web::ControllerUnit added the ability to notify a form about a wrong data from a transaction
wizard
parents: 126
diff changeset
181 }
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
182 }
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
183 } else {
171
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
184 if (my $initMethod = $methodInfo->{init}) {
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
185 my $unit = $self->new($action,\%result);
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
186 $result{formData} = $transform->Transform( $unit->$initMethod($unit->MakeParams($methodInfo)) );
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
187 } else {
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
188 $result{formData} = $transform->Transform($action->query);
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
189 }
59e5fcb59d86 Рсправления, изменена концепция веб-форм
sourcer
parents: 170
diff changeset
190
172
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
191 # ignore errors for new forms
068acfe903c3 corrected schema resolution mechanism
sourcer
parents: 171
diff changeset
192 #$result{formErrors} = $transform->Errors->as_list;
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
193 $result{state} = STATE_NEW;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
194 }
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
195
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
196 return \%result;
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
197 }
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
198
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
199 sub loadSchema {
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
200 my ($self,$name) = @_;
170
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
201
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
202 foreach my $path (map File::Spec->catfile($_,$name) ,@schemaInc) {
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
203 return IMPL::DOM::Schema->LoadSchema($path) if -f $path;
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
204 }
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
205
170
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
206 die new IMPL::Exception("A schema isn't found", $name);
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
207 }
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
208
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
209 sub unitSchema {
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
210 my ($self) = @_;
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
211
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
212 my $class = ref $self || $self;
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
213
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
214 my @parts = split(/:+/, $class);
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
215
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
216 my $file = pop @parts;
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
217 $file = "${file}.schema.xml";
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
218
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
219 foreach my $inc ( @schemaInc ) {
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
220 my $path = File::Spec->catfile($inc,@parts,$file);
126
c8dfbbdd8005 Several bug fixes
wizard
parents: 113
diff changeset
221
170
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
222 return IMPL::DOM::Schema->LoadSchema($path) if -f $path;
126
c8dfbbdd8005 Several bug fixes
wizard
parents: 113
diff changeset
223 }
170
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
224
b88b7fe60aa3 refactoring
sourcer
parents: 166
diff changeset
225 return undef;
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
226 }
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
227
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
228 sub discover {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
229 my ($this) = @_;
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
230
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
231 my $methods = $this->class_data(CONTROLLER_METHODS);
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
232
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
233 my $namespace = $this->unitNamespace;
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
234 (my $module = typeof $this) =~ s/^$namespace//;
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
235
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
236 my %smd = (
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
237 module => [grep $_, split /::/, $module ],
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
238 );
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
239
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
240 while (my ($method,$info) = each %$methods) {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
241 my %methodInfo = (
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
242 name => $method
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
243 );
160
3f09584bf189 Corrected web application modules
wizard
parents: 148
diff changeset
244 $methodInfo{parameters} = [ grep /^[^\:]/, @{ $info->{parameters} } ] if ref $info->{parameters} eq 'ARRAY';
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
245 push @{$smd{methods}},\%methodInfo;
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
246 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
247 return \%smd;
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
248 }
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
249
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
250 __PACKAGE__->transactions(
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
251 discover => undef
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
252 );
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents: 132
diff changeset
253
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
254 1;
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
255
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
256 __END__
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
257
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
258 =pod
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
259
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
260 =head1 NAME
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
261
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
262 C<IMPL::Web::Application::ControllerUnit> - базовый класс для обработчика транзакций в модели контроллера.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
263
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
264 =head1 DESCRIPTION
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
265
113
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
266 Классы, наследуемые от данного класса называется пакетом транзакций. Часть методов в таком классе
7b14e0122b79 Updated PostToDOM transformation
wizard
parents: 112
diff changeset
267 объявляются как транзакции при помощи методов C<transaction>, C<form>.
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
268
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
269 Перед выполнением транзакции создается экземпляр объекта, в рамках которого будет выполнена транзакция.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
270 Для этого вызывается метод C<InvokeAction($method,$action)>, который создает/восстанавливает контекст
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
271 транзакции.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
272
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
273 Транзакции на данный момент делятся на простые и формы. Различные типы транзакций выполняются при помощи
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
274 различных оберток (C<TransactionWrapper> и C<FormWrapper>). Каждая обертка отвечает за конструирование
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
275 экземпляра объекта и вызов метода для выполнения транзакции, а также за возврат результата выполнения.
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
276
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
277 =head2 Простые транзакции
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
278
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
279 Простые транзакции получаю только запрос, без предварительной обработки, и возвращенный результат напрямую
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
280 передается пользователю.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
281
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
282 =head2 Формы
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
283
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
284 При использовании форм запрос предварительно обрабатывается, для получения DOM документа с данными формы.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
285 Для постороенния DOM документа используется схема. При этом становятся доступны дополнительные свойства
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
286 C<formData>, C<formSchema>, C<formErrors>.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
287
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
288 Результат выполнения транзакции не возвращается наверх напрямую, а включается в структуру, которая
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
289 выглядит следующим образом
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
290
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
291 =begin code
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
292
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
293 {
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
294 state => '{ new | correct | invalid }',
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
295 result => $transactionResult,
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
296 formData => $formDOM,
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
297 formSchema => $formSchema,
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
298 formErrors => @errors
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
299 }
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
300
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
301 =end code
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
302
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
303 =over
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
304
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
305 =item C<state>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
306
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
307 Состояние верификации формы.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
308
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
309 =over
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
310
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
311 =item C<new>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
312
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
313 Первоначальное содержимое формы, оно может быть некорректным, но это нормально.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
314 В данном состоянии транзакция обычно не выполняется.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
315
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
316 =item C<correct>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
317
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
318 Данные формы корректны, транзакция выполнена, и ее результат доступен через поле C<result>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
319
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
320 =item C<invalid>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
321
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
322 Содержимое формы не прошло верификацию, ошибки доступны через поле C<formErrors>. Транзакция
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
323 не выполнялась.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
324
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
325 =back
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
326
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
327 =item C<result>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
328
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
329 Результат выполнения транзакции, если конечно таковая выполнялась.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
330
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
331 =item C<formData>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
332
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
333 ДОМ документ с данными формами. Документ существует всегда, не зависимо от его корректности,
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
334 может быть использован для построения формы, уже заполненную параметрами.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
335
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
336 =item C<formSchema>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
337
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
338 Схема данных формы, может использоваться для построения динамических форм.
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
339
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
340 =item C<formErrors>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
341
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
342 Ссылка на массив с ошибками при проверки формы.
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
343
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
344 =back
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
345
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
346 =head1 MEMBERS
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
347
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
348 =over
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
349
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
350 =item C<[get] application>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
351
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
352 Объект приложения, которое обрабатывает запрос.
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
353
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
354 =item C<[get] query>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
355
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
356 Текущий запрос.
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
357
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
358 =item C<[get] response>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
359
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
360 Текущий ответ.
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
361
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
362 =item C<[get] formData>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
363
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
364 C<IMPL::DOM::Document> документ с данныим, если данный запрос является формой.
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
365
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
366 =item C<[get] formSchema>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
367
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
368 C<IMPL::DOM::Schema> документ со схемой формы данного запроса.
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
369
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
370 =item C<[get] formErrors>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
371
128
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
372 Ошибки верификации данных, если таковые были. Обычно при наличии ошибок в форме, транзакция
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
373 не выполняется, а эти ошибки передаются в ответ.
08753833173d Fixed a error handling issue in JSON output: errors are correctly transfered
wizard
parents: 127
diff changeset
374
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
375 =item C<InvokeAction($method,$action)>
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
376
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
377 Конструирует контекст выполнения транзакции, может быть переопределен для конструирования контекста по
112
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
378 своим правилам.
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
379
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
380 =item C<TransactionWrapper($method,$action,$methodInfo)>
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
381
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
382 Обертка для конструирования простых транзакций, может быть переопределен для конструирования контекста по
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
383 своим правилам.
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
384
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
385 =item C<FormWrapper($method,$action,$methodInfo)>
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
386
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
387 Обертка для конструирования форм, может быть переопределен для конструирования контекста по
0ed8e2541b1c Form processing mechanism
wizard
parents: 111
diff changeset
388 своим правилам.
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
389
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
390 =item C<discover()>
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
391
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
392 Метод, опубликованный для вызова контроллером, возвращает описание методов в формате C<Simple Module Definition>.
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
393
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
394 =begin code
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
395
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
396 # SMD structure
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
397 {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
398 module => ['Foo','Bar'],
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
399 methods => [
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
400 {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
401 name => 'search',
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
402 parameters => ['text','limit'] #optional
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
403 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
404 ]
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
405 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
406
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
407 =end code
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
408
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
409 =back
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
410
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
411 =head1 EXAMPLE
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
412
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
413 =begin code
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
414
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
415 package MyBooksUnit;
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
416 use strict;
166
4267a2ac3d46 Added Class::Template,
wizard
parents: 160
diff changeset
417 use parent qw(IMPL::Web::Application::ControllerUnit);
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
418
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
419 __PACKAGE__->PassThroughArgs;
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
420
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
421 sub unitDataClass { 'My::Books' }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
422
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
423 __PACKAGE__->transactions(
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
424 find => {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
425 parameters => [qw(author)]
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
426 },
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
427 info => {
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
428 parameters => [qw(id)]
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
429 }
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
430 );
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
431 __PACKAGE__->forms(
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
432 create => 'books.create.xml'
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
433 );
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
434
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
435 sub find {
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
436 my ($this,$author) = @_;
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
437
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
438 return $this->ds->find({author => $author});
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
439 }
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
440
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
441 sub info {
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
442 my ($this,$id) = @_;
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
443
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
444 return $this->ds->find({id => $id});
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
445 }
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
446
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
447 sub create {
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
448 my ($this) = @_;
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
449
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
450 my %book = map {
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
451 $_->nodeName, $_->nodeValue
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
452 } $this->formData->selectNodes([qw(author_id title year ISBN)]);
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
453
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
454 return $this->ds->create(\%book);
111
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
455 }
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
456
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
457 =end code
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
458
6c25ea91c985 ControllerUnit concept
wizard
parents: 110
diff changeset
459 =cut