1 defmodule Pleroma.Gun.ConnectionPool.Worker do
3 use GenServer, restart: :temporary
5 @registry Pleroma.Gun.ConnectionPool
7 def start_link([key | _] = opts) do
8 GenServer.start_link(__MODULE__, opts, name: {:via, Registry, {@registry, key}})
12 def init([_key, _uri, _opts, _client_pid] = opts) do
13 {:ok, nil, {:continue, {:connect, opts}}}
17 def handle_continue({:connect, [key, uri, opts, client_pid]}, _) do
18 with {:ok, conn_pid} <- Gun.Conn.open(uri, opts),
19 Process.link(conn_pid) do
20 time = :erlang.monotonic_time(:millisecond)
23 Registry.update_value(@registry, key, fn _ ->
24 {conn_pid, [client_pid], 1, time}
27 send(client_pid, {:conn_pid, conn_pid})
30 %{key: key, timer: nil, client_monitors: %{client_pid => Process.monitor(client_pid)}},
34 {:stop, {:shutdown, err}, nil}
39 def handle_cast({:add_client, client_pid}, state) do
40 case handle_call(:add_client, {client_pid, nil}, state) do
41 {:reply, conn_pid, state, :hibernate} ->
42 send(client_pid, {:conn_pid, conn_pid})
43 {:noreply, state, :hibernate}
48 def handle_cast({:remove_client, client_pid}, state) do
49 case handle_call(:remove_client, {client_pid, nil}, state) do
50 {:reply, _, state, :hibernate} ->
51 {:noreply, state, :hibernate}
56 def handle_call(:add_client, {client_pid, _}, %{key: key} = state) do
57 time = :erlang.monotonic_time(:millisecond)
59 {{conn_pid, _, _, _}, _} =
60 Registry.update_value(@registry, key, fn {conn_pid, used_by, crf, last_reference} ->
61 {conn_pid, [client_pid | used_by], crf(time - last_reference, crf), time}
65 if state.timer != nil do
66 Process.cancel_timer(state[:timer])
72 ref = Process.monitor(client_pid)
74 state = put_in(state.client_monitors[client_pid], ref)
75 {:reply, conn_pid, state, :hibernate}
79 def handle_call(:remove_client, {client_pid, _}, %{key: key} = state) do
80 {{_conn_pid, used_by, _crf, _last_reference}, _} =
81 Registry.update_value(@registry, key, fn {conn_pid, used_by, crf, last_reference} ->
82 {conn_pid, List.delete(used_by, client_pid), crf, last_reference}
85 {ref, state} = pop_in(state.client_monitors[client_pid])
86 Process.demonitor(ref)
90 max_idle = Pleroma.Config.get([:connections_pool, :max_idle_time], 30_000)
91 Process.send_after(self(), :idle_close, max_idle)
96 {:reply, :ok, %{state | timer: timer}, :hibernate}
100 def handle_info(:idle_close, state) do
101 # Gun monitors the owner process, and will close the connection automatically
102 # when it's terminated
103 {:stop, :normal, state}
106 # Gracefully shutdown if the connection got closed without any streams left
108 def handle_info({:gun_down, _pid, _protocol, _reason, []}, state) do
109 {:stop, :normal, state}
112 # Otherwise, shutdown with an error
114 def handle_info({:gun_down, _pid, _protocol, _reason, _killed_streams} = down_message, state) do
115 {:stop, {:error, down_message}, state}
119 def handle_info({:DOWN, _ref, :process, pid, reason}, state) do
121 [:pleroma, :connection_pool, :client_death],
122 %{client_pid: pid, reason: reason},
126 handle_cast({:remove_client, pid}, state)
129 # LRFU policy: https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.55.1478
130 defp crf(time_delta, prev_crf) do
131 1 + :math.pow(0.5, 0.0001 * time_delta) * prev_crf