fix-getters-rules

This package contains rules definitions for the fix-getters tools.

See the workspace documentation for more details on fix-getters.

Rules

The rules apply to:

Features

Function name rules

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.

General rules

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:

See RESERVED in function.rs.

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.

Functions returning exactly one bool

Get functions returning bool should usually use the form is_suffix, which when used in a condition reads natural: if event.is_serialized().

The following addtional rules are implemented.

First token substitutions

When the suffix starts with a verb, it's common to conjugate. E.g. for 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:

Special first tokens

Modal verbs should be kept unchanged and no is prefix should be used. E.g.:

This is also the case for already conjugated verbs. E.g.:

See BOOL_FIRST_TOKEN_NO_PREFIX in function.rs.

Exact suffix substitutions

In some cases, the semantic requires substitutions only if the whole suffix matches a value. E.g.:

See BOOL_EXACT_SUBSTITUTES in function.rs.

get_is prefix

Finally, the is prefix shouldn't be repeated when already present:

Detecting functions returning exactly one 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 as returning a bool. E.g.:

ReturnsBool is used to indicate the renaming functions current knowledge about whether the name corresponds to a function which returns exactly one bool. If this is unknown (e.g. when renaming get functions call sites), the user can pass ReturnsBool::Maybe.

LICENSE

This crate is licensed under either of

at your option.