Prefixed app name to module names.
[cellular-automata.git] / 001 / src / life_god.erl
diff --git a/001/src/life_god.erl b/001/src/life_god.erl
new file mode 100644 (file)
index 0000000..3922680
--- /dev/null
@@ -0,0 +1,47 @@
+-module(god).
+-behaviour(supervisor).
+
+
+%% API
+-export([start_link/2]).
+
+%% Callbacks
+-export([init/1]).
+
+
+%% Helper macro for declaring children of supervisor
+-define(CHILD(Type, I, Args), {I, {I, start_link, Args}, permanent, 5000, Type, [I]}).
+
+
+%% ============================================================================
+%% API
+%% ============================================================================
+
+start_link(X, CellData) ->
+    supervisor:start_link({local, ?MODULE}, ?MODULE, [X, CellData]).
+
+
+%% ============================================================================
+%% Callbacks
+%% ============================================================================
+
+init([X, CellData]) ->
+    CellNames = [Name || {_, Name, _} <- CellData],
+    RestartStrategy = {one_for_one, 5, 10},
+    Cells = [spec_cell(Datum) || Datum <- CellData],
+    Time = ?CHILD(worker, time, [X, CellNames]),
+    Children = Cells ++ [Time],
+    {ok, {RestartStrategy, Children}}.
+
+
+spec_cell({_, Name, _}=Datum) ->
+    M = cell,
+    F = start_link,
+    A = [Datum],
+    {Name, {M, F, A}, permanent, 5000, worker, [M]}.
+
+    %{ID, {ID, start_link, Args}, permanent, 5000, Type, [ID]}.
+
+
+
+
This page took 0.030954 seconds and 4 git commands to generate.