IF Filesystem-event Then (IFFT)

IF a filesystem event (create, write, remove, chmod) occurs in a watched folder that is not filtered out by an exclusion rule THEN execute a shell command.
Use this to watch for code changes to trigger: process restart; code compilation; or test run.
Installation
If you have rust installed on your machine:
cargo install ifft
Otherwise, check releases for downloads.
Usage
Hello, world.
Create a config file (ifft.toml) in a directory (let's say ~/ifft-test):
[[]]
# Matches everything including sub-folders
= "**/*"
= "echo hello, world."
Run ifft with the directory containing your config as the argument:
ifft ~/ifft-test.
You'll see the following output, which indicates that ifft found your config
file:
Found config: "~/ifft-test/ifft.toml"
In later examples, we'll see that multiple config files can be embedded throughout the directory tree.
Now let's create a file that will trigger ifft: touch ~/src/test1
You'll see the following output:
[2019-05-12 14:55:57Z] Event: Create("~/ifft-test/test1")
Match from config in: "~/ifft-test"
Matched if-cond: "**/*"
[2019-05-12 14:55:57Z] Execute: "echo hello, world." from "~/ifft-test"
Exit code: 0
Stdout:
hello, world.
Stderr:
As you can see, triggers report the match condition and the exit code, stdout, and stderr of the triggered command.
That's it. ifft simply listens for file changes and takes action.
Advanced
Here's a more complex ifft config that would be in a folder such as ~/src
with sub-folders my-c-prog and my-rust-prog:
# Never trigger on a backup or swap file. (VIM specific)
= [
"*~",
"*.swp",
]
[[]]
# If any .c or .h files change, recompile.
= "my-c-prog/**/*.{c,h}"
= "make"
= "my-c-prog"
[[]]
= "my-rust-prog/**/*.{rs,toml}"
# Ignore changes in the target folder to avoid recursive triggering.
= ["my-rust-prog/target/*"]
= "cargo build"
= "my-rust-prog"
# Contrived example to demonstrate other features.
[[]]
= "*"
# {{}} is substituted with the absolute path to the triggering file.
= "cp -R {{}} ."
# working_dir can be an absolute path. If omitted, the working_dir is set to
# root.
= "/tmp"
The second ifft condition could be moved into a new ifft.toml in the
my-rust-prog folder. For equivalent functionality, the contents would be:
[[ifft]]
if = "**/*.{rs,toml}"
not = ["target/*"]
then = "cargo build"
This allows you to distribute config files all over, which has the advantage of keeping them small and relevant to the folder they're in.
On start
If you want to automatically trigger iffts on start without any file event,
use the -r flag. The argument will trigger any iffts with matching names. For
example, running ifft ~/ifft-test -r build will match:
[[]]
= "build"
= "**/*.{rs,toml}"
= ["target/*"]
= "cargo build"
This is useful to ensure that projects are built on boot without having to wait for a file event.
You can also use the -q flag to quit after the -r flag triggers have
completed. This can be used to initiate a one-time build or clean without
listening for changes afterwards.
Features
- Configure with a
tomlfile. - Config files can be distributed throughout a directory tree.
- Use glob patterns for
ifandnotconditions. - Global
notfiltering and per-triggernotfiltering. - Multiple events that trigger the same
ifare buffered and only trigger onethenexecution. - On start, iffts with a matching name can be triggered without any file event.
Platforms
Tested on Linux and OS X. Untested elsewhere.
Usage with VirtualBox Shared Folders
On the guest OS, VirtualBox Shared Folders do not generate filesystem event notifications. You'll need to use a separate filesystem event forwarder such as notify-forwarder.
Alternatives
- bazel for a serious incremental build system.
- watchexec is a more full-featured program.
- entr has a clean Unixy interface.
Todo
- [] Add
.gitignoreparsing support. - [] Flag to ignore hidden files.
- [] Flag to control verbosity of prints.
- [] Group events in quick succession together and trigger only once.
- [] Allow customization of type of FS events that trigger.
- [] Low priority: Compute the optimal path prefix for watching.
- [] Performance: Do not compile glob before each use. Current hack to make it easy to access the glob pattern string if an error occurs.