summaryrefslogtreecommitdiff
path: root/src/rexi_server.erl
blob: 8b92227572e2760d89f278c7416b8a6b30f85ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
-module(rexi_server).
-behaviour(gen_server).
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2,
    code_change/3]).

-export([start_link/0, init_p/2]).

-include_lib("eunit/include/eunit.hrl").

-record(st, {
    workers = []
}).

start_link() ->
    gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).

init([]) ->
    {ok, #st{}}.

handle_call(_Request, _From, St) ->
    {reply, ignored, St}.

handle_cast({doit, From, MFA}, #st{workers=Workers} = St) ->
    {LocalPid, Ref} = spawn_monitor(?MODULE, init_p, [From, MFA]),
    {noreply, St#st{workers = add_worker({LocalPid, Ref, From}, Workers)}};

handle_cast({kill, Ref}, #st{workers=Workers} = St) ->
    case find_worker(Ref, Workers) of
    {Pid, Ref, _} ->
        exit(Pid, kill);
    false -> ok end,
    {noreply, St#st{workers = remove_worker(Ref, Workers)}}.

handle_info({'DOWN', Ref, process, _, normal}, #st{workers=Workers} = St) ->
    {noreply, St#st{workers = remove_worker(Ref, Workers)}};

handle_info({'DOWN', Ref, process, Pid, Reason}, #st{workers=Workers} = St) ->
    case find_worker(Ref, Workers) of
    {Pid, Ref, From} ->
        notify_caller(From, Reason);
    false -> ok end,
    {noreply, St#st{workers = remove_worker(Ref, Workers)}};

handle_info(_Info, St) ->
    {noreply, St}.

terminate(_Reason, St) ->
    [exit(Pid,kill) || {Pid, _, _} <- St#st.workers],
    ok.

code_change(_OldVsn, St, _Extra) ->
    {ok, St}.

%% @doc initializes a process started by rexi_server.
-spec init_p({pid(),reference()}, mfa()) -> any().
init_p(From, {M,F,A}) ->
    put(rexi_from, From),
    try apply(M, F, A) catch _:Reason -> exit(Reason) end.

%% internal

add_worker(Worker, List) ->
    [Worker | List].

remove_worker(Ref, List) ->
    lists:keydelete(Ref, 2, List).

find_worker(Ref, List) ->
    lists:keyfind(Ref, 2, List).

notify_caller({Caller, Ref}, Reason) ->
    Caller ! {Ref, {rexi_EXIT, Reason}}.