TIP #384: ADD FILE ALTERATION MONITORING TO THE TCL CORE ========================================================== Version: $Revision: 1.4 $ Author: Reinhard Max Gerald W. Lester State: Draft Type: Project Tcl-Version: 8.7 Vote: Pending Created: Thursday, 02 December 2010 URL: https://tip.tcl-lang.org384.html Post-History: ------------------------------------------------------------------------- ABSTRACT ========== This TIP proposes to add capabilities for monitoring changes in the file system to the Tcl core. RATIONALE =========== Most, if not all, platforms supported by Tcl today allow user space processes to monitor the file system for certain changes such as the creation, deletion, alteration or renaming of files. Unfortunately there is no unique cross-platform API for this, so a Tcl core feature will have to be backed by a series of platform-dependent implementations and possibly a fallback for platforms that don't have these monitoring capabilities or instances on which they have been disabled. Platform-specific APIs which should be supported by the final implementation (list to be extended): * inotify[] (Linux) * kqueue[] (BSD) * FSEvents[] (Mac OS X) * TWAPI [] (Windows) PROPOSAL ========== A new subcommand should get added to the *file* command with the following syntax: *file monitor* /path/ /callback/ ?/filter/? This will register /callback/ to be called from the event loop when one of the events specified by /filter/ occurs to the file or directory specified by /path/. Calling *file monitor* with an empty callback argument removes an existing callback from the given path. The calling conventions for /callback/ and the syntax of /filter/ are yet to be determined. REJECTED ALTERNATIVES ======================= The *file* command was chosen over *fileevent* and *chan event*, because the object to be monitored is passed by name and not as an open channel. As an API, FAM[] would have been a more portable alternative, but it requres a daemon to be running on the local machine and it requires linking against a lib that is licensed under the LGPL. It might be possible to support FAM as a compile time alternative to the system's native notification method. There exists a serverless implementation of a subset of the FAM API, called Gamin[], but that's also licensed under the LGPL. There exists a Tcl extension for inotify[], but it is licensed under the GPL and it's script level API is too close to the inotify primitives to serve as the basis of a cross-platform abstraction for such notifications. But it might be a good base for a scripted prototype to sort out the remaining details of the proposed script level API. FURTHER IDEAS =============== It might be an option to release the C code that unifies the various OS speciffic mechanisms under a single API as a separate library, so that projects other than Tcl can use it as well. COPYRIGHT =========== This document has been placed in the public domain. ------------------------------------------------------------------------- TIP AutoGenerator - written by Donal K. Fellows