summaryrefslogtreecommitdiff
path: root/src/rexi_monitor.erl
diff options
context:
space:
mode:
authorAdam Kocoloski <adam@cloudant.com>2010-05-10 20:16:22 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-05-10 20:16:22 -0400
commit6214c19346095b775ecf9c7d007fedba38aabd47 (patch)
tree8bd5329c5391f8f803d2aae3002f269d60920b9b /src/rexi_monitor.erl
parent6b1b19e24eb77b67a52fed0a9f8237efd8d7847b (diff)
code for efficient monitoring of many remote processes. BugzID 10096
Diffstat (limited to 'src/rexi_monitor.erl')
-rw-r--r--src/rexi_monitor.erl39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/rexi_monitor.erl b/src/rexi_monitor.erl
new file mode 100644
index 00000000..b4c00f23
--- /dev/null
+++ b/src/rexi_monitor.erl
@@ -0,0 +1,39 @@
+-module(rexi_monitor).
+-export([start/1, stop/1]).
+
+-include_lib("eunit/include/eunit.hrl").
+
+%% @doc spawn_links a process which monitors the supplied list of items and
+%% returns the process ID.
+-spec start([pid() | atom() | {atom(),atom()}]) -> pid().
+start(Procs) ->
+ Parent = self(),
+ spawn_link(fun() ->
+ [erlang:monitor(process, P) || P <- Procs],
+ wait_monitors(Parent)
+ end).
+
+%% @doc Cleanly shut down the monitoring process and flush all rexi_DOWN
+%% messages from our mailbox.
+-spec stop(pid()) -> ok.
+stop(MonitoringPid) ->
+ MonitoringPid ! {self(), shutdown},
+ flush_down_messages().
+
+%% internal functions %%
+
+wait_monitors(Parent) ->
+ receive
+ {'DOWN', _, process, Pid, Reason} ->
+ Parent ! {rexi_DOWN, self(), Pid, Reason},
+ wait_monitors(Parent);
+ {Parent, shutdown} ->
+ ok
+ end.
+
+flush_down_messages() ->
+ receive {rexi_DOWN, _, _, _} ->
+ flush_down_messages()
+ after 0 ->
+ ok
+ end.