On Monday, November 15, 2010 1:12:11 pm Paul LeoNerd Evans wrote:
> On Mon, Nov 15, 2010 at 11:25:42AM -0500, John Baldwin wrote:
> > I think the assumption is that userland actually maintains a reference on 
> > the 
> > specified object (e.g. a file descriptor) and will know to drop the 
> > associated 
> > data when the file descriptor is closed.  That is, think of the kevent as a 
> > member of an eventable object rather than a separate object that has a 
> > reference to the eventable object.  When the eventable object's reference 
> > count drops to zero in userland, then the kevent should be deleted, either 
> > via 
> > EV_DELETE, or implicitly (e.g. by closing the associated file descriptor).
> 
> Ah. Well, that could be considered a bit more awkward for the use case I
> wanted to apply. The idea was that the  udata  would refer effectively
> to a closure, to invoke when the event happens. The idea being you can
> just add an event watcher by, say:
> 
>   $ev->EV_SET( $pid, EVFILT_PROC, 0, NOTE_EXIT, 0, sub {
>      print STDERR "The child process $pid has now exited\n";
>   } );
> 
> So, the kernel's udata pointer effectively holds the only reference to
> this anonymous closure. It's much more flexible this way, especially for
> oneshot events like that.
> 
> The beauty is also that the kevents() loop can simply know that the
> udata is always a code reference so just has to invoke it to do whatever
> the original caller wanted to do.
> 
> Keep in mind my use-case here; I'm not trying to be one specific
> application, it's a general-purpose kevent-wrapping library.

So is GCD (Apple's libdispatch).  It also implements closures on top of
kevent.  However, the way it works is that it doesn't expose kevent()
directly, instead it uses kevent to implement asynchronous I/O on a 
socket for example, and since it is logically managing the life cycle
of a socket, it knows when the socket is closed and cleans up then.

> > I think in your case you should not give the kevent a reference to your 
> > object, but instead remove the associated event for a given object when an 
> > object's refcount drops to zero.
> 
> Well that's certainly doable in longrunning watches, but I don't think
> it sounds very convenient for a oneshot event; see the above example for
> justification.

For the above case, if you know an event is one shot, you should either
use EV_ONESHOT, or use a wrapper around the closure that clears the event
after the closure runs (or possibly before the closure runs?)

> Also it again begs my question, worth repeating here:
> 
> On Friday, November 12, 2010 1:40:00 pm Paul LeoNerd Evans wrote:
> > I had
> > thought the point of kqueue/kevent is the O(1) nature of it, which is
> > among why the kernel is storing that  void *udata  pointer in the first
> > place. If I have to store a mapping from every filter+identity back to
> > my data pointer, why does the kernel store one at all? I could just
> > ignore the udata field and use my mapping for my own purposes.
> 
> If you're saying that in my not-so-rare use case, I don't want to be
> using udata, and instead keeping my own mapping, why does the kernel
> provide this udata field at all?

Your use case is rare.  Almost all consumers of kevent() that I've seen
use kevent() as one part of a system that maintain the lifecycle of objects.
Those objects are only accessed within the system, so the system knows when
an object is closed and can release the resources at the same time.

-- 
John Baldwin
_______________________________________________
freebsd-hackers@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscr...@freebsd.org"

Reply via email to