While I end up using Mac OS X as my primary GUI, I still do a lot of development work on Linux. I'm using VMware Fusion to host a virtual headless Linux machine, which is all good. Recently I decided to upgrade my OS to Ubuntu 8.04, which promotes have a just-enough OS (jeOS), which seemed perfect for what I wanted to do. Unfortunately the process of getting the VMware client tools installed was less than simple. Cut a long story short, the fix is described by Peter Coooper, and things work well after that. (It is a little annoying that the Ubuntu documentation doesn't explain this, or link to this.).
Anyway, after this I'm able to share my home directory directly between OS X, and my virtual machine, which is absolutely fantastic, as I'm not using TRAMP or some network filesystem to shuffle files back and forth between the virtual machine and the main machine.
Unfortunately, I ran into a bit of a problem, specifically, history
was not working in zsh. Specifically
saving the history into the history file was not working, which is a
really painful situation. It was not really clear why that was, running
fc -W manually didn't work either, but managed to fail
silently, no stderr output, and no error code returned.
Failing this I went back to the massively useful debugging tool
strace.
This finally gave me the clue that link() (hard linking) was
failing. I confirmed that using ln.
So, it turns out that the VMware hgfs file system doesn't support
hard linking, which is a real pain, especially since the underlying OS
X file system supports hard linking. So I'm down to the work around of storing
my history file in /tmp rather than my home directory, which
is slightly annoying, but not the end of the world.
As it turns out I'm not the first to discover this, Roger C. Clermont also found this out a few days ago. With any luck we will find a solution in the near future.
Mac OS X has the kevent()
system call which allows you to monitor various kernel events. This is kind of
useful, because I want to, well, watch a file, and then do something when it
changes. Now, I would have thought I could find something really simple to
do this, but I could only find massive GUI programs programs to do this, which
is not so great for scripting.
Anyway, long story short, I decided to write my own. It was pretty straight
forward. I thought it was worth documenting how it works so that Benno 5 years
from now can remember how to use kevent.
The first important thing you need to create a kernel queue using
the kqueue()
system call. This system call returns a descriptor which allows you
get to use on calls to kevent(). These descriptors come
out of the file descriptor namespace, but don't actually get inherited
on fork().
19 | int kq;
|
77 78 79 80 | kq = kqueue();
if (kq == -1) {
err(1, "kq!");
}
|
After creating the kernel queue, an event is register. The
EV_SET macro is used to initialise the struct
kevent. The 1st argument is the address of the event structure
to initialise it. The 2nd argument is the file descriptor we wish to
monitor. The 3rd argument is the type event we wish to monitor. In
this case we want to monitor the file underlying our file descriptor,
which is this EVFILT_VNODE event. The 5th argument is
some filter specific flags, in this case NOTE_WRITE,
which means we want to get an event when the file is modified. The
4th argument describes what action to perform when the event
happens. In particular we want the event added to the queue, so we use
EV_ADD & EV_CLEAR. The EV_ADD is obvious,
but EV_CLEAR less so. The NOTE_WRITE event
is triggered by the first write to the file after register, and
remains set. This means that you continue to receive the event
indefinitately. By using the EV_CLEAR flag, the state is
reset, so that an event is only delivered once for each
write. (Actually it could be less than once
per write, since events are coalesced.) The final arguments
are data values, which aren't used for our event.
The kevent system call actually registers the
event we initialised with EV_SET. The kevent
function takes a the kqueue descriptor as the 1st argument. The 2nd and
3rd arguments are a list of events to register (pointer and length). In this
case we register the event we just initialised. The 4th and 5th arguments
is a list of events to receive (in this case empty). The final argument
is a timeout, which is not relevent in this case (as we aren't
receiving any events).
59 | struct kevent ke;
|
83 84 85 86 87 88 89 90 91 92 93 94 | EV_SET(&ke,
/* the file we are monitoring */ fd,
/* we monitor vnode changes */ EVFILT_VNODE,
/* when the file is written add an event, and then clear the
condition so it doesn't re- fire */ EV_ADD | EV_CLEAR,
/* just care about writes to the file */ NOTE_WRITE,
/* don't care about value */ 0, NULL);
r = kevent(kq, /* register list */ &ke, 1, /* event list */ NULL, 0, /* timeout */ NULL);
if (r == -1) {
err(1, "kevent failed");
}
|
After we have registered our event we go into an infinite loop
receiving events. In this time we aren't setting up any events,
so it is the list to register is simply NULL. But,
4th and 5th argument have a list of up to 1 item to receive.
In this case we still don't want a timeout. We want to check
that the event we received was what expected, so we assert
it is true.
33 34 35 36 37 38 39 40 | r = kevent(kq,
/* register list */ NULL, 0,
/* event list */ &ke, 1,
/* timeout */ NULL);
if (r == -1) {
err(1, "kevent");
}
assert(ke.filter == EVFILT_VNODE && ke.fflags & NOTE_WRITE);
|
The aim of this program is to run a shell command whenever a file
changes. Simply getting the write is not good enough. A
progam that is updating a file will cause a number of consecutive
writes, and since it is likely that our shell command is
going to want to operate on a file that is a consistent state, we want
to try and ensure the file is at a quiescent point. UNIX doesn't
really provide a good way of doing this. Well, actually, there is a
bunch of file locking APIs, but I guess I haven't really used them
much, and it isn't clear if the file writing would be using them, and
as far as I can tell, the writing file would have had to be written
using the same locking mechanism. Also, the commands I want to run are
only going to be reading the file, not writing to it, so at worst I'm
going to end up with some broken output until the next write. Anyway,
to get something that will work almost all the time, I've implemented
a simply debouncing technique. It is a simple loop that waits until
the file is not written to for 0.5 seconds. 0.5 seconds is a good tradeoff
between latency and ensuring the file is quiescent. Of course it is
far from ideal, but it will do.
To implement this a struct timespec object is created
to pass as the timeout parameter to kevent.
21 | struct timespec debounce_timeout;
|
72 73 74 | /* Set debounce timeout to 0.5 seconds */
debounce_timeout.tv_sec = 0;
debounce_timeout.tv_nsec = 500000000;
|
In the debounce loop, kevent is used, but this time
passed with the 0.5 second timeout.
41 42 43 44 45 46 47 48 49 50 | /* debounce */
do {
r = kevent(kq,
/* register list */ NULL, 0,
/* event list */ &ke, 1,
/* timeout */ &debounce_timeout);
if (r == -1) {
err(1, "kevent");
}
} while (r != 0);
|
Finally after the debounce, we run the command that the user specified on the command line. The following code shows the declaration, initialisation and execution of the command.
20 | char *command;
|
70 | command = argv[2];
|
51 | system(command);
|
To use simplefilemon is easy. E.g: simplefilemon filename "command to run".
You can compile simplemon.c with gcc simplefilemon.c -o simplefilemon.
Download: simplefilemon.c