Crates.io | fix-getters-rules |
lib.rs | fix-getters-rules |
version | 0.3.2 |
source | src |
created_at | 2021-04-11 12:51:19.305229 |
updated_at | 2021-05-31 09:46:22.782719 |
description | Fix get functions name by removing the get prefix when applicable |
homepage | |
repository | https://github.com/fengalin/fix-getters |
max_upload_size | |
id | 382008 |
size | 49,792 |
This package contains rules definitions for the fix-getters
tools.
See the workspace documentation
for more details on fix-getters
.
The rules
apply to:
feature
dir-entry
(enabled by default).dir-entry
— directory entry filtering rules. This features is enabled by
default. Use default-features = false
if your use case differs.The initial intent is to comply with Rust naming conventions for getter methods:
A method
foo(&self) -> &T
for getting the current value of the field.
These rules are based on the function name and knowledge of the return type.
See next chapter for get
functions returning exactly one bool
.
A get
function is considered eligible for get
prefix removal if:
The function starts with get_
.
The suffix is not a Rust keyword, which would result in invalid code.
E.g.: get_as
, get_false
, ... are kept as is.
The method would result inconsistent with other similar methods.
E.g.: a struct
Value
with a get_mut
method to get the underlying value
as a mutable reference, get_optional
to get the underlying value of a type
in the form Option<T>
and get_some
to get the underlying value of a type
for which the value is always defined.
See RESERVED
in function.rs
.
The suffix is not part of a subsitution list. This includes some Rust keywords.
E.g.: get_type
is replaced with type_
.
See EXACT_SUFFIX_SUBSTITUTES
in function.rs
.
Another rule is applied to homogenize functions names in the form
get_something_mut
. This rule renames both get_something_mut
and
get_mut_something
as something_mut
.
The fix-getters
tools also apply selective rules based on on the function
signature. See the dedicated chapter in this README
.
bool
Get functions returning bool
should usually use the form is_suffix
, which
reads natural when used in a condition. E.g.:
if event.is_serialized() {
...
}
The following additional rules are implemented.
When the suffix starts with a verb, it's common to conjugate. E.g.
get_emit_eos
-> if element.emits_eos()
.BOOL_FIRST_TOKEN_SUBSTITUTES
in function.rs
lists a set of verbs and the matching substitutions and also includes other
cases such as:
get_always_...
-> must_always_...
.get_focus
-> gets_focus
.Modal verbs should be kept unchanged and no is
prefix should be used. E.g.:
get_can_focus
-> can_focus
.get_must_...
-> must_...
.This is also the case for already conjugated verbs. E.g.:
get_has_...
-> has_...
.See BOOL_FIRST_TOKEN_NO_PREFIX
in function.rs
.
In some cases, the semantic requires substitutions only if the whole suffix matches a value. E.g.:
get_result
-> result
. Neither if a.is_result()
nor if a.results()
would be suitable.get_visibility
-> is_visible
Neither if a.is_visibility()
nor
if a.visibility()
) would be suitable.See BOOL_EXACT_SUBSTITUTES
in function.rs
.
Finally, the is
prefix shouldn't be repeated when already present:
get_is_active
-> is_active
.bool
The return type of Rust functions is usually not explicit. When renaming the
get
functions call sites (see fix-getters-calls
),
the returned type must be inferred. The rules described in previous chapter are
reversed when possible and an additional heuristic is used: when the first token
of the get
function suffix ends in able
, the function is considered to be
returning a bool
. E.g.:
get_seekable
-> is_seekable
.This crate is licensed under either of
at your option.