use super::*;
use std::collections::HashSet;
use full_moon::ast::Ast;
use regex::Regex;
use serde::Deserialize;
fn is_global(name: &str, roblox: bool) -> bool {
(roblox && name == "shared") || name == "_G"
}
#[derive(Clone, Default, Deserialize)]
#[serde(default)]
pub struct GlobalConfig {
ignore_pattern: Option<String>,
}
pub struct GlobalLint {
ignore_pattern: Option<Regex>,
}
impl Lint for GlobalLint {
type Config = GlobalConfig;
type Error = regex::Error;
const SEVERITY: Severity = Severity::Warning;
const LINT_TYPE: LintType = LintType::Complexity;
fn new(config: Self::Config) -> Result<Self, Self::Error> {
Ok(GlobalLint {
ignore_pattern: config
.ignore_pattern
.map(|ignore_pattern| Regex::new(&ignore_pattern))
.transpose()?,
})
}
fn pass(&self, _: &Ast, context: &Context, ast_context: &AstContext) -> Vec<Diagnostic> {
let mut checked = HashSet::new();
ast_context
.scope_manager
.references
.iter()
.filter(|(_, reference)| {
if !checked.contains(&reference.identifier) {
checked.insert(reference.identifier);
let matches_ignore_pattern = match &self.ignore_pattern {
Some(ignore_pattern) => match reference
.indexing
.as_ref()
.and_then(|indexing| indexing.first())
.and_then(|index_entry| index_entry.static_name.as_ref())
{
Some(name) => ignore_pattern
.is_match(name.to_string().trim_end_matches(char::is_whitespace)),
None => false,
},
None => false,
};
is_global(&reference.name, context.is_roblox())
&& !matches_ignore_pattern
&& reference.resolved.is_none()
} else {
false
}
})
.map(|(_, reference)| {
Diagnostic::new(
"global_usage",
format!(
"use of `{}` is not allowed, structure your code in a more idiomatic way",
reference.name
),
Label::new(reference.identifier),
)
})
.collect()
}
}
#[cfg(test)]
mod tests {
use super::{super::test_util::test_lint, *};
#[test]
fn test_global_usage() {
test_lint(
GlobalLint::new(GlobalConfig::default()).unwrap(),
"global_usage",
"global_usage",
);
}
#[test]
fn test_invalid_regex() {
assert!(GlobalLint::new(GlobalConfig {
ignore_pattern: Some("(".to_owned()),
})
.is_err());
}
#[test]
fn test_global_usage_ignore() {
test_lint(
GlobalLint::new(GlobalConfig {
ignore_pattern: Some("^_.*_$".to_owned()),
})
.unwrap(),
"global_usage",
"global_usage_ignore",
);
}
}