[PHP] flock and file reading

2008-08-05 Thread ragnarok
Hi all,


I've simple question: LOCK_EX is only effective for file writing or it locks
reading, too?
 
Ciao,
Stefano 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 E' arrivato EmailBlog, il blog ufficiale di Email.it. Partecipa anche tu!
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8136&d=20080805



RE: [PHP] flock(), fclose() and O/S buffering

2004-07-01 Thread Michael Sims
Andrew Hill wrote:
> $fp = fopen("/tmp/lock.txt", "w+");
> if (flock($fp, LOCK_EX)) { // do an exclusive lock
>fwrite($fp, "$processName\n");
>flock($fp, LOCK_UN); // release the lock
> } else {
>echo "Couldn't lock the file !";
> }
> fclose($fp);
[...]
> In this case, although process B is the second process to obtain a
> lock and write its process name to the file, it is the first process
> to close the file handle.

I've used flock() quite a bit in Perl, but not so much in PHP.  I'm almost
positive that they both use the same system calls so I think the behavior
(at least under unix) is the same.  In Perl, you do not have to release a
lock before closing the file...the lock is automatically released on close.
Newer versions of Perl automatically flush the disk buffers when releasing a
lock, but it's still widely recommended that you do NOT release a lock
before closing a file if you have written to it, precisely because of the
race condition you pointed out.

From:
http://www.tcp.com/~mink/CLAM/week8.html

"...Locks will dissolve when the file is closed anyway (when your process
exits, if not before). If you unlock without closing, the buffer may not
have been flushed before another process tries to read the file. In that
case, the other process will get "old" data. There are ways around this, but
the easiest is to simply not use LOCK_UN on files you are really writing
to - simply close the files and release the locks that way..."

Also:
http://groups.google.com/groups?selm=388373bd.890334%40news.skynet.be
http://groups.google.com/groups?selm=Pine.GSO.3.96.97030353.695N-10%
40kelly.teleport.com

Of course these all apply to Perl, but I believe they could be applied to
PHP as well.  I wonder if this should be considered a documentation problem
with the given examples.

> My suspicion is that the answer to the above question is no, and as a
> result, in order to be certain of correctly serialising the file
> locking and output process, it would be necessary to use a separate
> lockfile, which is opened and locked *before* the file to be written
> to is opened, written, and then closed, after which the lock on the
> lockfile can be released.

I think that you will still have to do this, however, not because of the
fclose() issue but because you are opening the file in write mode, which
truncates it.  If you were opening in append mode you would be good by just
not releasing the lock before the fclose(), but since the fopen() in write
mode truncates the file BEFORE the lock is requested, you're in trouble
without using a separate lock file.  There is a note in PHP's flock()
documentation about that:

"Note:  Because flock() requires a file pointer, you may have to use a
special lock file to protect access to a file that you intend to truncate by
opening it in write mode (with a "w" or "w+" argument to fopen())."

So, I'd still go with getting an exclusive lock on a separate lock file,
writing to my actual file, then releasing the lock on the separate lock
file...

HTH

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] flock(), fclose() and O/S buffering

2004-07-01 Thread Andrew Hill
Hi all,

I have a question about the way flock() and fclose() work in PHP.
Consider the following code, slightly modified from the flock() PHP
manual page:


$fp = fopen("/tmp/lock.txt", "w+");
if (flock($fp, LOCK_EX)) { // do an exclusive lock
   fwrite($fp, "$processName\n");
   flock($fp, LOCK_UN); // release the lock
} else {
   echo "Couldn't lock the file !";
}
fclose($fp);


If the above code was executed by two processes, process A and process
B, one possible sequence of events is:

Process A opens the file.
Process B opens the file.
Process A obtains an exclusive lock.
Process A writes it's process name to the file.
Process A releases the exclusive lock.
Process A closes the file.
Process B obtains an exclusive lock.
Process B writes it's process name to the file.
Process B releases the exclusive lock.
Process B closes the file.

The results would be as desired - that is, as process B obtained the
lock on the file after process A, it is process B's process name that is
in the contents of the file, not process A.

However, another possible sequence of events is:

Process A opens the file.
Process B opens the file.
Process A obtains an exclusive lock.
Process A writes it's process name to the file.
Process A releases the exclusive lock.
Process B obtains an exclusive lock.
Process B writes it's process name to the file.
Process B releases the exclusive lock.
Process B closes the file.
Process A closes the file.

In this case, although process B is the second process to obtain a lock
and write its process name to the file, it is the first process to close
the file handle.

This raises the question of when the operating system actually writes
file contents to disk. Is it when PHP performs an fwrite()? Or does the
O/S buffer the file contents?

Essentially, when performing the style of concurrent programming above,
can one be certain at what point in time the file contents will be
written (on any operating system)?

My suspicion is that the answer to the above question is no, and as a
result, in order to be certain of correctly serialising the file locking
and output process, it would be necessary to use a separate lockfile,
which is opened and locked *before* the file to be written to is opened,
written, and then closed, after which the lock on the lockfile can be
released.

Can anyone please confirm that this is the case?

Thanks,

-- 
Andrew Hill
[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] flock problem

2004-02-28 Thread Armand Turpel
The problem was that the file was opened for reading and it was locked exclusiv.

$_fp = @fopen($file, "r");

flock($_fp, LOCK_EX);

After change to LOCK_SH it works. What is strange is that not all systems have this 
behavior. On linux with php 4.3.4 as module this was not a problem. !?!

Why??


- Original Message - 
From: "Rasmus Lerdorf" <[EMAIL PROTECTED]>
To: "Armand Turpel" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Saturday, February 28, 2004 8:04 PM
Subject: Re: [PHP] flock problem


> Is the file on an NFS-mounted filesystem?  flock() in 4.3.3 works fine.
> 
> -Rasmus
> 
> On Sat, 28 Feb 2004, Armand Turpel wrote:
> 
> > Hi,
> >
> > flock($_fp, LOCK_EX );
> >
> > return always false. I'm relativily shure that the file to flock is not flocked 
> > elsewhere. php 4.3.3 is running as cgi on linux.
> > What is going wrong?
> >
> > thanks for an answer.
> 
> 

Re: [PHP] flock problem

2004-02-28 Thread Rasmus Lerdorf
Is the file on an NFS-mounted filesystem?  flock() in 4.3.3 works fine.

-Rasmus

On Sat, 28 Feb 2004, Armand Turpel wrote:

> Hi,
>
> flock($_fp, LOCK_EX );
>
> return always false. I'm relativily shure that the file to flock is not flocked 
> elsewhere. php 4.3.3 is running as cgi on linux.
> What is going wrong?
>
> thanks for an answer.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] flock problem

2004-02-28 Thread Armand Turpel
Hi,

flock($_fp, LOCK_EX );

return always false. I'm relativily shure that the file to flock is not flocked 
elsewhere. php 4.3.3 is running as cgi on linux. 
What is going wrong?

thanks for an answer.

[PHP] flock and unix/apache

2002-04-09 Thread Matthew Luchak




PHP 4.1.2
SunOS web-unix1 5.7 
apache_1.3.22
 
 
I'm porting from WIN2000 to Apache/Unix and 
having problems with the flock() function.  The following :
 
$fd = fopen ($file, "r");if (flock($fd, 
2)) {
 
...}
 
 
"if" statement never returns true...  
any ideas?
 Matthew 
Luchak Webmaster Kaydara 
Inc. [EMAIL PROTECTED] 
 


[PHP] - Flock manual clarification please ;-)

2002-04-06 Thread Matt Friedman

>From the manual:


Note: Because flock() requires a file pointer, you may have to use a
special lock file to protect access to a file that you intend to
truncate by opening it in write mode (with a "w" or "w+" argument to
fopen()).


The manual indicates that you "may" need to use "a special lock file" if
you intend to open a file with "w" or "w+". I wrote some code to examine
this. (2 files) Each file locks a file after opening using "w" to do so.
Then, the file is locked using LOCK_EX. Subsequently executed, each file
appears to respect the lock applied by the other file. (Each file waits
for the lock to be released by the other) - So, I don't see this manual
entry applying in this case.

In regards to the  above, under what circumstances might you have
to create a separate lock file? Is this an OS issue? Is it an issue when
concurrency is high? The manual says "you may have to"; I am looking for
some clarification as to when exactly you "may have to" follow the
 advice.

Thanks as always,

Matt Friedman
Web Applications Developer
www.SpryNewMedia.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] flock

2002-01-06 Thread David Robinson

I'm using flock to manage the access of a file.  I've noticed that php seems to
wait for the file to be freed up.  Is there a ordered que that each request goes
into?  And a timeout period, or does it just wait?

David

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]