FAQ 5.18 How can I lock a file?
From: PerlFAQ Server (comdog_at_panix.com)
Date: 02/28/05
- Next message: Thomas Kratz: "Re: Perl Hash problem (with registry)"
- Previous message: Gunnar Hjalmarsson: "Re: can someone help?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 28 Feb 2005 17:03:01 +0000 (UTC)
This message is one of several periodic postings to comp.lang.perl.misc
intended to make it easier for perl programmers to find answers to
common questions. The core of this message represents an excerpt
from the documentation provided with Perl.
--------------------------------------------------------------------
5.18: How can I lock a file?
Perl's builtin flock() function (see perlfunc for details) will call
flock(2) if that exists, fcntl(2) if it doesn't (on perl version 5.004
and later), and lockf(3) if neither of the two previous system calls
exists. On some systems, it may even use a different form of native
locking. Here are some gotchas with Perl's flock():
1 Produces a fatal error if none of the three system calls (or their
close equivalent) exists.
2 lockf(3) does not provide shared locking, and requires that the
filehandle be open for writing (or appending, or read/writing).
3 Some versions of flock() can't lock files over a network (e.g. on
NFS file systems), so you'd need to force the use of fcntl(2) when
you build Perl. But even this is dubious at best. See the flock
entry of perlfunc and the INSTALL file in the source distribution
for information on building Perl to do this.
Two potentially non-obvious but traditional flock semantics are that
it waits indefinitely until the lock is granted, and that its locks
are *merely advisory*. Such discretionary locks are more flexible,
but offer fewer guarantees. This means that files locked with
flock() may be modified by programs that do not also use flock().
Cars that stop for red lights get on well with each other, but not
with cars that don't stop for red lights. See the perlport manpage,
your port's specific documentation, or your system-specific local
manpages for details. It's best to assume traditional behavior if
you're writing portable programs. (If you're not, you should as
always feel perfectly free to write for your own system's
idiosyncrasies (sometimes called "features"). Slavish adherence to
portability concerns shouldn't get in the way of your getting your
job done.)
For more information on file locking, see also "File Locking" in
perlopentut if you have it (new for 5.6).
--------------------------------------------------------------------
Documents such as this have been called "Answers to Frequently
Asked Questions" or FAQ for short. They represent an important
part of the Usenet tradition. They serve to reduce the volume of
redundant traffic on a news group by providing quality answers to
questions that keep coming up.
If you are some how irritated by seeing these postings you are free
to ignore them or add the sender to your killfile. If you find
errors or other problems with these postings please send corrections
or comments to the posting email address or to the maintainers as
directed in the perlfaq manual page.
Note that the FAQ text posted by this server may have been modified
from that distributed in the stable Perl release. It may have been
edited to reflect the additions, changes and corrections provided
by respondents, reviewers, and critics to previous postings of
these FAQ. Complete text of these FAQ are available on request.
The perlfaq manual page contains the following copyright notice.
AUTHOR AND COPYRIGHT
Copyright (c) 1997-2002 Tom Christiansen and Nathan
Torkington, and other contributors as noted. All rights
reserved.
This posting is provided in the hope that it will be useful but
does not represent a commitment or contract of any kind on the part
of the contributers, authors or their agents.
- Next message: Thomas Kratz: "Re: Perl Hash problem (with registry)"
- Previous message: Gunnar Hjalmarsson: "Re: can someone help?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|