2016-08-23 17:39:36 +00:00
//! Read configurations files.
2021-04-28 02:04:06 +00:00
#![ allow(clippy::module_name_repetitions) ]
2016-08-23 17:39:36 +00:00
2021-04-28 02:04:06 +00:00
use serde ::de ::{ Deserializer , IgnoredAny , IntoDeserializer , MapAccess , Visitor } ;
use serde ::Deserialize ;
use std ::error ::Error ;
2020-02-05 02:06:34 +00:00
use std ::path ::{ Path , PathBuf } ;
use std ::{ env , fmt , fs , io } ;
2018-07-19 07:11:15 +00:00
2021-04-28 02:04:06 +00:00
/// Conf with parse errors
#[ derive(Default) ]
pub struct TryConf {
pub conf : Conf ,
pub errors : Vec < String > ,
2016-02-21 19:11:32 +00:00
}
2021-04-28 02:04:06 +00:00
impl TryConf {
fn from_error ( error : impl Error ) -> Self {
Self {
conf : Conf ::default ( ) ,
errors : vec ! [ error . to_string ( ) ] ,
2016-02-21 19:11:32 +00:00
}
}
}
2021-04-28 02:04:06 +00:00
macro_rules ! define_Conf {
( $(
2021-05-30 21:58:32 +00:00
$( #[ doc = $doc:literal ] ) *
2021-04-28 02:04:06 +00:00
$( #[ conf_deprecated($dep:literal) ] ) ?
2021-05-02 22:50:22 +00:00
( $name :ident : $ty :ty = $default :expr ) ,
2021-04-28 02:04:06 +00:00
) * ) = > {
/// Clippy lint configuration
pub struct Conf {
2021-05-30 21:58:32 +00:00
$( $( #[ doc = $doc ] ) * pub $name : $ty , ) *
2021-04-28 02:04:06 +00:00
}
2016-02-21 19:11:32 +00:00
2021-04-28 02:04:06 +00:00
mod defaults {
2021-05-02 22:50:22 +00:00
$( pub fn $name ( ) -> $ty { $default } ) *
2021-04-28 02:04:06 +00:00
}
2016-02-21 19:11:32 +00:00
2021-04-28 02:04:06 +00:00
impl Default for Conf {
fn default ( ) -> Self {
Self { $( $name : defaults ::$name ( ) , ) * }
2016-02-21 19:11:32 +00:00
}
2021-04-28 02:04:06 +00:00
}
2020-02-05 02:06:34 +00:00
2021-04-28 02:04:06 +00:00
impl < ' de > Deserialize < ' de > for TryConf {
fn deserialize < D > ( deserializer : D ) -> Result < Self , D ::Error > where D : Deserializer < ' de > {
deserializer . deserialize_map ( ConfVisitor )
}
}
#[ derive(Deserialize) ]
#[ serde(field_identifier, rename_all = " kebab-case " ) ]
#[ allow(non_camel_case_types) ]
enum Field { $( $name , ) * third_party , }
struct ConfVisitor ;
impl < ' de > Visitor < ' de > for ConfVisitor {
type Value = TryConf ;
fn expecting ( & self , formatter : & mut fmt ::Formatter < '_ > ) -> fmt ::Result {
formatter . write_str ( " Conf " )
}
2016-02-21 19:11:32 +00:00
2021-04-28 02:04:06 +00:00
fn visit_map < V > ( self , mut map : V ) -> Result < Self ::Value , V ::Error > where V : MapAccess < ' de > {
let mut errors = Vec ::new ( ) ;
$( let mut $name = None ; ) *
// could get `Field` here directly, but get `str` first for diagnostics
while let Some ( name ) = map . next_key ::< & str > ( ) ? {
match Field ::deserialize ( name . into_deserializer ( ) ) ? {
$( Field ::$name = > {
$( errors . push ( format! ( " deprecated field ` {} `. {} " , name , $dep ) ) ; ) ?
match map . next_value ( ) {
Err ( e ) = > errors . push ( e . to_string ( ) ) ,
Ok ( value ) = > match $name {
Some ( _ ) = > errors . push ( format! ( " duplicate field ` {} ` " , name ) ) ,
None = > $name = Some ( value ) ,
}
}
} ) *
// white-listed; ignore
Field ::third_party = > drop ( map . next_value ::< IgnoredAny > ( ) )
}
2017-05-09 13:23:38 +00:00
}
2021-04-28 02:04:06 +00:00
let conf = Conf { $( $name : $name . unwrap_or_else ( defaults ::$name ) , ) * } ;
Ok ( TryConf { conf , errors } )
}
2016-02-21 19:11:32 +00:00
}
2021-05-11 18:23:52 +00:00
#[ cfg(feature = " metadata-collector-lint " ) ]
pub mod metadata {
2021-05-15 17:00:49 +00:00
use crate ::utils ::internal_lints ::metadata_collector ::ClippyConfiguration ;
2021-05-11 18:23:52 +00:00
2021-05-15 17:00:49 +00:00
macro_rules ! wrap_option {
( ) = > ( None ) ;
( $x :literal ) = > ( Some ( $x ) ) ;
}
pub ( crate ) fn get_configuration_metadata ( ) -> Vec < ClippyConfiguration > {
2021-05-11 18:23:52 +00:00
vec! [
$(
2021-05-12 16:47:32 +00:00
{
2021-05-15 17:00:49 +00:00
let deprecation_reason = wrap_option! ( $( $dep ) ? ) ;
2021-05-12 16:47:32 +00:00
2021-05-15 17:00:49 +00:00
ClippyConfiguration ::new (
stringify! ( $name ) ,
stringify! ( $ty ) ,
format! ( " {:?} " , super ::defaults ::$name ( ) ) ,
2021-05-30 21:58:32 +00:00
concat! ( $( $doc , ) * ) ,
2021-05-12 16:47:32 +00:00
deprecation_reason ,
2021-05-15 17:00:49 +00:00
)
2021-05-11 18:23:52 +00:00
} ,
) +
]
}
}
2016-02-21 19:11:32 +00:00
} ;
2016-02-22 13:25:51 +00:00
}
2016-02-21 19:11:32 +00:00
2021-05-02 22:50:22 +00:00
// N.B., this macro is parsed by util/lintlib.py
2016-02-21 19:11:32 +00:00
define_Conf! {
2021-05-06 17:41:58 +00:00
/// Lint: ENUM_VARIANT_NAMES, LARGE_TYPES_PASSED_BY_VALUE, TRIVIALLY_COPY_PASS_BY_REF, UNNECESSARY_WRAPS, UPPER_CASE_ACRONYMS, WRONG_SELF_CONVENTION. Suppress lints whenever the suggested change would cause breakage for other crates.
( avoid_breaking_exported_api : bool = true ) ,
2021-05-23 17:16:09 +00:00
/// Lint: MANUAL_STR_REPEAT, CLONED_INSTEAD_OF_COPIED, REDUNDANT_FIELD_NAMES, REDUNDANT_STATIC_LIFETIMES, FILTER_MAP_NEXT, CHECKED_CONVERSIONS, MANUAL_RANGE_CONTAINS, USE_SELF, MEM_REPLACE_WITH_DEFAULT, MANUAL_NON_EXHAUSTIVE, OPTION_AS_REF_DEREF, MAP_UNWRAP_OR, MATCH_LIKE_MATCHES_MACRO, MANUAL_STRIP, MISSING_CONST_FOR_FN, UNNESTED_OR_PATTERNS, FROM_OVER_INTO, PTR_AS_PTR, IF_THEN_SOME_ELSE_NONE. The minimum rust version that the project supports
2021-05-02 22:50:22 +00:00
( msrv : Option < String > = None ) ,
2020-06-23 15:05:22 +00:00
/// Lint: BLACKLISTED_NAME. The list of blacklisted names to lint about. NB: `bar` is not here since it has legitimate uses
2021-04-28 02:04:06 +00:00
( blacklisted_names : Vec < String > = [ " foo " , " baz " , " quux " ] . iter ( ) . map ( ToString ::to_string ) . collect ( ) ) ,
2019-02-23 01:19:50 +00:00
/// Lint: COGNITIVE_COMPLEXITY. The maximum cognitive complexity a function can have
2021-04-28 02:04:06 +00:00
( cognitive_complexity_threshold : u64 = 25 ) ,
2021-05-12 16:47:32 +00:00
/// DEPRECATED LINT: CYCLOMATIC_COMPLEXITY. Use the Cognitive Complexity lint instead.
2021-05-02 21:56:46 +00:00
#[ conf_deprecated( " Please use `cognitive-complexity-threshold` instead " ) ]
2021-05-02 22:50:22 +00:00
( cyclomatic_complexity_threshold : Option < u64 > = None ) ,
2016-04-04 18:18:17 +00:00
/// Lint: DOC_MARKDOWN. The list of words this lint should not consider as identifiers needing ticks
2021-04-28 02:04:06 +00:00
( doc_valid_idents : Vec < String > = [
2017-05-06 19:31:54 +00:00
" KiB " , " MiB " , " GiB " , " TiB " , " PiB " , " EiB " ,
2016-12-21 11:30:41 +00:00
" DirectX " ,
2017-03-03 11:28:15 +00:00
" ECMAScript " ,
2016-12-21 11:30:41 +00:00
" GPLv2 " , " GPLv3 " ,
2018-01-02 12:51:35 +00:00
" GitHub " , " GitLab " ,
2016-12-21 11:30:41 +00:00
" IPv4 " , " IPv6 " ,
2020-05-28 13:45:24 +00:00
" ClojureScript " , " CoffeeScript " , " JavaScript " , " PureScript " , " TypeScript " ,
2018-01-02 12:51:35 +00:00
" NaN " , " NaNs " ,
2020-09-01 13:05:19 +00:00
" OAuth " , " GraphQL " ,
2020-05-28 13:45:24 +00:00
" OCaml " ,
2021-02-24 04:04:00 +00:00
" OpenGL " , " OpenMP " , " OpenSSH " , " OpenSSL " , " OpenStreetMap " , " OpenDNS " ,
2020-11-27 00:42:37 +00:00
" WebGL " ,
2020-05-28 13:45:24 +00:00
" TensorFlow " ,
2016-12-21 11:30:41 +00:00
" TrueType " ,
2021-06-09 15:16:10 +00:00
" iOS " , " macOS " , " FreeBSD " ,
2017-09-18 20:40:00 +00:00
" TeX " , " LaTeX " , " BibTeX " , " BibLaTeX " ,
2017-04-25 09:38:37 +00:00
" MinGW " ,
2018-12-11 18:37:43 +00:00
" CamelCase " ,
2020-02-05 02:06:34 +00:00
] . iter ( ) . map ( ToString ::to_string ) . collect ( ) ) ,
2016-02-22 13:25:51 +00:00
/// Lint: TOO_MANY_ARGUMENTS. The maximum number of argument a function or method can have
2021-04-28 02:04:06 +00:00
( too_many_arguments_threshold : u64 = 7 ) ,
2016-02-22 13:25:51 +00:00
/// Lint: TYPE_COMPLEXITY. The maximum complexity a type can have
2021-04-28 02:04:06 +00:00
( type_complexity_threshold : u64 = 250 ) ,
2016-03-14 13:56:44 +00:00
/// Lint: MANY_SINGLE_CHAR_NAMES. The maximum number of single char bindings a scope may have
2021-04-28 02:04:06 +00:00
( single_char_binding_names_threshold : u64 = 4 ) ,
2020-08-14 12:13:35 +00:00
/// Lint: BOXED_LOCAL, USELESS_VEC. The maximum size of objects (in bytes) that will be linted. Larger objects are ok on the heap
2021-04-28 02:04:06 +00:00
( too_large_for_stack : u64 = 200 ) ,
2016-08-06 18:59:27 +00:00
/// Lint: ENUM_VARIANT_NAMES. The minimum number of enum variants for the lints about variant names to trigger
2021-04-28 02:04:06 +00:00
( enum_variant_name_threshold : u64 = 3 ) ,
2018-12-07 11:24:59 +00:00
/// Lint: LARGE_ENUM_VARIANT. The maximum size of a enum's variant to avoid box suggestion
2021-04-28 02:04:06 +00:00
( enum_variant_size_threshold : u64 = 200 ) ,
2017-09-26 15:54:08 +00:00
/// Lint: VERBOSE_BIT_MASK. The maximum allowed size of a bit mask before suggesting to use 'trailing_zeros'
2021-04-28 02:04:06 +00:00
( verbose_bit_mask_threshold : u64 = 1 ) ,
2018-01-23 14:29:31 +00:00
/// Lint: DECIMAL_LITERAL_REPRESENTATION. The lower bound for linting decimal literals
2021-04-28 02:04:06 +00:00
( literal_representation_threshold : u64 = 16384 ) ,
2018-05-27 14:04:45 +00:00
/// Lint: TRIVIALLY_COPY_PASS_BY_REF. The maximum size (in bytes) to consider a `Copy` type for passing by value instead of by reference.
2021-05-02 22:50:22 +00:00
( trivial_copy_size_limit : Option < u64 > = None ) ,
2020-10-08 05:17:32 +00:00
/// Lint: LARGE_TYPE_PASS_BY_MOVE. The minimum size (in bytes) to consider a type for passing by reference instead of by value.
2021-04-28 02:04:06 +00:00
( pass_by_value_size_limit : u64 = 256 ) ,
2019-01-13 15:19:02 +00:00
/// Lint: TOO_MANY_LINES. The maximum number of lines a function or method can have
2021-04-28 02:04:06 +00:00
( too_many_lines_threshold : u64 = 100 ) ,
2020-03-23 21:07:46 +00:00
/// Lint: LARGE_STACK_ARRAYS, LARGE_CONST_ARRAYS. The maximum allowed size for arrays on the stack
2021-04-28 02:04:06 +00:00
( array_size_threshold : u64 = 512_000 ) ,
2020-01-23 14:52:41 +00:00
/// Lint: VEC_BOX. The size of the boxed type in bytes, where boxing in a `Vec` is allowed
2021-04-28 02:04:06 +00:00
( vec_box_size_threshold : u64 = 4096 ) ,
2020-07-14 12:59:59 +00:00
/// Lint: TYPE_REPETITION_IN_BOUNDS. The maximum number of bounds a trait can have to be linted
2021-04-28 02:04:06 +00:00
( max_trait_bounds : u64 = 3 ) ,
2021-05-30 21:58:32 +00:00
/// Lint: STRUCT_EXCESSIVE_BOOLS. The maximum number of bool fields a struct can have
2021-04-28 02:04:06 +00:00
( max_struct_bools : u64 = 3 ) ,
2021-05-30 21:58:32 +00:00
/// Lint: FN_PARAMS_EXCESSIVE_BOOLS. The maximum number of bool parameters a function can have
2021-04-28 02:04:06 +00:00
( max_fn_params_bools : u64 = 3 ) ,
2020-05-11 18:23:47 +00:00
/// Lint: WILDCARD_IMPORTS. Whether to allow certain wildcard imports (prelude, super in tests).
2021-05-02 22:50:22 +00:00
( warn_on_all_wildcard_imports : bool = false ) ,
2021-01-30 06:18:56 +00:00
/// Lint: DISALLOWED_METHOD. The list of disallowed methods, written as fully qualified paths.
2021-05-02 22:50:22 +00:00
( disallowed_methods : Vec < String > = Vec ::new ( ) ) ,
2021-06-02 11:20:45 +00:00
/// Lint: DISALLOWED_TYPE. The list of disallowed types, written as fully qualified paths.
( disallowed_types : Vec < String > = Vec ::new ( ) ) ,
2020-12-04 21:26:47 +00:00
/// Lint: UNREADABLE_LITERAL. Should the fraction of a decimal be linted to include separators.
2021-04-28 02:04:06 +00:00
( unreadable_literal_lint_fractions : bool = true ) ,
2021-02-24 23:10:06 +00:00
/// Lint: UPPER_CASE_ACRONYMS. Enables verbose mode. Triggers if there is more than one uppercase char next to each other
2021-05-02 22:50:22 +00:00
( upper_case_acronyms_aggressive : bool = false ) ,
2021-02-06 15:51:51 +00:00
/// Lint: _CARGO_COMMON_METADATA. For internal testing only, ignores the current `publish` settings in the Cargo manifest.
2021-05-02 22:50:22 +00:00
( cargo_ignore_publish : bool = false ) ,
2021-05-30 21:58:32 +00:00
/// Lint: NONSTANDARD_MACRO_BRACES. Enforce the named macros always use the braces specified.
///
/// A `MacroMatcher` can be added like so `{ name = "macro_name", brace = "(" }`.
/// If the macro is could be used with a full path two `MacroMatcher`s have to be added one
/// with the full path `crate_name::macro_name` and one with just the macro name.
( standard_macro_braces : Vec < crate ::nonstandard_macro_braces ::MacroMatcher > = Vec ::new ( ) ) ,
2018-09-03 21:12:50 +00:00
}
2016-10-25 17:41:24 +00:00
/// Search for the configuration file.
2020-02-05 02:06:34 +00:00
pub fn lookup_conf_file ( ) -> io ::Result < Option < PathBuf > > {
2016-10-25 17:41:24 +00:00
/// Possible filename to search for.
2017-10-20 12:41:24 +00:00
const CONFIG_FILE_NAMES : [ & str ; 2 ] = [ " .clippy.toml " , " clippy.toml " ] ;
2016-10-25 17:41:24 +00:00
2019-01-27 00:11:30 +00:00
// Start looking for a config file in CLIPPY_CONF_DIR, or failing that, CARGO_MANIFEST_DIR.
// If neither of those exist, use ".".
2020-02-05 02:06:34 +00:00
let mut current = env ::var_os ( " CLIPPY_CONF_DIR " )
. or_else ( | | env ::var_os ( " CARGO_MANIFEST_DIR " ) )
. map_or_else ( | | PathBuf ::from ( " . " ) , PathBuf ::from ) ;
2016-10-25 17:41:24 +00:00
loop {
for config_file_name in & CONFIG_FILE_NAMES {
2021-05-07 17:07:59 +00:00
if let Ok ( config_file ) = current . join ( config_file_name ) . canonicalize ( ) {
match fs ::metadata ( & config_file ) {
Err ( e ) if e . kind ( ) = = io ::ErrorKind ::NotFound = > { } ,
Err ( e ) = > return Err ( e ) ,
Ok ( md ) if md . is_dir ( ) = > { } ,
Ok ( _ ) = > return Ok ( Some ( config_file ) ) ,
}
2016-10-25 17:41:24 +00:00
}
}
// If the current directory has no parent, we're done searching.
if ! current . pop ( ) {
return Ok ( None ) ;
}
}
}
/// Read the `toml` configuration file.
///
2016-03-06 14:48:56 +00:00
/// In case of error, the function tries to continue as much as possible.
2021-04-28 02:04:06 +00:00
pub fn read ( path : & Path ) -> TryConf {
2020-02-05 02:06:34 +00:00
let content = match fs ::read_to_string ( path ) {
2021-04-28 02:04:06 +00:00
Err ( e ) = > return TryConf ::from_error ( e ) ,
2020-02-05 02:06:34 +00:00
Ok ( content ) = > content ,
2016-02-21 19:11:32 +00:00
} ;
2021-04-28 02:04:06 +00:00
toml ::from_str ( & content ) . unwrap_or_else ( TryConf ::from_error )
2016-02-21 19:11:32 +00:00
}