in reply to Refactoring challenge.
The code, upon first glance, looks slightly unfactored. But, I've taken the common element (the actual print command) and moved it out of the sub. This allows for pp() to display the actual parts that differ. For example, you have four separate paths through pp(), depending on how f1() and f2() behave. This version makes that explicit.
{ my ($indent, $depth) = ( "\t", 0 ); my $_print = sub { print $indent x $depth, substr( $_[0], 0, $_[1] ); }; sub pp { return unless @_; my ($str) = @_; my ($pos, $first ) = f1( $str ); if ( defined $first ) { if ( $first eq CONST1 ) { $depth++; $_print->( $str, ++$pos ); } elsif ( defined( my $newpos = f2( $str, $first ) ) ) { $_print->( $str, $newpos + 2 ); } else { $_print->( $str, $pos ); $depth++; } } else { $_print->( $str, $pos ); } $str =~ s[^.{$pos1}\s*][]; return $str; } }
Update: Upon further thought, the calls to f1() and f2() need to be refactored further.
{ my ($indent, $depth) = ( "\t", 0 ); my $_print = sub { print $indent x $depth, substr( $_[0], 0, $_[1] ); }; my $_call_f1_f2 = sub { my $str = shift; my ($pos, $first) = f1( $str ); return ($pos, 0) if !defined $first; if ( $first eq CONST1 ) { $depth--; return ($pos + 1, 0); } $pos = f2( $str, $first ); return ($newpos + 2, 0) if defined $pos; return ($pos, 1); }; sub pp { return unless @_; my ($str) = @_; my ($pos, $depth_mod) = $_call_f1_f2->( $str ); $_print->( $str, $pos ); $depth += $depth_mod; $str =~ s[^.{$pos1}\s*][]; return $str; } }
Update: Typo in code ($_->print -> $_print->) fixed.
Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Refactoring challenge.
by BrowserUk (Patriarch) on Mar 06, 2005 at 02:21 UTC | |
by dragonchild (Archbishop) on Mar 06, 2005 at 04:18 UTC | |
by Aristotle (Chancellor) on Mar 07, 2005 at 14:09 UTC | |
by BrowserUk (Patriarch) on Mar 07, 2005 at 16:20 UTC | |
by tphyahoo (Vicar) on Mar 08, 2005 at 09:26 UTC | |
by BrowserUk (Patriarch) on Mar 08, 2005 at 12:57 UTC | |
|
Re^2: Refactoring challenge.
by tphyahoo (Vicar) on Mar 08, 2005 at 09:20 UTC |