-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add options for silencing warnings for behaviours #9020
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -821,6 +821,35 @@ start(File, Opts) -> | |||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{update_literal, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_update_literal, nowarn_update_literal, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
%% Behaviour warnings. | ||||||||||||||||||||||||||||||||||||||||||
{behaviours, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_behaviours, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_behaviours, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{conflicting_behaviours, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_conflicting_behaviours, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_conflicting_behaviours, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{undefined_behaviour_func, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_undefined_behaviour_func, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_undefined_behaviour_func, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{undefined_behaviour, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_undefined_behaviour, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_undefined_behaviour, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{undefined_behaviour_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_undefined_behaviour_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_undefined_behaviour_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{ill_defined_behaviour_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_ill_defined_behaviour_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_ill_defined_behaviour_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)}, | ||||||||||||||||||||||||||||||||||||||||||
{ill_defined_optional_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
bool_option(warn_ill_defined_optional_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
nowarn_ill_defined_optional_callbacks, | ||||||||||||||||||||||||||||||||||||||||||
true, Opts)} | ||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||
Enabled1 = [Category || {Category,true} <- Enabled0], | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -1231,8 +1260,13 @@ post_traversal_check(Forms, St0) -> | |||||||||||||||||||||||||||||||||||||||||
%% check_behaviour(State0) -> State | ||||||||||||||||||||||||||||||||||||||||||
%% Check that the behaviour attribute is valid. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
check_behaviour(St0) -> | ||||||||||||||||||||||||||||||||||||||||||
behaviour_check(St0#lint.behaviour, St0). | ||||||||||||||||||||||||||||||||||||||||||
check_behaviour(St) -> | ||||||||||||||||||||||||||||||||||||||||||
case is_warn_enabled(behaviours, St) of | ||||||||||||||||||||||||||||||||||||||||||
true -> | ||||||||||||||||||||||||||||||||||||||||||
behaviour_check(St#lint.behaviour, St); | ||||||||||||||||||||||||||||||||||||||||||
false -> | ||||||||||||||||||||||||||||||||||||||||||
St | ||||||||||||||||||||||||||||||||||||||||||
end. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
%% behaviour_check([{Anno,Behaviour}], State) -> State' | ||||||||||||||||||||||||||||||||||||||||||
%% Check behaviours for existence and defined functions. | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -1256,10 +1290,21 @@ all_behaviour_callbacks([{Anno,B}|Bs], Acc, St0) -> | |||||||||||||||||||||||||||||||||||||||||
all_behaviour_callbacks(Bs, [{{Anno,B},Bfs0,OBfs0}|Acc], St); | ||||||||||||||||||||||||||||||||||||||||||
all_behaviour_callbacks([], Acc, St) -> {reverse(Acc),St}. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
add_behaviour_warning(Anno, Warning, St) when is_tuple(Warning) -> | ||||||||||||||||||||||||||||||||||||||||||
Tag = element(1, Warning), | ||||||||||||||||||||||||||||||||||||||||||
case is_warn_enabled(Tag, St) of | ||||||||||||||||||||||||||||||||||||||||||
true -> | ||||||||||||||||||||||||||||||||||||||||||
add_warning(Anno, Warning, St); | ||||||||||||||||||||||||||||||||||||||||||
false -> | ||||||||||||||||||||||||||||||||||||||||||
St | ||||||||||||||||||||||||||||||||||||||||||
end. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+1293
to
+1301
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This is a suggestion to a common pattern in this PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the suggestion. I will save it for a clean-up of |
||||||||||||||||||||||||||||||||||||||||||
behaviour_callbacks(Anno, B, St0) -> | ||||||||||||||||||||||||||||||||||||||||||
try B:behaviour_info(callbacks) of | ||||||||||||||||||||||||||||||||||||||||||
undefined -> | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_warning(Anno, {undefined_behaviour_callbacks, B}, St0), | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_behaviour_warning(Anno, | ||||||||||||||||||||||||||||||||||||||||||
{undefined_behaviour_callbacks, B}, | ||||||||||||||||||||||||||||||||||||||||||
St0), | ||||||||||||||||||||||||||||||||||||||||||
{[], [], St1}; | ||||||||||||||||||||||||||||||||||||||||||
Funcs -> | ||||||||||||||||||||||||||||||||||||||||||
case is_fa_list(Funcs) of | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -1275,22 +1320,22 @@ behaviour_callbacks(Anno, B, St0) -> | |||||||||||||||||||||||||||||||||||||||||
{Funcs, OptFuncs, St0}; | ||||||||||||||||||||||||||||||||||||||||||
false -> | ||||||||||||||||||||||||||||||||||||||||||
W = {ill_defined_optional_callbacks, B}, | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_warning(Anno, W, St0), | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_behaviour_warning(Anno, W, St0), | ||||||||||||||||||||||||||||||||||||||||||
{Funcs, [], St1} | ||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
catch | ||||||||||||||||||||||||||||||||||||||||||
_:_ -> | ||||||||||||||||||||||||||||||||||||||||||
{Funcs, [], St0} | ||||||||||||||||||||||||||||||||||||||||||
end; | ||||||||||||||||||||||||||||||||||||||||||
false -> | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_warning(Anno, | ||||||||||||||||||||||||||||||||||||||||||
{ill_defined_behaviour_callbacks, B}, | ||||||||||||||||||||||||||||||||||||||||||
St0), | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_behaviour_warning(Anno, | ||||||||||||||||||||||||||||||||||||||||||
{ill_defined_behaviour_callbacks, B}, | ||||||||||||||||||||||||||||||||||||||||||
St0), | ||||||||||||||||||||||||||||||||||||||||||
{[], [], St1} | ||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
catch | ||||||||||||||||||||||||||||||||||||||||||
_:_ -> | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_warning(Anno, {undefined_behaviour, B}, St0), | ||||||||||||||||||||||||||||||||||||||||||
St1 = add_behaviour_warning(Anno, {undefined_behaviour, B}, St0), | ||||||||||||||||||||||||||||||||||||||||||
St2 = check_module_name(B, Anno, St1), | ||||||||||||||||||||||||||||||||||||||||||
{[], [], St2} | ||||||||||||||||||||||||||||||||||||||||||
end. | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -1334,7 +1379,7 @@ behaviour_missing_callbacks([{{Anno,B},Bfs0,OBfs}|T], St0) -> | |||||||||||||||||||||||||||||||||||||||||
case is_fa(F) of | ||||||||||||||||||||||||||||||||||||||||||
true -> | ||||||||||||||||||||||||||||||||||||||||||
M = {undefined_behaviour_func,F,B}, | ||||||||||||||||||||||||||||||||||||||||||
add_warning(Anno, M, S0); | ||||||||||||||||||||||||||||||||||||||||||
add_behaviour_warning(Anno, M, S0); | ||||||||||||||||||||||||||||||||||||||||||
false -> | ||||||||||||||||||||||||||||||||||||||||||
S0 % ill_defined_behaviour_callbacks | ||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||
|
@@ -1358,7 +1403,9 @@ behaviour_add_conflicts([{Cb,[{FirstAnno,FirstB}|Cs]}|T], St0) -> | |||||||||||||||||||||||||||||||||||||||||
behaviour_add_conflicts([], St) -> St. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
behaviour_add_conflict([{Anno,B}|Cs], Cb, FirstL, FirstB, St0) -> | ||||||||||||||||||||||||||||||||||||||||||
St = add_warning(Anno, {conflicting_behaviours,Cb,B,FirstL,FirstB}, St0), | ||||||||||||||||||||||||||||||||||||||||||
St = add_behaviour_warning(Anno, | ||||||||||||||||||||||||||||||||||||||||||
{conflicting_behaviours,Cb,B,FirstL,FirstB}, | ||||||||||||||||||||||||||||||||||||||||||
St0), | ||||||||||||||||||||||||||||||||||||||||||
behaviour_add_conflict(Cs, Cb, FirstL, FirstB, St); | ||||||||||||||||||||||||||||||||||||||||||
behaviour_add_conflict([], _, _, _, St) -> St. | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-module(bad_behaviour3). | ||
-export([behaviour_info/1]). | ||
|
||
behaviour_info(callbacks) -> | ||
[{good,1}]; | ||
behaviour_info(optional_callbacks) -> | ||
[{b,1,bad}]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take this is you like, must be applied with the other suggestion below