posthaste

A hooking library


Keywords
elixir, elixir-library, erlang, erlang-library, hook, hook-manager, hooking
License
Unlicense

Documentation

posthaste travis test status

posthaste

An Erlang/Elixir hooking library.

When to use Posthaste ?

When you want to lookup callbacks of hooks (especially with large numbers of processes at the same time), Posthaste is about 3-5 times faster than Erlang ETS. But in add/delete operations it's too slow (compared with ETS). Then if you have more lookup operation than add/delete operations, use Posthaste.

How to use?

In Posthaste, each hook must be an Erlang atom.

-type hook() :: atom().

Each hook has one or more key. key can be atom, binary or integer.

-type key() :: atom() | binary() | integer().

Finally each key has its own callbacks. callbacks is a list which may contain one or more callback. Each callback contains priority which is non negative integer and module and function which are atom.

-type callbacks :: [] | [callback()].
-type  callback() :: {priority(), mf()}.
-type   priority() :: non_neg_integer().
-type   mf() :: {module(), atom()}.

Posthaste maps each key to its callbacks for each hook:

1> Hooks = my_hooks.
my_hooks

%% Starting hook server process:
2> posthaste:start_link(Hooks).
{ok,<0.97.0>}

3> Hook1 = foo.
foo

4> Key1 = bar.
bar

%% Adding a hook with priority 10, module 'module' and function 'function':
5> posthaste:add(Hooks, Hook1, Key1, module, function, 10).
ok

%% Getting callbacks of Key1 for Hook1:
6> posthaste:callbacks(Hooks, Hook1, Key1).
{ok,[{10,{module,function}}]}

7> posthaste:add(Hooks, Hook1, Key1, module, function, 10).
ok
8> posthaste:add(Hooks, Hook1, Key1, module2, function2, 20).
ok
9> posthaste:add(Hooks, Hook1, Key1, module2, function2, 15).
ok

10> posthaste:callbacks(Hooks, Hook1, Key1).                  
{ok,[{10,{module,function}},
     {10,{module,function}},
     {15,{module2,function2}},
     {20,{module2,function2}}]}

11> Key2 = baz.                                               
baz
12> posthaste:add(Hooks, Hook1, Key2, mod, func, 100).        
ok

13> posthaste:callbacks(Hooks, Hook1, Key2).          
{ok,[{100,{mod,func}}]}

14> posthaste:callbacks(Hooks, Hook1, Key1).
{ok,[{10,{module,function}},
     {10,{module,function}},
     {15,{module2,function2}},
     {20,{module2,function2}}]}

%% New hook:
15> Hook2 = qux.                                      
qux
16> posthaste:add(Hooks, Hook2, Key1, m, f, 1).        
ok
17> posthaste:callbacks(Hooks, Hook2, Key1).   
{ok,[{1,{m,f}}]}

%% Deleting a callback:
18> posthaste:delete(Hooks, Hook1, Key1, module2, function2, 15).
ok
19> posthaste:callbacks(Hooks, Hook1, Key1).                     
{ok,[{10,{module,function}},
     {10,{module,function}},
     {20,{module2,function2}}]}

What is going on? (under the hood)

Let's run above code snippet again:

1> Hooks = my_hooks.        
my_hooks
2> posthaste:start_link(Hooks).
{ok,<0.97.0>}
3> Hook1 = foo.
foo
4> Key1 = bar.
bar
5> posthaste:add(Hooks, Hook1, Key1, module, function, 10).
ok

6> Hooks:Hook1(Key1).
[{10,{module,function}}]

7> my_hooks:foo(bar).
[{10,{module,function}}]

Actually each Posthaste server process creates new Erlang module and adds every hook as an Erlang function to it. key is an argument of hook function and finally callbacks are in function body.

Keep/Dump (fast add/delete operation)

Posthaste server process can keep delete/add requests and can dump them to hooks module. This is faster, because we compile new module once instead of compile it per add/delete request:

1> Hooks = my_hooks.
my_hooks
2> posthaste:start_link(Hooks).
{ok,<0.97.0>}

%% Turn server to 'keep' mode:
3> posthaste:keep(Hooks).
ok

4> Hook1 = foo.                                            
foo
5> Key1 = bar.
bar
6> posthaste:add(Hooks, Hook1, Key1, module, function, 10).
keep
7> posthaste:add(Hooks, Hook1, Key1, module, function, 20).
keep
8> posthaste:add(Hooks, Hook1, Key1, module1, function1, 15).
keep

9> posthaste:callbacks(Hooks, Hook1, Key1).
{ok,[]}

%% Dump all requests to module:
10> posthaste:dump(Hooks).
ok

11> posthaste:callbacks(Hooks, Hook1, Key1).
{ok,[{10,{module,function}},
     {15,{module1,function1}},
     {20,{module,function}}]}

How many hooks or keys or callbacks i have?

1> Hooks = my_hooks.
my_hooks
2> posthaste:start_link(Hooks).
{ok,<0.102.0>}
3> posthaste:add(Hooks, foo, bar, module, function, 10).
ok
4> posthaste:add(Hooks, foo, bar, module, function, 10).
ok
5> posthaste:add(Hooks, foo, bar, module, function, 10).
ok
6> posthaste:add(Hooks, foo, bar, module, function, 10).
ok
7> posthaste:add(Hooks, foo, bar, module, function, 10).
ok

8> posthaste:add(Hooks, foo, <<"baz">>, mod, func, 1).        
ok
9> posthaste:add(Hooks, foo, <<"baz">>, mod, func, 1).
ok
10> posthaste:add(Hooks, foo, <<"baz">>, mod, func, 1).
ok
 
11> posthaste:add(Hooks, qux, 12345, m, f, 1).         
ok
12> posthaste:add(Hooks, qux, 12345, m, f, 1).
ok

13> posthaste:hooks(Hooks).
{ok,[qux,foo]}

14> posthaste:keys(Hooks, qux). 
{ok,[12345]}

15> posthaste:keys(Hooks, foo).
{ok,[bar,<<"baz">>]}

16> posthaste:callback_count(Hooks, foo, bar).
{ok,5}

17> posthaste:callback_count(Hooks, foo, <<"baz">>).
{ok,3}

18> posthaste:callback_count(Hooks, qux, 12345).    
{ok,2}

%% Under the hood: 
19> Hooks:foo().
#{bar => 5,<<"baz">> => 3}

20> Hooks:qux().
#{12345 => 2}

Running benchmark

Just export ERL_POSTHASTE_BENCHMARK=1 and run ct tests.

Contributing

I love pull requests from everyone. But it's good to explain idea, feautre or bug in issues before.

Author

pouriya.jahanbakhsh@gmail.com

License

BSD 3-Clause

Hex version

18.5.19