All,
I am currently writing an network application that requires the ability to modify the running code without dropping connected users. I have already split the package across several files. This makes maintenance easier as well as allows for parts of the code to be re-loaded individually. Here is an example:

Script that uses the module

#!/usr/bin/perl use strict; use warnings; use Cool; my $obj = Cool->new(); while (1) { print $obj->testit(), "\n"; sleep 1; $obj->soft_boot(); }

The module itself

package Cool; use strict; use warnings; require 'magic'; 'This statement is false';

The file called 'magic'

package Cool; use strict; use warnings; no warnings 'redefine'; sub new { return bless {}, $_[0]; } sub testit { return 'Change me and see what happens'; } sub soft_boot { do 'magic'; } 'This statement is false';

Given this bizarre situation, is this the sanest way you can think to do it? If not, please offer your advice (preferrably with a working code snippet).

And yes diotalevi, I know this blows my method cache

Cheers - L~R


In reply to Sanely modifying running code by Limbic~Region

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.