Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^3: How to sleep(), or use a while() in the background?

by taint (Chaplain)
on May 09, 2016 at 23:51 UTC ( [id://1162581]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How to sleep(), or use a while() in the background?
in thread How to sleep(), or use a while() in the background?

Well. After attempting every possible iteration, or combination available to me via Process::Simple, and the example listed in perlfaq8:

system("cmd &")
I have concluded that it is not possible to perform my desired action(s) with sleep. Where is it is called from the web (via a function that also delivers a web page).

So don't try this at home, kids! ;-)

--Chris

¡λɐp ʇɑəɹ⅁ ɐ əʌɐɥ puɐ ʻꜱdləɥ ꜱᴉɥʇ ədoH

  • Comment on Re^3: How to sleep(), or use a while() in the background?

Replies are listed 'Best First'.
Re^4: How to sleep(), or use a while() in the background?
by Anonymous Monk on May 10, 2016 at 03:01 UTC

    what did you try, show the iterations ?

    Try something like

    #!/usr/bin/perl -- use strict; use warnings; ## use File::Spec; our $thisf = File::Spec->rel2abs( __FILE__ ); use Path::Tiny qw/ path /; our $thisfile = path( __FILE__ )->realpath; Main( @ARGV ); exit( 0 ); sub Main { my( $command, @args ) = @_; my %commands = ( deleteafter => \&DeleteAfter, indexpage => \&IndexPage, servefile => \&ServeFile, ); my $action = $commands{lc $command} || \&IndexPage; $action->( @args ); } sub IndexPage { require CGI; my( $q ) = CGI->new; if( my $temporaryfile = AllowedTemporaryFile( $q ) ){ BackgroundDeleteAfter( $temporaryfile, $seconds ); return ServeFile( $q, $temporaryfile ); } return ListFiles( $q ); } sub DeleteAfter { my $time = shift; close STDIN; close STDOUT; ## close STDERR; open STDERR ...; sleep $time; unlink($_) for @_; } sub BackgroundDeleteAfter { require Proc::Background; Proc::Background->new( $^X, $thisfile, deleteafter => @_ ); } sub AllowedTemporaryFile { ... } sub ListFiles { ... } sub ServeFile { my( $q, $file ) = @_; ## see [id://1151407] }
    see Re^4: awanti Perl not playing video with vlc plugin

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1162581]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-19 08:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found