forge_lint/sol/info/
imports.rs

1use solar::{
2    ast::{self as ast, SourceUnit, Span, Symbol, visit::Visit},
3    data_structures::map::FxIndexSet,
4    interface::SourceMap,
5};
6use std::ops::ControlFlow;
7
8use super::Imports;
9use crate::{
10    linter::{EarlyLintPass, LintContext},
11    sol::{Severity, SolLint},
12};
13
14declare_forge_lint!(
15    UNUSED_IMPORT,
16    Severity::Info,
17    "unused-import",
18    "unused imports should be removed"
19);
20
21declare_forge_lint!(
22    UNALIASED_PLAIN_IMPORT,
23    Severity::Info,
24    "unaliased-plain-import",
25    "use named imports '{A, B}' or alias 'import \"..\" as X'"
26);
27
28impl<'ast> EarlyLintPass<'ast> for Imports {
29    fn check_import_directive(
30        &mut self,
31        ctx: &LintContext,
32        import: &'ast ast::ImportDirective<'ast>,
33    ) {
34        // Non-aliased plain imports like `import "File.sol";`.
35        if let ast::ImportItems::Plain(_) = &import.items
36            && import.source_alias().is_none()
37        {
38            ctx.emit(&UNALIASED_PLAIN_IMPORT, import.path.span);
39        }
40    }
41
42    fn check_full_source_unit(&mut self, ctx: &LintContext<'ast, '_>, ast: &'ast SourceUnit<'ast>) {
43        // Despite disabled lints are filtered inside `ctx.emit()`, we explicitly check
44        // upfront to avoid the expensive full source unit traversal when unnecessary.
45        if ctx.is_lint_enabled(UNUSED_IMPORT.id) {
46            let mut checker = UnusedChecker::new(ctx.session().source_map());
47            let _ = checker.visit_source_unit(ast);
48            checker.check_unused_imports(ast, ctx);
49            checker.clear();
50        }
51    }
52}
53
54/// Visitor that collects all used symbols in a source unit.
55struct UnusedChecker<'ast> {
56    used_symbols: FxIndexSet<Symbol>,
57    source_map: &'ast SourceMap,
58}
59
60impl<'ast> UnusedChecker<'ast> {
61    fn new(source_map: &'ast SourceMap) -> Self {
62        Self { source_map, used_symbols: Default::default() }
63    }
64
65    fn clear(&mut self) {
66        self.used_symbols.clear();
67    }
68
69    /// Mark a symbol as used in a source.
70    fn mark_symbol_used(&mut self, symbol: Symbol) {
71        self.used_symbols.insert(symbol);
72    }
73
74    /// Check for unused imports and emit warnings.
75    fn check_unused_imports(&self, ast: &SourceUnit<'_>, ctx: &LintContext) {
76        for item in ast.items.iter() {
77            let span = item.span;
78            let ast::ItemKind::Import(import) = &item.kind else { continue };
79            match &import.items {
80                ast::ImportItems::Plain(_) | ast::ImportItems::Glob(_) => {
81                    if let Some(alias) = import.source_alias()
82                        && !self.used_symbols.contains(&alias.name)
83                    {
84                        self.unused_import(ctx, span);
85                    }
86                }
87                ast::ImportItems::Aliases(symbols) => {
88                    for &(orig, alias) in symbols.iter() {
89                        let name = alias.unwrap_or(orig);
90                        if !self.used_symbols.contains(&name.name) {
91                            self.unused_import(ctx, orig.span.to(name.span));
92                        }
93                    }
94                }
95            }
96        }
97    }
98
99    fn unused_import(&self, ctx: &LintContext, span: Span) {
100        ctx.emit(&UNUSED_IMPORT, span);
101    }
102}
103
104impl<'ast> Visit<'ast> for UnusedChecker<'ast> {
105    type BreakValue = solar::data_structures::Never;
106
107    fn visit_item(&mut self, item: &'ast ast::Item<'ast>) -> ControlFlow<Self::BreakValue> {
108        if let ast::ItemKind::Import(_) = &item.kind {
109            return ControlFlow::Continue(());
110        }
111
112        self.walk_item(item)
113    }
114
115    fn visit_using_directive(
116        &mut self,
117        using: &'ast ast::UsingDirective<'ast>,
118    ) -> ControlFlow<Self::BreakValue> {
119        match &using.list {
120            ast::UsingList::Single(path) => {
121                self.mark_symbol_used(path.first().name);
122            }
123            ast::UsingList::Multiple(items) => {
124                for (path, _) in items.iter() {
125                    self.mark_symbol_used(path.first().name);
126                }
127            }
128        }
129
130        self.walk_using_directive(using)
131    }
132
133    fn visit_expr(&mut self, expr: &'ast ast::Expr<'ast>) -> ControlFlow<Self::BreakValue> {
134        if let ast::ExprKind::Ident(id) = expr.kind {
135            self.mark_symbol_used(id.name);
136        }
137
138        self.walk_expr(expr)
139    }
140
141    fn visit_path(&mut self, path: &'ast ast::PathSlice) -> ControlFlow<Self::BreakValue> {
142        for id in path.segments() {
143            self.mark_symbol_used(id.name);
144        }
145
146        self.walk_path(path)
147    }
148
149    fn visit_ty(&mut self, ty: &'ast ast::Type<'ast>) -> ControlFlow<Self::BreakValue> {
150        if let ast::TypeKind::Custom(path) = &ty.kind {
151            self.mark_symbol_used(path.first().name);
152        }
153
154        self.walk_ty(ty)
155    }
156
157    fn visit_doc_comment(
158        &mut self,
159        cmnt: &'ast solar::ast::DocComment,
160    ) -> ControlFlow<Self::BreakValue> {
161        if let Ok(snip) = self.source_map.span_to_snippet(cmnt.span) {
162            for line in snip.lines() {
163                if let Some((_, relevant)) = line.split_once("@inheritdoc") {
164                    self.mark_symbol_used(Symbol::intern(relevant.trim()));
165                }
166            }
167        }
168        ControlFlow::Continue(())
169    }
170}