Howdy all! I find myself writing tons of mod_perl handlers and they inevitably start with:
package Blah; use Module::I::Always::Use::1; ... use Module::I::Always::Use::35; sub handler { ... same 50 lines of code that do validation/cleansing and then a j +ump table to my real work functions ... } sub setup_environment {} sub work_function_1 {} ... sub work_function_100 {}

Is there any way to have a package that I can inherit all the boilerplate garbage? Copy pasting sucks and is horrible to maintain.

I envision something like:

-- Basehandler.pm -- package Basehandler; use Module::I::Always::Use::1; ... use Module::I::Always::Use::35; sub handler { ... same 50 lines of code that do validation and then a jump table +to my real work functions ... } sub setup_environment { .... } -- MyHandler/ForThisEndpoint.pm -- package MyHandler::ForThisEndpoint; use Basehandler; sub work_function_1 {} ... sub work_function_100 {} -- MyHandler/ForAnotherEndpoint.pm -- package MyHandler::ForAnotherEndpoint; use Basehandler; sub work_function_1 {} ... sub work_function_100 {}

Is there a way to do this? I have done the use parent Blah; thing with object oriented stuff and new() derived objects... this time though I don't really seem to have that option.

I have also thought of *handler = \&Basehandler::Handler(); in my MyHandler::ForThisEndpoint ... but that seems really dirty and once again I am boilerplating for like 5 functions I would like to stick in that same base package.

Thanks to anyone that can give me a pointer or a solution :)


In reply to Transparently inheriting functions from a parent package by vaewyn

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.