Current section

Files

Jump to
combo lib combo transports long_poll_server.ex
Raw

lib/combo/transports/long_poll_server.ex

defmodule Combo.Transports.LongPoll.Server do
@moduledoc false
use GenServer, restart: :temporary
alias Combo.PubSub
def start_link(arg) do
GenServer.start_link(__MODULE__, arg)
end
def init({endpoint, handler, options, params, priv_topic, connect_info}) do
config = %{
endpoint: endpoint,
transport: :longpoll,
options: options,
params: params,
connect_info: connect_info
}
window_ms = Keyword.fetch!(options, :window_ms)
case handler.connect(config) do
{:ok, handler_state} ->
{:ok, handler_state} = handler.init(handler_state)
state = %{
buffer: [],
handler: {handler, handler_state},
window_ms: trunc(window_ms * 1.5),
pubsub_server: endpoint.config(:pubsub_server),
priv_topic: priv_topic,
last_client_poll: now_ms(),
client_ref: nil
}
:ok = PubSub.subscribe(state.pubsub_server, priv_topic)
schedule_inactive_shutdown(state.window_ms)
{:ok, state}
:error ->
:ignore
{:error, _reason} ->
:ignore
end
end
def handle_info({:dispatch, client_ref, {body, opcode}, ref}, state) do
%{handler: {handler, handler_state}} = state
case handler.handle_in({body, opcode: opcode}, handler_state) do
{:reply, status, {_, reply}, handler_state} ->
state = %{state | handler: {handler, handler_state}}
status = if status == :ok, do: :ok, else: :error
broadcast_from!(state, client_ref, {status, ref})
publish_reply(state, reply)
{:ok, handler_state} ->
state = %{state | handler: {handler, handler_state}}
broadcast_from!(state, client_ref, {:ok, ref})
{:noreply, state}
{:stop, reason, handler_state} ->
state = %{state | handler: {handler, handler_state}}
broadcast_from!(state, client_ref, {:error, ref})
{:stop, reason, state}
end
end
def handle_info({:subscribe, client_ref, ref}, state) do
broadcast_from!(state, client_ref, {:subscribe, ref})
{:noreply, state}
end
def handle_info({:flush, client_ref, ref}, state) do
case state.buffer do
[] ->
{:noreply, %{state | client_ref: {client_ref, ref}, last_client_poll: now_ms()}}
buffer ->
broadcast_from!(state, client_ref, {:messages, Enum.reverse(buffer), ref})
{:noreply, %{state | client_ref: nil, last_client_poll: now_ms(), buffer: []}}
end
end
def handle_info({:expired, client_ref, ref}, state) do
case state.client_ref do
{^client_ref, ^ref} ->
{:noreply, %{state | client_ref: nil}}
_ ->
{:noreply, state}
end
end
def handle_info(:shutdown_if_inactive, state) do
if now_ms() - state.last_client_poll > state.window_ms do
{:stop, {:shutdown, :inactive}, state}
else
schedule_inactive_shutdown(state.window_ms)
{:noreply, state}
end
end
def handle_info(message, state) do
%{handler: {handler, handler_state}} = state
case handler.handle_info(message, handler_state) do
{:push, {_, reply}, handler_state} ->
state = %{state | handler: {handler, handler_state}}
publish_reply(state, reply)
{:ok, handler_state} ->
state = %{state | handler: {handler, handler_state}}
{:noreply, state}
{:stop, reason, handler_state} ->
state = %{state | handler: {handler, handler_state}}
{:stop, reason, state}
end
end
def terminate(reason, state) do
%{handler: {handler, handler_state}} = state
handler.terminate(reason, handler_state)
:ok
end
defp broadcast_from!(state, client_ref, msg) when is_binary(client_ref),
do: PubSub.broadcast_from!(state.pubsub_server, self(), client_ref, msg)
defp broadcast_from!(_state, client_ref, msg) when is_pid(client_ref),
do: send(client_ref, msg)
defp publish_reply(state, reply) when is_map(reply) do
IO.warn(
"Returning a map from the LongPolling serializer is deprecated. " <>
"Please return JSON encoded data instead (see Combo.Socket.Serializer)"
)
publish_reply(state, Combo.json_library().encode_to_iodata!(reply))
end
defp publish_reply(state, reply) do
notify_client_now_available(state)
{:noreply, update_in(state.buffer, &[IO.iodata_to_binary(reply) | &1])}
end
defp notify_client_now_available(state) do
case state.client_ref do
{client_ref, ref} -> broadcast_from!(state, client_ref, {:now_available, ref})
nil -> :ok
end
end
defp now_ms, do: System.system_time(:millisecond)
defp schedule_inactive_shutdown(window_ms) do
Process.send_after(self(), :shutdown_if_inactive, window_ms)
end
end