defmodule ALF.Components.Basic do alias ALF.{ErrorIP, IP} @common_attributes [ name: nil, pid: nil, pipe_module: nil, pipeline_module: nil, subscribe_to: [], subscribed_to: [], subscribers: [], telemetry_enabled: false ] def common_attributes, do: @common_attributes def build_component(component_module, atom, name, opts, current_module) do name = if name, do: name, else: atom if module_exist?(atom) do struct(component_module, %{ pipe_module: current_module, pipeline_module: current_module, name: name, module: atom, function: :call, opts: opts || [] }) else struct(component_module, %{ pipe_module: current_module, pipeline_module: current_module, name: name, module: current_module, function: atom, opts: opts || [] }) end end def telemetry_data(nil, state) do %{ip: nil, component: component_telemetry_data(state)} end def telemetry_data(ips, state) when is_list(ips) do %{ips: Enum.map(ips, &ip_telemetry_data/1), component: component_telemetry_data(state)} end def telemetry_data(ip, state) do %{ip: ip_telemetry_data(ip), component: component_telemetry_data(state)} end defp ip_telemetry_data(ip) do Map.take(ip, [:type, :event, :ref, :done!, :error, :stacktrace]) end defp component_telemetry_data(state) do Map.take(state, [:pid, :name, :number, :pipeline_module, :type, :stage_set_ref]) end defp module_exist?(module), do: function_exported?(module, :__info__, 1) defmacro __using__(_opts) do quote do use GenStage alias ALF.{Components.Basic, IP, ErrorIP, Manager.Streamer, SourceCode} def __state__(pid) when is_pid(pid) do GenStage.call(pid, :__state__) end def subscribers(pid) do GenStage.call(pid, :subscribers) end def init_opts(module, opts) do if function_exported?(module, :init, 1) do apply(module, :init, [opts]) else opts end end def send_error_result(ip, error, stacktrace, state) do error_ip = build_error_ip(ip, error, stacktrace, state) Streamer.cast_result_ready(error_ip.manager_name, error_ip) error_ip end def handle_call(:subscribers, _form, state) do {:reply, state.subscribers, [], state} end def handle_call(:__state__, _from, state) do {:reply, state, [], state} end def handle_subscribe(:consumer, _subscription_options, from, state) do subscribers = [from | state.subscribers] {:automatic, %{state | subscribers: subscribers}} end def handle_subscribe(:producer, _subscription_options, from, state) do subscribed_to = [from | state.subscribed_to] {:automatic, %{state | subscribed_to: subscribed_to}} end def handle_cancel({:cancel, reason}, from, state) do subscribed_to = Enum.filter(state.subscribed_to, &(&1 != from)) subscribers = Enum.filter(state.subscribers, &(&1 != from)) {:noreply, [], %{state | subscribed_to: subscribed_to, subscribers: subscribers}} end def telemetry_data(ip, state), do: ALF.Components.Basic.telemetry_data(ip, state) def read_source_code(module) do SourceCode.module_source(module) end def read_source_code(module, :call) do SourceCode.module_source(module) end def read_source_code(module, function) do doc = SourceCode.function_doc(module, function) source = SourceCode.function_source(module, function) if doc do "@doc \"#{doc}\"\n#{source}" else source end end defp build_error_ip(ip, error, stacktrace, state) do %ErrorIP{ ip: ip, manager_name: ip.manager_name, ref: ip.ref, stream_ref: ip.stream_ref, error: error, stacktrace: stacktrace, component: state, decomposed: ip.decomposed, recomposed: ip.recomposed, in_progress: ip.in_progress, plugs: ip.plugs } end end end end