这是一些我认为 Dialyzer 应该能够发现的错误代码:
-module(myapp_thing).
-spec exists(pos_integer()) -> yes | no.
exists(Id) ->
myapp_mnesia:thing_exists(Id).
-module(myapp_mnesia).
thing_exists(Id) ->
Exists = fun() ->
case mnesia:read({thing, Id}) of
[] -> false;
_ -> true
end
end,
mnesia:activity(transaction, Exists).
myapp_thing:exists/1
被指定为返回yes | no
,但返回类型实际上是true | false
(即,boolean()
),这是从返回的myapp_mnesia:thing_exists/1
。
但是,在 myapp 上运行 Dialyzer 会通过它而不会发出警告。
如果我更改myapp_mnesia:thing_exists/1
为仅返回true
,我会收到适当的警告;同样,如果我添加正确的规格:
-spec session_exists(pos_integer()) -> boolean().
但是看起来 Dialyzer 无法查看 mnesia 事务函数 Exists 内部,或者由于某些其他原因无法推断出 thing_exists 的返回类型。
那么,mnesia 事务函数是 Dialyzer 的障碍,还是 Dialyzer 的返回类型推断存在更普遍的障碍?