in reply to Debug code out of production systems
A faster way to compile code out of a system is to hide it behind an if(CONSTANT) or unless(CONSTANT), as in
The bonus is that you don't introduce more delay in the compile time, which a lot of people apparently dislike. I discovered this in POE, a project where I gained about 20% runtime performance with POE::Preprocessor by replacing small, commonly used functions with macros. A contrived example:use constant DEBUG => 0; if (DEBUG) { warn( "This code is only compiled into the program ", " when DEBUG is true.\n"; ); }
macro num_max (x,y) { ((x) > (y) ? (x) : (y)) }
This macro is then used, template-like, in the main body of source as:
print "You owe: \$", {% num_max $total-$paid, 0 %}, "\n";
Back to compile-time inclusion. POE::Preprocessor uses the common if/elsif/else syntax, tagged with an "# include" marker. That is, if you comment a construct with "# include", it will be evaluated at compile time (using the CONSTANT trick), and the code in the block will be included (or not) depending on the condition's outcome.
Problems with macros and source filters in general:unless ($expression) { # include ... lines of code ... } elsif ($expression) { # include ... lines of code ... } else { # include ... lines of code ... } # include
Liz's solution is much smarter than mine. It addresses all these problems. Very nice!
-- Rocco Caputo - rcaputo@pobox.com - poe.perl.org
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Debug code out of production systems
by liz (Monsignor) on Jan 25, 2004 at 19:38 UTC |