X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/5162c8cc5f1f380a9fffb1107374e3919ef847ce..972b87711cb3c7543d585ceedca0eda2058aa6d7:/SL/DB/Helper/Presenter.pm diff --git a/SL/DB/Helper/Presenter.pm b/SL/DB/Helper/Presenter.pm new file mode 100644 index 000000000..48502548f --- /dev/null +++ b/SL/DB/Helper/Presenter.pm @@ -0,0 +1,83 @@ +package SL::DB::Helper::Presenter; + +use strict; + +sub new { + # lightweight: 0: class, 1: object + bless [ $_[1], $_[2] ], $_[0]; +} + +sub AUTOLOAD { + our $AUTOLOAD; + + my ($self, @args) = @_; + + my $method = $AUTOLOAD; + $method =~ s/.*:://; + + return if $method eq 'DESTROY'; + + return $self->[0]->$method($self->[1], @args); +} + +1; + +__END__ + +=encoding utf-8 + +=head1 NAME + +SL::DB::Helper::Presenter - proxy class to allow models to access presenters + +=head1 SYNOPSIS + + # assuming SL::Presemter::Part exists + # and contains a sub link_to($class, $object) {} + SL::DB::Part->new(%args)->presenter->link_to + +=head1 DESCRIPTION + +When coding controller one often encounters objects that are not crucial to the +current task, but must be presented in some form to the user. Instead of +recreating that all the time the C namepace was introduced to +hold such code. + +Unfortunately the Presenter code is designed to be stateless and thus acts _on_ +objects, but can't be instanced or wrapped. The early band-aid to that was to +export all sub-presenter calls into the main presenter namespace. Fixing it +would have meant to access presenter functions like this: + + SL::Presenter::Object->method($object, %additional_args) + +which is extremely inconvenient. + +This glue code allows C instances to access routines in their +presenter without additional boilerplate. C contains a +C call for all objects, which will return an instance of this proxy +class. All calls on this will then be forwarded to the appropriate presenter. + +=head1 INTERNAL STRUCTURE + +The proxy objects created are lightweight blessed arrayrefs instead of the usual blessed +hashrefs. They only store two elements: + +=over 4 + +=item * The presenter class + +=item * The invocing object + +=back + +Further delegation is done with C. + +=head1 BUGS + +None yet :) + +=head1 AUTHOR + +Sven Schöling Es.schoeling@linet-services.deE + +=cut