James_E
I’ve got this bit of code; I’m wondering why create_or_open_room always creates a new room, even when there is an existing child process with the same ID:
If a child specification with the specified ID already exists,
child_specis discarded and this function returns an error with:already_startedor:already_presentif the corresponding child process is running or not, respectively.
Supervisor.start_child/2 — Elixir v1.17.3
defmodule FooApp.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
require Logger
def create_or_open_room(<<room_name::binary>>) do # FIXME this is supposed to be idempotent
case DynamicSupervisor.start_child(
FooApp.RoomSupervisor,
%{id: room_name, start: {GenServer, :start_link, [FooApp.Application.Model, room_name]}}
) do
{:ok, pid} -> Logger.debug("=====STARTED #{inspect pid}====="); pid
:ignore -> raise "unreachable"
{:error, {:already_started, pid}} -> Logger.debug("=====IDEMPOTENCE OK #{inspect pid}====="); pid
{:error, error} -> raise inspect error
end
end
@impl true
def start(_type, _args) do
children = [
FooAppWeb.Telemetry,
FooApp.Repo,
{Ecto.Migrator,
repos: Application.fetch_env!(:fooApp, :ecto_repos),
skip: skip_migrations?()},
# {DNSCluster, query: Application.get_env(:fooApp, :dns_cluster_query) || :ignore},
# {Phoenix.PubSub, name: FooApp.PubSub}, # for general app communication
{Phoenix.PubSub, name: FooApp.RoomPubSub}, # ONLY for room statechange announcements, to avoid collision between UGC room names and an actual system topic
# Start the Finch HTTP client for sending emails
# {Finch, name: FooApp.Finch},
# Start a worker by calling: FooApp.Worker.start_link(arg)
# {FooApp.Worker, arg},
{DynamicSupervisor, name: FooApp.RoomSupervisor},
# Start to serve requests, typically the last entry
FooAppWeb.Endpoint
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: FooApp.Supervisor]
Supervisor.start_link(children, opts)
end
# Tell Phoenix to update the endpoint configuration
# whenever the application is updated.
@impl true
def config_change(changed, _new, removed) do
FooAppWeb.Endpoint.config_change(changed, removed)
:ok
end
defp skip_migrations?() do
# By default, sqlite migrations are run when using a release
System.get_env("RELEASE_NAME") != nil
end
end
FooApp.Application.Model (a boring GenServer, not relevant, including for completeness)
defmodule FooApp.Application.Model do
use GenServer
require Logger
defmodule State do
@enforce_keys [:name, :resources]
defstruct [:name, :resources, :_pubsub_topic]
end
defmodule Resource do
@enforce_keys [:name]
defstruct [:name, status: "undefined"]
@allowable_statuses ["green", "green-with-exception", "red"]
def status_ok(status) do
status in @allowable_statuses
end
end
defp list_update_such(list, fun_pred, fun) do
# TODO consider overhauling/replacing this with a new data structure entirely
# https://forum.elixirforum.com/t/need-to-display-resources-in-the-exact-order-they-are-declared-ordered-map/67829/4?u=james_e
Enum.map(list, &if fun_pred.(&1) do fun.(&1) else &1 end)
end
@impl true
def init(name) do
resource_names = [ # FIXME actually load this from ecto
"FROG-0",
"FROG-1",
"FROG-2",
"FROG-3",
"FROG-4",
"FROG-5",
"FROG-6",
"FROG-7",
];
{:ok, %State{
name: name,
resources: resource_names |> Enum.map(&%Resource{name: &1}),
_pubsub_topic: name
}}
end
@impl true
def handle_continue(:broadcast_statechange, state) do
# TODO this seems located inappropriately far from the call to subscribe; is there a better pattern for this?
Phoenix.PubSub.broadcast!(FooApp.RoomPubSub, state._pubsub_topic, {:statechange, state});
{:noreply, state}
end
@impl true
def handle_call(:get_state, _from, state) do
{:reply, state, state}
end
@impl true
def handle_call({:act, actor, action}, from, state) do
case action do
{:set_resource_status, resource_name, new_status} -> (
with \
true <- actor === "director" || {:error, "Unauthorized"},
resources = state.resources,
true <- Resource.status_ok(new_status) || {:error, "Invalid status"}
do
{:reply, :ok, %{state |
resources: list_update_such(resources, &(&1.name === resource_name), &%{&1 | status: new_status})
}, {:continue, :broadcast_statechange}}
else
{:error, error} -> {:reply, {:error, error}, state}
end
)
_ -> (
Logger.warning("Client #{inspect from} attempted invalid action");
{:reply, {:error, "Action incongruent with current state"}, state}
)
end
end
end
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 9 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
James_E
This function — just like
DynamicSupervisor.start_child/2— requires you to pass in an existing, running DynamicSupervisor. Starting that process is handled elsewhere.dimitarvp
Glad you made it work for you but I still don’t understand how can you not ensure the
DynamicSupervisorgets started at the, ahem, start of your application.James_E
Can’t edit the post because it’s too old; here’s an implementation for posterity with proper documentation
James_E
I was referring the
@spec— where the DynamicSupervisor’s child’sidfield is required, yet ignored — that was a red herring that confused me when trying to implement this.The ID here isn’t meant to be a global name, only a local ID within the scope of that specific DynamicSupervisor.
dimitarvp
Come on now, spec is not “wack”, you just need a name if you want to, you know, have a named process.
James_E
I see… I adapted the code with that in mind, and now it seems to work perfectly:
Thanks all for the tips. I don’t know how I missed that notice about the spec being wack.
dimitarvp
As @al2o3cr said, the
:idis ignored. Though if my memory serves you can achieve what you like by supplying a:name… which is what @D4no0 said.If none of that works you could just use
DynamicSupervisor.which_childrenand try to look for the already-started child there before attempting to start a new one.D4no0
Yeah, I think this applies only to named genservers, AKA starting them with option
name: ProcessName.al2o3cr
The docs for
DynamicSupervisor.start_childmention that theidis required but ignored: