LionOps
I’m still relatively new to Elixir, so I’m hoping someone can shed some light on what’s up with my mode and/or dialyzer:
defmodule Eclipse.Router.Connection do
@moduledoc """
Server for a connection
"""
use GenServer, restart: :transient
@local_opts [:binary, packet: :raw, active: false, reuseaddr: true, reuseport: true]
@remote_opts [:binary, :inet, active: false, packet: :raw]
@type state :: %{
socket: Eclipse.Router.Socket.t()
}
@impl GenServer
@spec init({Eclipse.Config.Connections.t(), :local}) :: {:ok, state()}
def init({%Eclipse.Config.Connections{} = config, :local}) do
{:ok, socket} = :gen_tcp.listen(config.local_port, @local_opts)
{:ok, client} = :gen_tcp.accept(socket)
{:ok, %{socket: Eclipse.Router.Socket.new(client)}}
end
@spec init({Eclipse.Config.Connections.t(), :remote}) :: {:ok, state()}
def init({%Eclipse.Config.Connections{} = config, :remote}) do
{:ok, socket} = :gen_tcp.connect(config.remote_hostname, config.remote_port, @remote_opts)
{:ok, Eclipse.Router.Socket.new(socket)}
end
end
The above code passes, but the second init has the wrong success typing. {:ok, Eclipse.Router.Socket.new(socket)} as opposed to {:ok, %{socket: Eclipse.Router.Socket.new(socket)}}
If I comment out the first init, I get the expected errors.
Some guidance is appreciated on what I’m doing wrong.
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
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
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
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
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
How is it wrong? Check what you’re returning in the second function variant – it’s what Dialyzer is finding as well. You are returning a value without putting it in a map.
sabiwara
By default dialyzer’s success typing is pretty loose and is happy as long as one branch is OK, here is a minimal example:
But after adding the following flags to your
mix.exs(this is the config I personally recommend and use):Dialyzer is now able to catch these errors:
That being said, even if dialyzer is able to understand this particular error with the right flags, it is important to keep in mind that it remains quite limited and that there are a whole range of type errors it won’t be able to catch.
LionOps
stateis a map, though, is it not? Both function variants have the same return spec, but return different things. Dialyzer will error on the second variant if I comment out the first variant, or if I remove the map from the first variant, it’ll error there.LionOps
I had those flags in place, and it’s not catching the error. If I’m understanding things correctly, I’ve setup dialxyr correctly and have the correct spec, but it’s not equipped to catch the error.
dimitarvp
Your first variant has this as a return value:
The second variant however has this:
Maybe I misunderstand the problem but the difference is pretty clear.
LionOps
Yes, the variants are different. My problem is that it’s not clear to dialyzer that the second function variant doesn’t match the spec.
I would expect dialyzer to error for the second variant because the return does not match the spec; however, it seems that as long as the first instance is correct, dialyzer is happy. That is a surprising behavior.
My mix config:
I don’t think it’s a configuration issue because the flags I’m using are in the output:
I would expect my code to not pass dialzyer, but it does. I’m trying to understand why.
sabiwara
Indeed this seems like a bug or limitation in dialyzer, despite the
[:missing_return, :extra_return]flags.It seems it avoids “diving in” when containers superficially seem to have the correct type:
No warning on
{:ok, ""}, but it would catch it if it is the wrong atom{:error, 2}or wrong tuple size{:ok, 1, 2}.For maps, it seems it is fine as long as the other close returns a map:
but fails when the top-level is not a map.
Will open up an issue to OTP.
sabiwara
Done: Dialyzer's `-Wmissing_return` fails to detect incorrect nested types · Issue #8935 · erlang/otp · GitHub
sabiwara
Update from the issue: