Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Roact dangling connection lint #533

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fd551de
Add roact dangling connection lint
chriscerie Jun 26, 2023
1fd05c1
Update docs and changelog
chriscerie Jun 26, 2023
bfd8a04
Fix scope_manager.function_calls missing method names
chriscerie Jun 28, 2023
d5e2123
Use scope manager to get dangling connections
chriscerie Jun 28, 2023
e3ba026
Fix non-exhaustive pattern
chriscerie Jun 28, 2023
b5e290e
Merge branch 'main' into roact_dangling_connection
chriscerie Aug 17, 2023
959d019
Change match to if let
chriscerie Aug 19, 2023
96408af
Merge branch 'main' of https://github.com/Kampfkarren/selene into roa…
chriscerie Aug 27, 2023
7e43d84
Require react prefix to useEffect to display useEffect error
chriscerie Aug 27, 2023
809aa6d
Merge branch 'main' into roact_dangling_connection
chriscerie Sep 20, 2023
fd071d1
Merge branch 'main' into roact_dangling_connection
chriscerie Oct 9, 2023
78ba6a7
Merge branch 'main' into roact_dangling_connection
chriscerie Oct 21, 2023
4bb9701
Merge branch 'main' into roact_dangling_connection
chriscerie Oct 26, 2023
23aa26f
Test
chriscerie Nov 4, 2023
c23ba11
Test
chriscerie Nov 4, 2023
786de0b
Test
chriscerie Nov 4, 2023
4d26ab3
Test
chriscerie Nov 4, 2023
fc5c2f5
Merge branch 'main' into roact_dangling_connection
chriscerie Nov 8, 2023
a0d53df
Merge branch 'main' of https://github.com/Kampfkarren/selene
chriscerie Nov 9, 2023
c91e195
Merge branch 'main' into roact_dangling_connection
chriscerie Nov 10, 2023
98176b5
Merge branch 'main' of https://github.com/Kampfkarren/selene
chriscerie Nov 11, 2023
807c4a8
Merge branch 'main' of https://github.com/chriscerie/selene into roac…
chriscerie Nov 11, 2023
8f66ac0
Fix test
chriscerie Nov 11, 2023
b5dff3b
Remove file
chriscerie Nov 11, 2023
e3d680a
Remove change
chriscerie Nov 11, 2023
a1c0bcd
Fix clippy
chriscerie Nov 11, 2023
51a7d1c
Merge branch 'main' of https://github.com/Kampfkarren/selene into roa…
chriscerie Jan 7, 2024
3008199
Only warn in useEffect
chriscerie Jan 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/Kampfkarren/selene/compare/0.26.1...HEAD)
### Added
- Added new [`roblox_roact_dangling_connection`](https://kampfkarren.github.io/selene/lints/roblox_roact_dangling_connection.html), which will check for connections made in components without getting cleaned up.

## [0.26.1](https://github.com/Kampfkarren/selene/releases/tag/0.26.1) - 2023-11-11
### Fixed
Expand Down
1 change: 1 addition & 0 deletions docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
- [parenthese_conditions](./lints/parenthese_conditions.md)
- [roblox_incorrect_color3_new_bounds](./lints/roblox_incorrect_color3_new_bounds.md)
- [roblox_incorrect_roact_usage](./lints/roblox_incorrect_roact_usage.md)
- [roblox_roact_dangling_connection](./lints/roblox_roact_dangling_connection.md)
- [roblox_suspicious_udim2_new](./lints/roblox_suspicious_udim2_new.md)
- [shadowing](./lints/shadowing.md)
- [suspicious_reverse_loop](./lints/suspicious_reverse_loop.md)
Expand Down
24 changes: 24 additions & 0 deletions docs/src/lints/roblox_roact_dangling_connection.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# roblox_roact_dangling_connection
## What it does
Checks for connections in Roact components that are either not assigned to a variable or passed as arguments.

## Why this is bad
This indicates a memory leak and can cause unexpected behaviors.

## Example
```lua
local function MyComponent()
useEffect(function()
a:Connect()
end, {})
end
```

## Remarks
This lint is active if the file has a variable named `Roact` or `React` and that the connection is made within a function.

This checks for connections by identifying the following keywords:
* Connect
* connect
* ConnectParallel
* Once
6 changes: 5 additions & 1 deletion selene-lib/src/ast_util/scopes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,11 @@ fn get_name_path_from_call(call: &ast::FunctionCall) -> Option<Vec<String>> {
return None;
}

ast::Suffix::Call(_) => {
ast::Suffix::Call(call) => {
if let ast::Call::MethodCall(method_call) = call {
path.push(method_call.name().token().to_string());
}

if index + 1 == length {
return Some(path);
} else {
Expand Down
1 change: 1 addition & 0 deletions selene-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ use_lints! {
{
roblox_incorrect_color3_new_bounds: lints::roblox_incorrect_color3_new_bounds::Color3BoundsLint,
roblox_incorrect_roact_usage: lints::roblox_incorrect_roact_usage::IncorrectRoactUsageLint,
roblox_roact_dangling_connection: lints::roblox_roact_dangling_connection::RoactDanglingConnectionLint,
roblox_suspicious_udim2_new: lints::roblox_suspicious_udim2_new::SuspiciousUDim2NewLint,
},
}
3 changes: 3 additions & 0 deletions selene-lib/src/lints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ pub mod roblox_incorrect_color3_new_bounds;
#[cfg(feature = "roblox")]
pub mod roblox_incorrect_roact_usage;

#[cfg(feature = "roblox")]
pub mod roblox_roact_dangling_connection;

#[cfg(feature = "roblox")]
pub mod roblox_suspicious_udim2_new;

Expand Down
274 changes: 274 additions & 0 deletions selene-lib/src/lints/roblox_roact_dangling_connection.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,274 @@
use super::{AstContext, Context, Diagnostic, Label, Lint, LintType, Node, Severity};
use crate::ast_util::range;
use std::{collections::HashSet, convert::Infallible};

use full_moon::{
ast::{self, Ast},
visitors::Visitor,
};

pub struct RoactDanglingConnectionLint;

impl Lint for RoactDanglingConnectionLint {
type Config = ();
type Error = Infallible;

const SEVERITY: Severity = Severity::Error;
const LINT_TYPE: LintType = LintType::Correctness;

fn new((): Self::Config) -> Result<Self, Self::Error> {
Ok(Self)
}

fn pass(
&self,
ast: &Ast,
context: &Context,
AstContext { scope_manager, .. }: &AstContext,
) -> Vec<Diagnostic> {
if !context.is_roblox() {
return Vec::new();
}

if scope_manager.variables.iter().all(|(_, variable)| {
!["Roact", "React"].contains(&variable.name.trim_end_matches(char::is_whitespace))
}) {
return Vec::new();
}

let mut visitor = RoactDanglingConnectionVisitor {
dangling_connections: Vec::new(),
dangling_connection_start_ranges: scope_manager
.function_calls
.iter()
.filter_map(|(_, function_call_stmt)| {
function_call_stmt
.call_name_path
.last()
.and_then(|last_name| {
["Connect", "connect", "ConnectParallel", "Once"]
.contains(&last_name.as_str())
.then_some(function_call_stmt.call_prefix_range.0)
})
})
.collect(),
function_contexts: Vec::new(),
definitions_of_roact_functions: HashSet::new(),
};

visitor.visit_ast(ast);

let mut diagnostics = Vec::new();

for invalid_event in visitor.dangling_connections {
if let ConnectionContext::UseEffect = invalid_event.function_context {
diagnostics.push(Diagnostic::new(
"roblox_roact_dangling_connection",
"disconnect the connection in the useEffect cleanup function".to_owned(),
Label::new(invalid_event.range),
));
} else {
diagnostics.push(Diagnostic::new(
"roblox_roact_dangling_connection",
"disconnect the connection where appropriate".to_owned(),
Label::new(invalid_event.range),
));
}
}

diagnostics
}
}

fn get_last_function_call_suffix(prefix: &ast::Prefix, suffixes: &[&ast::Suffix]) -> String {
let last_suffix = match suffixes.last() {
Some(ast::Suffix::Call(ast::Call::MethodCall(_))) => suffixes.last(),
Some(ast::Suffix::Call(ast::Call::AnonymousCall(_))) => {
if suffixes.len() == 1 {
// a()
return if let ast::Prefix::Name(name) = prefix {
name.token().to_string()
} else {
String::new()
};
} else {
// In a.b(), b is the suffix before the last one
Some(&suffixes[suffixes.len() - 2])
}
}
_ => return String::new(),
};

last_suffix
.map(|suffix| match suffix {
ast::Suffix::Index(ast::Index::Dot { name, .. }) => name.token().to_string(),
ast::Suffix::Call(ast::Call::MethodCall(method_call)) => {
method_call.name().token().to_string()
}
ast::Suffix::Call(ast::Call::AnonymousCall(anonymous_call)) => {
anonymous_call.to_string()
}
_ => String::new(),
})
.unwrap_or_default()
}

#[derive(Debug, PartialEq, Clone, Copy)]
enum ConnectionContext {
Unknown,
UseEffect,
}

#[derive(Debug, PartialEq, Clone, Copy)]
enum ConnectionContextType {
FunctionBody,
FunctionCall,
}

#[derive(Debug)]
struct RoactDanglingConnectionVisitor {
dangling_connections: Vec<DanglingConnection>,
dangling_connection_start_ranges: HashSet<usize>,
function_contexts: Vec<(ConnectionContextType, ConnectionContext)>,
definitions_of_roact_functions: HashSet<String>,
}

#[derive(Debug)]
struct DanglingConnection {
range: (usize, usize),
function_context: ConnectionContext,
}

fn get_last_known_context(
function_contexts: &[(ConnectionContextType, ConnectionContext)],
) -> ConnectionContext {
match function_contexts
.iter()
.rev()
.find(|(_, connection_type)| *connection_type != ConnectionContext::Unknown)
{
Some(context) => context.1,
None => ConnectionContext::Unknown,
}
}

fn is_roact_function(prefix: &ast::Prefix) -> bool {
if let ast::Prefix::Name(prefix_token) = prefix {
["roact", "react", "hooks"]
.contains(&prefix_token.token().to_string().to_lowercase().as_str())
} else {
false
}
}

impl Visitor for RoactDanglingConnectionVisitor {
fn visit_function_call(&mut self, call: &ast::FunctionCall) {
let last_suffix =
get_last_function_call_suffix(call.prefix(), &call.suffixes().collect::<Vec<_>>());

// Only warn in useEffect to prevent false negatives with unrelated functions. Ideally this should also work anywhere
// in the component body. Can we detect React components better?
if self
.function_contexts
.iter()
.any(|(_, context)| *context == ConnectionContext::UseEffect)
{
if let Some(call_range) = call.range() {
if self
.dangling_connection_start_ranges
.contains(&call_range.0.bytes())
{
self.dangling_connections.push(DanglingConnection {
range: range(call),
function_context: get_last_known_context(&self.function_contexts),
});
}
}
}

// Check if caller is Roact.<function> or a variable defined to it
let mut suffixes = call.suffixes().collect::<Vec<_>>();
suffixes.pop();

let mut is_this_roact_function = false;

if suffixes.is_empty() {
// Call is foo(), not foo.bar()
if let ast::Prefix::Name(name) = call.prefix() {
is_this_roact_function = self
.definitions_of_roact_functions
.get(&name.token().to_string())
.is_some();
}
} else if suffixes.len() == 1 {
// Call is foo.bar()
is_this_roact_function = is_roact_function(call.prefix());
}

self.function_contexts.push((
ConnectionContextType::FunctionCall,
match last_suffix.as_str() {
"useEffect" if is_this_roact_function => ConnectionContext::UseEffect,
_ => ConnectionContext::Unknown,
},
));
}

fn visit_function_call_end(&mut self, _: &ast::FunctionCall) {
self.function_contexts.pop();
}

fn visit_function_body(&mut self, _: &ast::FunctionBody) {
self.function_contexts.push((
ConnectionContextType::FunctionBody,
ConnectionContext::Unknown,
));
}

fn visit_function_body_end(&mut self, _: &ast::FunctionBody) {
self.function_contexts.pop();
}

fn visit_local_assignment(&mut self, node: &ast::LocalAssignment) {
for (name, expr) in node.names().iter().zip(node.expressions().iter()) {
if let ast::Expression::Var(ast::Var::Expression(var_expr)) = expr {
if is_roact_function(var_expr.prefix()) {
self.definitions_of_roact_functions
.insert(name.token().to_string());
}
}
}
}
}

#[cfg(test)]
mod tests {
use super::{super::test_util::test_lint, *};

#[test]
fn test_no_roact() {
test_lint(
RoactDanglingConnectionLint::new(()).unwrap(),
"roblox_roact_dangling_connection",
"no_roact",
);
}

#[test]
fn test_roblox_roact_dangling_connection() {
test_lint(
RoactDanglingConnectionLint::new(()).unwrap(),
"roblox_roact_dangling_connection",
"roblox_roact_dangling_connection",
);
}

#[test]
fn test_with_roact() {
test_lint(
RoactDanglingConnectionLint::new(()).unwrap(),
"roblox_roact_dangling_connection",
"with_roact",
);
}
}
Loading
Loading