defmodule ALF.Components.Recomposer do use ALF.Components.Basic defstruct name: nil, pid: nil, module: nil, function: nil, opts: [], subscribe_to: [], pipe_module: nil, pipeline_module: nil, subscribers: [], collected_ips: [], telemetry_enabled: false alias ALF.{DSLError, Manager.Streamer} @dsl_options [:name, :opts] def start_link(%__MODULE__{} = state) do GenStage.start_link(__MODULE__, state) end def init(state) do state = %{ state | pid: self(), opts: init_opts(state.module, state.opts), telemetry_enabled: telemetry_enabled?() } {:producer_consumer, state, subscribe_to: state.subscribe_to} end def handle_events([%ALF.IP{} = ip], _from, %__MODULE__{telemetry_enabled: true} = state) do :telemetry.span( [:alf, :component], telemetry_data(ip, state), fn -> case do_handle_event(ip, state) do {:noreply, [ip], state} = result -> {result, telemetry_data(ip, state)} {:noreply, [], state} = result -> {result, telemetry_data(nil, state)} end end ) end def handle_events([%ALF.IP{} = ip], _from, %__MODULE__{telemetry_enabled: false} = state) do do_handle_event(ip, state) end defp do_handle_event(ip, state) do collected_data = Enum.map(state.collected_ips, & &1.event) case call_function( state.module, state.function, ip.event, collected_data, state.opts ) do {:ok, :continue} -> collected_ips = state.collected_ips ++ [ip] {:noreply, [], %{state | collected_ips: collected_ips}} {:ok, {event, events}} -> Streamer.cast_remove_from_registry( ip.manager_name, [ip | state.collected_ips], ip.stream_ref ) ip = build_ip(event, ip.stream_ref, ip.manager_name, [{state.name, ip.event} | ip.history]) collected = Enum.map(events, fn event -> build_ip(event, ip.stream_ref, ip.manager_name, [{state.name, ip.event} | ip.history]) end) Streamer.cast_add_to_registry(ip.manager_name, [ip], ip.stream_ref) {:noreply, [ip], %{state | collected_ips: collected}} {:ok, event} -> Streamer.cast_remove_from_registry( ip.manager_name, [ip | state.collected_ips], ip.stream_ref ) ip = build_ip(event, ip.stream_ref, ip.manager_name, [{state.name, ip.event} | ip.history]) Streamer.cast_add_to_registry(ip.manager_name, [ip], ip.stream_ref) {:noreply, [ip], %{state | collected_ips: []}} {:error, error, stacktrace} -> send_error_result(ip, error, stacktrace, state) {:noreply, [], state} end end defp build_ip(event, stream_ref, manager_name, history) do %IP{ stream_ref: stream_ref, ref: make_ref(), init_datum: event, event: event, manager_name: manager_name, recomposed: true, history: history } end def validate_options(name, options) do wrong_options = Keyword.keys(options) -- @dsl_options unless is_atom(name) do raise DSLError, "Recomposer name must be an atom: #{inspect(name)}" end if Enum.any?(wrong_options) do raise DSLError, "Wrong options for the #{name} recomposer: #{inspect(wrong_options)}. " <> "Available options are #{inspect(@dsl_options)}" end end defp call_function(module, function, event, collected_data, opts) when is_atom(module) and is_atom(function) do {:ok, apply(module, function, [event, collected_data, opts])} rescue error -> {:error, error, __STACKTRACE__} end end