Search iEntry News



Controlling Concurrent Runs With Perl

By A.P. Lawrence
Expert Author
Article Date: 2005-12-13

Sometimes you have a program that can't be run by more than one person, or one that must run frequently but you don't know for sure how long an instance of it will take.

One way to accomplish that is to use a lock file.

#!/usr/bin/perl5
open(CNT, "/tmp/mylockfile");
flock CNT,2;
# program hangs here until other instance is done
# .. other processing when it is free
# release the lock
flock CNT,8;
close CNT;


If an instance is running, another instance will be stopped at the "flock CNT,2;" line and won't continue until the first program executes "flock CNT,8;".

But what if you don't want to just hang? An easy way to do that is to write your PID to a file:

#!/usr/bin/perl
open (L, "/tmp/mypid.lock");
$pid=;
close L;
$stat=kill 0, $pid ;
chomp $stat;
chomp $pid;
if ($stat and $pid) {
print "nExiting because $pid existsn";
exit 1;
}
open (L, ">/tmp/mypid.lock");
print L "$$n";
close L;
.. other code


The "kill 0" actually doesn't even send a signal; it just checks to see if the process exists. If it does, we print a message and exit; otherwise the code continues.

These are two simple ways to control program execution with Perl.

*Originally published at APLawrence.com

About the Author:
A.P. Lawrence provides SCO Unix and Linux consulting services http://www.pcunix.com




Newsletter Archive | Article Archive | Submit Article | Advertising Information | About Us | Contact

PerlProNews is an iEntry, Inc. ® publication - 1998-2008 All Rights Reserved Privacy Policy and Legal