Harakiri
was concieved to help applications kill themselves in response to a touch
to a file on disk. It grew into something scarier.
Given a list of files, an application, and an action. When any of the files change on disk (i.e. a gentle touch
is enough), then the given action is fired over the app.
Everything is in an OTP Application so you can have it running in your system to help all your other applications kill themselves.
Actions can be:
- Any anonymous function.
:restart
: Restarts the whole VM, runs:init.restart
.:stop
: Stops, unloads and deletes app's entry from path.:reload
: like:stop
, then adds givenlib_path
to path and runsApplication.ensure_all_started/1
.
First of all, add it to your applications
list to ensure it's up before your app starts.
Then add to your deps
like this:
{:harakiri, ">= 1.2.0"}
Add an monitor like this:
Harakiri.monitor "/path/to/tmp/file", &MyModule.myfun
Or an action group like this:
Harakiri.add %{paths: ["file1","file2"], action: &MyModule.myfun}
You are done. That would run MyModule.myfun
when file1
(or file2
) is touched. All given files (file1
, file2
, etc.) must exist, unless you give the option :create_paths
. Then all given paths will be created if they do not already exist.
If your app is the main one in the Erlang node, then you may consider a whole :restart
:
Harakiri.monitor "/path/to/tmp/restart", :restart
That would restart the VM. I.e. stop every application and start them again. All without stopping the running node, so it's fast enough for most cases. It tipically takes around one second. See init.restart/0.
If you need some specific function for your app to be cleanly accessible from outside your VM, then you can pass it as a function. To that function is passed a list with the whole ActionGroup
and some info on the actual path that fired the event. Like this:
myfun = fn(data)->
# check the exact path that fired
case data[:file][:path] do
"/path/to/fire/myfun1" -> do_something1
"/path/to/fire/myfun2" -> do_something2
end
# see all the info you have
data |> inspect |> Logger.info
end
Harakiri.add %{paths: ["/path/to/fire/myfun1","/path/to/fire/myfun2"],
action: myfun}
This way you can code in pure elixir any complex process you need to perform on a production system. You could perform hot code swaps back and forth between releases of some module, go up&down logging levels, some weird maintenance task, etc. All with a simple touch
of the right file.
If you perform an echo
instead of a touch
, then you could even do something with the contents of the file that fired.
This is quite powerful. Enjoy it.
The :restart
action is suited for a project deployed as the main application in the entire VM. :init.restart
will kill all applications and then restart them all again.
The :stop
and reload
actions are suited for quick operations over a single application, not its dependencies. For instance, :stop
unloads and deletes the app's entry from path. No other application is stopped and removed from path.
Harakiri.monitor "file1", :stop
:reload
will ensure all dependencies are started before the app as it uses ensure_all_started
, but it will not bother adding them to the path. So any dependency that changed will most probably not start because it will be missing from path.
Harakiri.add %{paths: ["file1"],
action: :reload,
lib_path: "path"}
lib_path
is the path to the folder containing the ebin
folder for the current version of the app, usually a link to it. lib_path
is only needed by :reload
.
- Support for multiple apps on each action set.
- Support for several actions on each action set.
- Deeper test, complete deploy/upgrade/reload simulation
- Add
monitor
for simpler use - Remove Elixir 1.5 warnings
- Remove Elixir 1.4 warnings
- Add support for async firings
- Make more noise when given function fails
- Avoid Elixir 1.3 warnings
- Do not touch already existing files on start
- Use it on several projects in production without problems
- Avoid race conditions with ETS on testing
- Support for anonymous functions as actions
- Set initial mtime for created files
- Support create paths when asked
- Fix some testing inconsistency
- Use ETS to preserve state
- Rearrange using a supervised
Task
for the main loop and regular helpers to access the ETS table. No need for aGenServer
anymore.
- Allow only one instance of the same action group.
- First release