thanks for the replies. I spent few hours to study the source code of catalyst, catalyst::component and i think i grasped the basic idea of exposing one class into another. here is how i see it work in my case:

every adaptor class is loaded as a component of the frontend base class. at application startup, every component is required and instantiated via new(). The instances are then stored as a class data of the frontend base class, making them some sort of singleton objects.

package MyApp::Component; use base qw/Class::Accessor::Fast Class::Data::Inheritable/; 1; package Frontend::Base; use base 'MyApp::Component'; __PACKAGE__->mk_classdata(components); sub load_components { # use module::pluggable # for each adaptor that module::pluggable found # load the adaptor($comp) $class->load_component($comp); } sub load_component { my ($class, $comp) = @_; $class->components->{ $component_name } = $comp->new(); } sub adaptor { my ($class, $model) = @_; return $class->components->{ $component_name }; } 1; package Frontend::Report; use base 'Frontend::Base'; sub do_report { $class->adaptor('Adaptor::Report')->method; } 1;
also looked at DBIx::Class and it uses Class::C3 and Class::C3::Componentised. i suspect that's another way to accomplish my goal.

In reply to Re: MVC question: way to expose API by Qiang
in thread MVC question: way to expose API by Qiang

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.