What is the best way to create a lock on a file in Perl?
Is it best to flock on the file or to create a lock file to place a lock on and check for a lock on the lock file?
|
2
|
|||
|
|
|
If you end up using flock, here's some code to do it:
Some useful links:
In response to your added question, I'd say either place the lock on the file or create a file that you call 'lock' whenever the file is locked and delete it when it is no longer locked (and then make sure your programs obey those semantics). |
|||
|
|
|
Typically,
That is, you may not be able to lock a file handle that you have opened for reading. For this case, it is good to open a dummy file (for append, not just for write) and lock that file. |
||
|
|
|
|
Here's my solution to reading and writing in one lock...
|
||
|
|
|
|
|
||
|
|
|
|
Ryan P wrote:
So don’t do that. Instead,
When you are ready to write the counter, just Also, note that I used three-argument |
||||
|
|
|
I think it would be much better to show this with lexical variables as file handlers and error handling. It is also better to use the constants from the Fcntl module than hard code the magic number 2 which might not be the right number on all operating systems.
use Fcntl ':flock'; # import LOCK_* constants
# open the file for appending
open (my $fh, '>>', 'test.dat') or die $!;
# try to lock the file exclusively, will wait till you get the lock
flock($fh, LOCK_EX);
# do something with the file here (print to it in our case)
# actually you should not unlock the file
# close the file will unlock it
close($fh) or warn "Could not close file $!";
Check out the full documentation of flock and the File locking tutorial on PerlMonks even though that also uses the old style of file handle usage. Actually I usually skip the error handling on close() as there is not much I can do if it fails anyway. Regarding what to lock, if you are working in a single file then lock that file. If you need to lock several files at once then - in order to avoid dead locks - it is better to pick one file that you are locking. Does not really matter if that is one of the several files you really need to lock or a separate file you create just for the locking purpose. |
|||
|
|
|
Have you considered using the LockFile::Simple module? It does most of the work for you already. In my past experience, I have found it very easy to use and sturdy. |
||
|
|
|
My goal in this question was to lock a file being used as a data store for several scripts. In the end I used similar code to the following (from Chris):
In his example I removed the flock FILE, 8 as the close(FILE) performs this action as well. The real problem was when the script starts it has to hold the current counter, and when it ends it has to update the counter. This is where Perl has a problem, to read the file you:
Now I want to write out the results and since i want to overwrite the file I need to reopen and truncate which results in the following:
In this case the file is actually unlocked for a short period of time while the file is reopened. This demonstrates the case for the external lock file. If you are going to be changing contexts of the file, use a lock file. The modified code:
|
|||
|
|
|
|
CPAN to the rescue: IO::LockedFile. |
||
|
|
|
flock creates Unix-style file locks, and is available on most OS's Perl runs on. However flock's locks are advisory only. edit: emphasized that flock is portable |
||
|
|
|
|
||
|