]> git.evergreen-ils.org Git - working/Evergreen.git/blob - OpenSRF/src/perlmods/OpenSRF/Application.pm
dffb54debacfeab419b8d03f75e7a7e8d5ca0a22
[working/Evergreen.git] / OpenSRF / src / perlmods / OpenSRF / Application.pm
1 package OpenSRF::Application;
2 use vars qw/$_app $log @_METHODS $thunk $server_class/;
3
4 use base qw/OpenSRF/;
5 use OpenSRF::AppSession;
6 use OpenSRF::DomainObject::oilsMethod;
7 use OpenSRF::DomainObject::oilsResponse qw/:status/;
8 use OpenSRF::Utils::Logger qw/:level/;
9 use Data::Dumper;
10 use Time::HiRes qw/time/;
11 use OpenSRF::EX qw/:try/;
12 use Carp;
13 #use OpenSRF::UnixServer;  # to get the server class from UnixServer::App
14
15 sub DESTROY{};
16
17 use strict;
18 use warnings;
19
20 $log = 'OpenSRF::Utils::Logger';
21
22 our $in_request = 0;
23 our @pending_requests;
24
25 sub package {
26         my $self = shift;
27         return 1 unless ref($self);
28         return $self->{package};
29 }
30
31 sub api_name {
32         my $self = shift;
33         return 1 unless ref($self);
34         return $self->{api_name};
35 }
36
37 sub api_level {
38         my $self = shift;
39         return 1 unless ref($self);
40         return $self->{api_level};
41 }
42
43 sub server_class {
44         my $class = shift;
45         if($class) {
46                 $server_class = $class;
47         }
48         return $server_class;
49 }
50
51 sub thunk {
52         my $self = shift;
53         my $flag = shift;
54         $thunk = $flag if (defined $flag);
55         return $thunk;
56 }
57
58 sub application_implementation {
59         my $self = shift;
60         my $app = shift;
61
62         if (defined $app) {
63                 $_app = $app;
64                 eval "use $_app;";
65                 if( $@ ) {
66                         $log->error( "Error loading application_implementation: $app -> $@", ERROR);
67                 }
68
69         }
70
71         return $_app;
72 }
73
74 sub handler {
75         my ($self, $session, $app_msg) = @_;
76
77         if( ! $app_msg ) {
78                 return 1;  # error?
79         }
80
81         $log->debug( "In Application::handler()", DEBUG );
82
83         my $app = $self->application_implementation;
84
85         if( $app ) {
86                 $log->debug( "Application is $app", DEBUG);
87         }
88         $log->debug( "Message is ".$app_msg->toString(1), INTERNAL);
89
90
91         if ($session->last_message_type eq 'REQUEST') {
92                 $log->debug( "We got a REQUEST: ". $app_msg->method, INFO );
93
94                 my $method_name = $app_msg->method;
95                 $log->debug( " * Looking up $method_name inside $app", DEBUG);
96
97                 my $method_proto = $session->last_message_api_level;
98                 $log->debug( " * Method API Level [$method_proto]", DEBUG);
99
100                 my $coderef = $app->method_lookup( $method_name, $method_proto, 1, 1 );
101
102                 unless ($coderef) {
103                         $session->status( OpenSRF::DomainObject::oilsMethodException->new( 
104                                                 status => "Method [$method_name] not found for $app"));
105                         return 1;
106                 }
107
108                 $log->debug( " (we got coderef $coderef", DEBUG);
109
110                 unless ($session->continue_request) {
111                         $session->status(
112                                 OpenSRF::DomainObject::oilsConnectStatus->new(
113                                                 statusCode => STATUS_REDIRECTED(),
114                                                 status => 'Disconnect on max requests' ) );
115                         $session->kill_me;
116                         return 1;
117                 }
118
119                 if (ref $coderef) {
120                         my @args = $app_msg->params;
121                         my $appreq = OpenSRF::AppRequest->new( $session );
122
123                         $log->debug( "in_request = $in_request : [" . $appreq->threadTrace."]", DEBUG );
124                         if( $in_request ) {
125                                 $log->debug( "Pushing onto pending requests: " . $appreq->threadTrace, DEBUG );
126                                 push @pending_requests, [ $appreq, \@args, $coderef ]; 
127                                 return 1;
128                         }
129
130
131                         $in_request++;
132
133                         $log->debug( "Executing coderef for {$method_name -> ".join(', ', @args)."}", INTERNAL );
134
135                         my $resp;
136                         try {
137                                 my $start = time();
138                                 $resp = $coderef->run( $appreq, @args); 
139                                 my $time = sprintf '%.3f', time() - $start;
140                                 $log->debug( "Method duration for {$method_name -> ".join(', ', @args)."}:  ". $time, DEBUG );
141                                 if( defined( $resp ) ) {
142                                         #$log->debug( "Calling respond_complete: ". $resp->toString(), INTERNAL );
143                                         $appreq->respond_complete( $resp );
144                                 } else {
145                                         $appreq->status( OpenSRF::DomainObject::oilsConnectStatus->new(
146                                                                 statusCode => STATUS_COMPLETE(),
147                                                                 status => 'Request Complete' ) );
148                                 }
149                         } catch Error with {
150                                 my $e = shift;
151                                 if(UNIVERSAL::isa($e,"Error")) {
152                                         $e = $e->stringify();
153                                 } 
154                                 my $sess_id = $session->session_id;
155                                 $session->status(
156                                         OpenSRF::DomainObject::oilsMethodException->new(
157                                                         statusCode      => STATUS_INTERNALSERVERERROR(),
158                                                         status          => " *** Call to [$method_name] failed for session ".
159                                                                            "[$sess_id], thread trace ".
160                                                                            "[".$appreq->threadTrace."]:\n$e\n"
161                                         )
162                                 );
163                         };
164
165
166
167                         # ----------------------------------------------
168
169
170                         # XXX may need this later
171                         # $_->[1] = 1 for (@OpenSRF::AppSession::_CLIENT_CACHE);
172
173                         $in_request--;
174
175                         $log->debug( "Pending Requests: " . scalar(@pending_requests), INTERNAL );
176
177                         # cycle through queued requests
178                         while( my $aref = shift @pending_requests ) {
179                                 $in_request++;
180                                 my $resp;
181                                 try {
182                                         my $start = time;
183                                         my $response = $aref->[2]->run( $aref->[0], @{$aref->[1]} );
184                                         my $time = sprintf '%.3f', time - $start;
185                                         $log->debug( "Method duration for {[".$aref->[2]->api_name." -> ".join(', ',@{$aref->[1]}).'}:  '.$time, DEBUG );
186
187                                         $appreq = $aref->[0];   
188                                         if( ref( $response ) ) {
189                                                 #$log->debug( "Calling respond_complete: ". $response->toString(), INTERNAL );
190                                                 $appreq->respond_complete( $response );
191                                         } else {
192                                                 $appreq->status( OpenSRF::DomainObject::oilsConnectStatus->new(
193                                                                         statusCode => STATUS_COMPLETE(),
194                                                                         status => 'Request Complete' ) );
195                                         }
196                                         $log->debug( "Executed: " . $appreq->threadTrace, DEBUG );
197                                 } catch Error with {
198                                         my $e = shift;
199                                         if(UNIVERSAL::isa($e,"Error")) {
200                                                 $e = $e->stringify();
201                                         }
202                                         $session->status(
203                                                 OpenSRF::DomainObject::oilsMethodException->new(
204                                                                 statusCode => STATUS_INTERNALSERVERERROR(),
205                                                                 status => "Call to [".$aref->[2]->api_name."] faild:  $e"
206                                                 )
207                                         );
208                                 };
209                                 $in_request--;
210                         }
211
212                         return 1;
213                 } 
214
215                 my $res = OpenSRF::DomainObject::oilsMethodException->new( 
216                                 status => "Received non-REQUEST message in Application handler");
217                 $session->send('ERROR', $res);
218                 $session->kill_me;
219                 return 1;
220
221         } else {
222                 $log->debug( "Pushing ". $app_msg->toString ." onto queue", INTERNAL );
223                 $session->push_queue([ $app_msg, $session->last_threadTrace ]);
224         }
225
226         $session->last_message_type('');
227         $session->last_message_api_level('');
228
229         return 1;
230 }
231
232 sub is_registered {
233         my $self = shift;
234         my $api_name = shift;
235         my $api_level = shift || 1;
236         return exists($_METHODS[$api_level]{$api_name});
237 }
238
239 sub register_method {
240         my $self = shift;
241         my $app = ref($self) || $self;
242         my %args = @_;
243
244
245         throw OpenSRF::DomainObject::oilsMethodException unless ($args{method});
246
247         $args{api_level} = 1 unless(defined($args{api_level}));
248         $args{stream} ||= 0;
249         $args{remote} ||= 0;
250         $args{package} ||= $app;                
251         $args{server_class} = server_class();
252         $args{api_name} ||= $args{server_class} . '.' . $args{method};
253
254         unless ($args{object_hint}) {
255                 ($args{object_hint} = $args{package}) =~ s/::/_/go;
256         }
257
258         JSON->register_class_hint( name => $args{package}, hint => $args{object_hint}, type => "hash" );
259
260         $_METHODS[$args{api_level}]{$args{api_name}} = bless \%args => $app;
261
262         __PACKAGE__->register_method(
263                 stream => 0,
264                 api_name => $args{api_name}.'.atomic',
265                 method => 'make_stream_atomic'
266         ) if ($args{stream});
267 }
268
269 sub retrieve_remote_apis {
270         my $method = shift;
271         my $session = OpenSRF::AppSession->create('router');
272         try {
273                 $session->connect or OpenSRF::EX::WARN->throw("Connection to router timed out");
274         } catch Error with {
275                 my $e = shift;
276                 $log->debug( "Remote subrequest returned an error:\n". $e );
277                 return undef;
278         } finally {
279                 return undef unless ($session->state == $session->CONNECTED);
280         };
281
282         my $req = $session->request( 'opensrf.router.info.class.list' );
283         my $list = $req->recv;
284
285         if( UNIVERSAL::isa($list,"Error") ) {
286                 throw $list;
287         }
288
289         my $content = $list->content;
290
291         $req->finish;
292         $session->finish;
293         $session->disconnect;
294
295         my %u_list = map { ($_ => 1) } @$content;
296
297         for my $class ( keys %u_list ) {
298                 next if($class eq $server_class);
299                 populate_remote_method_cache($class, $method);
300         }
301 }
302
303 sub populate_remote_method_cache {
304         my $class = shift;
305         my $meth = shift;
306
307         my $session = OpenSRF::AppSession->create($class);
308         try {
309                 $session->connect or OpenSRF::EX::WARN->throw("Connection to $class timed out");
310
311                 my $call = 'opensrf.system.method.all' unless (defined $meth);
312                 $call = 'opensrf.system.method' if (defined $meth);
313
314                 my $req = $session->request( $call, $meth );
315
316                 while (my $method = $req->recv) {
317                         next if (UNIVERSAL::isa($method, 'Error'));
318
319                         $method = $method->content;
320                         next if ( exists($_METHODS[$$method{api_level}]) &&
321                                 exists($_METHODS[$$method{api_level}]{$$method{api_name}}) );
322                         $method->{remote} = 1;
323                         bless($method, __PACKAGE__ );
324                         $_METHODS[$$method{api_level}]{$$method{api_name}} = $method;
325                 }
326
327                 $req->finish;
328                 $session->finish;
329                 $session->disconnect;
330
331         } catch Error with {
332                 my $e = shift;
333                 $log->debug( "Remote subrequest returned an error:\n". $e );
334                 return undef;
335         };
336 }
337
338 sub method_lookup {             
339         my $self = shift;
340         my $method = shift;
341         my $proto = shift || 1;
342         my $no_recurse = shift || 0;
343         my $no_remote = shift || 0;
344
345         # this instead of " || 1;" above to allow api_level 0
346         $proto = $self->api_level unless (defined $proto);
347
348         my $class = ref($self) || $self;
349
350         $log->debug("Lookup of [$method] by [$class] in api_level [$proto]", DEBUG);
351         #$log->debug("Available methods\n".Dumper(\@_METHODS), INTERNAL);
352
353         my $meth;
354         if (__PACKAGE__->thunk) {
355                 for my $p ( reverse(1 .. $proto) ) {
356                         if (exists $_METHODS[$p]{$method}) {
357                                 $meth = $_METHODS[$p]{$method};
358                         }
359                 }
360         } else {
361                 if (exists $_METHODS[$proto]{$method}) {
362                         $meth = $_METHODS[$proto]{$method};
363                 }
364         }
365
366         if (defined $meth) {
367                 $log->debug("Looks like we found [$method]!", DEBUG);
368                 $log->debug("Method object is ".Dumper($meth), INTERNAL);
369                 if($no_remote and $meth->{remote}) {
370                         $log->debug("OH CRAP We're not supposed to return remote methods", WARN);
371                         return undef;
372                 }
373
374         } elsif (!$no_recurse) {
375                 retrieve_remote_apis($method);
376                 $meth = $self->method_lookup($method,$proto,1);
377         }
378
379         return $meth;
380 }
381
382 sub run {
383         my $self = shift;
384         my $req = shift;
385
386         my $resp;
387         my @params = @_;
388
389         if ( !UNIVERSAL::isa($req, 'OpenSRF::AppRequest') ) {
390                 $log->debug("Creating a SubRequest object", DEBUG);
391                 unshift @params, $req;
392                 $req = OpenSRF::AppSubrequest->new;
393         } else {
394                 $log->debug("This is a top level request", DEBUG);
395         }
396
397         if (!$self->{remote}) {
398                 my $code ||= \&{$self->{package} . '::' . $self->{method}};
399                 $log->debug("Created coderef [$code] for $$self{package}::$$self{method}",DEBUG);
400                 my $err = undef;
401
402                 try {
403                         $resp = $code->($self, $req, @params);
404
405                 } catch Error with {
406                         my $e = shift;
407                         $err = $e;
408                         warn "Caught Error in Application: $e\n";
409
410                         if( UNIVERSAL::isa($e,"Error")) {
411                                 warn "Exception is:\n " . $e->stringify() . "\n";
412                         }
413
414                         if( ref($self) eq 'HASH') {
415                                 warn $self;
416                                 $log->error("Sub $$self{package}::$$self{method} DIED!!!\n\t$e\n", ERROR);
417                         }
418                 };
419
420                 if($err) {
421                         if(UNIVERSAL::isa($err,"Error")) { 
422                                 throw $err ($err->stringify); 
423                         } else {
424                                 die $err; 
425                         }
426                 }
427
428
429                 $log->debug("Coderef for [$$self{package}::$$self{method}] has been run", DEBUG);
430
431                 if ( ref($req) and UNIVERSAL::isa($req, 'OpenSRF::AppSubrequest') ) {
432                         $log->debug("A SubRequest object is responding", DEBUG);
433                         $req->respond($resp) if (defined $resp);
434                         $log->debug("... Responding with : " . join(" ",$req->responses), DEBUG);
435                         return $req->responses;
436                 } else {
437                         $log->debug("A top level Request object is responding $resp", DEBUG) if (defined $resp);
438                         return $resp;
439                 }
440         } else {
441                 my $session = OpenSRF::AppSession->create($self->{server_class});
442                 try {
443                         #$session->connect or OpenSRF::EX::WARN->throw("Connection to [$$self{server_class}] timed out");
444                         my $remote_req = $session->request( $self->{api_name}, @params );
445                         while (my $remote_resp = $remote_req->recv) {
446                                 OpenSRF::Utils::Logger->debug("Remote Subrequest Received " . $remote_resp, INTERNAL );
447                                 if( UNIVERSAL::isa($remote_resp,"Error") ) {
448                                         throw $remote_resp;
449                                 }
450                                 $req->respond( $remote_resp->content );
451                         }
452                         $remote_req->finish();
453
454                 } catch Error with {
455                         my $e = shift;
456                         $log->debug( "Remote subrequest returned an error:\n". $e );
457                         return undef;
458                 };
459
460                 if ($session) {
461                         $session->disconnect();
462                         $session->finish();
463                 }
464
465                 $log->debug( "Remote Subrequest Responses " . join(" ", $req->responses), INTERNAL );
466
467                 return $req->responses;
468         }
469         # huh? how'd we get here...
470         return undef;
471 }
472
473 sub introspect {
474         my $self = shift;
475         my $client = shift;
476         my $method = shift;
477
478         $method = undef if ($self->api_name =~ /all$/o);
479
480         for my $api_level ( reverse(1 .. $#_METHODS) ) {
481                 for my $api_name ( sort keys %{$_METHODS[$api_level]} ) {
482                         if (!$_METHODS[$api_level]{$api_name}{remote}) {
483                                 if (defined($method)) {
484                                         if ($api_name =~ $method) {
485                                                 $client->respond( $_METHODS[$api_level]{$api_name} );
486                                         }
487                                 } else {
488                                         $log->debug( "Returning definition for method [$api_name]", INTERNAL );
489                                         $client->respond( $_METHODS[$api_level]{$api_name} );
490                                         $log->debug( "responed with definition for method [$api_name]", INTERNAL );
491                                 }
492                         }
493                 }
494         }
495
496         return undef;
497 }
498 __PACKAGE__->register_method(
499         stream => 1,
500         method => 'introspect',
501         api_name => 'opensrf.system.method.all'
502 );
503
504 __PACKAGE__->register_method(
505         stream => 1,
506         method => 'introspect',
507         argc => 1,
508         api_name => 'opensrf.system.method'
509 );
510
511 sub make_stream_atomic {
512         my $self = shift;
513         my $req = shift;
514         my @args = @_;
515
516         (my $m_name = $self->api_name) =~ s/\.atomic$//o;
517         my @results = $self->method_lookup($m_name)->run(@args);
518
519         return \@results;
520 }
521
522
523 1;