jeremyh has asked for the wisdom of the Perl Monks concerning the following question:
my $compartment = new Safe; # module level $compartment->permit(qw()); # module level sub date_compare { my ($date, $op, $refdate) = @_; my ($mm_date, $dd_date, $yyyy_date) = split(/\//, $date); my ($mm_ref, $dd_ref, $yyyy_ref) = split(/\//, $refdate); my $date_str = $yyyy_date . $mm_date . $dd_date; my $ref_str = $yyyy_ref . $mm_ref . $dd_ref; $compartment->reval( qq{ ($date_str $op $ref_str) || return 0; # fall-through return 1; } ); }
#!/usr/bin/perl -w use strict; use Safe; use WOU_Util; my $compartment = new Safe; $compartment->share_from('WOU_Util', [ 'date_compare' ] ); $compartment->permit( qw() ); my ($date1, $op, $date2); $date1 = '01/02/2004'; $date2 = '01/01/2004'; $op = 'gt'; # this prints $compartment->reval( "print 'greater' if \"$date1\" $op \"$date2\"" ); $op = '>'; # this doesn't print, throws error $compartment->reval( "print 'greater' if date_compare(\"$date1\",\"$op +\",\"$date2\")" );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: nested Safe->reval and method from custom Module
by gmpassos (Priest) on Sep 15, 2004 at 17:43 UTC | |
by jeremyh (Beadle) on Sep 15, 2004 at 21:45 UTC | |
by jeremyh (Beadle) on Sep 15, 2004 at 18:09 UTC |