[clang] Prep rules to potentially emit multiple issues

Reviewed By: jvillard

Differential Revision: D4359029

fbshipit-source-id: a5653b0
master
Ryan Rhee 8 years ago committed by Facebook Github Bot
parent a1c1b236a8
commit 4e37677eeb

@ -11,24 +11,34 @@ open! IStd
open CFrontend_utils open CFrontend_utils
let single_to_multi checker =
fun ctx an ->
let condition, issue_desc_opt = checker ctx an in
(condition, Option.to_list issue_desc_opt)
(* List of checkers on decls *that return 0 or 1 issue* *)
let decl_single_checkers_list = [CFrontend_checkers.ctl_strong_delegate_warning;
CFrontend_checkers.ctl_assign_pointer_warning;
CFrontend_checkers.ctl_ns_notification_warning;
CFrontend_checkers.ctl_global_var_init_with_calls_warning;
ComponentKit.component_with_unconventional_superclass_advice;
ComponentKit.mutable_local_vars_advice;
ComponentKit.component_factory_function_advice;
ComponentKit.component_file_cyclomatic_complexity_info;
ComponentKit.component_with_multiple_factory_methods_advice;]
(* List of checkers on decls *) (* List of checkers on decls *)
let decl_checkers_list = [CFrontend_checkers.ctl_strong_delegate_warning; let decl_checkers_list = IList.map single_to_multi decl_single_checkers_list
CFrontend_checkers.ctl_assign_pointer_warning;
CFrontend_checkers.ctl_ns_notification_warning; (* List of checkers on stmts *that return 0 or 1 issue* *)
CFrontend_checkers.ctl_global_var_init_with_calls_warning; let stmt_single_checkers_list = [CFrontend_checkers.ctl_direct_atomic_property_access_warning;
ComponentKit.component_with_unconventional_superclass_advice; CFrontend_checkers.ctl_captured_cxx_ref_in_objc_block_warning;
ComponentKit.mutable_local_vars_advice; CFrontend_checkers.ctl_bad_pointer_comparison_warning;
ComponentKit.component_factory_function_advice; ComponentKit.component_file_cyclomatic_complexity_info;
ComponentKit.component_file_cyclomatic_complexity_info; ComponentKit.component_initializer_with_side_effects_advice;
ComponentKit.component_with_multiple_factory_methods_advice;] CFrontend_checkers.ctl_unavailable_api_in_supported_ios_sdk_error;]
(* List of checkers on stmts *) let stmt_checkers_list = IList.map single_to_multi stmt_single_checkers_list
let stmt_checkers_list = [CFrontend_checkers.ctl_direct_atomic_property_access_warning;
CFrontend_checkers.ctl_captured_cxx_ref_in_objc_block_warning;
CFrontend_checkers.ctl_bad_pointer_comparison_warning;
ComponentKit.component_file_cyclomatic_complexity_info;
ComponentKit.component_initializer_with_side_effects_advice;
CFrontend_checkers.ctl_unavailable_api_in_supported_ios_sdk_error;]
(* List of checkers on translation unit that potentially output multiple issues *) (* List of checkers on translation unit that potentially output multiple issues *)
let translation_unit_checkers_list = [ComponentKit.component_file_line_count_info;] let translation_unit_checkers_list = [ComponentKit.component_file_line_count_info;]
@ -142,16 +152,16 @@ let invoke_set_of_checkers_an an context =
| CTL.Decl dec -> decl_checkers_list, Ast_utils.generate_key_decl dec | CTL.Decl dec -> decl_checkers_list, Ast_utils.generate_key_decl dec
| CTL.Stmt st -> stmt_checkers_list, Ast_utils.generate_key_stmt st in | CTL.Stmt st -> stmt_checkers_list, Ast_utils.generate_key_stmt st in
IList.iter (fun checker -> IList.iter (fun checker ->
let condition, issue_desc_opt = checker context an in let condition, issue_desc_list = checker context an in
match issue_desc_opt with if CTL.eval_formula condition an context then
| Some issue_desc -> IList.iter (fun issue_desc ->
if CIssue.should_run_check issue_desc.CIssue.mode && if CIssue.should_run_check issue_desc.CIssue.mode then
CTL.eval_formula condition an context then let desc' = expand_message_string issue_desc.CIssue.description an in
let desc' = expand_message_string issue_desc.CIssue.description an in let issue_desc' = {issue_desc with CIssue.description = desc'} in
let issue_desc' = {issue_desc with CIssue.description = desc'} in log_frontend_issue context.CLintersContext.translation_unit_context
log_frontend_issue context.CLintersContext.translation_unit_context context.CLintersContext.current_method key issue_desc'
context.CLintersContext.current_method key issue_desc' ) issue_desc_list
| None -> ()) checkers ) checkers
let run_frontend_checkers_on_an (context: CLintersContext.context) an = let run_frontend_checkers_on_an (context: CLintersContext.context) an =

Loading…
Cancel
Save