Tagged Questions
The kqueue tag has no wiki summary.
9
votes
3answers
3k views
File-level filesystem change notification in Mac OS X
I want my code to be notified when any file under (either directly or indirectly) a given directory is modified. By "modified", I mead I want my code to be notified whenever a file's contents are ...
6
votes
1answer
119 views
Writing a file with vim doesn't fire a file change event on OS X
I am using watchdog to monitor .less file change events on OS X. If I change the contents of a .less file with TextMate or Sublime Text the modification event is captured. However, if I edit the ...
6
votes
2answers
220 views
Haskell concurrency over kqueue
I wrote concurrent application and have caught the error:
buildFdSets: file descriptor out of range
I found out that it is the OS limit on the number of file descriptors in one process, in my ...
5
votes
1answer
844 views
What is the optimal way to monitor changes in a directory with a kqueue()?
OK: I'm implementing File Sharing in an iPhone OS app, and of course this means filesystem monitoring. Yay!
Basically, the OS copies and/or deletes from and to a directory I can access when the user ...
4
votes
1answer
48 views
Is there a kqueue()/kevent() equivalent to select()'s “errorfds” set?
I was porting some code from select() to kqueue() today, and I noticed that kevent() doesn't seem to have an analog for select()'s "exception-set" feature.
That is to say, select()'s ...
3
votes
1answer
231 views
fs.watch via Node 0.5.9 on Mac OSX
I'm running the following on Node v0.5.9:
var fs = require("fs");
fs.watch("/Users/username/testingFsWatcher/",function(event,file) {
console.dir(arguments);
});
I then do:
cd ...
3
votes
1answer
247 views
Is there a good objc library wrapper for File System Events/kqueue that handles recursive watching for me?
I want to write an OSX (Snow Leopard) app that receives notifications when files within a specific directory are changed, and I want access to the path of the specific file that was changed.
I know I ...
3
votes
3answers
271 views
Choosing a IPC solution for an event-driven application
I am currently working on a rather large single-threaded, event-based, application designed around epoll under Linux and comparable technologies under other platforms. Currently, whenever we wish two ...
2
votes
0answers
60 views
Mac OS X How do I programatically detect if a changed file is still being 'used' by the same process that changed it?
I'm investigating a problem with a utility we've developed. We track a file or a directory and when a change has been made we upload the new version to a central repository. Our utility is similar ...
2
votes
1answer
60 views
Detect file creation or deletion under given path using python and kqueue on FreeBSD
Given /certain/path/ on a FreeBSD system, I would like python to use kqueue to detect if any files are created or deleted anywhere under that path.
How would I do this?
2
votes
2answers
319 views
How do I replace select() with kevent() for higher performance?
From the Kqueue Wikipedia Page:
Kqueue provides efficient input and output event pipelines between the kernel and userland. Thus, it is possible to modify event filters as well as receive pending ...
2
votes
1answer
420 views
Use python select kqueue on OSX to monitor file creation by external application
Typically the transcode of my 1 hr long audio recording sessions to an mp3 file takes twenty odd minutes.
I want to use a python script to execute a series of python code when the OSX application ...
2
votes
2answers
194 views
On iOS, how can an app determine if a file is no longer being written to by another process?
My question is very similar to this one: What is the optimal way to monitor changes in a directory with a kqueue()? but I'm not satisfied with the answer there.
I have a kqueue setup to be notified ...
2
votes
1answer
190 views
Use kqueue to determine hangup on the other side of the socket or exceptional state of the socket
I've read man 2 kqueue but have not found out how I can get notified about a socket hangup or exceptional condition of the socket without registering it with EVFILT_READ or EVFILT_WRITE. Apart from ...
2
votes
1answer
557 views
revisiting “how do you use aio and epoll together”
following the discussion at http://stackoverflow.com/questions/1825621/how-do-you-use-aio-and-epoll-together-in-a-single-event-loop.
There are in fact 2 "aio" APIs in linux.
There's POSIX aio (the ...
1
vote
2answers
105 views
Efficient preforked server design with NBIO like epoll, kqueue using libevent
I am planning on writing a 'comet' server for 'streaming' data to clients. I have enhanced one in the past to take advantage of the multi-core CPUs but now I'm starting from scratch. I am planning to ...
1
vote
1answer
29 views
Do NIO selectors use event notifications by default?
I found this article saying OpenJDK uses epoll on linux, but does anybody know if Selector implementations use kqueue, dev/poll etc over traditional polling where available?
1
vote
2answers
234 views
Reading updated files on the fly in Python
I'm writing two Python scripts that both parse files. One is a standard unix logfile and the other is a binary file. I'm trying to figure out the best way to monitor these so I can read data as soon ...
1
vote
1answer
334 views
kqueue on iphone?
I am porting a linux server to ios. It is a single threaded, event driven design
that uses kqueue on OSX to handle sockets and other events. Is there something
similar on ios?
Thanks!
1
vote
1answer
341 views
Are there any major performance differences between epoll and kqueue?
My development machine is a MacBook (which of course has kqueue). However, in production we're running Linux (which of course uses epoll). Obviously, to know the performance characteristics of my ...
1
vote
1answer
174 views
triggering kevent by force
I'm using kqueue for socket synchronization in OS X. I can register an event of interest like the following:
struct kevent change;
EV_SET(&change, connected_socket, EVFILT_READ, EV_ADD, 0, NULL, ...
1
vote
1answer
235 views
Using kqueue to poll for exceptional conditions
I'm modifying an app in order to replace its use of select() with kqueue. select() allows one to poll for exceptional conditions:
int select(int nfds,
fd_set *restrict readfds,
fd_set ...
0
votes
0answers
30 views
how to get child folder event by kqueue
how to get child folder event by kqueue?
i want to get event as fuge/a, fuge/a/a1, fuge/b.
but following source code unsuccess.
== folder
fuge
|-- a
| `-- a1
`-- b
== source code
f = ...
0
votes
1answer
73 views
How to get folder changes notifications(folder watcher) in cocoa
I am new to Cocoa Application development. I want my application to be notified when any file under a given directory is modified(folder watcher). Modified means deleted, added, content of file is ...
0
votes
1answer
33 views
kqueues on Mac OS X: strange event order
I monitor a file for changes in a separate thread using kqueues/ kevent(2).
(I monitor a Python file for reparsing)
I subscribe as following:
EV_SET(&file_change, pyFileP, EVFILT_VNODE,
...
0
votes
1answer
70 views
Check if file is modified deleted or extended using python select.kqueue()
Hi I am having a hard time understanding how to use the BSD only python module classes select.kqueue and select.kevent to setup a watch for file write events.
I want to a python program to respond ...
0
votes
0answers
73 views
File monitor stop after save file
I'm trying to monitor the edition of a single file using kqueue through a wrapper called UKKQueue available here. This wrapper is very simple, here is the test code I'm using:
@implementation ...
0
votes
0answers
81 views
how do I use kevent and select?
kevent's file descriptor returned by kqueue() can be used as input to select() or kevent().
What are the advantages of using this method?
Suppose kevent is waiting on a list of descriptors by using ...
0
votes
1answer
227 views
What are the limitations of kqueue?
The documentation for libev (source) says that:
Kqueue deserves special mention, as at the time of this writing, it was broken on all BSDs except NetBSD (usually it doesn't work reliably with ...
0
votes
0answers
90 views
What is the different between kCFFileDescriptorReadCallBack and kCFFileDescriptorWriteCallBack?
there is a sample which used CFFileDescriptorEnableCallBacks(dirKQRef, kCFFileDescriptorReadCallBack) to enable a call back which is KQCallback.And my question is why not use ...
0
votes
1answer
192 views
Is there any way to emulate epoll_wait with kqueue/kevent?
I have a list of a bunch of file descriptors that I have created kevents for, and I'm trying to figure out if there's any way to get the number of them that are ready for read or write access.
Is ...
0
votes
1answer
134 views
kqueue NOTE_EXIT doesn't work
I am trying to use Apple's example of using kqueue but the callback is never called unless I start observing the kqueue after the process starts. But the lifetime of the process is short and i need ...
0
votes
4answers
2k views
serving large file using select, epoll or kqueue
Nginx uses epoll, or other multiplexing techniques(select) for its handling multiple clients, i.e it does not spawn a new thread for every request unlike apache.
I tried to replicate the same in my ...
0
votes
2answers
196 views
How do I tell when a CUPS print jobs has been completed plus info about that job?
I need to know each time a Mac print job is created/completed, plus some information about that job (what was printed, pages, copies, etc).
The best method I've come up with thus far is to use ...