pleroma/lib/pleroma/pool/connections.ex

284 lines
6.9 KiB
Elixir
Raw Normal View History

2020-02-11 08:12:57 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2020-02-11 08:12:57 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Pool.Connections do
use GenServer
alias Pleroma.Config
2020-03-06 19:24:19 +01:00
alias Pleroma.Gun
2020-02-11 08:12:57 +01:00
require Logger
@type domain :: String.t()
@type conn :: Pleroma.Gun.Conn.t()
@type t :: %__MODULE__{
conns: %{domain() => conn()},
opts: keyword()
}
defstruct conns: %{}, opts: []
@spec start_link({atom(), keyword()}) :: {:ok, pid()}
def start_link({name, opts}) do
GenServer.start_link(__MODULE__, opts, name: name)
end
@impl true
def init(opts), do: {:ok, %__MODULE__{conns: %{}, opts: opts}}
@spec checkin(String.t() | URI.t(), atom()) :: pid() | nil
def checkin(url, name)
def checkin(url, name) when is_binary(url), do: checkin(URI.parse(url), name)
def checkin(%URI{} = uri, name) do
2020-03-03 11:05:28 +01:00
timeout = Config.get([:connections_pool, :checkin_timeout], 250)
2020-02-11 08:12:57 +01:00
GenServer.call(name, {:checkin, uri}, timeout)
2020-02-11 08:12:57 +01:00
end
@spec alive?(atom()) :: boolean()
def alive?(name) do
if pid = Process.whereis(name) do
Process.alive?(pid)
else
false
end
2020-02-11 08:12:57 +01:00
end
@spec get_state(atom()) :: t()
def get_state(name) do
GenServer.call(name, :state)
end
2020-02-24 17:56:27 +01:00
@spec count(atom()) :: pos_integer()
def count(name) do
GenServer.call(name, :count)
end
@spec get_unused_conns(atom()) :: [{domain(), conn()}]
def get_unused_conns(name) do
GenServer.call(name, :unused_conns)
end
2020-02-11 08:12:57 +01:00
@spec checkout(pid(), pid(), atom()) :: :ok
def checkout(conn, pid, name) do
GenServer.cast(name, {:checkout, conn, pid})
end
2020-02-24 17:56:27 +01:00
@spec add_conn(atom(), String.t(), Pleroma.Gun.Conn.t()) :: :ok
def add_conn(name, key, conn) do
GenServer.cast(name, {:add_conn, key, conn})
end
2020-02-11 08:12:57 +01:00
2020-02-24 17:56:27 +01:00
@spec remove_conn(atom(), String.t()) :: :ok
def remove_conn(name, key) do
GenServer.cast(name, {:remove_conn, key})
end
2020-02-11 08:12:57 +01:00
2020-02-24 17:56:27 +01:00
@impl true
def handle_cast({:add_conn, key, conn}, state) do
state = put_in(state.conns[key], conn)
Process.monitor(conn.conn)
{:noreply, state}
2020-02-11 08:12:57 +01:00
end
@impl true
def handle_cast({:checkout, conn_pid, pid}, state) do
state =
with true <- Process.alive?(conn_pid),
{key, conn} <- find_conn(state.conns, conn_pid),
used_by <- List.keydelete(conn.used_by, pid, 0) do
2020-03-12 16:28:54 +01:00
conn_state = if used_by == [], do: :idle, else: conn.conn_state
2020-02-11 08:12:57 +01:00
put_in(state.conns[key], %{conn | conn_state: conn_state, used_by: used_by})
else
false ->
Logger.debug("checkout for closed conn #{inspect(conn_pid)}")
2020-02-11 08:12:57 +01:00
state
nil ->
Logger.debug("checkout for alive conn #{inspect(conn_pid)}, but is not in state")
2020-02-11 08:12:57 +01:00
state
end
{:noreply, state}
end
2020-02-24 17:56:27 +01:00
@impl true
def handle_cast({:remove_conn, key}, state) do
state = put_in(state.conns, Map.delete(state.conns, key))
{:noreply, state}
end
2020-02-11 08:12:57 +01:00
@impl true
def handle_call({:checkin, uri}, from, state) do
2020-02-24 17:56:27 +01:00
key = "#{uri.scheme}:#{uri.host}:#{uri.port}"
2020-02-11 08:12:57 +01:00
case state.conns[key] do
2020-03-12 16:28:54 +01:00
%{conn: pid, gun_state: :up} = conn ->
time = :os.system_time(:second)
2020-03-12 16:28:54 +01:00
last_reference = time - conn.last_reference
crf = crf(last_reference, 100, conn.crf)
state =
put_in(state.conns[key], %{
2020-03-12 16:28:54 +01:00
conn
| last_reference: time,
2020-03-12 16:28:54 +01:00
crf: crf,
conn_state: :active,
2020-03-12 16:28:54 +01:00
used_by: [from | conn.used_by]
})
2020-03-12 16:28:54 +01:00
{:reply, pid, state}
2020-02-11 08:12:57 +01:00
%{gun_state: :down} ->
2020-02-11 08:12:57 +01:00
{:reply, nil, state}
nil ->
{:reply, nil, state}
end
end
@impl true
def handle_call(:state, _from, state), do: {:reply, state, state}
2020-02-24 17:56:27 +01:00
@impl true
def handle_call(:count, _from, state) do
{:reply, Enum.count(state.conns), state}
end
@impl true
def handle_call(:unused_conns, _from, state) do
unused_conns =
state.conns
2020-03-12 16:28:54 +01:00
|> Enum.filter(&filter_conns/1)
|> Enum.sort(&sort_conns/2)
2020-02-24 17:56:27 +01:00
{:reply, unused_conns, state}
end
2020-03-12 16:28:54 +01:00
defp filter_conns({_, %{conn_state: :idle, used_by: []}}), do: true
defp filter_conns(_), do: false
defp sort_conns({_, c1}, {_, c2}) do
c1.crf <= c2.crf and c1.last_reference <= c2.last_reference
end
2020-03-16 14:23:49 +01:00
@impl true
def handle_info({:gun_up, conn_pid, _protocol}, state) do
%{origin_host: host, origin_scheme: scheme, origin_port: port} = Gun.info(conn_pid)
host =
case :inet.ntoa(host) do
{:error, :einval} -> host
ip -> ip
end
key = "#{scheme}:#{host}:#{port}"
2020-02-11 08:12:57 +01:00
state =
with {key, conn} <- find_conn(state.conns, conn_pid, key),
2020-03-16 14:23:49 +01:00
{true, key} <- {Process.alive?(conn_pid), key} do
2020-02-11 08:12:57 +01:00
put_in(state.conns[key], %{
conn
| gun_state: :up,
conn_state: :active,
retries: 0
})
else
2020-02-24 17:56:27 +01:00
{false, key} ->
put_in(
state.conns,
Map.delete(state.conns, key)
2020-02-11 08:12:57 +01:00
)
2020-02-24 17:56:27 +01:00
nil ->
2020-03-03 17:24:14 +01:00
:ok = Gun.close(conn_pid)
2020-02-11 08:12:57 +01:00
state
end
{:noreply, state}
end
@impl true
def handle_info({:gun_down, conn_pid, _protocol, _reason, _killed}, state) do
retries = Config.get([:connections_pool, :retry], 1)
2020-02-11 08:12:57 +01:00
# we can't get info on this pid, because pid is dead
state =
2020-02-24 17:56:27 +01:00
with {key, conn} <- find_conn(state.conns, conn_pid),
{true, key} <- {Process.alive?(conn_pid), key} do
if conn.retries == retries do
2020-03-03 17:24:14 +01:00
:ok = Gun.close(conn.conn)
2020-02-11 08:12:57 +01:00
put_in(
state.conns,
Map.delete(state.conns, key)
)
else
put_in(state.conns[key], %{
conn
| gun_state: :down,
retries: conn.retries + 1
})
end
else
2020-02-24 17:56:27 +01:00
{false, key} ->
put_in(
state.conns,
Map.delete(state.conns, key)
2020-02-11 08:12:57 +01:00
)
2020-02-24 17:56:27 +01:00
nil ->
2020-03-12 16:28:54 +01:00
Logger.debug(":gun_down for conn which isn't found in state")
2020-02-11 08:12:57 +01:00
state
end
{:noreply, state}
end
2020-02-24 17:56:27 +01:00
@impl true
def handle_info({:DOWN, _ref, :process, conn_pid, reason}, state) do
Logger.debug("received DOWM message for #{inspect(conn_pid)} reason -> #{inspect(reason)}")
state =
with {key, conn} <- find_conn(state.conns, conn_pid) do
Enum.each(conn.used_by, fn {pid, _ref} ->
Process.exit(pid, reason)
end)
put_in(
state.conns,
Map.delete(state.conns, key)
)
else
nil ->
2020-03-12 16:28:54 +01:00
Logger.debug(":DOWN for conn which isn't found in state")
2020-02-24 17:56:27 +01:00
state
end
{:noreply, state}
end
2020-02-11 08:12:57 +01:00
defp find_conn(conns, conn_pid) do
Enum.find(conns, fn {_key, conn} ->
conn.conn == conn_pid
end)
end
defp find_conn(conns, conn_pid, conn_key) do
Enum.find(conns, fn {key, conn} ->
key == conn_key and conn.conn == conn_pid
end)
end
def crf(current, steps, crf) do
1 + :math.pow(0.5, current / steps) * crf
end
end