2016-09-26 19:56:43 +02:00
#!/usr/bin/python
2010-03-11 01:16:02 +01:00
# This file uses the following encoding: utf-8
2009-07-14 18:04:04 +02:00
2016-09-26 19:56:43 +02:00
""" Grep warnings messages and output HTML tables or warning counts in CSV.
Default is to output warnings in HTML tables grouped by warning severity .
Use option - - byproject to output tables grouped by source file projects .
Use option - - gencsv to output warning counts in CSV format .
"""
2016-09-23 04:22:07 +02:00
# List of important data structures and functions in this script.
#
# To parse and keep warning message in the input file:
# severity: classification of message severity
# severity.range [0, 1, ... last_severity_level]
# severity.colors for header background
# severity.column_headers for the warning count table
# severity.headers for warning message tables
# warn_patterns:
# warn_patterns[w]['category'] tool that issued the warning, not used now
# warn_patterns[w]['description'] table heading
# warn_patterns[w]['members'] matched warnings from input
# warn_patterns[w]['option'] compiler flag to control the warning
# warn_patterns[w]['patterns'] regular expressions to match warnings
# warn_patterns[w]['projects'][p] number of warnings of pattern w in p
# warn_patterns[w]['severity'] severity level
# project_list[p][0] project name
# project_list[p][1] regular expression to match a project path
# project_patterns[p] re.compile(project_list[p][1])
# project_names[p] project_list[p][0]
# warning_messages array of each warning message, without source url
# warning_records array of [idx to warn_patterns,
# idx to project_names,
# idx to warning_messages]
2016-10-12 00:30:26 +02:00
# android_root
2016-09-23 04:22:07 +02:00
# platform_version
# target_product
# target_variant
# compile_patterns, parse_input_file
#
# To emit html page of warning messages:
# flags: --byproject, --url, --separator
# Old stuff for static html components:
# html_script_style: static html scripts and styles
# htmlbig:
# dump_stats, dump_html_prologue, dump_html_epilogue:
# emit_buttons:
# dump_fixed
# sort_warnings:
# emit_stats_by_project:
# all_patterns,
# findproject, classify_warning
# dump_html
#
# New dynamic HTML page's static JavaScript data:
# Some data are copied from Python to JavaScript, to generate HTML elements.
# FlagURL args.url
# FlagSeparator args.separator
# SeverityColors: severity.colors
# SeverityHeaders: severity.headers
# SeverityColumnHeaders: severity.column_headers
# ProjectNames: project_names, or project_list[*][0]
# WarnPatternsSeverity: warn_patterns[*]['severity']
# WarnPatternsDescription: warn_patterns[*]['description']
# WarnPatternsOption: warn_patterns[*]['option']
# WarningMessages: warning_messages
# Warnings: warning_records
# StatsHeader: warning count table header row
# StatsRows: array of warning count table rows
#
# New dynamic HTML page's dynamic JavaScript data:
#
# New dynamic HTML related function to emit data:
# escape_string, strip_escape_string, emit_warning_arrays
# emit_js_data():
2016-05-10 21:06:01 +02:00
import argparse
2018-07-21 00:36:26 +02:00
import cgi
2017-04-11 00:37:47 +02:00
import csv
2016-10-12 00:25:26 +02:00
import multiprocessing
2016-10-12 00:30:26 +02:00
import os
2009-07-14 18:04:04 +02:00
import re
2016-11-10 03:19:05 +01:00
import signal
import sys
2009-07-14 18:04:04 +02:00
2016-05-10 21:06:01 +02:00
parser = argparse . ArgumentParser ( description = ' Convert a build log into HTML ' )
2017-04-11 00:37:47 +02:00
parser . add_argument ( ' --csvpath ' ,
help = ' Save CSV warning file to the passed absolute path ' ,
default = None )
2016-07-21 23:22:53 +02:00
parser . add_argument ( ' --gencsv ' ,
help = ' Generate a CSV file with number of various warnings ' ,
2016-09-26 19:56:43 +02:00
action = ' store_true ' ,
2016-07-21 23:22:53 +02:00
default = False )
2016-07-22 23:09:31 +02:00
parser . add_argument ( ' --byproject ' ,
help = ' Separate warnings in HTML output by project names ' ,
2016-09-26 19:56:43 +02:00
action = ' store_true ' ,
2016-07-22 23:09:31 +02:00
default = False )
2016-05-10 21:06:01 +02:00
parser . add_argument ( ' --url ' ,
help = ' Root URL of an Android source code tree prefixed '
' before files in warnings ' )
parser . add_argument ( ' --separator ' ,
help = ' Separator between the end of a URL and the line '
' number argument. e.g. # ' )
2016-10-12 00:25:26 +02:00
parser . add_argument ( ' --processes ' ,
type = int ,
default = multiprocessing . cpu_count ( ) ,
help = ' Number of parallel processes to process warnings ' )
2016-05-10 21:06:01 +02:00
parser . add_argument ( dest = ' buildlog ' , metavar = ' build.log ' ,
help = ' Path to build.log file ' )
args = parser . parse_args ( )
2009-07-14 18:04:04 +02:00
2016-09-26 19:56:43 +02:00
2016-09-28 03:08:52 +02:00
class Severity ( object ) :
2016-09-26 19:56:43 +02:00
""" Severity levels and attributes. """
2016-09-23 04:22:07 +02:00
# numbered by dump order
FIXMENOW = 0
HIGH = 1
MEDIUM = 2
LOW = 3
2016-10-05 20:53:20 +02:00
ANALYZER = 4
TIDY = 5
HARMLESS = 6
UNKNOWN = 7
SKIP = 8
range = range ( SKIP + 1 )
2016-09-26 19:56:43 +02:00
attributes = [
# pylint:disable=bad-whitespace
[ ' fuchsia ' , ' FixNow ' , ' Critical warnings, fix me now ' ] ,
[ ' red ' , ' High ' , ' High severity warnings ' ] ,
[ ' orange ' , ' Medium ' , ' Medium severity warnings ' ] ,
[ ' yellow ' , ' Low ' , ' Low severity warnings ' ] ,
2016-10-05 20:53:20 +02:00
[ ' hotpink ' , ' Analyzer ' , ' Clang-Analyzer warnings ' ] ,
2016-09-26 19:56:43 +02:00
[ ' peachpuff ' , ' Tidy ' , ' Clang-Tidy warnings ' ] ,
[ ' limegreen ' , ' Harmless ' , ' Harmless warnings ' ] ,
2016-09-23 04:22:07 +02:00
[ ' lightblue ' , ' Unknown ' , ' Unknown warnings ' ] ,
2016-09-26 19:56:43 +02:00
[ ' grey ' , ' Unhandled ' , ' Unhandled warnings ' ]
]
2016-09-23 04:22:07 +02:00
colors = [ a [ 0 ] for a in attributes ]
2016-09-26 19:56:43 +02:00
column_headers = [ a [ 1 ] for a in attributes ]
2016-09-23 04:22:07 +02:00
headers = [ a [ 2 ] for a in attributes ]
2016-09-26 19:56:43 +02:00
2017-05-18 20:40:08 +02:00
def tidy_warn_pattern ( description , pattern ) :
return {
' category ' : ' C/C++ ' ,
' severity ' : Severity . TIDY ,
' description ' : ' clang-tidy ' + description ,
' patterns ' : [ r ' .*: .+ \ [ ' + pattern + r ' \ ]$ ' ]
}
def simple_tidy_warn_pattern ( description ) :
return tidy_warn_pattern ( description , description )
def group_tidy_warn_pattern ( description ) :
return tidy_warn_pattern ( description , description + r ' -.+ ' )
2016-09-26 19:56:43 +02:00
warn_patterns = [
# pylint:disable=line-too-long,g-inconsistent-quotes
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
' description ' : ' clang-analyzer Security warning ' ,
' patterns ' : [ r " .*: warning: .+ \ [clang-analyzer-security.* \ ] " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' make ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' make: overriding commands/ignoring old commands ' ,
' patterns ' : [ r " .*: warning: overriding commands for target .+ " ,
r " .*: warning: ignoring old commands for target .+ " ] } ,
{ ' category ' : ' make ' , ' severity ' : Severity . HIGH ,
' description ' : ' make: LOCAL_CLANG is false ' ,
' patterns ' : [ r " .*: warning: LOCAL_CLANG is set to false " ] } ,
{ ' category ' : ' make ' , ' severity ' : Severity . HIGH ,
' description ' : ' SDK App using platform shared library ' ,
' patterns ' : [ r " .*: warning: .+ \ (.*app:sdk.* \ ) should not link to .+ \ (native:platform \ ) " ] } ,
{ ' category ' : ' make ' , ' severity ' : Severity . HIGH ,
' description ' : ' System module linking to a vendor module ' ,
' patterns ' : [ r " .*: warning: .+ \ (.+ \ ) should not link to .+ \ (partition:.+ \ ) " ] } ,
{ ' category ' : ' make ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Invalid SDK/NDK linking ' ,
' patterns ' : [ r " .*: warning: .+ \ (.+ \ ) should not link to .+ \ (.+ \ ) " ] } ,
2018-06-04 20:32:32 +02:00
{ ' category ' : ' make ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Duplicate header copy ' ,
' patterns ' : [ r " .*: warning: Duplicate header copy: .+ " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -Wimplicit-function-declaration ' ,
' description ' : ' Implicit function declaration ' ,
' patterns ' : [ r " .*: warning: implicit declaration of function .+ " ,
r " .*: warning: implicitly declaring library function " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, conflicting types for ... ' ,
' patterns ' : [ r " .*: warning: conflicting types for ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -Wtype-limits ' ,
' description ' : ' Expression always evaluates to true or false ' ,
' patterns ' : [ r " .*: warning: comparison is always .+ due to limited range of data type " ,
r " .*: warning: comparison of unsigned .*expression .+ is always true " ,
r " .*: warning: comparison of unsigned .*expression .+ is always false " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH ,
' description ' : ' Potential leak of memory, bad free, use after free ' ,
' patterns ' : [ r " .*: warning: Potential leak of memory " ,
r " .*: warning: Potential memory leak " ,
r " .*: warning: Memory allocated by alloca \ ( \ ) should not be deallocated " ,
r " .*: warning: Memory allocated by .+ should be deallocated by .+ not .+ " ,
r " .*: warning: ' delete ' applied to a pointer that was allocated " ,
r " .*: warning: Use of memory after it is freed " ,
r " .*: warning: Argument to .+ is the address of .+ variable " ,
r " .*: warning: Argument to free \ ( \ ) is offset by .+ of memory allocated by " ,
r " .*: warning: Attempt to .+ released memory " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH ,
' description ' : ' Use transient memory for control value ' ,
' patterns ' : [ r " .*: warning: .+Using such transient memory for the control value is .*dangerous. " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH ,
' description ' : ' Return address of stack memory ' ,
' patterns ' : [ r " .*: warning: Address of stack memory .+ returned to caller " ,
r " .*: warning: Address of stack memory .+ will be a dangling reference " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH ,
' description ' : ' Problem with vfork ' ,
' patterns ' : [ r " .*: warning: This .+ is prohibited after a successful vfork " ,
r " .*: warning: Call to function ' .+ ' is insecure " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' infinite-recursion ' ,
' description ' : ' Infinite recursion ' ,
' patterns ' : [ r " .*: warning: all paths through this function will call itself " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH ,
' description ' : ' Potential buffer overflow ' ,
' patterns ' : [ r " .*: warning: Size argument is greater than .+ the destination buffer " ,
r " .*: warning: Potential buffer overflow. " ,
r " .*: warning: String copy function overflows destination buffer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Incompatible pointer types ' ,
' patterns ' : [ r " .*: warning: assignment from incompatible pointer type " ,
r " .*: warning: return from incompatible pointer type " ,
r " .*: warning: passing argument [0-9]+ of ' .* ' from incompatible pointer type " ,
r " .*: warning: initialization from incompatible pointer type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -fno-builtin ' ,
' description ' : ' Incompatible declaration of built in function ' ,
' patterns ' : [ r " .*: warning: incompatible implicit declaration of built-in function .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -Wincompatible-library-redeclaration ' ,
' description ' : ' Incompatible redeclaration of library function ' ,
' patterns ' : [ r " .*: warning: incompatible redeclaration of library function .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH ,
' description ' : ' Null passed as non-null argument ' ,
' patterns ' : [ r " .*: warning: Null passed to a callee that requires a non-null " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunused-parameter ' ,
' description ' : ' Unused parameter ' ,
' patterns ' : [ r " .*: warning: unused parameter ' .* ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunused ' ,
2018-06-04 20:32:32 +02:00
' description ' : ' Unused function, variable, label, comparison, etc. ' ,
2016-09-28 03:08:52 +02:00
' patterns ' : [ r " .*: warning: ' .+ ' defined but not used " ,
r " .*: warning: unused function ' .+ ' " ,
2018-06-04 20:32:32 +02:00
r " .*: warning: unused label ' .+ ' " ,
r " .*: warning: relational comparison result unused " ,
2017-05-18 20:40:08 +02:00
r " .*: warning: lambda capture .* is not used " ,
2016-09-28 03:08:52 +02:00
r " .*: warning: private field ' .+ ' is not used " ,
r " .*: warning: unused variable ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunused-value ' ,
' description ' : ' Statement with no effect or result unused ' ,
' patterns ' : [ r " .*: warning: statement with no effect " ,
r " .*: warning: expression result unused " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunused-result ' ,
' description ' : ' Ignoreing return value of function ' ,
' patterns ' : [ r " .*: warning: ignoring return value of function .+Wunused-result " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmissing-field-initializers ' ,
' description ' : ' Missing initializer ' ,
' patterns ' : [ r " .*: warning: missing initializer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wdelete-non-virtual-dtor ' ,
' description ' : ' Need virtual destructor ' ,
' patterns ' : [ r " .*: warning: delete called .* has virtual functions but non-virtual destructor " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, near initialization for ... ' ,
' patterns ' : [ r " .*: warning: \ (near initialization for ' .+ ' \ ) " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wdate-time ' ,
' description ' : ' Expansion of data or time macro ' ,
' patterns ' : [ r " .*: warning: expansion of date or time macro is not reproducible " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wformat ' ,
' description ' : ' Format string does not match arguments ' ,
' patterns ' : [ r " .*: warning: format ' .+ ' expects type ' .+ ' , but argument [0-9]+ has type ' .+ ' " ,
r " .*: warning: more ' % ' conversions than data arguments " ,
r " .*: warning: data argument not used by format string " ,
r " .*: warning: incomplete format specifier " ,
r " .*: warning: unknown conversion type .* in format " ,
r " .*: warning: format .+ expects .+ but argument .+Wformat= " ,
r " .*: warning: field precision should have .+ but argument has .+Wformat " ,
r " .*: warning: format specifies type .+ but the argument has .*type .+Wformat " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wformat-extra-args ' ,
' description ' : ' Too many arguments for format string ' ,
' patterns ' : [ r " .*: warning: too many arguments for format " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Too many arguments in call ' ,
' patterns ' : [ r " .*: warning: too many arguments in call to " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wformat-invalid-specifier ' ,
' description ' : ' Invalid format specifier ' ,
' patterns ' : [ r " .*: warning: invalid .+ specifier ' .+ ' .+format-invalid-specifier " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wsign-compare ' ,
' description ' : ' Comparison between signed and unsigned ' ,
' patterns ' : [ r " .*: warning: comparison between signed and unsigned " ,
r " .*: warning: comparison of promoted \ ~unsigned with unsigned " ,
r " .*: warning: signed and unsigned type in conditional expression " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Comparison between enum and non-enum ' ,
' patterns ' : [ r " .*: warning: enumeral and non-enumeral type in conditional expression " ] } ,
{ ' category ' : ' libpng ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' libpng: zero area ' ,
' patterns ' : [ r " .*libpng warning: Ignoring attempt to set cHRM RGB triangle with zero area " ] } ,
{ ' category ' : ' aapt ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' aapt: no comment for public symbol ' ,
' patterns ' : [ r " .*: warning: No comment for public symbol .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmissing-braces ' ,
' description ' : ' Missing braces around initializer ' ,
' patterns ' : [ r " .*: warning: missing braces around initializer.* " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' No newline at end of file ' ,
' patterns ' : [ r " .*: warning: no newline at end of file " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' Missing space after macro name ' ,
' patterns ' : [ r " .*: warning: missing whitespace after the macro name " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wcast-align ' ,
' description ' : ' Cast increases required alignment ' ,
' patterns ' : [ r " .*: warning: cast from .* to .* increases required alignment .* " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wcast-qual ' ,
' description ' : ' Qualifier discarded ' ,
' patterns ' : [ r " .*: warning: passing argument [0-9]+ of ' .+ ' discards qualifiers from pointer target type " ,
r " .*: warning: assignment discards qualifiers from pointer target type " ,
r " .*: warning: passing .+ to parameter of type .+ discards qualifiers " ,
r " .*: warning: assigning to .+ from .+ discards qualifiers " ,
r " .*: warning: initializing .+ discards qualifiers .+types-discards-qualifiers " ,
r " .*: warning: return discards qualifiers from pointer target type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunknown-attributes ' ,
' description ' : ' Unknown attribute ' ,
' patterns ' : [ r " .*: warning: unknown attribute ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wignored-attributes ' ,
' description ' : ' Attribute ignored ' ,
' patterns ' : [ r " .*: warning: ' _*packed_* ' attribute ignored " ,
r " .*: warning: attribute declaration must precede definition .+ignored-attributes " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wvisibility ' ,
' description ' : ' Visibility problem ' ,
' patterns ' : [ r " .*: warning: declaration of ' .+ ' will not be visible outside of this function " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wattributes ' ,
' description ' : ' Visibility mismatch ' ,
' patterns ' : [ r " .*: warning: ' .+ ' declared with greater visibility than the type of its field ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Shift count greater than width of type ' ,
' patterns ' : [ r " .*: warning: (left|right) shift count >= width of type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wextern-initializer ' ,
' description ' : ' extern <foo> is initialized ' ,
' patterns ' : [ r " .*: warning: ' .+ ' initialized and declared ' extern ' " ,
r " .*: warning: ' extern ' variable has an initializer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wold-style-declaration ' ,
' description ' : ' Old style declaration ' ,
' patterns ' : [ r " .*: warning: ' static ' is not at beginning of declaration " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wreturn-type ' ,
' description ' : ' Missing return value ' ,
' patterns ' : [ r " .*: warning: control reaches end of non-void function " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wimplicit-int ' ,
' description ' : ' Implicit int type ' ,
' patterns ' : [ r " .*: warning: type specifier missing, defaults to ' int ' " ,
r " .*: warning: type defaults to ' int ' in declaration of ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmain-return-type ' ,
' description ' : ' Main function should return int ' ,
' patterns ' : [ r " .*: warning: return type of ' main ' is not ' int ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wuninitialized ' ,
' description ' : ' Variable may be used uninitialized ' ,
' patterns ' : [ r " .*: warning: ' .+ ' may be used uninitialized in this function " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -Wuninitialized ' ,
' description ' : ' Variable is used uninitialized ' ,
' patterns ' : [ r " .*: warning: ' .+ ' is used uninitialized in this function " ,
r " .*: warning: variable ' .+ ' is uninitialized when used here " ] } ,
{ ' category ' : ' ld ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -fshort-enums ' ,
' description ' : ' ld: possible enum size mismatch ' ,
' patterns ' : [ r " .*: warning: .* uses variable-size enums yet the output is to use 32-bit enums; use of enum values across objects may fail " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wpointer-sign ' ,
' description ' : ' Pointer targets differ in signedness ' ,
' patterns ' : [ r " .*: warning: pointer targets in initialization differ in signedness " ,
r " .*: warning: pointer targets in assignment differ in signedness " ,
r " .*: warning: pointer targets in return differ in signedness " ,
r " .*: warning: pointer targets in passing argument [0-9]+ of ' .+ ' differ in signedness " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wstrict-overflow ' ,
' description ' : ' Assuming overflow does not occur ' ,
' patterns ' : [ r " .*: warning: assuming signed overflow does not occur when assuming that .* is always (true|false) " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wempty-body ' ,
' description ' : ' Suggest adding braces around empty body ' ,
' patterns ' : [ r " .*: warning: suggest braces around empty body in an ' if ' statement " ,
r " .*: warning: empty body in an if-statement " ,
r " .*: warning: suggest braces around empty body in an ' else ' statement " ,
r " .*: warning: empty body in an else-statement " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wparentheses ' ,
' description ' : ' Suggest adding parentheses ' ,
' patterns ' : [ r " .*: warning: suggest explicit braces to avoid ambiguous ' else ' " ,
r " .*: warning: suggest parentheses around arithmetic in operand of ' .+ ' " ,
r " .*: warning: suggest parentheses around comparison in operand of ' .+ ' " ,
r " .*: warning: logical not is only applied to the left hand side of this comparison " ,
r " .*: warning: using the result of an assignment as a condition without parentheses " ,
r " .*: warning: .+ has lower precedence than .+ be evaluated first .+Wparentheses " ,
r " .*: warning: suggest parentheses around ' .+? ' .+ ' .+? ' " ,
r " .*: warning: suggest parentheses around assignment used as truth value " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Static variable used in non-static inline function ' ,
' patterns ' : [ r " .*: warning: ' .+ ' is static but used in inline function ' .+ ' which is not static " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wimplicit int ' ,
' description ' : ' No type or storage class (will default to int) ' ,
' patterns ' : [ r " .*: warning: data definition has no type or storage class " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Null pointer ' ,
' patterns ' : [ r " .*: warning: Dereference of null pointer " ,
r " .*: warning: Called .+ pointer is null " ,
r " .*: warning: Forming reference to null pointer " ,
r " .*: warning: Returning null reference " ,
r " .*: warning: Null pointer passed as an argument to a ' nonnull ' parameter " ,
r " .*: warning: .+ results in a null pointer dereference " ,
r " .*: warning: Access to .+ results in a dereference of a null pointer " ,
r " .*: warning: Null pointer argument in " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, parameter name (without types) in function declaration ' ,
' patterns ' : [ r " .*: warning: parameter names \ (without types \ ) in function declaration " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wstrict-aliasing ' ,
' description ' : ' Dereferencing <foo> breaks strict aliasing rules ' ,
' patterns ' : [ r " .*: warning: dereferencing .* break strict-aliasing rules " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wpointer-to-int-cast ' ,
' description ' : ' Cast from pointer to integer of different size ' ,
' patterns ' : [ r " .*: warning: cast from pointer to integer of different size " ,
r " .*: warning: initialization makes pointer from integer without a cast " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wint-to-pointer-cast ' ,
' description ' : ' Cast to pointer from integer of different size ' ,
' patterns ' : [ r " .*: warning: cast to pointer from integer of different size " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Symbol redefined ' ,
' patterns ' : [ r " .*: warning: " " .+ " " redefined " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, ... location of the previous definition ' ,
' patterns ' : [ r " .*: warning: this is the location of the previous definition " ] } ,
{ ' category ' : ' ld ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' ld: type and size of dynamic symbol are not defined ' ,
' patterns ' : [ r " .*: warning: type and size of dynamic symbol `.+ ' are not defined " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Pointer from integer without cast ' ,
' patterns ' : [ r " .*: warning: assignment makes pointer from integer without a cast " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Pointer from integer without cast ' ,
' patterns ' : [ r " .*: warning: passing argument [0-9]+ of ' .+ ' makes pointer from integer without a cast " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Integer from pointer without cast ' ,
' patterns ' : [ r " .*: warning: assignment makes integer from pointer without a cast " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Integer from pointer without cast ' ,
' patterns ' : [ r " .*: warning: passing argument [0-9]+ of ' .+ ' makes integer from pointer without a cast " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Integer from pointer without cast ' ,
' patterns ' : [ r " .*: warning: return makes integer from pointer without a cast " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunknown-pragmas ' ,
' description ' : ' Ignoring pragma ' ,
' patterns ' : [ r " .*: warning: ignoring #pragma .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -W#pragma-messages ' ,
' description ' : ' Pragma warning messages ' ,
' patterns ' : [ r " .*: warning: .+W#pragma-messages " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wclobbered ' ,
' description ' : ' Variable might be clobbered by longjmp or vfork ' ,
' patterns ' : [ r " .*: warning: variable ' .+ ' might be clobbered by ' longjmp ' or ' vfork ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wclobbered ' ,
' description ' : ' Argument might be clobbered by longjmp or vfork ' ,
' patterns ' : [ r " .*: warning: argument ' .+ ' might be clobbered by ' longjmp ' or ' vfork ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wredundant-decls ' ,
' description ' : ' Redundant declaration ' ,
' patterns ' : [ r " .*: warning: redundant redeclaration of ' .+ ' " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, previous declaration ... was here ' ,
' patterns ' : [ r " .*: warning: previous declaration of ' .+ ' was here " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wswitch-enum ' ,
' description ' : ' Enum value not handled in switch ' ,
' patterns ' : [ r " .*: warning: .*enumeration value.* not handled in switch.+Wswitch " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wuser-defined-warnings ' ,
' description ' : ' User defined warnings ' ,
' patterns ' : [ r " .*: warning: .* \ [-Wuser-defined-warnings \ ]$ " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' java ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -encoding ' ,
' description ' : ' Java: Non-ascii characters used, but ascii encoding specified ' ,
' patterns ' : [ r " .*: warning: unmappable character for encoding ascii " ] } ,
{ ' category ' : ' java ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Java: Non-varargs call of varargs method with inexact argument type for last parameter ' ,
' patterns ' : [ r " .*: warning: non-varargs call of varargs method with inexact argument type for last parameter " ] } ,
{ ' category ' : ' java ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Java: Unchecked method invocation ' ,
' patterns ' : [ r " .*: warning: \ [unchecked \ ] unchecked method invocation: .+ in class .+ " ] } ,
{ ' category ' : ' java ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Java: Unchecked conversion ' ,
' patterns ' : [ r " .*: warning: \ [unchecked \ ] unchecked conversion " ] } ,
{ ' category ' : ' java ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' _ used as an identifier ' ,
' patterns ' : [ r " .*: warning: ' _ ' used as an identifier " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' java ' , ' severity ' : Severity . HIGH ,
' description ' : ' Use of internal proprietary API ' ,
' patterns ' : [ r " .*: warning: .* is internal proprietary API and may be removed " ] } ,
2016-05-10 08:19:42 +02:00
2016-11-16 00:57:57 +01:00
# Warnings from Javac
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' : ' Java: Use of deprecated member ' ,
' patterns ' : [ r ' .*: warning: \ [deprecation \ ] .+ ' ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' : ' Java: Unchecked conversion ' ,
' patterns ' : [ r ' .*: warning: \ [unchecked \ ] .+ ' ] } ,
2016-05-10 08:19:42 +02:00
2016-11-16 00:57:57 +01:00
# Begin warnings generated by Error Prone
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . LOW ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Use parameter comments to document ambiguous literals ' ,
' patterns ' : [ r " .*: warning: \ [BooleanParameter \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Field name is CONSTANT_CASE, but field is not static and final ' ,
2018-06-08 18:55:41 +02:00
' patterns ' : [ r " .*: warning: \ [ConstantField \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: @Multibinds is a more efficient and declarative mechanism for ensuring that a set multibinding is present in the graph. ' ,
' patterns ' : [ r " .*: warning: \ [EmptySetMultibindingContributions \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: This field is only assigned during initialization; consider making it final ' ,
' patterns ' : [ r " .*: warning: \ [FieldCanBeFinal \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Fields that can be null should be annotated @Nullable ' ,
' patterns ' : [ r " .*: warning: \ [FieldMissingNullable \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 18:55:41 +02:00
r ' Java: Use Java \' s utility functional interfaces instead of Function \ u003cA, B> for primitive types. ' ,
' patterns ' : [ r " .*: warning: \ [LambdaFunctionalInterface \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: A private method that does not reference the enclosing instance can be static ' ,
' patterns ' : [ r " .*: warning: \ [MethodCanBeStatic \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . LOW ,
2016-05-13 17:59:00 +02:00
' description ' :
2016-11-16 00:57:57 +01:00
' Java: C-style array declarations should not be used ' ,
' patterns ' : [ r " .*: warning: \ [MixedArrayDimensions \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Variable declarations should declare only one variable ' ,
' patterns ' : [ r " .*: warning: \ [MultiVariableDeclaration \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Source files should not contain multiple top-level class declarations ' ,
' patterns ' : [ r " .*: warning: \ [MultipleTopLevelClasses \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Avoid having multiple unary operators acting on the same variable in a method call ' ,
' patterns ' : [ r " .*: warning: \ [MultipleUnaryOperatorsInMethodCall \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Package names should match the directory they are declared in ' ,
' patterns ' : [ r " .*: warning: \ [PackageLocation \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Non-standard parameter comment; prefer `/*paramName=*/ arg` ' ,
' patterns ' : [ r " .*: warning: \ [ParameterComment \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Method parameters that aren \' t checked for null shouldn \' t be annotated @Nullable ' ,
' patterns ' : [ r " .*: warning: \ [ParameterNotNullable \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Add a private constructor to modules that will not be instantiated by Dagger. ' ,
2018-06-08 19:11:26 +02:00
' patterns ' : [ r " .*: warning: \ [PrivateConstructorForNoninstantiableModule \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Utility classes (only static members) are not designed to be instantiated and should be made noninstantiable with a default constructor. ' ,
' patterns ' : [ r " .*: warning: \ [PrivateConstructorForUtilityClass \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Unused imports ' ,
' patterns ' : [ r " .*: warning: \ [RemoveUnusedImports \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Methods that can return null should be annotated @Nullable ' ,
' patterns ' : [ r " .*: warning: \ [ReturnMissingNullable \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Scopes on modules have no function and will soon be an error. ' ,
' patterns ' : [ r " .*: warning: \ [ScopeOnModule \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: The default case of a switch should appear at the end of the last statement group ' ,
' patterns ' : [ r " .*: warning: \ [SwitchDefault \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Unchecked exceptions do not need to be declared in the method signature. ' ,
' patterns ' : [ r " .*: warning: \ [ThrowsUncheckedException \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Type parameters must be a single letter with an optional numeric suffix, or an UpperCamelCase name followed by the letter \' T \' . ' ,
' patterns ' : [ r " .*: warning: \ [TypeParameterNaming \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Constructors and methods with the same name should appear sequentially with no other code in between ' ,
' patterns ' : [ r " .*: warning: \ [UngroupedOverloads \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Unnecessary call to NullPointerTester#setDefault ' ,
' patterns ' : [ r " .*: warning: \ [UnnecessarySetDefault \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
' Java: Using static imports for types is unnecessary ' ,
' patterns ' : [ r " .*: warning: \ [UnnecessaryStaticImport \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: @Binds is a more efficient and declarative mechanism for delegating a binding. ' ,
' patterns ' : [ r " .*: warning: \ [UseBinds \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . LOW ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Wildcard imports, static or otherwise, should not be used ' ,
' patterns ' : [ r " .*: warning: \ [WildcardImport \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Method reference is ambiguous ' ,
' patterns ' : [ r " .*: warning: \ [AmbiguousMethodReference \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Arguments are in the wrong order or could be commented for clarity. ' ,
' patterns ' : [ r " .*: warning: \ [ArgumentSelectionDefectChecker \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Arguments are swapped in assertEquals-like call ' ,
' patterns ' : [ r " .*: warning: \ [AssertEqualsArgumentOrderChecker \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Assertions may be disabled at runtime and do not guarantee that execution will halt here; consider throwing an exception instead ' ,
' patterns ' : [ r " .*: warning: \ [AssertFalse \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: The lambda passed to assertThows should contain exactly one statement ' ,
' patterns ' : [ r " .*: warning: \ [AssertThrowsMultipleStatements \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: This assertion throws an AssertionError if it fails, which will be caught by an enclosing try block. ' ,
' patterns ' : [ r " .*: warning: \ [AssertionFailureIgnored \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: @AssistedInject and @Inject should not be used on different constructors in the same class. ' ,
' patterns ' : [ r " .*: warning: \ [AssistedInjectAndInjectOnConstructors \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Classes that implement Annotation must override equals and hashCode. Consider using AutoAnnotation instead of implementing Annotation by hand. ' ,
' patterns ' : [ r " .*: warning: \ [BadAnnotationImplementation \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Possible sign flip from narrowing conversion ' ,
' patterns ' : [ r " .*: warning: \ [BadComparable \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: BigDecimal(double) and BigDecimal.valueOf(double) may lose precision, prefer BigDecimal(String) or BigDecimal(long) ' ,
' patterns ' : [ r " .*: warning: \ [BigDecimalLiteralDouble \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: A call to Binder.clearCallingIdentity() should be followed by Binder.restoreCallingIdentity() in a finally block. Otherwise the wrong Binder identity may be used by subsequent code. ' ,
' patterns ' : [ r " .*: warning: \ [BinderIdentityRestoredDangerously \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: This code declares a binding for a common value type without a Qualifier annotation. ' ,
' patterns ' : [ r " .*: warning: \ [BindingToUnqualifiedCommonType \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: valueOf or autoboxing provides better time and space performance ' ,
' patterns ' : [ r " .*: warning: \ [BoxedPrimitiveConstructor \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: ByteBuffer.array() shouldn \' t be called unless ByteBuffer.arrayOffset() is used or if the ByteBuffer was initialized using ByteBuffer.wrap() or ByteBuffer.allocate(). ' ,
' patterns ' : [ r " .*: warning: \ [ByteBufferBackingArray \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Mockito cannot mock final classes ' ,
' patterns ' : [ r " .*: warning: \ [CannotMockFinalClass \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Duration can be expressed more clearly with different units ' ,
' patterns ' : [ r " .*: warning: \ [CanonicalDuration \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace ' ,
' patterns ' : [ r " .*: warning: \ [CatchAndPrintStackTrace \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Ignoring exceptions and calling fail() is unnecessary, and makes test output less useful ' ,
' patterns ' : [ r " .*: warning: \ [CatchFail \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Inner class is non-static but does not reference enclosing class ' ,
' patterns ' : [ r " .*: warning: \ [ClassCanBeStatic \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance() ' ,
2016-11-16 00:57:57 +01:00
' patterns ' : [ r " .*: warning: \ [ClassNewInstance \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-01-25 20:55:43 +01:00
' Java: The type of the array parameter of Collection.toArray needs to be compatible with the array type ' ,
' patterns ' : [ r " .*: warning: \ [CollectionToArraySafeParameter \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Collector.of() should not use state ' ,
' patterns ' : [ r " .*: warning: \ [CollectorShouldNotUseState \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Class should not implement both `Comparable` and `Comparator` ' ,
' patterns ' : [ r " .*: warning: \ [ComparableAndComparator \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Constructors should not invoke overridable methods. ' ,
' patterns ' : [ r " .*: warning: \ [ConstructorInvokesOverridable \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Constructors should not pass the \' this \' reference out in method invocations, since the object may not be fully constructed. ' ,
' patterns ' : [ r " .*: warning: \ [ConstructorLeaksThis \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: DateFormat is not thread-safe, and should not be used as a constant field. ' ,
' patterns ' : [ r " .*: warning: \ [DateFormatConstant \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn \' t match expectations. ' ,
2018-01-25 20:55:43 +01:00
' patterns ' : [ r " .*: warning: \ [DefaultCharset \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Prefer collection factory methods or builders to the double-brace initialization pattern. ' ,
' patterns ' : [ r " .*: warning: \ [DoubleBraceInitialization \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Double-checked locking on non-volatile fields is unsafe ' ,
' patterns ' : [ r " .*: warning: \ [DoubleCheckedLocking \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Empty top-level type declaration ' ,
' patterns ' : [ r " .*: warning: \ [EmptyTopLevelDeclaration \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Classes that override equals should also override hashCode. ' ,
' patterns ' : [ r " .*: warning: \ [EqualsHashCode \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: An equality test between objects with incompatible types always returns false ' ,
' patterns ' : [ r " .*: warning: \ [EqualsIncompatibleType \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Calls to ExpectedException#expect should always be followed by exactly one statement. ' ,
' patterns ' : [ r " .*: warning: \ [ExpectedExceptionChecker \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Switch case may fall through ' ,
' patterns ' : [ r " .*: warning: \ [FallThrough \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: If you return or throw from a finally, then values returned or thrown from the try-catch block will be ignored. Consider using try-with-resources instead. ' ,
' patterns ' : [ r " .*: warning: \ [Finally \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Use parentheses to make the precedence explicit ' ,
' patterns ' : [ r " .*: warning: \ [FloatCast \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Floating point literal loses precision ' ,
' patterns ' : [ r " .*: warning: \ [FloatingPointLiteralPrecision \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Classes extending PreferenceActivity must implement isValidFragment such that it does not unconditionally return true to prevent vulnerability to fragment injection attacks. ' ,
' patterns ' : [ r " .*: warning: \ [FragmentInjection \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Subclasses of Fragment must be instantiable via Class#newInstance(): the class must be public, static and have a public nullary constructor ' ,
' patterns ' : [ r " .*: warning: \ [FragmentNotInstantiable \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Overloads will be ambiguous when passing lambda arguments ' ,
' patterns ' : [ r " .*: warning: \ [FunctionalInterfaceClash \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Return value of methods returning Future must be checked. Ignoring returned Futures suppresses exceptions thrown from the code that completes the Future. ' ,
' patterns ' : [ r " .*: warning: \ [FutureReturnValueIgnored \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Calling getClass() on an enum may return a subclass of the enum type ' ,
' patterns ' : [ r " .*: warning: \ [GetClassOnEnum \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Hardcoded reference to /sdcard ' ,
' patterns ' : [ r " .*: warning: \ [HardCodedSdCardPath \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Hiding fields of superclasses may cause confusion and errors ' ,
' patterns ' : [ r " .*: warning: \ [HidingField \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Annotations should always be immutable ' ,
' patterns ' : [ r " .*: warning: \ [ImmutableAnnotationChecker \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Enums should always be immutable ' ,
' patterns ' : [ r " .*: warning: \ [ImmutableEnumChecker \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: This annotation has incompatible modifiers as specified by its @IncompatibleModifiers annotation ' ,
' patterns ' : [ r " .*: warning: \ [IncompatibleModifiers \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: It is confusing to have a field and a parameter under the same scope that differ only in capitalization. ' ,
' patterns ' : [ r " .*: warning: \ [InconsistentCapitalization \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: The ordering of parameters in overloaded methods should be as consistent as possible (when viewed from left to right) ' ,
' patterns ' : [ r " .*: warning: \ [InconsistentOverloads \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: This for loop increments the same variable in the header and in the body ' ,
' patterns ' : [ r " .*: warning: \ [IncrementInForLoopAndHeader \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Constructors on abstract classes are never directly @Injected, only the constructors of their subclasses can be @Inject \' ed. ' ,
' patterns ' : [ r " .*: warning: \ [InjectOnConstructorOfAbstractClass \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Please also override int read(byte[], int, int), otherwise multi-byte reads from this input stream are likely to be slow. ' ,
' patterns ' : [ r " .*: warning: \ [InputStreamSlowMultibyteRead \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2018-01-25 20:55:43 +01:00
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Casting inside an if block should be plausibly consistent with the instanceof type ' ,
' patterns ' : [ r " .*: warning: \ [InstanceOfAndCastMatchWrongType \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Expression of type int may overflow before being assigned to a long ' ,
' patterns ' : [ r " .*: warning: \ [IntLongMath \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Class should not implement both `Iterable` and `Iterator` ' ,
' patterns ' : [ r " .*: warning: \ [IterableAndIterator \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Floating-point comparison without error tolerance ' ,
' patterns ' : [ r " .*: warning: \ [JUnit3FloatingPointComparisonWithoutDelta \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Some JUnit4 construct cannot be used in a JUnit3 context. Convert your class to JUnit4 style to use them. ' ,
' patterns ' : [ r " .*: warning: \ [JUnit4ClassUsedInJUnit3 \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Test class inherits from JUnit 3 \' s TestCase but has JUnit 4 @Test annotations. ' ,
' patterns ' : [ r " .*: warning: \ [JUnitAmbiguousTestClass \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Never reuse class names from java.lang ' ,
' patterns ' : [ r " .*: warning: \ [JavaLangClash \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Suggests alternatives to obsolete JDK classes. ' ,
' patterns ' : [ r " .*: warning: \ [JdkObsolete \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Assignment where a boolean expression was expected; use == if this assignment wasn \' t expected or add parentheses for clarity. ' ,
' patterns ' : [ r " .*: warning: \ [LogicalAssignment \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Switches on enum types should either handle all values, or have a default case. ' ,
2016-05-13 17:59:00 +02:00
' patterns ' : [ r " .*: warning: \ [MissingCasesInEnumSwitch \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: The Google Java Style Guide requires that each switch statement includes a default statement group, even if it contains no code. (This requirement is lifted for any switch statement that covers all values of an enum.) ' ,
' patterns ' : [ r " .*: warning: \ [MissingDefault \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Not calling fail() when expecting an exception masks bugs ' ,
' patterns ' : [ r " .*: warning: \ [MissingFail \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: method overrides method in supertype; expected @Override ' ,
' patterns ' : [ r " .*: warning: \ [MissingOverride \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Modifying a collection while iterating over it in a loop may cause a ConcurrentModificationException to be thrown. ' ,
' patterns ' : [ r " .*: warning: \ [ModifyCollectionInEnhancedForLoop \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Multiple calls to either parallel or sequential are unnecessary and cause confusion. ' ,
' patterns ' : [ r " .*: warning: \ [MultipleParallelOrSequentialCalls \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Constant field declarations should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List) ' ,
' patterns ' : [ r " .*: warning: \ [MutableConstantField \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Method return type should use the immutable type (such as ImmutableList) instead of the general collection interface type (such as List) ' ,
' patterns ' : [ r " .*: warning: \ [MutableMethodReturnType \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Compound assignments may hide dangerous casts ' ,
2016-11-16 00:57:57 +01:00
' patterns ' : [ r " .*: warning: \ [NarrowingCompoundAssignment \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Nested instanceOf conditions of disjoint types create blocks of code that never execute ' ,
' patterns ' : [ r " .*: warning: \ [NestedInstanceOfConditions \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: This update of a volatile variable is non-atomic ' ,
' patterns ' : [ r " .*: warning: \ [NonAtomicVolatileUpdate \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Static import of member uses non-canonical name ' ,
' patterns ' : [ r " .*: warning: \ [NonCanonicalStaticMemberImport \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: equals method doesn \' t override Object.equals ' ,
' patterns ' : [ r " .*: warning: \ [NonOverridingEquals \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Constructors should not be annotated with @Nullable since they cannot return null ' ,
' patterns ' : [ r " .*: warning: \ [NullableConstructor \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: @Nullable should not be used for primitive types since they cannot be null ' ,
' patterns ' : [ r " .*: warning: \ [NullablePrimitive \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: void-returning methods should not be annotated with @Nullable, since they cannot return null ' ,
' patterns ' : [ r " .*: warning: \ [NullableVoid \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Calling toString on Objects that don \' t override toString() doesn \' t provide useful information ' ,
' patterns ' : [ r " .*: warning: \ [ObjectToString \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2016-11-16 00:57:57 +01:00
' Java: Use grouping parenthesis to make the operator precedence explicit ' ,
' patterns ' : [ r " .*: warning: \ [OperatorPrecedence \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: One should not call optional.get() inside an if statement that checks !optional.isPresent ' ,
' patterns ' : [ r " .*: warning: \ [OptionalNotPresent \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: String literal contains format specifiers, but is not passed to a format method ' ,
' patterns ' : [ r " .*: warning: \ [OrphanedFormatString \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: To return a custom message with a Throwable class, one should override getMessage() instead of toString() for Throwable. ' ,
' patterns ' : [ r " .*: warning: \ [OverrideThrowableToString \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Varargs doesn \' t agree for overridden method ' ,
' patterns ' : [ r " .*: warning: \ [Overrides \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: This method is not annotated with @Inject, but it overrides a method that is annotated with @com.google.inject.Inject. Guice will inject this method, and it is recommended to annotate it explicitly. ' ,
' patterns ' : [ r " .*: warning: \ [OverridesGuiceInjectableMethod \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Detects `/* name= */`-style comments on actual parameters where the name doesn \' t match the formal parameter ' ,
' patterns ' : [ r " .*: warning: \ [ParameterName \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Preconditions only accepts the %s placeholder in error message strings ' ,
' patterns ' : [ r " .*: warning: \ [PreconditionsInvalidPlaceholder \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Passing a primitive array to a varargs method is usually wrong ' ,
' patterns ' : [ r " .*: warning: \ [PrimitiveArrayPassedToVarargsMethod \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Protobuf fields cannot be null, so this check is redundant ' ,
' patterns ' : [ r " .*: warning: \ [ProtoFieldPreconditionsCheckNotNull \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: BugChecker has incorrect ProvidesFix tag, please update ' ,
' patterns ' : [ r " .*: warning: \ [ProvidesFix \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Qualifiers/Scope annotations on @Inject methods don \' t have any effect. Move the qualifier annotation to the binding location. ' ,
' patterns ' : [ r " .*: warning: \ [QualifierOrScopeOnInjectMethod \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Injection frameworks currently don \' t understand Qualifiers in TYPE_PARAMETER or TYPE_USE contexts. ' ,
2018-06-08 18:55:41 +02:00
' patterns ' : [ r " .*: warning: \ [QualifierWithTypeUse \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: reachabilityFence should always be called inside a finally block ' ,
' patterns ' : [ r " .*: warning: \ [ReachabilityFenceUsage \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Thrown exception is a subtype of another ' ,
' patterns ' : [ r " .*: warning: \ [RedundantThrows \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Comparison using reference equality instead of value equality ' ,
' patterns ' : [ r " .*: warning: \ [ReferenceEquality \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: This annotation is missing required modifiers as specified by its @RequiredModifiers annotation ' ,
' patterns ' : [ r " .*: warning: \ [RequiredModifiers \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-07 19:51:47 +02:00
r ' Java: Prefer the short-circuiting boolean operators \ u0026 \ u0026 and || to \ u0026 and |. ' ,
2018-01-25 20:55:43 +01:00
' patterns ' : [ r " .*: warning: \ [ShortCircuitBoolean \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Writes to static fields should not be guarded by instance locks ' ,
' patterns ' : [ r " .*: warning: \ [StaticGuardedByInstance \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: A static variable or method should be qualified with a class name, not expression ' ,
' patterns ' : [ r " .*: warning: \ [StaticQualifiedUsingExpression \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Streams that encapsulate a closeable resource should be closed using try-with-resources ' ,
' patterns ' : [ r " .*: warning: \ [StreamResourceLeak \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: String comparison using reference equality instead of value equality ' ,
' patterns ' : [ r " .*: warning: \ [StringEquality \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: String.split(String) has surprising behavior ' ,
2018-01-25 20:55:43 +01:00
' patterns ' : [ r " .*: warning: \ [StringSplitter \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects. ' ,
' patterns ' : [ r " .*: warning: \ [SynchronizeOnNonFinalField \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Using @Test(expected=...) is discouraged, since the test will pass if *any* statement in the test method throws the expected exception ' ,
' patterns ' : [ r " .*: warning: \ [TestExceptionChecker \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Thread.join needs to be surrounded by a loop until it succeeds, as in Uninterruptibles.joinUninterruptibly. ' ,
' patterns ' : [ r " .*: warning: \ [ThreadJoinLoop \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: ThreadLocals should be stored in static fields ' ,
' patterns ' : [ r " .*: warning: \ [ThreadLocalUsage \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Three-letter time zone identifiers are deprecated, may be ambiguous, and might not do what you intend; the full IANA time zone ID should be used instead. ' ,
' patterns ' : [ r " .*: warning: \ [ThreeLetterTimeZoneID \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2016-11-16 00:57:57 +01:00
' Java: Truth Library assert is called on a constant. ' ,
' patterns ' : [ r " .*: warning: \ [TruthConstantAsserts \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Argument is not compatible with the subject \' s type. ' ,
' patterns ' : [ r " .*: warning: \ [TruthIncompatibleType \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Type parameter declaration overrides another type parameter already declared ' ,
' patterns ' : [ r " .*: warning: \ [TypeParameterShadowing \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Declaring a type parameter that is only used in the return type is a misuse of generics: operations on the type parameter are unchecked, it hides unsafe casts at invocations of the method, and it interacts badly with method overload resolution. ' ,
' patterns ' : [ r " .*: warning: \ [TypeParameterUnusedInFormals \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Avoid hash-based containers of java.net.URL--the containers rely on equals() and hashCode(), which cause java.net.URL to make blocking internet connections. ' ,
2018-01-25 20:55:43 +01:00
' patterns ' : [ r " .*: warning: \ [URLEqualsHashCode \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Switch handles all enum values; an explicit default case is unnecessary and defeats error checking for non-exhaustive switches. ' ,
' patterns ' : [ r " .*: warning: \ [UnnecessaryDefaultInEnumSwitch \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Finalizer may run before native code finishes execution ' ,
' patterns ' : [ r " .*: warning: \ [UnsafeFinalization \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Unsynchronized method overrides a synchronized method. ' ,
' patterns ' : [ r " .*: warning: \ [UnsynchronizedOverridesSynchronized \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . MEDIUM ,
' description ' :
' Java: Java assert is used in test. For testing purposes Assert.* matchers should be used. ' ,
' patterns ' : [ r " .*: warning: \ [UseCorrectAssertInTests \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Non-constant variable missing @Var annotation ' ,
' patterns ' : [ r " .*: warning: \ [Var \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Because of spurious wakeups, Object.wait() and Condition.await() must always be called in a loop ' ,
' patterns ' : [ r " .*: warning: \ [WaitNotInLoop \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2018-01-25 20:55:43 +01:00
' severity ' : Severity . MEDIUM ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: A wakelock acquired with a timeout may be released by the system before calling `release`, even after checking `isHeld()`. If so, it will throw a RuntimeException. Please wrap in a try/catch block. ' ,
' patterns ' : [ r " .*: warning: \ [WakelockReleasedDangerously \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: AndroidInjection.inject() should always be invoked before calling super.lifecycleMethod() ' ,
' patterns ' : [ r " .*: warning: \ [AndroidInjectionBeforeSuper \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Reference equality used to compare arrays ' ,
' patterns ' : [ r " .*: warning: \ [ArrayEquals \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Arrays.fill(Object[], Object) called with incompatible types. ' ,
' patterns ' : [ r " .*: warning: \ [ArrayFillIncompatibleType \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2016-11-16 00:57:57 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: hashcode method on array does not hash array contents ' ,
' patterns ' : [ r " .*: warning: \ [ArrayHashCode \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Calling toString on an array does not provide useful information ' ,
' patterns ' : [ r " .*: warning: \ [ArrayToString \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Arrays.asList does not autobox primitive arrays, as one might expect. ' ,
' patterns ' : [ r " .*: warning: \ [ArraysAsListPrimitiveArray \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: @AssistedInject and @Inject cannot be used on the same constructor. ' ,
' patterns ' : [ r " .*: warning: \ [AssistedInjectAndInjectOnSameConstructor \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: AsyncCallable should not return a null Future, only a Future whose result is null. ' ,
' patterns ' : [ r " .*: warning: \ [AsyncCallableReturnsNull \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: AsyncFunction should not return a null Future, only a Future whose result is null. ' ,
' patterns ' : [ r " .*: warning: \ [AsyncFunctionReturnsNull \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: @AutoFactory and @Inject should not be used in the same type. ' ,
' patterns ' : [ r " .*: warning: \ [AutoFactoryAtInject \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Arguments to AutoValue constructor are in the wrong order ' ,
' patterns ' : [ r " .*: warning: \ [AutoValueConstructorOrderChecker \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Shift by an amount that is out of range ' ,
' patterns ' : [ r " .*: warning: \ [BadShiftAmount \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Object serialized in Bundle may have been flattened to base type. ' ,
' patterns ' : [ r " .*: warning: \ [BundleDeserializationCast \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
2018-06-08 18:55:41 +02:00
' severity ' : Severity . HIGH ,
2018-01-25 20:55:43 +01:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: The called constructor accepts a parameter with the same name and type as one of its caller \' s parameters, but its caller doesn \' t pass that parameter to it. It \' s likely that it was intended to. ' ,
' patterns ' : [ r " .*: warning: \ [ChainingConstructorIgnoresParameter \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Ignored return value of method that is annotated with @CheckReturnValue ' ,
' patterns ' : [ r " .*: warning: \ [CheckReturnValue \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: The source file name should match the name of the top-level class it contains ' ,
' patterns ' : [ r " .*: warning: \ [ClassName \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Incompatible type as argument to Object-accepting Java collections method ' ,
' patterns ' : [ r " .*: warning: \ [CollectionIncompatibleType \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
r ' Java: Implementing \' Comparable \ u003cT> \' where T is not compatible with the implementing class. ' ,
' patterns ' : [ r " .*: warning: \ [ComparableType \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This comparison method violates the contract ' ,
' patterns ' : [ r " .*: warning: \ [ComparisonContractViolated \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Comparison to value that is out of range for the compared type ' ,
' patterns ' : [ r " .*: warning: \ [ComparisonOutOfRange \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: @CompatibleWith \' s value is not a type argument. ' ,
' patterns ' : [ r " .*: warning: \ [CompatibleWithAnnotationMisuse \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Non-compile-time constant expression passed to parameter with @CompileTimeConstant type annotation. ' ,
' patterns ' : [ r " .*: warning: \ [CompileTimeConstant \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Non-trivial compile time constant boolean expressions shouldn \' t be used. ' ,
' patterns ' : [ r " .*: warning: \ [ComplexBooleanConstant \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: A conditional expression with numeric operands of differing types will perform binary numeric promotion of the operands; when these operands are of reference types, the expression \' s result may not be of the expected type. ' ,
' patterns ' : [ r " .*: warning: \ [ConditionalExpressionNumericPromotion \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Compile-time constant expression overflows ' ,
' patterns ' : [ r " .*: warning: \ [ConstantOverflow \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Dagger @Provides methods may not return null unless annotated with @Nullable ' ,
' patterns ' : [ r " .*: warning: \ [DaggerProvidesNull \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Exception created but not thrown ' ,
' patterns ' : [ r " .*: warning: \ [DeadException \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Thread created but not started ' ,
' patterns ' : [ r " .*: warning: \ [DeadThread \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Deprecated item is not annotated with @Deprecated ' ,
' patterns ' : [ r " .*: warning: \ [DepAnn \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Division by integer literal zero ' ,
' patterns ' : [ r " .*: warning: \ [DivZero \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This method should not be called. ' ,
' patterns ' : [ r " .*: warning: \ [DoNotCall \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Empty statement after if ' ,
' patterns ' : [ r " .*: warning: \ [EmptyIf \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: == NaN always returns false; use the isNaN methods instead ' ,
' patterns ' : [ r " .*: warning: \ [EqualsNaN \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: == must be used in equals method to check equality to itself or an infinite loop will occur. ' ,
' patterns ' : [ r " .*: warning: \ [EqualsReference \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Method annotated @ForOverride must be protected or package-private and only invoked from declaring class, or from an override of the method ' ,
' patterns ' : [ r " .*: warning: \ [ForOverride \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Invalid printf-style format string ' ,
' patterns ' : [ r " .*: warning: \ [FormatString \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Invalid format string passed to formatting method. ' ,
' patterns ' : [ r " .*: warning: \ [FormatStringAnnotation \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Casting a lambda to this @FunctionalInterface can cause a behavior change from casting to a functional superinterface, which is surprising to users. Prefer decorator methods to this surprising behavior. ' ,
' patterns ' : [ r " .*: warning: \ [FunctionalInterfaceMethodChanged \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Futures.getChecked requires a checked exception type with a standard constructor. ' ,
' patterns ' : [ r " .*: warning: \ [FuturesGetCheckedIllegalExceptionType \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: DoubleMath.fuzzyEquals should never be used in an Object.equals() method ' ,
' patterns ' : [ r " .*: warning: \ [FuzzyEqualsShouldNotBeUsedInEqualsMethod \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Calling getClass() on an annotation may return a proxy class ' ,
' patterns ' : [ r " .*: warning: \ [GetClassOnAnnotation \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Calling getClass() on an object of type Class returns the Class object for java.lang.Class; you probably meant to operate on the object directly ' ,
' patterns ' : [ r " .*: warning: \ [GetClassOnClass \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Checks for unguarded accesses to fields and methods with @GuardedBy annotations ' ,
' patterns ' : [ r " .*: warning: \ [GuardedBy \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Scope annotation on implementation class of AssistedInject factory is not allowed ' ,
' patterns ' : [ r " .*: warning: \ [GuiceAssistedInjectScoping \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: A constructor cannot have two @Assisted parameters of the same type unless they are disambiguated with named @Assisted annotations. ' ,
' patterns ' : [ r " .*: warning: \ [GuiceAssistedParameters \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Although Guice allows injecting final fields, doing so is disallowed because the injected value may not be visible to other threads. ' ,
' patterns ' : [ r " .*: warning: \ [GuiceInjectOnFinalField \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: contains() is a legacy method that is equivalent to containsValue() ' ,
' patterns ' : [ r " .*: warning: \ [HashtableContains \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: A binary expression where both operands are the same is usually incorrect. ' ,
2016-11-16 00:57:57 +01:00
' patterns ' : [ r " .*: warning: \ [IdentityBinaryExpression \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Type declaration annotated with @Immutable is not immutable ' ,
' patterns ' : [ r " .*: warning: \ [Immutable \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Modifying an immutable collection is guaranteed to throw an exception and leave the collection unmodified ' ,
' patterns ' : [ r " .*: warning: \ [ImmutableModification \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Passing argument to a generic method with an incompatible type. ' ,
' patterns ' : [ r " .*: warning: \ [IncompatibleArgumentType \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: The first argument to indexOf is a Unicode code point, and the second is the index to start the search from ' ,
' patterns ' : [ r " .*: warning: \ [IndexOfChar \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Conditional expression in varargs call contains array and non-array arguments ' ,
' patterns ' : [ r " .*: warning: \ [InexactVarargsConditional \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: This method always recurses, and will cause a StackOverflowError ' ,
' patterns ' : [ r " .*: warning: \ [InfiniteRecursion \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: A scoping annotation \' s Target should include TYPE and METHOD. ' ,
' patterns ' : [ r " .*: warning: \ [InjectInvalidTargetingOnScopingAnnotation \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Using more than one qualifier annotation on the same element is not allowed. ' ,
' patterns ' : [ r " .*: warning: \ [InjectMoreThanOneQualifier \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: A class can be annotated with at most one scope annotation. ' ,
' patterns ' : [ r " .*: warning: \ [InjectMoreThanOneScopeAnnotationOnClass \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Scope annotation on an interface or abstact class is not allowed ' ,
' patterns ' : [ r " .*: warning: \ [InjectScopeAnnotationOnInterfaceOrAbstractClass \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Scoping and qualifier annotations must have runtime retention. ' ,
' patterns ' : [ r " .*: warning: \ [InjectScopeOrQualifierAnnotationRetention \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Injected constructors cannot be optional nor have binding annotations ' ,
' patterns ' : [ r " .*: warning: \ [InjectedConstructorAnnotations \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: A standard cryptographic operation is used in a mode that is prone to vulnerabilities ' ,
' patterns ' : [ r " .*: warning: \ [InsecureCryptoUsage \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: Invalid syntax used for a regular expression ' ,
' patterns ' : [ r " .*: warning: \ [InvalidPatternSyntax \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Invalid time zone identifier. TimeZone.getTimeZone(String) will silently return GMT instead of the time zone you intended. ' ,
' patterns ' : [ r " .*: warning: \ [InvalidTimeZoneID \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: The argument to Class#isInstance(Object) should not be a Class ' ,
' patterns ' : [ r " .*: warning: \ [IsInstanceOfClass \ ] .+ " ] } ,
2018-06-08 18:55:41 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Log tag too long, cannot exceed 23 characters. ' ,
' patterns ' : [ r " .*: warning: \ [IsLoggableTagLength \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-07 19:51:47 +02:00
r ' Java: Path implements Iterable \ u003cPath>; prefer Collection \ u003cPath> for clarity ' ,
2018-01-25 20:55:43 +01:00
' patterns ' : [ r " .*: warning: \ [IterablePathParameter \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
' Java: jMock tests must have a @RunWith(JMock.class) annotation, or the Mockery field must have a @Rule JUnit annotation ' ,
' patterns ' : [ r " .*: warning: \ [JMockTestWithoutRunWithOrRuleAnnotation \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: Test method will not be run; please correct method signature (Should be public, non-static, and method name should begin with " test " ). ' ,
2016-05-13 17:59:00 +02:00
' patterns ' : [ r " .*: warning: \ [JUnit3TestNotRun \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: This method should be static ' ,
' patterns ' : [ r " .*: warning: \ [JUnit4ClassAnnotationNonStatic \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: setUp() method will not be run; please add JUnit \' s @Before annotation ' ,
2016-05-13 17:59:00 +02:00
' patterns ' : [ r " .*: warning: \ [JUnit4SetUpNotRun \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-01-25 20:55:43 +01:00
' Java: tearDown() method will not be run; please add JUnit \' s @After annotation ' ,
2016-05-13 17:59:00 +02:00
' patterns ' : [ r " .*: warning: \ [JUnit4TearDownNotRun \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: This looks like a test method but is not run; please add @Test and @Ignore, or, if this is a helper method, reduce its visibility. ' ,
2016-05-13 17:59:00 +02:00
' patterns ' : [ r " .*: warning: \ [JUnit4TestNotRun \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: An object is tested for reference equality to itself using JUnit library. ' ,
' patterns ' : [ r " .*: warning: \ [JUnitAssertSameCheck \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Abstract and default methods are not injectable with javax.inject.Inject ' ,
' patterns ' : [ r " .*: warning: \ [JavaxInjectOnAbstractMethod \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: @javax.inject.Inject cannot be put on a final field. ' ,
' patterns ' : [ r " .*: warning: \ [JavaxInjectOnFinalField \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This pattern will silently corrupt certain byte sequences from the serialized protocol message. Use ByteString or byte[] directly ' ,
' patterns ' : [ r " .*: warning: \ [LiteByteStringUtf8 \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This method does not acquire the locks specified by its @LockMethod annotation ' ,
' patterns ' : [ r " .*: warning: \ [LockMethodChecker \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Prefer \' L \' to \' l \' for the suffix to long literals ' ,
' patterns ' : [ r " .*: warning: \ [LongLiteralLowerCaseSuffix \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Loop condition is never modified in loop body. ' ,
' patterns ' : [ r " .*: warning: \ [LoopConditionChecker \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Certain resources in `android.R.string` have names that do not match their content ' ,
' patterns ' : [ r " .*: warning: \ [MislabeledAndroidString \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Overriding method is missing a call to overridden super method ' ,
' patterns ' : [ r " .*: warning: \ [MissingSuperCall \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Use of " YYYY " (week year) in a date pattern without " ww " (week in year). You probably meant to use " yyyy " (year) instead. ' ,
' patterns ' : [ r " .*: warning: \ [MisusedWeekYear \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: A bug in Mockito will cause this test to fail at runtime with a ClassCastException ' ,
' patterns ' : [ r " .*: warning: \ [MockitoCast \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Missing method call for verify(mock) here ' ,
' patterns ' : [ r " .*: warning: \ [MockitoUsage \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Using a collection function with itself as the argument. ' ,
' patterns ' : [ r " .*: warning: \ [ModifyingCollectionWithItself \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: This class has more than one @Inject-annotated constructor. Please remove the @Inject annotation from all but one of them. ' ,
' patterns ' : [ r " .*: warning: \ [MoreThanOneInjectableConstructor \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: The result of this method must be closed. ' ,
' patterns ' : [ r " .*: warning: \ [MustBeClosedChecker \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: The first argument to nCopies is the number of copies, and the second is the item to copy ' ,
' patterns ' : [ r " .*: warning: \ [NCopiesOfChar \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: @NoAllocation was specified on this method, but something was found that would trigger an allocation ' ,
' patterns ' : [ r " .*: warning: \ [NoAllocation \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Static import of type uses non-canonical name ' ,
' patterns ' : [ r " .*: warning: \ [NonCanonicalStaticImport \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: @CompileTimeConstant parameters should be final or effectively final ' ,
' patterns ' : [ r " .*: warning: \ [NonFinalCompileTimeConstant \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Calling getAnnotation on an annotation that is not retained at runtime. ' ,
' patterns ' : [ r " .*: warning: \ [NonRuntimeAnnotation \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This conditional expression may evaluate to null, which will result in an NPE when the result is unboxed. ' ,
' patterns ' : [ r " .*: warning: \ [NullTernary \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Numeric comparison using reference equality instead of value equality ' ,
' patterns ' : [ r " .*: warning: \ [NumericEquality \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Comparison using reference equality instead of value equality ' ,
' patterns ' : [ r " .*: warning: \ [OptionalEquality \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Annotations cannot be both Scope annotations and Qualifier annotations: this causes confusion when trying to use them. ' ,
' patterns ' : [ r " .*: warning: \ [OverlappingQualifierAndScopeAnnotation \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: This method is not annotated with @Inject, but it overrides a method that is annotated with @javax.inject.Inject. The method will not be Injected. ' ,
' patterns ' : [ r " .*: warning: \ [OverridesJavaxInjectableMethod \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Declaring types inside package-info.java files is very bad form ' ,
' patterns ' : [ r " .*: warning: \ [PackageInfo \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Method parameter has wrong package ' ,
' patterns ' : [ r " .*: warning: \ [ParameterPackage \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Detects classes which implement Parcelable but don \' t have CREATOR ' ,
' patterns ' : [ r " .*: warning: \ [ParcelableCreator \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Literal passed as first argument to Preconditions.checkNotNull() can never be null ' ,
' patterns ' : [ r " .*: warning: \ [PreconditionsCheckNotNull \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: First argument to `Preconditions.checkNotNull()` is a primitive rather than an object reference ' ,
' patterns ' : [ r " .*: warning: \ [PreconditionsCheckNotNullPrimitive \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Using ::equals as an incompatible Predicate; the predicate will always return false ' ,
' patterns ' : [ r " .*: warning: \ [PredicateIncompatibleType \ ] .+ " ] } ,
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . HIGH ,
2016-05-13 17:59:00 +02:00
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Access to a private protocol buffer field is forbidden. This protocol buffer carries a security contract, and can only be created using an approved library. Direct access to the fields is forbidden. ' ,
' patterns ' : [ r " .*: warning: \ [PrivateSecurityContractProtoAccess \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Protobuf fields cannot be null ' ,
' patterns ' : [ r " .*: warning: \ [ProtoFieldNullComparison \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Comparing protobuf fields of type String using reference equality ' ,
' patterns ' : [ r " .*: warning: \ [ProtoStringFieldReferenceEquality \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: To get the tag number of a protocol buffer enum, use getNumber() instead. ' ,
' patterns ' : [ r " .*: warning: \ [ProtocolBufferOrdinal \ ] .+ " ] } ,
2018-06-08 19:11:26 +02:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: @Provides methods need to be declared in a Module to have any effect. ' ,
' patterns ' : [ r " .*: warning: \ [ProvidesMethodOutsideOfModule \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Casting a random number in the range [0.0, 1.0) to an integer or long always results in 0. ' ,
' patterns ' : [ r " .*: warning: \ [RandomCast \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Use Random.nextInt(int). Random.nextInt() % n can have negative results ' ,
' patterns ' : [ r " .*: warning: \ [RandomModInteger \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Return value of android.graphics.Rect.intersect() must be checked ' ,
' patterns ' : [ r " .*: warning: \ [RectIntersectReturnValueIgnored \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Use of method or class annotated with @RestrictTo ' ,
' patterns ' : [ r " .*: warning: \ [RestrictTo \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Check for non-whitelisted callers to RestrictedApiChecker. ' ,
' patterns ' : [ r " .*: warning: \ [RestrictedApiChecker \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Return value of this method must be used ' ,
' patterns ' : [ r " .*: warning: \ [ReturnValueIgnored \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Variable assigned to itself ' ,
' patterns ' : [ r " .*: warning: \ [SelfAssignment \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: An object is compared to itself ' ,
' patterns ' : [ r " .*: warning: \ [SelfComparison \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Testing an object for equality with itself will always be true. ' ,
' patterns ' : [ r " .*: warning: \ [SelfEquals \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This method must be called with an even number of arguments. ' ,
' patterns ' : [ r " .*: warning: \ [ShouldHaveEvenArgs \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Comparison of a size >= 0 is always true, did you intend to check for non-emptiness? ' ,
' patterns ' : [ r " .*: warning: \ [SizeGreaterThanOrEqualsZero \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Static and default interface methods are not natively supported on older Android devices. ' ,
' patterns ' : [ r " .*: warning: \ [StaticOrDefaultInterfaceMethod \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 19:11:26 +02:00
' Java: Calling toString on a Stream does not provide useful information ' ,
' patterns ' : [ r " .*: warning: \ [StreamToString \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: StringBuilder does not have a char constructor; this invokes the int constructor. ' ,
' patterns ' : [ r " .*: warning: \ [StringBuilderInitWithChar \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Suppressing " deprecated " is probably a typo for " deprecation " ' ,
' patterns ' : [ r " .*: warning: \ [SuppressWarningsDeprecated \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: throwIfUnchecked(knownCheckedException) is a no-op. ' ,
' patterns ' : [ r " .*: warning: \ [ThrowIfUncheckedKnownChecked \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Throwing \' null \' always results in a NullPointerException being thrown. ' ,
' patterns ' : [ r " .*: warning: \ [ThrowNull \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: isEqualTo should not be used to test an object for equality with itself; the assertion will never fail. ' ,
' patterns ' : [ r " .*: warning: \ [TruthSelfEquals \ ] .+ " ] } ,
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
' Java: Catching Throwable/Error masks failures from fail() or assert*() in the try block ' ,
' patterns ' : [ r " .*: warning: \ [TryFailThrowable \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Type parameter used as type qualifier ' ,
' patterns ' : [ r " .*: warning: \ [TypeParameterQualifier \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: This method does not acquire the locks specified by its @UnlockMethod annotation ' ,
' patterns ' : [ r " .*: warning: \ [UnlockMethod \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Non-generic methods should not be invoked with type arguments ' ,
' patterns ' : [ r " .*: warning: \ [UnnecessaryTypeArgument \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Instance created but never used ' ,
' patterns ' : [ r " .*: warning: \ [UnusedAnonymousClass \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: Collection is modified in place, but the result is not used ' ,
' patterns ' : [ r " .*: warning: \ [UnusedCollectionModifiedInPlace \ ] .+ " ] } ,
2018-01-25 20:55:43 +01:00
{ ' category ' : ' java ' ,
' severity ' : Severity . HIGH ,
' description ' :
2018-06-08 18:55:41 +02:00
' Java: `var` should not be used as a type name. ' ,
' patterns ' : [ r " .*: warning: \ [VarTypeName \ ] .+ " ] } ,
2016-11-16 00:57:57 +01:00
# End warnings generated by Error Prone
2016-05-10 08:19:42 +02:00
2016-05-13 17:59:00 +02:00
{ ' category ' : ' java ' ,
2016-09-28 03:08:52 +02:00
' severity ' : Severity . UNKNOWN ,
2016-05-13 17:59:00 +02:00
' description ' : ' Java: Unclassified/unrecognized warnings ' ,
' patterns ' : [ r " .*: warning: \ [.+ \ ] .+ " ] } ,
2016-05-10 08:19:42 +02:00
2016-09-28 03:08:52 +02:00
{ ' category ' : ' aapt ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' aapt: No default translation ' ,
' patterns ' : [ r " .*: warning: string ' .+ ' has no default translation in .* " ] } ,
{ ' category ' : ' aapt ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' aapt: Missing default or required localization ' ,
' patterns ' : [ r " .*: warning: \ * \ * \ * \ * string ' .+ ' has no default or required localization for ' .+ ' in .+ " ] } ,
{ ' category ' : ' aapt ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' aapt: String marked untranslatable, but translation exists ' ,
' patterns ' : [ r " .*: warning: string ' .+ ' in .* marked untranslatable but exists in locale ' ??_?? ' " ] } ,
{ ' category ' : ' aapt ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' aapt: empty span in string ' ,
' patterns ' : [ r " .*: warning: empty ' .+ ' span found in text ' .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Taking address of temporary ' ,
' patterns ' : [ r " .*: warning: taking address of temporary " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Taking address of packed member ' ,
' patterns ' : [ r " .*: warning: taking address of packed member " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Possible broken line continuation ' ,
' patterns ' : [ r " .*: warning: backslash and newline separated by space " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wundefined-var-template ' ,
' description ' : ' Undefined variable template ' ,
' patterns ' : [ r " .*: warning: instantiation of variable .* no definition is available " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wundefined-inline ' ,
' description ' : ' Inline function is not defined ' ,
' patterns ' : [ r " .*: warning: inline function ' .* ' is not defined " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Warray-bounds ' ,
' description ' : ' Array subscript out of bounds ' ,
' patterns ' : [ r " .*: warning: array subscript is above array bounds " ,
r " .*: warning: Array subscript is undefined " ,
r " .*: warning: array subscript is below array bounds " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Excess elements in initializer ' ,
' patterns ' : [ r " .*: warning: excess elements in .+ initializer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Decimal constant is unsigned only in ISO C90 ' ,
' patterns ' : [ r " .*: warning: this decimal constant is unsigned only in ISO C90 " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmain ' ,
' description ' : ' main is usually a function ' ,
' patterns ' : [ r " .*: warning: ' main ' is usually a function " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Typedef ignored ' ,
' patterns ' : [ r " .*: warning: ' typedef ' was ignored in this declaration " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -Waddress ' ,
' description ' : ' Address always evaluates to true ' ,
' patterns ' : [ r " .*: warning: the address of ' .+ ' will always evaluate as ' true ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . FIXMENOW ,
' description ' : ' Freeing a non-heap object ' ,
' patterns ' : [ r " .*: warning: attempt to free a non-heap object ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wchar-subscripts ' ,
' description ' : ' Array subscript has type char ' ,
' patterns ' : [ r " .*: warning: array subscript .+ type ' char ' .+Wchar-subscripts " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Constant too large for type ' ,
' patterns ' : [ r " .*: warning: integer constant is too large for ' .+ ' type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Woverflow ' ,
' description ' : ' Constant too large for type, truncated ' ,
' patterns ' : [ r " .*: warning: large integer implicitly truncated to unsigned type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Winteger-overflow ' ,
' description ' : ' Overflow in expression ' ,
' patterns ' : [ r " .*: warning: overflow in expression; .*Winteger-overflow " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Woverflow ' ,
' description ' : ' Overflow in implicit constant conversion ' ,
' patterns ' : [ r " .*: warning: overflow in implicit constant conversion " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Declaration does not declare anything ' ,
' patterns ' : [ r " .*: warning: declaration ' class .+ ' does not declare anything " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wreorder ' ,
' description ' : ' Initialization order will be different ' ,
' patterns ' : [ r " .*: warning: ' .+ ' will be initialized after " ,
r " .*: warning: field .+ will be initialized after .+Wreorder " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, .... ' ,
' patterns ' : [ r " .*: warning: ' .+ ' " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, base ... ' ,
' patterns ' : [ r " .*: warning: base ' .+ ' " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, when initialized here ' ,
' patterns ' : [ r " .*: warning: when initialized here " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmissing-parameter-type ' ,
' description ' : ' Parameter type not specified ' ,
' patterns ' : [ r " .*: warning: type of ' .+ ' defaults to ' int ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmissing-declarations ' ,
' description ' : ' Missing declarations ' ,
' patterns ' : [ r " .*: warning: declaration does not declare anything " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wmissing-noreturn ' ,
' description ' : ' Missing noreturn ' ,
' patterns ' : [ r " .*: warning: function ' .* ' could be declared with attribute ' noreturn ' " ] } ,
2016-09-26 19:56:43 +02:00
# pylint:disable=anomalous-backslash-in-string
# TODO(chh): fix the backslash pylint warning.
2016-09-28 03:08:52 +02:00
{ ' category ' : ' gcc ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Invalid option for C file ' ,
' patterns ' : [ r " .*: warning: command line option " " .+ " " is valid for C \ + \ + \ /ObjC \ + \ + but not for C " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' User warning ' ,
' patterns ' : [ r " .*: warning: #warning " " .+ " " " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wvexing-parse ' ,
' description ' : ' Vexing parsing problem ' ,
' patterns ' : [ r " .*: warning: empty parentheses interpreted as a function declaration " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wextra ' ,
' description ' : ' Dereferencing void* ' ,
' patterns ' : [ r " .*: warning: dereferencing ' void \ * ' pointer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Comparison of pointer and integer ' ,
' patterns ' : [ r " .*: warning: ordered comparison of pointer with integer zero " ,
r " .*: warning: .*comparison between pointer and integer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Use of error-prone unary operator ' ,
' patterns ' : [ r " .*: warning: use of unary operator that may be intended as compound assignment " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wwrite-strings ' ,
' description ' : ' Conversion of string constant to non-const char* ' ,
' patterns ' : [ r " .*: warning: deprecated conversion from string constant to ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wstrict-prototypes ' ,
' description ' : ' Function declaration isn ' ' t a prototype ' ,
' patterns ' : [ r " .*: warning: function declaration isn ' t a prototype " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wignored-qualifiers ' ,
' description ' : ' Type qualifiers ignored on function return value ' ,
' patterns ' : [ r " .*: warning: type qualifiers ignored on function return type " ,
r " .*: warning: .+ type qualifier .+ has no effect .+Wignored-qualifiers " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' <foo> declared inside parameter list, scope limited to this definition ' ,
' patterns ' : [ r " .*: warning: ' .+ ' declared inside parameter list " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, its scope is only this ... ' ,
' patterns ' : [ r " .*: warning: its scope is only this definition or declaration, which is probably not what you want " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wcomment ' ,
' description ' : ' Line continuation inside comment ' ,
' patterns ' : [ r " .*: warning: multi-line comment " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wcomment ' ,
' description ' : ' Comment inside comment ' ,
' patterns ' : [ r " .*: warning: " " .+ " " within comment " ] } ,
2016-09-07 01:26:46 +02:00
# Warning "value stored is never read" could be from clang-tidy or clang static analyzer.
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
' description ' : ' clang-analyzer Value stored is never read ' ,
2016-09-28 03:08:52 +02:00
' patterns ' : [ r " .*: warning: Value stored to .+ is never read.*clang-analyzer-deadcode.DeadStores " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW ,
' description ' : ' Value stored is never read ' ,
' patterns ' : [ r " .*: warning: Value stored to .+ is never read " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wdeprecated-declarations ' ,
' description ' : ' Deprecated declarations ' ,
' patterns ' : [ r " .*: warning: .+ is deprecated.+deprecated-declarations " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wdeprecated-register ' ,
' description ' : ' Deprecated register ' ,
' patterns ' : [ r " .*: warning: ' register ' storage class specifier is deprecated " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wpointer-sign ' ,
' description ' : ' Converts between pointers to integer types with different sign ' ,
' patterns ' : [ r " .*: warning: .+ converts between pointers to integer types with different sign " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' Extra tokens after #endif ' ,
' patterns ' : [ r " .*: warning: extra tokens at end of #endif directive " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wenum-compare ' ,
' description ' : ' Comparison between different enums ' ,
' patterns ' : [ r " .*: warning: comparison between ' .+ ' and ' .+ ' .+Wenum-compare " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wconversion ' ,
' description ' : ' Conversion may change value ' ,
' patterns ' : [ r " .*: warning: converting negative value ' .+ ' to ' .+ ' " ,
r " .*: warning: conversion to ' .+ ' .+ may (alter|change) " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wconversion-null ' ,
' description ' : ' Converting to non-pointer type from NULL ' ,
' patterns ' : [ r " .*: warning: converting to non-pointer type ' .+ ' from NULL " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wsign-conversion ' ,
' description ' : ' Implicit sign conversion ' ,
' patterns ' : [ r " .*: warning: implicit conversion changes signedness " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wnull-conversion ' ,
' description ' : ' Converting NULL to non-pointer type ' ,
' patterns ' : [ r " .*: warning: implicit conversion of NULL constant to ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wnon-literal-null-conversion ' ,
' description ' : ' Zero used as null pointer ' ,
' patterns ' : [ r " .*: warning: expression .* zero treated as a null pointer constant " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Implicit conversion changes value ' ,
' patterns ' : [ r " .*: warning: implicit conversion .* changes value from .* to .*-conversion " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Passing NULL as non-pointer argument ' ,
' patterns ' : [ r " .*: warning: passing NULL to non-pointer argument [0-9]+ of ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wctor-dtor-privacy ' ,
' description ' : ' Class seems unusable because of private ctor/dtor ' ,
' patterns ' : [ r " .*: warning: all member functions in class ' .+ ' are private " ] } ,
2009-07-14 18:04:04 +02:00
# skip this next one, because it only points out some RefBase-based classes where having a private destructor is perfectly fine
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . SKIP , ' option ' : ' -Wctor-dtor-privacy ' ,
' description ' : ' Class seems unusable because of private ctor/dtor ' ,
' patterns ' : [ r " .*: warning: ' class .+ ' only defines a private destructor and has no friends " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wctor-dtor-privacy ' ,
' description ' : ' Class seems unusable because of private ctor/dtor ' ,
' patterns ' : [ r " .*: warning: ' class .+ ' only defines private constructors and has no friends " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wgnu-static-float-init ' ,
' description ' : ' In-class initializer for static const float/double ' ,
' patterns ' : [ r " .*: warning: in-class initializer for static data member of .+const (float|double) " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wpointer-arith ' ,
' description ' : ' void* used in arithmetic ' ,
' patterns ' : [ r " .*: warning: pointer of type ' void \ * ' used in (arithmetic|subtraction) " ,
r " .*: warning: arithmetic on .+ to void is a GNU extension.*Wpointer-arith " ,
r " .*: warning: wrong type argument to increment " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wsign-promo ' ,
' description ' : ' Overload resolution chose to promote from unsigned or enum to signed type ' ,
' patterns ' : [ r " .*: warning: passing ' .+ ' chooses ' .+ ' over ' .+ ' .*Wsign-promo " ] } ,
{ ' category ' : ' cont. ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, in call to ... ' ,
' patterns ' : [ r " .*: warning: in call to ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HIGH , ' option ' : ' -Wextra ' ,
' description ' : ' Base should be explicitly initialized in copy constructor ' ,
' patterns ' : [ r " .*: warning: base class ' .+ ' should be explicitly initialized in the copy constructor " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' VLA has zero or negative size ' ,
' patterns ' : [ r " .*: warning: Declared variable-length array \ (VLA \ ) has .+ size " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Return value from void function ' ,
' patterns ' : [ r " .*: warning: ' return ' with a value, in function returning void " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' multichar ' ,
' description ' : ' Multi-character character constant ' ,
' patterns ' : [ r " .*: warning: multi-character character constant " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' writable-strings ' ,
' description ' : ' Conversion from string literal to char* ' ,
' patterns ' : [ r " .*: warning: .+ does not allow conversion from string literal to ' char \ * ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wextra-semi ' ,
' description ' : ' Extra \' ; \' ' ,
' patterns ' : [ r " .*: warning: extra ' ; ' .+extra-semi " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW ,
' description ' : ' Useless specifier ' ,
' patterns ' : [ r " .*: warning: useless storage class specifier in empty declaration " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wduplicate-decl-specifier ' ,
' description ' : ' Duplicate declaration specifier ' ,
' patterns ' : [ r " .*: warning: duplicate ' .+ ' declaration specifier " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW ,
' description ' : ' Duplicate logtag ' ,
' patterns ' : [ r " .*: warning: tag \" .+ \" \ (.+ \ ) duplicated in .+ " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' typedef-redefinition ' ,
' description ' : ' Typedef redefinition ' ,
' patterns ' : [ r " .*: warning: redefinition of typedef ' .+ ' is a C11 feature " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' gnu-designator ' ,
' description ' : ' GNU old-style field designator ' ,
' patterns ' : [ r " .*: warning: use of GNU old-style field designator extension " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' missing-field-initializers ' ,
' description ' : ' Missing field initializers ' ,
' patterns ' : [ r " .*: warning: missing field ' .+ ' initializer " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' missing-braces ' ,
' description ' : ' Missing braces ' ,
' patterns ' : [ r " .*: warning: suggest braces around initialization of " ,
r " .*: warning: too many braces around scalar initializer .+Wmany-braces-around-scalar-init " ,
r " .*: warning: braces around scalar initializer " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' sign-compare ' ,
' description ' : ' Comparison of integers of different signs ' ,
' patterns ' : [ r " .*: warning: comparison of integers of different signs.+sign-compare " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' dangling-else ' ,
' description ' : ' Add braces to avoid dangling else ' ,
' patterns ' : [ r " .*: warning: add explicit braces to avoid dangling else " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' initializer-overrides ' ,
' description ' : ' Initializer overrides prior initialization ' ,
' patterns ' : [ r " .*: warning: initializer overrides prior initialization of this subobject " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' self-assign ' ,
' description ' : ' Assigning value to self ' ,
' patterns ' : [ r " .*: warning: explicitly assigning value of .+ to itself " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' gnu-variable-sized-type-not-at-end ' ,
' description ' : ' GNU extension, variable sized type not at end ' ,
' patterns ' : [ r " .*: warning: field ' .+ ' with variable sized type ' .+ ' not at the end of a struct or class " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' tautological-constant-out-of-range-compare ' ,
' description ' : ' Comparison of constant is always false/true ' ,
' patterns ' : [ r " .*: comparison of .+ is always .+Wtautological-constant-out-of-range-compare " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' overloaded-virtual ' ,
' description ' : ' Hides overloaded virtual function ' ,
' patterns ' : [ r " .*: ' .+ ' hides overloaded virtual function " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' incompatible-pointer-types ' ,
' description ' : ' Incompatible pointer types ' ,
' patterns ' : [ r " .*: warning: incompatible pointer types .+Wincompatible-pointer-types " ] } ,
{ ' category ' : ' logtags ' , ' severity ' : Severity . LOW , ' option ' : ' asm-operand-widths ' ,
' description ' : ' ASM value size does not match register size ' ,
' patterns ' : [ r " .*: warning: value size does not match register size specified by the constraint and modifier " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' tautological-compare ' ,
' description ' : ' Comparison of self is always false ' ,
' patterns ' : [ r " .*: self-comparison always evaluates to false " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' constant-logical-operand ' ,
' description ' : ' Logical op with constant operand ' ,
' patterns ' : [ r " .*: use of logical ' .+ ' with constant operand " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' literal-suffix ' ,
' description ' : ' Needs a space between literal and string macro ' ,
' patterns ' : [ r " .*: warning: invalid suffix on literal.+ requires a space .+Wliteral-suffix " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' #warnings ' ,
' description ' : ' Warnings from #warning ' ,
' patterns ' : [ r " .*: warning: .+-W#warnings " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' absolute-value ' ,
' description ' : ' Using float/int absolute value function with int/float argument ' ,
' patterns ' : [ r " .*: warning: using .+ absolute value function .+ when argument is .+ type .+Wabsolute-value " ,
r " .*: warning: absolute value function ' .+ ' given .+ which may cause truncation .+Wabsolute-value " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Wc++11-extensions ' ,
' description ' : ' Using C++11 extensions ' ,
' patterns ' : [ r " .*: warning: ' auto ' type specifier is a C \ + \ +11 extension " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW ,
' description ' : ' Refers to implicitly defined namespace ' ,
' patterns ' : [ r " .*: warning: using directive refers to implicitly-defined namespace .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . LOW , ' option ' : ' -Winvalid-pp-token ' ,
' description ' : ' Invalid pp token ' ,
' patterns ' : [ r " .*: warning: missing .+Winvalid-pp-token " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' link ' , ' severity ' : Severity . LOW ,
' description ' : ' need glibc to link ' ,
' patterns ' : [ r " .*: warning: .* requires at runtime .* glibc .* for linking " ] } ,
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Operator new returns NULL ' ,
' patterns ' : [ r " .*: warning: ' operator new ' must not return NULL unless it is declared ' throw \ ( \ ) ' .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wnull-arithmetic ' ,
' description ' : ' NULL used in arithmetic ' ,
' patterns ' : [ r " .*: warning: NULL used in arithmetic " ,
r " .*: warning: comparison between NULL and non-pointer " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' header-guard ' ,
' description ' : ' Misspelled header guard ' ,
' patterns ' : [ r " .*: warning: ' .+ ' is used as a header guard .+ followed by .+ different macro " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' empty-body ' ,
' description ' : ' Empty loop body ' ,
' patterns ' : [ r " .*: warning: .+ loop has empty body " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' enum-conversion ' ,
' description ' : ' Implicit conversion from enumeration type ' ,
' patterns ' : [ r " .*: warning: implicit conversion from enumeration type ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' switch ' ,
' description ' : ' case value not in enumerated type ' ,
' patterns ' : [ r " .*: warning: case value not in enumerated type ' .+ ' " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Undefined result ' ,
' patterns ' : [ r " .*: warning: The result of .+ is undefined " ,
r " .*: warning: passing an object that .+ has undefined behavior \ [-Wvarargs \ ] " ,
r " .*: warning: ' this ' pointer cannot be null in well-defined C \ + \ + code; " ,
r " .*: warning: shifting a negative signed value is undefined " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Division by zero ' ,
' patterns ' : [ r " .*: warning: Division by zero " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Use of deprecated method ' ,
' patterns ' : [ r " .*: warning: ' .+ ' is deprecated .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Use of garbage or uninitialized value ' ,
' patterns ' : [ r " .*: warning: .+ is a garbage value " ,
r " .*: warning: Function call argument is an uninitialized value " ,
r " .*: warning: Undefined or garbage value returned to caller " ,
r " .*: warning: Called .+ pointer is.+uninitialized " ,
r " .*: warning: Called .+ pointer is.+uninitalized " , # match a typo in compiler message
r " .*: warning: Use of zero-allocated memory " ,
r " .*: warning: Dereference of undefined pointer value " ,
r " .*: warning: Passed-by-value .+ contains uninitialized data " ,
r " .*: warning: Branch condition evaluates to a garbage value " ,
r " .*: warning: The .+ of .+ is an uninitialized value. " ,
r " .*: warning: .+ is used uninitialized whenever .+sometimes-uninitialized " ,
r " .*: warning: Assigned value is garbage or undefined " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Result of malloc type incompatible with sizeof operand type ' ,
' patterns ' : [ r " .*: warning: Result of ' .+ ' is converted to .+ incompatible with sizeof operand type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wsizeof-array-argument ' ,
' description ' : ' Sizeof on array argument ' ,
' patterns ' : [ r " .*: warning: sizeof on array function parameter will return " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wsizeof-pointer-memacces ' ,
' description ' : ' Bad argument size of memory access functions ' ,
' patterns ' : [ r " .*: warning: .+ \ [-Wsizeof-pointer-memaccess \ ] " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Return value not checked ' ,
' patterns ' : [ r " .*: warning: The return value from .+ is not checked " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Possible heap pollution ' ,
' patterns ' : [ r " .*: warning: .*Possible heap pollution from .+ type .+ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Allocation size of 0 byte ' ,
' patterns ' : [ r " .*: warning: Call to .+ has an allocation size of 0 byte " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Result of malloc type incompatible with sizeof operand type ' ,
' patterns ' : [ r " .*: warning: Result of ' .+ ' is converted to .+ incompatible with sizeof operand type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wfor-loop-analysis ' ,
' description ' : ' Variable used in loop condition not modified in loop body ' ,
' patterns ' : [ r " .*: warning: variable ' .+ ' used in loop condition.*Wfor-loop-analysis " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM ,
' description ' : ' Closing a previously closed file ' ,
' patterns ' : [ r " .*: warning: Closing a previously closed file " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . MEDIUM , ' option ' : ' -Wunnamed-type-template-args ' ,
' description ' : ' Unnamed template type argument ' ,
' patterns ' : [ r " .*: warning: template argument.+Wunnamed-type-template-args " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' Discarded qualifier from pointer target type ' ,
' patterns ' : [ r " .*: warning: .+ discards ' .+ ' qualifier from pointer target type " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' Use snprintf instead of sprintf ' ,
' patterns ' : [ r " .*: warning: .*sprintf is often misused; please use snprintf " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' Unsupported optimizaton flag ' ,
' patterns ' : [ r " .*: warning: optimization flag ' .+ ' is not supported " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' Extra or missing parentheses ' ,
' patterns ' : [ r " .*: warning: equality comparison with extraneous parentheses " ,
r " .*: warning: .+ within .+Wlogical-op-parentheses " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . HARMLESS , ' option ' : ' mismatched-tags ' ,
' description ' : ' Mismatched class vs struct tags ' ,
' patterns ' : [ r " .*: warning: ' .+ ' defined as a .+ here but previously declared as a .+mismatched-tags " ,
r " .*: warning: .+ was previously declared as a .+mismatched-tags " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' FindEmulator ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' FindEmulator: No such file or directory ' ,
' patterns ' : [ r " .*: warning: FindEmulator: .* No such file or directory " ] } ,
{ ' category ' : ' google_tests ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' google_tests: unknown installed file ' ,
' patterns ' : [ r " .*: warning: .*_tests: Unknown installed file for module " ] } ,
{ ' category ' : ' make ' , ' severity ' : Severity . HARMLESS ,
' description ' : ' unusual tags debug eng ' ,
' patterns ' : [ r " .*: warning: .*: unusual tags debug eng " ] } ,
2009-07-14 18:04:04 +02:00
# these next ones are to deal with formatting problems resulting from the log being mixed up by 'make -j'
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, , ' ,
' patterns ' : [ r " .*: warning: ,$ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, ' ,
' patterns ' : [ r " .*: warning: $ " ] } ,
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . SKIP ,
' description ' : ' skip, In file included from ... ' ,
' patterns ' : [ r " .*: warning: In file included from .+, " ] } ,
2009-07-14 18:04:04 +02:00
2016-03-30 00:33:11 +02:00
# warnings from clang-tidy
2017-11-17 00:42:11 +01:00
group_tidy_warn_pattern ( ' android ' ) ,
2018-06-04 20:32:32 +02:00
simple_tidy_warn_pattern ( ' bugprone-argument-comment ' ) ,
simple_tidy_warn_pattern ( ' bugprone-copy-constructor-init ' ) ,
simple_tidy_warn_pattern ( ' bugprone-fold-init-type ' ) ,
simple_tidy_warn_pattern ( ' bugprone-forward-declaration-namespace ' ) ,
simple_tidy_warn_pattern ( ' bugprone-forwarding-reference-overload ' ) ,
simple_tidy_warn_pattern ( ' bugprone-inaccurate-erase ' ) ,
simple_tidy_warn_pattern ( ' bugprone-incorrect-roundings ' ) ,
simple_tidy_warn_pattern ( ' bugprone-integer-division ' ) ,
simple_tidy_warn_pattern ( ' bugprone-lambda-function-name ' ) ,
simple_tidy_warn_pattern ( ' bugprone-macro-parentheses ' ) ,
simple_tidy_warn_pattern ( ' bugprone-misplaced-widening-cast ' ) ,
simple_tidy_warn_pattern ( ' bugprone-move-forwarding-reference ' ) ,
simple_tidy_warn_pattern ( ' bugprone-sizeof-expression ' ) ,
simple_tidy_warn_pattern ( ' bugprone-string-constructor ' ) ,
simple_tidy_warn_pattern ( ' bugprone-string-integer-assignment ' ) ,
simple_tidy_warn_pattern ( ' bugprone-suspicious-enum-usage ' ) ,
simple_tidy_warn_pattern ( ' bugprone-suspicious-missing-comma ' ) ,
simple_tidy_warn_pattern ( ' bugprone-suspicious-string-compare ' ) ,
simple_tidy_warn_pattern ( ' bugprone-suspicious-semicolon ' ) ,
simple_tidy_warn_pattern ( ' bugprone-undefined-memory-manipulation ' ) ,
simple_tidy_warn_pattern ( ' bugprone-unused-raii ' ) ,
simple_tidy_warn_pattern ( ' bugprone-use-after-move ' ) ,
group_tidy_warn_pattern ( ' bugprone ' ) ,
2017-05-18 20:40:08 +02:00
group_tidy_warn_pattern ( ' cert ' ) ,
group_tidy_warn_pattern ( ' clang-diagnostic ' ) ,
group_tidy_warn_pattern ( ' cppcoreguidelines ' ) ,
group_tidy_warn_pattern ( ' llvm ' ) ,
simple_tidy_warn_pattern ( ' google-default-arguments ' ) ,
simple_tidy_warn_pattern ( ' google-runtime-int ' ) ,
simple_tidy_warn_pattern ( ' google-runtime-operator ' ) ,
simple_tidy_warn_pattern ( ' google-runtime-references ' ) ,
group_tidy_warn_pattern ( ' google-build ' ) ,
group_tidy_warn_pattern ( ' google-explicit ' ) ,
group_tidy_warn_pattern ( ' google-redability ' ) ,
group_tidy_warn_pattern ( ' google-global ' ) ,
group_tidy_warn_pattern ( ' google-redability ' ) ,
group_tidy_warn_pattern ( ' google-redability ' ) ,
group_tidy_warn_pattern ( ' google ' ) ,
simple_tidy_warn_pattern ( ' hicpp-explicit-conversions ' ) ,
simple_tidy_warn_pattern ( ' hicpp-function-size ' ) ,
simple_tidy_warn_pattern ( ' hicpp-invalid-access-moved ' ) ,
simple_tidy_warn_pattern ( ' hicpp-member-init ' ) ,
simple_tidy_warn_pattern ( ' hicpp-delete-operators ' ) ,
simple_tidy_warn_pattern ( ' hicpp-special-member-functions ' ) ,
simple_tidy_warn_pattern ( ' hicpp-use-equals-default ' ) ,
simple_tidy_warn_pattern ( ' hicpp-use-equals-delete ' ) ,
simple_tidy_warn_pattern ( ' hicpp-no-assembler ' ) ,
simple_tidy_warn_pattern ( ' hicpp-noexcept-move ' ) ,
simple_tidy_warn_pattern ( ' hicpp-use-override ' ) ,
group_tidy_warn_pattern ( ' hicpp ' ) ,
group_tidy_warn_pattern ( ' modernize ' ) ,
group_tidy_warn_pattern ( ' misc ' ) ,
simple_tidy_warn_pattern ( ' performance-faster-string-find ' ) ,
simple_tidy_warn_pattern ( ' performance-for-range-copy ' ) ,
simple_tidy_warn_pattern ( ' performance-implicit-cast-in-loop ' ) ,
simple_tidy_warn_pattern ( ' performance-inefficient-string-concatenation ' ) ,
simple_tidy_warn_pattern ( ' performance-type-promotion-in-math-fn ' ) ,
simple_tidy_warn_pattern ( ' performance-unnecessary-copy-initialization ' ) ,
simple_tidy_warn_pattern ( ' performance-unnecessary-value-param ' ) ,
group_tidy_warn_pattern ( ' performance ' ) ,
group_tidy_warn_pattern ( ' readability ' ) ,
# warnings from clang-tidy's clang-analyzer checks
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Unreachable code ' ,
' patterns ' : [ r " .*: warning: This statement is never executed.*UnreachableCode " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Size of malloc may overflow ' ,
' patterns ' : [ r " .*: warning: .* size of .* may overflow .*MallocOverflow " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Stream pointer might be NULL ' ,
' patterns ' : [ r " .*: warning: Stream pointer might be NULL .*unix.Stream " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Opened file never closed ' ,
' patterns ' : [ r " .*: warning: Opened File never closed.*unix.Stream " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer sozeof() on a pointer type ' ,
' patterns ' : [ r " .*: warning: .*calls sizeof.* on a pointer type.*SizeofPtr " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Pointer arithmetic on non-array variables ' ,
' patterns ' : [ r " .*: warning: Pointer arithmetic on non-array variables .*PointerArithm " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Subtraction of pointers of different memory chunks ' ,
' patterns ' : [ r " .*: warning: Subtraction of two pointers .*PointerSub " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Access out-of-bound array element ' ,
' patterns ' : [ r " .*: warning: Access out-of-bound array element .*ArrayBound " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Out of bound memory access ' ,
' patterns ' : [ r " .*: warning: Out of bound memory access .*ArrayBoundV2 " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Possible lock order reversal ' ,
' patterns ' : [ r " .*: warning: .* Possible lock order reversal.*PthreadLock " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer Argument is a pointer to uninitialized value ' ,
' patterns ' : [ r " .*: warning: .* argument is a pointer to uninitialized value .*CallAndMessage " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer cast to struct ' ,
' patterns ' : [ r " .*: warning: Casting a non-structure type to a structure type .*CastToStruct " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer call path problems ' ,
' patterns ' : [ r " .*: warning: Call Path : .+ " ] } ,
2017-05-18 20:40:08 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
' description ' : ' clang-analyzer excessive padding ' ,
' patterns ' : [ r " .*: warning: Excessive padding in ' .* ' " ] } ,
2016-10-05 20:53:20 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . ANALYZER ,
2016-09-28 03:08:52 +02:00
' description ' : ' clang-analyzer other ' ,
' patterns ' : [ r " .*: .+ \ [clang-analyzer-.+ \ ]$ " ,
r " .*: Call Path : .+$ " ] } ,
2016-03-30 00:33:11 +02:00
2009-07-14 18:04:04 +02:00
# catch-all for warnings this script doesn't know about yet
2016-09-28 03:08:52 +02:00
{ ' category ' : ' C/C++ ' , ' severity ' : Severity . UNKNOWN ,
' description ' : ' Unclassified/unrecognized warnings ' ,
' patterns ' : [ r " .*: warning: .+ " ] } ,
2009-07-14 18:04:04 +02:00
]
2016-09-22 22:43:12 +02:00
2016-09-28 00:39:28 +02:00
def project_name_and_pattern ( name , pattern ) :
return [ name , ' (^|.*/) ' + pattern + ' /.*: warning: ' ]
def simple_project_pattern ( pattern ) :
return project_name_and_pattern ( pattern , pattern )
2016-07-21 23:22:53 +02:00
# A list of [project_name, file_path_pattern].
# project_name should not contain comma, to be used in CSV output.
2016-09-26 19:56:43 +02:00
project_list = [
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' art ' ) ,
simple_project_pattern ( ' bionic ' ) ,
simple_project_pattern ( ' bootable ' ) ,
simple_project_pattern ( ' build ' ) ,
simple_project_pattern ( ' cts ' ) ,
simple_project_pattern ( ' dalvik ' ) ,
simple_project_pattern ( ' developers ' ) ,
simple_project_pattern ( ' development ' ) ,
simple_project_pattern ( ' device ' ) ,
simple_project_pattern ( ' doc ' ) ,
2016-07-22 23:09:31 +02:00
# match external/google* before external/
2016-09-28 00:39:28 +02:00
project_name_and_pattern ( ' external/google ' , ' external/google.* ' ) ,
project_name_and_pattern ( ' external/non-google ' , ' external ' ) ,
simple_project_pattern ( ' frameworks/av/camera ' ) ,
simple_project_pattern ( ' frameworks/av/cmds ' ) ,
simple_project_pattern ( ' frameworks/av/drm ' ) ,
simple_project_pattern ( ' frameworks/av/include ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' frameworks/av/media/img_utils ' ) ,
simple_project_pattern ( ' frameworks/av/media/libcpustats ' ) ,
simple_project_pattern ( ' frameworks/av/media/libeffects ' ) ,
simple_project_pattern ( ' frameworks/av/media/libmediaplayerservice ' ) ,
simple_project_pattern ( ' frameworks/av/media/libmedia ' ) ,
simple_project_pattern ( ' frameworks/av/media/libstagefright ' ) ,
simple_project_pattern ( ' frameworks/av/media/mtp ' ) ,
simple_project_pattern ( ' frameworks/av/media/ndk ' ) ,
simple_project_pattern ( ' frameworks/av/media/utils ' ) ,
2016-10-12 00:25:26 +02:00
project_name_and_pattern ( ' frameworks/av/media/Other ' ,
' frameworks/av/media ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' frameworks/av/radio ' ) ,
simple_project_pattern ( ' frameworks/av/services ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' frameworks/av/soundtrigger ' ) ,
2016-09-28 00:39:28 +02:00
project_name_and_pattern ( ' frameworks/av/Other ' , ' frameworks/av ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' frameworks/base/cmds ' ) ,
simple_project_pattern ( ' frameworks/base/core ' ) ,
simple_project_pattern ( ' frameworks/base/drm ' ) ,
simple_project_pattern ( ' frameworks/base/media ' ) ,
simple_project_pattern ( ' frameworks/base/libs ' ) ,
simple_project_pattern ( ' frameworks/base/native ' ) ,
simple_project_pattern ( ' frameworks/base/packages ' ) ,
simple_project_pattern ( ' frameworks/base/rs ' ) ,
simple_project_pattern ( ' frameworks/base/services ' ) ,
simple_project_pattern ( ' frameworks/base/tests ' ) ,
simple_project_pattern ( ' frameworks/base/tools ' ) ,
project_name_and_pattern ( ' frameworks/base/Other ' , ' frameworks/base ' ) ,
2016-10-18 00:39:53 +02:00
simple_project_pattern ( ' frameworks/compile/libbcc ' ) ,
simple_project_pattern ( ' frameworks/compile/mclinker ' ) ,
simple_project_pattern ( ' frameworks/compile/slang ' ) ,
project_name_and_pattern ( ' frameworks/compile/Other ' , ' frameworks/compile ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' frameworks/minikin ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' frameworks/ml ' ) ,
simple_project_pattern ( ' frameworks/native/cmds ' ) ,
simple_project_pattern ( ' frameworks/native/include ' ) ,
simple_project_pattern ( ' frameworks/native/libs ' ) ,
simple_project_pattern ( ' frameworks/native/opengl ' ) ,
simple_project_pattern ( ' frameworks/native/services ' ) ,
simple_project_pattern ( ' frameworks/native/vulkan ' ) ,
project_name_and_pattern ( ' frameworks/native/Other ' , ' frameworks/native ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' frameworks/opt ' ) ,
simple_project_pattern ( ' frameworks/rs ' ) ,
simple_project_pattern ( ' frameworks/webview ' ) ,
simple_project_pattern ( ' frameworks/wilhelm ' ) ,
project_name_and_pattern ( ' frameworks/Other ' , ' frameworks ' ) ,
simple_project_pattern ( ' hardware/akm ' ) ,
simple_project_pattern ( ' hardware/broadcom ' ) ,
simple_project_pattern ( ' hardware/google ' ) ,
simple_project_pattern ( ' hardware/intel ' ) ,
simple_project_pattern ( ' hardware/interfaces ' ) ,
simple_project_pattern ( ' hardware/libhardware ' ) ,
simple_project_pattern ( ' hardware/libhardware_legacy ' ) ,
simple_project_pattern ( ' hardware/qcom ' ) ,
simple_project_pattern ( ' hardware/ril ' ) ,
project_name_and_pattern ( ' hardware/Other ' , ' hardware ' ) ,
simple_project_pattern ( ' kernel ' ) ,
simple_project_pattern ( ' libcore ' ) ,
simple_project_pattern ( ' libnativehelper ' ) ,
simple_project_pattern ( ' ndk ' ) ,
2016-09-23 04:22:07 +02:00
# match vendor/unbungled_google/packages before other packages
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' unbundled_google ' ) ,
simple_project_pattern ( ' packages ' ) ,
simple_project_pattern ( ' pdk ' ) ,
simple_project_pattern ( ' prebuilts ' ) ,
simple_project_pattern ( ' system/bt ' ) ,
simple_project_pattern ( ' system/connectivity ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' system/core/adb ' ) ,
simple_project_pattern ( ' system/core/base ' ) ,
simple_project_pattern ( ' system/core/debuggerd ' ) ,
simple_project_pattern ( ' system/core/fastboot ' ) ,
simple_project_pattern ( ' system/core/fingerprintd ' ) ,
simple_project_pattern ( ' system/core/fs_mgr ' ) ,
simple_project_pattern ( ' system/core/gatekeeperd ' ) ,
simple_project_pattern ( ' system/core/healthd ' ) ,
simple_project_pattern ( ' system/core/include ' ) ,
simple_project_pattern ( ' system/core/init ' ) ,
simple_project_pattern ( ' system/core/libbacktrace ' ) ,
simple_project_pattern ( ' system/core/liblog ' ) ,
simple_project_pattern ( ' system/core/libpixelflinger ' ) ,
simple_project_pattern ( ' system/core/libprocessgroup ' ) ,
simple_project_pattern ( ' system/core/libsysutils ' ) ,
simple_project_pattern ( ' system/core/logcat ' ) ,
simple_project_pattern ( ' system/core/logd ' ) ,
simple_project_pattern ( ' system/core/run-as ' ) ,
simple_project_pattern ( ' system/core/sdcard ' ) ,
simple_project_pattern ( ' system/core/toolbox ' ) ,
project_name_and_pattern ( ' system/core/Other ' , ' system/core ' ) ,
simple_project_pattern ( ' system/extras/ANRdaemon ' ) ,
simple_project_pattern ( ' system/extras/cpustats ' ) ,
simple_project_pattern ( ' system/extras/crypto-perf ' ) ,
simple_project_pattern ( ' system/extras/ext4_utils ' ) ,
simple_project_pattern ( ' system/extras/f2fs_utils ' ) ,
simple_project_pattern ( ' system/extras/iotop ' ) ,
simple_project_pattern ( ' system/extras/libfec ' ) ,
simple_project_pattern ( ' system/extras/memory_replay ' ) ,
simple_project_pattern ( ' system/extras/mmap-perf ' ) ,
simple_project_pattern ( ' system/extras/multinetwork ' ) ,
simple_project_pattern ( ' system/extras/perfprofd ' ) ,
simple_project_pattern ( ' system/extras/procrank ' ) ,
simple_project_pattern ( ' system/extras/runconuid ' ) ,
simple_project_pattern ( ' system/extras/showmap ' ) ,
simple_project_pattern ( ' system/extras/simpleperf ' ) ,
simple_project_pattern ( ' system/extras/su ' ) ,
simple_project_pattern ( ' system/extras/tests ' ) ,
simple_project_pattern ( ' system/extras/verity ' ) ,
project_name_and_pattern ( ' system/extras/Other ' , ' system/extras ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' system/gatekeeper ' ) ,
simple_project_pattern ( ' system/keymaster ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' system/libhidl ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' system/libhwbinder ' ) ,
simple_project_pattern ( ' system/media ' ) ,
simple_project_pattern ( ' system/netd ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' system/nvram ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' system/security ' ) ,
simple_project_pattern ( ' system/sepolicy ' ) ,
simple_project_pattern ( ' system/tools ' ) ,
2016-10-14 21:27:17 +02:00
simple_project_pattern ( ' system/update_engine ' ) ,
2016-09-28 00:39:28 +02:00
simple_project_pattern ( ' system/vold ' ) ,
project_name_and_pattern ( ' system/Other ' , ' system ' ) ,
simple_project_pattern ( ' toolchain ' ) ,
simple_project_pattern ( ' test ' ) ,
simple_project_pattern ( ' tools ' ) ,
2016-07-22 23:09:31 +02:00
# match vendor/google* before vendor/
2016-09-28 00:39:28 +02:00
project_name_and_pattern ( ' vendor/google ' , ' vendor/google.* ' ) ,
project_name_and_pattern ( ' vendor/non-google ' , ' vendor ' ) ,
2016-07-22 23:09:31 +02:00
# keep out/obj and other patterns at the end.
2016-09-28 00:39:28 +02:00
[ ' out/obj ' ,
' .*/(gen|obj[^/]*)/(include|EXECUTABLES|SHARED_LIBRARIES| '
' STATIC_LIBRARIES|NATIVE_TESTS)/.*: warning: ' ] ,
[ ' other ' , ' .* ' ] # all other unrecognized patterns
2016-07-21 23:22:53 +02:00
]
2016-09-26 19:56:43 +02:00
project_patterns = [ ]
project_names = [ ]
2016-09-23 04:22:07 +02:00
warning_messages = [ ]
warning_records = [ ]
2016-09-26 19:56:43 +02:00
def initialize_arrays ( ) :
""" Complete global arrays before they are used. """
2016-09-23 04:22:07 +02:00
global project_names , project_patterns
2016-09-26 19:56:43 +02:00
project_names = [ p [ 0 ] for p in project_list ]
2016-09-23 04:22:07 +02:00
project_patterns = [ re . compile ( p [ 1 ] ) for p in project_list ]
2016-09-26 19:56:43 +02:00
for w in warn_patterns :
w [ ' members ' ] = [ ]
if ' option ' not in w :
w [ ' option ' ] = ' '
2016-09-23 04:22:07 +02:00
# Each warning pattern has a 'projects' dictionary, that
# maps a project name to number of warnings in that project.
2016-09-26 19:56:43 +02:00
w [ ' projects ' ] = { }
2016-07-21 23:22:53 +02:00
2016-09-13 01:20:49 +02:00
2016-09-26 19:56:43 +02:00
initialize_arrays ( )
2016-07-21 23:22:53 +02:00
2016-09-26 19:56:43 +02:00
2016-10-12 00:30:26 +02:00
android_root = ' '
2016-09-26 19:56:43 +02:00
platform_version = ' unknown '
target_product = ' unknown '
target_variant = ' unknown '
2016-07-21 23:22:53 +02:00
##### Data and functions to dump html file. ##################################
2016-09-23 04:22:07 +02:00
html_head_scripts = """ \
< script type = " text/javascript " >
function expand ( id ) {
var e = document . getElementById ( id ) ;
var f = document . getElementById ( id + " _mark " ) ;
if ( e . style . display == ' block ' ) {
e . style . display = ' none ' ;
f . innerHTML = ' ⊕ ' ;
}
else {
e . style . display = ' block ' ;
f . innerHTML = ' ⊖ ' ;
}
} ;
function expandCollapse ( show ) {
for ( var id = 1 ; ; id + + ) {
var e = document . getElementById ( id + " " ) ;
2016-06-23 04:15:12 +02:00
var f = document . getElementById ( id + " _mark " ) ;
2016-09-23 04:22:07 +02:00
if ( ! e | | ! f ) break ;
e . style . display = ( show ? ' block ' : ' none ' ) ;
f . innerHTML = ( show ? ' ⊖ ' : ' ⊕ ' ) ;
}
} ;
< / script >
< style type = " text/css " >
th , td { border - collapse : collapse ; border : 1 px solid black ; }
. button { color : blue ; font - size : 110 % ; font - weight : bolder ; }
. bt { color : black ; background - color : transparent ; border : none ; outline : none ;
font - size : 140 % ; font - weight : bolder ; }
. c0 { background - color : #e0e0e0;}
. c1 { background - color : #d0d0d0;}
. t1 { border - collapse : collapse ; width : 100 % ; border : 1 px solid black ; }
< / style >
< script src = " https://www.gstatic.com/charts/loader.js " > < / script >
"""
2016-09-26 19:56:43 +02:00
def html_big ( param ) :
return ' <font size= " +2 " > ' + param + ' </font> '
def dump_html_prologue ( title ) :
2016-09-23 04:22:07 +02:00
print ' <html> \n <head> '
print ' <title> ' + title + ' </title> '
print html_head_scripts
emit_stats_by_project ( )
print ' </head> \n <body> '
print html_big ( title )
print ' <p> '
2016-09-26 19:56:43 +02:00
def dump_html_epilogue ( ) :
2016-09-23 04:22:07 +02:00
print ' </body> \n </head> \n </html> '
2016-09-26 19:56:43 +02:00
def sort_warnings ( ) :
for i in warn_patterns :
i [ ' members ' ] = sorted ( set ( i [ ' members ' ] ) )
2016-09-23 04:22:07 +02:00
def emit_stats_by_project ( ) :
""" Dump a google chart table of warnings per project and severity. """
2016-09-26 19:56:43 +02:00
# warnings[p][s] is number of warnings in project p of severity s.
2016-09-28 03:08:52 +02:00
warnings = { p : { s : 0 for s in Severity . range } for p in project_names }
2016-09-26 19:56:43 +02:00
for i in warn_patterns :
s = i [ ' severity ' ]
for p in i [ ' projects ' ] :
warnings [ p ] [ s ] + = i [ ' projects ' ] [ p ]
# total_by_project[p] is number of warnings in project p.
2016-09-28 03:08:52 +02:00
total_by_project = { p : sum ( warnings [ p ] [ s ] for s in Severity . range )
2016-09-26 19:56:43 +02:00
for p in project_names }
# total_by_severity[s] is number of warnings of severity s.
total_by_severity = { s : sum ( warnings [ p ] [ s ] for p in project_names )
2016-09-28 03:08:52 +02:00
for s in Severity . range }
2016-09-13 01:20:49 +02:00
2016-09-26 19:56:43 +02:00
# emit table header
2016-09-23 04:22:07 +02:00
stats_header = [ ' Project ' ]
2016-09-28 03:08:52 +02:00
for s in Severity . range :
2016-09-26 19:56:43 +02:00
if total_by_severity [ s ] :
2016-09-23 04:22:07 +02:00
stats_header . append ( " <span style= ' background-color: {} ' > {} </span> " .
2016-09-28 03:08:52 +02:00
format ( Severity . colors [ s ] ,
Severity . column_headers [ s ] ) )
2016-09-23 04:22:07 +02:00
stats_header . append ( ' TOTAL ' )
2016-09-26 19:56:43 +02:00
# emit a row of warning counts per project, skip no-warning projects
total_all_projects = 0
2016-09-23 04:22:07 +02:00
stats_rows = [ ]
2016-09-26 19:56:43 +02:00
for p in project_names :
if total_by_project [ p ] :
2016-09-23 04:22:07 +02:00
one_row = [ p ]
2016-09-28 03:08:52 +02:00
for s in Severity . range :
2016-09-26 19:56:43 +02:00
if total_by_severity [ s ] :
2016-09-23 04:22:07 +02:00
one_row . append ( warnings [ p ] [ s ] )
one_row . append ( total_by_project [ p ] )
stats_rows . append ( one_row )
2016-09-26 19:56:43 +02:00
total_all_projects + = total_by_project [ p ]
# emit a row of warning counts per severity
total_all_severities = 0
2016-09-23 04:22:07 +02:00
one_row = [ ' <b>TOTAL</b> ' ]
2016-09-28 03:08:52 +02:00
for s in Severity . range :
2016-09-26 19:56:43 +02:00
if total_by_severity [ s ] :
2016-09-23 04:22:07 +02:00
one_row . append ( total_by_severity [ s ] )
2016-09-26 19:56:43 +02:00
total_all_severities + = total_by_severity [ s ]
2016-09-23 04:22:07 +02:00
one_row . append ( total_all_projects )
stats_rows . append ( one_row )
print ' <script> '
emit_const_string_array ( ' StatsHeader ' , stats_header )
emit_const_object_array ( ' StatsRows ' , stats_rows )
print draw_table_javascript
print ' </script> '
2016-09-26 19:56:43 +02:00
def dump_stats ( ) :
""" Dump some stats about total number of warnings and such. """
known = 0
skipped = 0
unknown = 0
sort_warnings ( )
for i in warn_patterns :
2016-09-28 03:08:52 +02:00
if i [ ' severity ' ] == Severity . UNKNOWN :
2016-09-26 19:56:43 +02:00
unknown + = len ( i [ ' members ' ] )
2016-09-28 03:08:52 +02:00
elif i [ ' severity ' ] == Severity . SKIP :
2016-09-26 19:56:43 +02:00
skipped + = len ( i [ ' members ' ] )
else :
known + = len ( i [ ' members ' ] )
2016-09-23 04:22:07 +02:00
print ' Number of classified warnings: <b> ' + str ( known ) + ' </b><br> '
print ' Number of skipped warnings: <b> ' + str ( skipped ) + ' </b><br> '
print ' Number of unclassified warnings: <b> ' + str ( unknown ) + ' </b><br> '
2016-09-26 19:56:43 +02:00
total = unknown + known + skipped
2016-09-23 04:22:07 +02:00
extra_msg = ' '
2016-09-26 19:56:43 +02:00
if total < 1000 :
2016-09-23 04:22:07 +02:00
extra_msg = ' (low count may indicate incremental build) '
print ' Total number of warnings: <b> ' + str ( total ) + ' </b> ' + extra_msg
# New base table of warnings, [severity, warn_id, project, warning_message]
# Need buttons to show warnings in different grouping options.
# (1) Current, group by severity, id for each warning pattern
# sort by severity, warn_id, warning_message
# (2) Current --byproject, group by severity,
# id for each warning pattern + project name
# sort by severity, warn_id, project, warning_message
# (3) New, group by project + severity,
# id for each warning pattern
# sort by project, severity, warn_id, warning_message
2016-09-26 19:56:43 +02:00
def emit_buttons ( ) :
2016-09-23 04:22:07 +02:00
print ( ' <button class= " button " onclick= " expandCollapse(1); " > '
2016-09-26 19:56:43 +02:00
' Expand all warnings</button> \n '
2016-09-23 04:22:07 +02:00
' <button class= " button " onclick= " expandCollapse(0); " > '
' Collapse all warnings</button> \n '
' <button class= " button " onclick= " groupBySeverity(); " > '
' Group warnings by severity</button> \n '
' <button class= " button " onclick= " groupByProject(); " > '
' Group warnings by project</button><br> ' )
2016-09-26 19:56:43 +02:00
2016-09-23 04:22:07 +02:00
def all_patterns ( category ) :
patterns = ' '
for i in category [ ' patterns ' ] :
patterns + = i
patterns + = ' / '
return patterns
2016-09-26 19:56:43 +02:00
def dump_fixed ( ) :
""" Show which warnings no longer occur. """
2016-09-23 04:22:07 +02:00
anchor = ' fixed_warnings '
mark = anchor + ' _mark '
print ( ' \n <br><p style= " background-color:lightblue " ><b> '
2016-09-26 19:56:43 +02:00
' <button id= " ' + mark + ' " '
2016-09-23 04:22:07 +02:00
' class= " bt " onclick= " expand( \' ' + anchor + ' \' ); " > '
2016-09-26 19:56:43 +02:00
' ⊕</button> Fixed warnings. '
' No more occurrences. Please consider turning these into '
' errors if possible, before they are reintroduced in to the build '
2016-09-23 04:22:07 +02:00
' :</b></p> ' )
print ' <blockquote> '
2016-09-26 19:56:43 +02:00
fixed_patterns = [ ]
for i in warn_patterns :
if not i [ ' members ' ] :
fixed_patterns . append ( i [ ' description ' ] + ' ( ' +
all_patterns ( i ) + ' ) ' )
if i [ ' option ' ] :
fixed_patterns . append ( ' ' + i [ ' option ' ] )
fixed_patterns . sort ( )
2016-09-23 04:22:07 +02:00
print ' <div id= " ' + anchor + ' " style= " display:none; " ><table> '
cur_row_class = 0
for text in fixed_patterns :
cur_row_class = 1 - cur_row_class
# remove last '\n'
t = text [ : - 1 ] if text [ - 1 ] == ' \n ' else text
print ' <tr><td class= " c ' + str ( cur_row_class ) + ' " > ' + t + ' </td></tr> '
print ' </table></div> '
print ' </blockquote> '
def find_project_index ( line ) :
for p in range ( len ( project_patterns ) ) :
if project_patterns [ p ] . match ( line ) :
return p
return - 1
2016-09-26 19:56:43 +02:00
2016-10-12 00:25:26 +02:00
def classify_one_warning ( line , results ) :
2018-06-07 19:51:47 +02:00
""" Classify one warning line. """
2016-09-23 04:22:07 +02:00
for i in range ( len ( warn_patterns ) ) :
w = warn_patterns [ i ]
for cpat in w [ ' compiled_patterns ' ] :
2016-09-26 19:56:43 +02:00
if cpat . match ( line ) :
2016-09-23 04:22:07 +02:00
p = find_project_index ( line )
2016-10-12 00:25:26 +02:00
results . append ( [ line , i , p ] )
2016-09-26 19:56:43 +02:00
return
else :
# If we end up here, there was a problem parsing the log
# probably caused by 'make -j' mixing the output from
# 2 or more concurrent compiles
pass
2016-10-12 00:25:26 +02:00
def classify_warnings ( lines ) :
results = [ ]
for line in lines :
classify_one_warning ( line , results )
2016-11-10 03:19:05 +01:00
# After the main work, ignore all other signals to a child process,
# to avoid bad warning/error messages from the exit clean-up process.
if args . processes > 1 :
signal . signal ( signal . SIGTERM , lambda * args : sys . exit ( - signal . SIGTERM ) )
2016-10-12 00:25:26 +02:00
return results
def parallel_classify_warnings ( warning_lines ) :
""" Classify all warning lines with num_cpu parallel processes. """
2016-11-10 03:19:05 +01:00
compile_patterns ( )
2016-10-12 00:25:26 +02:00
num_cpu = args . processes
2016-10-28 19:53:34 +02:00
if num_cpu > 1 :
groups = [ [ ] for x in range ( num_cpu ) ]
i = 0
for x in warning_lines :
groups [ i ] . append ( x )
i = ( i + 1 ) % num_cpu
pool = multiprocessing . Pool ( num_cpu )
group_results = pool . map ( classify_warnings , groups )
else :
group_results = [ classify_warnings ( warning_lines ) ]
2016-10-12 00:25:26 +02:00
for result in group_results :
for line , pattern_idx , project_idx in result :
pattern = warn_patterns [ pattern_idx ]
pattern [ ' members ' ] . append ( line )
message_idx = len ( warning_messages )
warning_messages . append ( line )
warning_records . append ( [ pattern_idx , project_idx , message_idx ] )
pname = ' ??? ' if project_idx < 0 else project_names [ project_idx ]
# Count warnings by project.
if pname in pattern [ ' projects ' ] :
pattern [ ' projects ' ] [ pname ] + = 1
else :
pattern [ ' projects ' ] [ pname ] = 1
2016-09-26 19:56:43 +02:00
def compile_patterns ( ) :
""" Precompiling every pattern speeds up parsing by about 30x. """
for i in warn_patterns :
i [ ' compiled_patterns ' ] = [ ]
for pat in i [ ' patterns ' ] :
i [ ' compiled_patterns ' ] . append ( re . compile ( pat ) )
2016-10-12 00:30:26 +02:00
def find_android_root ( path ) :
""" Set and return android_root path if it is found. """
global android_root
parts = path . split ( ' / ' )
for idx in reversed ( range ( 2 , len ( parts ) ) ) :
root_path = ' / ' . join ( parts [ : idx ] )
# Android root directory should contain this script.
2017-12-06 23:38:40 +01:00
if os . path . exists ( root_path + ' /build/make/tools/warn.py ' ) :
2016-10-12 00:30:26 +02:00
android_root = root_path
return root_path
return ' '
def remove_android_root_prefix ( path ) :
""" Remove android_root prefix from path if it is found. """
if path . startswith ( android_root ) :
return path [ 1 + len ( android_root ) : ]
else :
return path
def normalize_path ( path ) :
""" Normalize file path relative to android_root. """
# If path is not an absolute path, just normalize it.
path = os . path . normpath ( path )
if path [ 0 ] != ' / ' :
return path
# Remove known prefix of root path and normalize the suffix.
if android_root or find_android_root ( path ) :
return remove_android_root_prefix ( path )
else :
return path
def normalize_warning_line ( line ) :
""" Normalize file path relative to android_root in a warning line. """
# replace fancy quotes with plain ol' quotes
line = line . replace ( ' ‘ ' , " ' " )
line = line . replace ( ' ’ ' , " ' " )
line = line . strip ( )
first_column = line . find ( ' : ' )
if first_column > 0 :
return normalize_path ( line [ : first_column ] ) + line [ first_column : ]
else :
return line
2016-11-10 03:19:05 +01:00
def parse_input_file ( infile ) :
2017-04-27 19:25:37 +02:00
""" Parse input file, collect parameters and warning lines. """
global android_root
2016-09-26 19:56:43 +02:00
global platform_version
global target_product
global target_variant
line_counter = 0
2016-10-12 00:33:19 +02:00
# handle only warning messages with a file path
warning_pattern = re . compile ( ' ^[^ ]*/[^ ]*: warning: .* ' )
2016-09-26 19:56:43 +02:00
2016-10-12 00:25:26 +02:00
# Collect all warnings into the warning_lines set.
2016-09-26 19:56:43 +02:00
warning_lines = set ( )
for line in infile :
if warning_pattern . match ( line ) :
2016-10-12 00:30:26 +02:00
line = normalize_warning_line ( line )
2016-10-12 00:25:26 +02:00
warning_lines . add ( line )
2017-06-08 00:52:13 +02:00
elif line_counter < 100 :
2016-09-26 19:56:43 +02:00
# save a little bit of time by only doing this for the first few lines
2016-09-23 04:22:07 +02:00
line_counter + = 1
m = re . search ( ' (?<=^PLATFORM_VERSION=).* ' , line )
if m is not None :
platform_version = m . group ( 0 )
m = re . search ( ' (?<=^TARGET_PRODUCT=).* ' , line )
if m is not None :
target_product = m . group ( 0 )
m = re . search ( ' (?<=^TARGET_BUILD_VARIANT=).* ' , line )
if m is not None :
target_variant = m . group ( 0 )
2017-04-27 19:25:37 +02:00
m = re . search ( ' .* TOP=([^ ]*) .* ' , line )
if m is not None :
android_root = m . group ( 1 )
2016-11-10 03:19:05 +01:00
return warning_lines
2016-09-23 04:22:07 +02:00
2016-10-12 00:33:19 +02:00
# Return s with escaped backslash and quotation characters.
2016-09-23 04:22:07 +02:00
def escape_string ( s ) :
2016-10-12 00:33:19 +02:00
return s . replace ( ' \\ ' , ' \\ \\ ' ) . replace ( ' " ' , ' \\ " ' )
2016-09-23 04:22:07 +02:00
# Return s without trailing '\n' and escape the quotation characters.
def strip_escape_string ( s ) :
if not s :
return s
s = s [ : - 1 ] if s [ - 1 ] == ' \n ' else s
return escape_string ( s )
def emit_warning_array ( name ) :
print ' var warning_ {} = [ ' . format ( name )
for i in range ( len ( warn_patterns ) ) :
print ' {} , ' . format ( warn_patterns [ i ] [ name ] )
print ' ]; '
def emit_warning_arrays ( ) :
emit_warning_array ( ' severity ' )
print ' var warning_description = [ '
for i in range ( len ( warn_patterns ) ) :
if warn_patterns [ i ] [ ' members ' ] :
print ' " {} " , ' . format ( escape_string ( warn_patterns [ i ] [ ' description ' ] ) )
else :
print ' " " , ' # no such warning
print ' ]; '
scripts_for_warning_groups = """
function compareMessages ( x1 , x2 ) { / / of the same warning type
return ( WarningMessages [ x1 [ 2 ] ] < = WarningMessages [ x2 [ 2 ] ] ) ? - 1 : 1 ;
}
function byMessageCount ( x1 , x2 ) {
return x2 [ 2 ] - x1 [ 2 ] ; / / reversed order
}
function bySeverityMessageCount ( x1 , x2 ) {
/ / orer by severity first
if ( x1 [ 1 ] != x2 [ 1 ] )
return x1 [ 1 ] - x2 [ 1 ] ;
return byMessageCount ( x1 , x2 ) ;
}
const ParseLinePattern = / ^ ( [ ^ : ] + ) : ( \\d + ) : ( . + ) / ;
function addURL ( line ) {
if ( FlagURL == " " ) return line ;
if ( FlagSeparator == " " ) {
return line . replace ( ParseLinePattern ,
2017-04-21 22:35:52 +02:00
" <a target= ' _blank ' href= ' " + FlagURL + " /$1 ' >$1</a>:$2:$3 " ) ;
2016-09-23 04:22:07 +02:00
}
return line . replace ( ParseLinePattern ,
2017-04-21 22:35:52 +02:00
" <a target= ' _blank ' href= ' " + FlagURL + " /$1 " + FlagSeparator +
" $2 ' >$1:$2</a>:$3 " ) ;
2016-09-23 04:22:07 +02:00
}
function createArrayOfDictionaries ( n ) {
var result = [ ] ;
for ( var i = 0 ; i < n ; i + + ) result . push ( { } ) ;
return result ;
}
function groupWarningsBySeverity ( ) {
/ / groups is an array of dictionaries ,
/ / each dictionary maps from warning type to array of warning messages .
var groups = createArrayOfDictionaries ( SeverityColors . length ) ;
for ( var i = 0 ; i < Warnings . length ; i + + ) {
var w = Warnings [ i ] [ 0 ] ;
var s = WarnPatternsSeverity [ w ] ;
var k = w . toString ( ) ;
if ( ! ( k in groups [ s ] ) )
groups [ s ] [ k ] = [ ] ;
groups [ s ] [ k ] . push ( Warnings [ i ] ) ;
}
return groups ;
}
function groupWarningsByProject ( ) {
var groups = createArrayOfDictionaries ( ProjectNames . length ) ;
for ( var i = 0 ; i < Warnings . length ; i + + ) {
var w = Warnings [ i ] [ 0 ] ;
var p = Warnings [ i ] [ 1 ] ;
var k = w . toString ( ) ;
if ( ! ( k in groups [ p ] ) )
groups [ p ] [ k ] = [ ] ;
groups [ p ] [ k ] . push ( Warnings [ i ] ) ;
}
return groups ;
}
var GlobalAnchor = 0 ;
function createWarningSection ( header , color , group ) {
var result = " " ;
var groupKeys = [ ] ;
var totalMessages = 0 ;
for ( var k in group ) {
totalMessages + = group [ k ] . length ;
groupKeys . push ( [ k , WarnPatternsSeverity [ parseInt ( k ) ] , group [ k ] . length ] ) ;
}
groupKeys . sort ( bySeverityMessageCount ) ;
for ( var idx = 0 ; idx < groupKeys . length ; idx + + ) {
var k = groupKeys [ idx ] [ 0 ] ;
var messages = group [ k ] ;
var w = parseInt ( k ) ;
var wcolor = SeverityColors [ WarnPatternsSeverity [ w ] ] ;
var description = WarnPatternsDescription [ w ] ;
if ( description . length == 0 )
description = " ??? " ;
GlobalAnchor + = 1 ;
result + = " <table class= ' t1 ' ><tr bgcolor= ' " + wcolor + " ' ><td> " +
" <button class= ' bt ' id= ' " + GlobalAnchor + " _mark " +
" ' onclick= ' expand( \\ " " + GlobalAnchor + " \\" ); ' > " +
" ⊕</button> " +
description + " ( " + messages . length + " )</td></tr></table> " ;
result + = " <div id= ' " + GlobalAnchor +
" ' style= ' display:none; ' ><table class= ' t1 ' > " ;
var c = 0 ;
messages . sort ( compareMessages ) ;
for ( var i = 0 ; i < messages . length ; i + + ) {
result + = " <tr><td class= ' c " + c + " ' > " +
addURL ( WarningMessages [ messages [ i ] [ 2 ] ] ) + " </td></tr> " ;
c = 1 - c ;
}
result + = " </table></div> " ;
}
if ( result . length > 0 ) {
return " <br><span style= ' background-color: " + color + " ' ><b> " +
header + " : " + totalMessages +
" </b></span><blockquote><table class= ' t1 ' > " +
result + " </table></blockquote> " ;
}
return " " ; / / empty section
}
function generateSectionsBySeverity ( ) {
var result = " " ;
var groups = groupWarningsBySeverity ( ) ;
for ( s = 0 ; s < SeverityColors . length ; s + + ) {
result + = createWarningSection ( SeverityHeaders [ s ] , SeverityColors [ s ] , groups [ s ] ) ;
}
return result ;
}
function generateSectionsByProject ( ) {
var result = " " ;
var groups = groupWarningsByProject ( ) ;
for ( i = 0 ; i < groups . length ; i + + ) {
result + = createWarningSection ( ProjectNames [ i ] , ' lightgrey ' , groups [ i ] ) ;
}
return result ;
}
function groupWarnings ( generator ) {
GlobalAnchor = 0 ;
var e = document . getElementById ( " warning_groups " ) ;
e . innerHTML = generator ( ) ;
}
function groupBySeverity ( ) {
groupWarnings ( generateSectionsBySeverity ) ;
}
function groupByProject ( ) {
groupWarnings ( generateSectionsByProject ) ;
}
"""
# Emit a JavaScript const string
def emit_const_string ( name , value ) :
print ' const ' + name + ' = " ' + escape_string ( value ) + ' " ; '
# Emit a JavaScript const integer array.
def emit_const_int_array ( name , array ) :
print ' const ' + name + ' = [ '
for n in array :
print str ( n ) + ' , '
print ' ]; '
# Emit a JavaScript const string array.
def emit_const_string_array ( name , array ) :
print ' const ' + name + ' = [ '
for s in array :
print ' " ' + strip_escape_string ( s ) + ' " , '
print ' ]; '
2018-07-21 00:36:26 +02:00
# Emit a JavaScript const string array for HTML.
def emit_const_html_string_array ( name , array ) :
print ' const ' + name + ' = [ '
for s in array :
print ' " ' + cgi . escape ( strip_escape_string ( s ) ) + ' " , '
print ' ]; '
2016-09-23 04:22:07 +02:00
# Emit a JavaScript const object array.
def emit_const_object_array ( name , array ) :
print ' const ' + name + ' = [ '
for x in array :
print str ( x ) + ' , '
print ' ]; '
def emit_js_data ( ) :
""" Dump dynamic HTML page ' s static JavaScript data. """
emit_const_string ( ' FlagURL ' , args . url if args . url else ' ' )
emit_const_string ( ' FlagSeparator ' , args . separator if args . separator else ' ' )
2016-09-28 03:08:52 +02:00
emit_const_string_array ( ' SeverityColors ' , Severity . colors )
emit_const_string_array ( ' SeverityHeaders ' , Severity . headers )
emit_const_string_array ( ' SeverityColumnHeaders ' , Severity . column_headers )
2016-09-23 04:22:07 +02:00
emit_const_string_array ( ' ProjectNames ' , project_names )
emit_const_int_array ( ' WarnPatternsSeverity ' ,
[ w [ ' severity ' ] for w in warn_patterns ] )
2018-07-21 00:36:26 +02:00
emit_const_html_string_array ( ' WarnPatternsDescription ' ,
[ w [ ' description ' ] for w in warn_patterns ] )
emit_const_html_string_array ( ' WarnPatternsOption ' ,
[ w [ ' option ' ] for w in warn_patterns ] )
emit_const_html_string_array ( ' WarningMessages ' , warning_messages )
2016-09-23 04:22:07 +02:00
emit_const_object_array ( ' Warnings ' , warning_records )
draw_table_javascript = """
google . charts . load ( ' current ' , { ' packages ' : [ ' table ' ] } ) ;
google . charts . setOnLoadCallback ( drawTable ) ;
function drawTable ( ) {
var data = new google . visualization . DataTable ( ) ;
data . addColumn ( ' string ' , StatsHeader [ 0 ] ) ;
for ( var i = 1 ; i < StatsHeader . length ; i + + ) {
data . addColumn ( ' number ' , StatsHeader [ i ] ) ;
}
data . addRows ( StatsRows ) ;
for ( var i = 0 ; i < StatsRows . length ; i + + ) {
for ( var j = 0 ; j < StatsHeader . length ; j + + ) {
data . setProperty ( i , j , ' style ' , ' border:1px solid black; ' ) ;
}
}
var table = new google . visualization . Table ( document . getElementById ( ' stats_table ' ) ) ;
table . draw ( data , { allowHtml : true , alternatingRowStyle : true } ) ;
}
"""
2016-09-26 19:56:43 +02:00
def dump_html ( ) :
""" Dump the html output to stdout. """
dump_html_prologue ( ' Warnings for ' + platform_version + ' - ' +
target_product + ' - ' + target_variant )
dump_stats ( )
2016-09-23 04:22:07 +02:00
print ' <br><div id= " stats_table " ></div><br> '
print ' \n <script> '
emit_js_data ( )
print scripts_for_warning_groups
print ' </script> '
2016-09-26 19:56:43 +02:00
emit_buttons ( )
2016-09-23 04:22:07 +02:00
# Warning messages are grouped by severities or project names.
print ' <br><div id= " warning_groups " ></div> '
if args . byproject :
print ' <script>groupByProject();</script> '
else :
print ' <script>groupBySeverity();</script> '
2016-09-26 19:56:43 +02:00
dump_fixed ( )
dump_html_epilogue ( )
2016-07-21 23:22:53 +02:00
##### Functions to count warnings and dump csv file. #########################
2016-09-23 04:22:07 +02:00
def description_for_csv ( category ) :
if not category [ ' description ' ] :
2016-09-26 19:56:43 +02:00
return ' ? '
2016-09-23 04:22:07 +02:00
return category [ ' description ' ]
2016-09-26 19:56:43 +02:00
2017-04-11 00:37:47 +02:00
def count_severity ( writer , sev , kind ) :
2016-09-26 19:56:43 +02:00
""" Count warnings of given severity. """
total = 0
for i in warn_patterns :
if i [ ' severity ' ] == sev and i [ ' members ' ] :
n = len ( i [ ' members ' ] )
total + = n
2017-04-11 00:37:47 +02:00
warning = kind + ' : ' + description_for_csv ( i )
writer . writerow ( [ n , ' ' , warning ] )
2016-09-26 19:56:43 +02:00
# print number of warnings for each project, ordered by project name.
projects = i [ ' projects ' ] . keys ( )
projects . sort ( )
for p in projects :
2017-04-11 00:37:47 +02:00
writer . writerow ( [ i [ ' projects ' ] [ p ] , p , warning ] )
writer . writerow ( [ total , ' ' , kind + ' warnings ' ] )
2016-09-26 19:56:43 +02:00
return total
2016-09-23 04:22:07 +02:00
# dump number of warnings in csv format to stdout
2017-04-11 00:37:47 +02:00
def dump_csv ( writer ) :
2016-09-26 19:56:43 +02:00
""" Dump number of warnings in csv format to stdout. """
sort_warnings ( )
total = 0
2016-09-28 03:08:52 +02:00
for s in Severity . range :
2017-04-11 00:37:47 +02:00
total + = count_severity ( writer , s , Severity . column_headers [ s ] )
writer . writerow ( [ total , ' ' , ' All warnings ' ] )
2016-09-26 19:56:43 +02:00
2016-09-28 19:48:06 +02:00
def main ( ) :
2016-11-10 03:19:05 +01:00
warning_lines = parse_input_file ( open ( args . buildlog , ' r ' ) )
parallel_classify_warnings ( warning_lines )
2017-04-11 00:37:47 +02:00
# If a user pases a csv path, save the fileoutput to the path
# If the user also passed gencsv write the output to stdout
# If the user did not pass gencsv flag dump the html report to stdout.
if args . csvpath :
with open ( args . csvpath , ' w ' ) as f :
dump_csv ( csv . writer ( f , lineterminator = ' \n ' ) )
2016-09-28 19:48:06 +02:00
if args . gencsv :
2017-04-11 00:37:47 +02:00
dump_csv ( csv . writer ( sys . stdout , lineterminator = ' \n ' ) )
2016-09-28 19:48:06 +02:00
else :
dump_html ( )
2016-09-23 04:22:07 +02:00
2016-09-28 19:48:06 +02:00
# Run main function if warn.py is the main program.
if __name__ == ' __main__ ' :
main ( )