The dispatch metaphor I use is something like the following:

$Dispatch = ("foo" => \&foo_func, "bar" => \&bar_func,); $action = $q->get_this_action(); if (exists $Dispatch->{$action}) { $Dispatch->{$action}->(@args_that_everyone_gets); } else { # no action, do the default, if any }

Of course, you'll have to figure out what the current action should be and how args determined for the dispatch functions.

This bit of code is nearly as useful as an echo loop. I agree with the earlier poster that stringifying your code is probably not I good idea. eval() is powerful ju-ju and can easily be abused by black hats if you're aren't careful (e.g. something like this type of bug afflected SOAP::Lite awhile ago).

By explicitly mapping your "public" function names to private implementing functions, you can protect yourself from someone trying to execute an arbitrary perl function.

Hope this helps,

--Joe


In reply to Re: How do I execute an array element? by jjohn
in thread How do I execute an array element? by hesco

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.