1 defmodule Pleroma.Gun.ConnectionPool do
4 alias Pleroma.Gun.ConnectionPool.WorkerSupervisor
8 {Registry, keys: :unique, name: @registry},
9 Pleroma.Gun.ConnectionPool.WorkerSupervisor
13 @spec get_conn(URI.t(), keyword()) :: {:ok, pid()} | {:error, term()}
14 def get_conn(uri, opts) do
15 key = "#{uri.scheme}:#{uri.host}:#{uri.port}"
17 case Registry.lookup(@registry, key) do
18 # The key has already been registered, but connection is not up yet
19 [{worker_pid, nil}] ->
20 get_gun_pid_from_worker(worker_pid, true)
22 [{worker_pid, {gun_pid, _used_by, _crf, _last_reference}}] ->
23 GenServer.call(worker_pid, :add_client)
27 # :gun.set_owner fails in :connected state for whatevever reason,
28 # so we open the connection in the process directly and send it's pid back
29 # We trust gun to handle timeouts by itself
30 case WorkerSupervisor.start_worker([key, uri, opts, self()]) do
32 get_gun_pid_from_worker(worker_pid, false)
34 {:error, {:already_started, worker_pid}} ->
35 get_gun_pid_from_worker(worker_pid, true)
43 defp get_gun_pid_from_worker(worker_pid, register) do
44 # GenServer.call will block the process for timeout length if
45 # the server crashes on startup (which will happen if gun fails to connect)
46 # so instead we use cast + monitor
48 ref = Process.monitor(worker_pid)
49 if register, do: GenServer.cast(worker_pid, {:add_client, self()})
53 Process.demonitor(ref)
56 {:DOWN, ^ref, :process, ^worker_pid, reason} ->
58 {:shutdown, {:error, _} = error} -> error
59 {:shutdown, error} -> {:error, error}
65 @spec release_conn(pid()) :: :ok
66 def release_conn(conn_pid) do
67 # :ets.fun2ms(fn {_, {worker_pid, {gun_pid, _, _, _}}} when gun_pid == conn_pid ->
70 Registry.select(@registry, [
71 {{:_, :"$1", {:"$2", :_, :_, :_}}, [{:==, :"$2", conn_pid}], [:"$1"]}
76 GenServer.call(worker_pid, :remove_client)