Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
10answers
5k views

Using AppleScript to grab the URL from the frontmost window in web browsers: The definitive list

I built a [widget][1] that grabs the URL from the frontmost window in Safari, then allows you to shorten it using the tr.im API. Works sweet as. I want to make this more flexible, so am investigating ...
5
votes
3answers
2k views

Where is flock() for Perl on Windows?

I have a Perl script that I'd like to run on Windows, using either Strawberry Perl or ActivePerl; I don't care which. This script however, uses flock() calls, which does not seem to be included in ...
4
votes
7answers
679 views

How to write to file in large php application(multiple questions)

What is the best way to write to files in a large php application. Lets say there are lots of writes needed per second. How is the best way to go about this. Could I just open the file and append the ...
3
votes
2answers
99 views

flock-ing a C++ ifstream on Linux (GCC 4.6)

context I'm slowly writing a specialized web server application in C++ (using the C onion http server library and the JSONCPP library for JSON serialization, if that matters)., for a Linux system ...
3
votes
3answers
275 views

Running python script with cron only if not running

I need to run a python script (job.py) every minute. This script must not be started if it is already running. Its execution time can be between 10 seconds and several hours. So I put into my ...
3
votes
4answers
228 views

How can I ensure only one copy of a Perl script is running at a time?

I need to ensure that only one copy of my Perl script is running at a time. According to the suggestions here I wrote a sub to do the check: sub check_instances { open my $fh, '<', $0 or die ...
3
votes
1answer
770 views

PHP check if file locked with flock()?

Will fopen() fail if a file exists, but is currently locked with LOCK_EX? Or do I have to open it, and then try and set a lock, in order to determine if one already exists? I've also read that ...
3
votes
3answers
169 views

How to flock() an image?

I am looking to flock() an image. Currently I am using the following $img = ImageCreateFromPng($img_path); flock($img,LOCK_EX); It seems that the GD library's file handle is not valid with flock. ...
2
votes
2answers
33 views

PHP Accessing a file that has been locked for editing - Permission Denied error

I'm doing some csv parsing, and if I cancel the parsing (by navigating to a different page or refreshing) before the fclose() function gets called, I get the below error when I go back and start up ...
2
votes
3answers
100 views

Flocking and surrounding instead of moving away?

Are there any examples of flocking where the flock surrounds and engages the target instead of a fish like feeding frenzy where they swoop in then fly away? I'm working on an overhead shooter and I ...
2
votes
1answer
99 views

How to tell which file Apache is waiting for when WCHAN = flock_lock_file_wait

We're having an issue with our webservers in which more and more Apache processes are getting stuck waiting for file lock (caused by PHP flock()) to somehow resolve, but never does. Eventually the ...
2
votes
2answers
277 views

bash flock: exit if can't acquire lock

The following lock mechanism is used for preventing a cron job from running concurrently: #!/bin/bash echo "Before critical section" ( flock -e 200 echo "In critical section" sleep 5 ) ...
2
votes
2answers
273 views

PHP flock() alternative

PHP's documentation page for flock() indicates that it's not safe to use under IIS. If I can't rely on flock under all circumstances, is there another way I could safely achieve the same thing?
2
votes
2answers
214 views

Preventing deadlock caused by flock

I am trying to simulate a file writing on a busy site. I have written a following code which eventually end up freezing computer. $loop = 10000; $sleep = 500000; $i =0; while($i < $loop) { ...
2
votes
1answer
163 views

LOCK_NB Ignored

running this code twice : $fp = @fopen('test.test', "wb"); if (flock($fp, LOCK_NB | LOCK_EX)){ @fwrite($fp, $data); echo 'written'; sleep(5); ...
2
votes
1answer
1k views

Why doesn't bash's flock with timeout exit if it fails to acquire the lock?

I am playing with using flock, a bash command for file locks to prevent two different instances of the code from running more than once. I am using this testing code: ( ( flock -x 200 ; sleep 10 ; ...
2
votes
2answers
809 views

How do I check the exit code of a command executed by flock?

Greetings all. I'm setting up a cron job to execute a bash script, and I'm worried that the next one may start before the previous one ends. A little googling reveals that a popular way to address ...
2
votes
3answers
2k views

How do I use the linux flock command to prevent another root process from deleting a file?

I would like to prevent one of my root processes from deleting a certain file. So I came across the flock command, it seems to fit my need, but I didn't get its syntax. If I only indicate a shared ...
2
votes
4answers
1k views

PHP flock() - what's under the hood?

After wrestling with PHP source for a half an hour, I gave up. :P The question is - what system call does the PHP flock() function call boil down to on a Gentoo Linux system? I'm having some issues ...
1
vote
1answer
72 views

How to keep linux flock(2) from starving exclusive lock requests?

I am using flock(2) in linux to control access to resources in a homespun database, using both shared and exclusive locking modes. I find that if a shared lock is granted, then another process can ...
1
vote
1answer
188 views

call flock with node.js?

I have cron job to run node.js scripts. Want to use flock to lock a file to make sure my cron jobs are not overlapped. Any good module for doing file locking ? Or I should call that in child ...
1
vote
1answer
164 views

Does file() lock the file when reading?

I'm using file() to read through a file like an array with tabs. I want to lock the file but I cannot seem to get flock() working on the file. Is it possible to do this? If so, how? If not, does the ...
0
votes
2answers
40 views

How can I lock a directory in C on a linux machine

Will flock or lockf work on a directory? I there another way to lock a directory in C on a linux machine?
0
votes
1answer
35 views

Choice of filehandle for flock utility

The flock utility man page gives the following usage example: ( flock -s 200 # ... commands executed under lock ... ) 200>/var/lock/mylockfile Assuming 200 is the filehandle of the ...
0
votes
0answers
102 views

Using Zend_Search_Lucene with NFS?

Is there any way to use Zend_Search_Lucene with an Network File System (NFS). On a load balanced system for instance. I noticed that Zend_Search_Lucene doing all the reading and writing stuff with ...
0
votes
2answers
82 views

PHP Flock and File Upload

I have two processes running in different scripts indepdent of each other. PHP #1 script reads the filename of a file and writes it to a DB PHP #2 script uploads the file I would like to create a ...
0
votes
1answer
764 views

flock() question

I have a question about how flock() works, particularly in python. I have a module that opens a serial connection (via os.open()). I need to make this thread safe. It's easy enough making it thread ...
0
votes
1answer
696 views

Does python's fcntl.flock function provide thread level locking of file access?

Python's fcnt module provides a method called [flock][1] to proved file locking. It's description reads: Perform the lock operation op on file descriptor fd (file objects providing a fileno() ...
0
votes
1answer
197 views

flock locking order?

im using a simple test script from http://www.tuxradar.com/practicalphp/8/11/0 like this <?php $fp = fopen("foo.txt", "w"); if (flock($fp, LOCK_EX)) { print "Got lock!\n"; sleep(10); ...
0
votes
1answer
42 views

Global disk resource becomes unavailable

If I've got a global disk resource (mount point on an isilon file server) that multiple servers use to access a lock file. What is a good way to handle the situation if that global disk becomes ...