Skip to content

Commit 13425b1

Browse files
committed
finish the beast
1 parent 1b1216f commit 13425b1

File tree

28 files changed

+369
-211
lines changed

28 files changed

+369
-211
lines changed

Cargo.lock

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pg_analyse/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ biome_deserialize_macros = { workspace = true, optional = true }
2424
enumflags2.workspace = true
2525
serde = { workspace = true, features = ["derive"], optional = true }
2626
text-size.workspace = true
27+
schemars = { workspace = true, optional = true }
2728

2829
[features]
29-
serde = ["dep:serde", "dep:biome_deserialize", "dep:biome_deserialize_macros"]
30+
serde = ["dep:serde", "dep:schemars", "dep:biome_deserialize", "dep:biome_deserialize_macros"]

crates/pg_analyse/src/categories.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,13 @@ impl schemars::JsonSchema for RuleCategories {
297297
}
298298
}
299299

300+
300301
#[derive(Debug, Default)]
301302
/// A convenient type create a [RuleCategories] type
302303
///
303304
/// ```
304-
/// use biome_analyze::{RuleCategoriesBuilder, RuleCategory};
305-
/// let mut categories = RuleCategoriesBuilder::default().with_syntax().with_lint().build();
305+
/// use pg_analyse::{RuleCategoriesBuilder, RuleCategory};
306+
/// let mut categories = RuleCategoriesBuilder::default().with_lint().build();
306307
///
307308
/// assert!(categories.contains(RuleCategory::Lint));
308309
/// assert!(!categories.contains(RuleCategory::Action));
@@ -328,6 +329,11 @@ impl RuleCategoriesBuilder {
328329
self
329330
}
330331

332+
pub fn all(mut self) -> Self {
333+
self.flags = BitFlags::all();
334+
self
335+
}
336+
331337
pub fn build(self) -> RuleCategories {
332338
RuleCategories(self.flags)
333339
}

crates/pg_analyse/src/context.rs

-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
use std::path::Path;
2-
31
use crate::{
42
categories::RuleCategory,
53
rule::{GroupCategory, Rule, RuleGroup, RuleMetadata},
64
};
75

86
pub struct RuleContext<'a, R: Rule> {
97
stmt: &'a pg_query_ext::NodeEnum,
10-
file_path: &'a Path,
118
options: &'a R::Options,
129
}
1310

@@ -18,12 +15,10 @@ where
1815
#[allow(clippy::too_many_arguments)]
1916
pub fn new(
2017
stmt: &'a pg_query_ext::NodeEnum,
21-
file_path: &'a Path,
2218
options: &'a R::Options,
2319
) -> Self {
2420
Self {
2521
stmt,
26-
file_path,
2722
options,
2823
}
2924
}
@@ -82,9 +77,4 @@ where
8277
pub fn options(&self) -> &R::Options {
8378
self.options
8479
}
85-
86-
/// The file path of the current file
87-
pub fn file_path(&self) -> &Path {
88-
self.file_path
89-
}
9080
}

crates/pg_analyse/src/diagnostics.rs

-148
This file was deleted.

crates/pg_analyse/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ pub use pg_diagnostics::category_concat;
1212
use registry::RegistryRuleParams;
1313

1414
pub use crate::categories::{
15-
ActionCategory, RefactorKind, RuleCategories, RuleCategoriesBuilder, RuleCategory,
16-
SourceActionKind, SUPPRESSION_ACTION_CATEGORY,
15+
ActionCategory, RefactorKind, RuleCategories, RuleCategory,
16+
SourceActionKind, SUPPRESSION_ACTION_CATEGORY, RuleCategoriesBuilder
1717
};
1818
pub use crate::filter::{AnalysisFilter, GroupKey, RuleFilter, RuleKey};
1919
pub use crate::options::{AnalyzerConfiguration, AnalyzerOptions, AnalyzerRules};
@@ -30,7 +30,7 @@ pub struct Analyzer<'analyzer> {
3030
}
3131

3232
pub struct AnalyzerContext<'a> {
33-
pub root: pg_query_ext::NodeEnum,
33+
pub root: &'a pg_query_ext::NodeEnum,
3434
pub options: &'a AnalyzerOptions,
3535
pub registry: RuleRegistry,
3636
}
@@ -43,7 +43,7 @@ impl<'analyzer> Analyzer<'analyzer> {
4343

4444
pub fn run(self, ctx: AnalyzerContext) -> Vec<RuleDiagnostic> {
4545
let params = RegistryRuleParams {
46-
root: &ctx.root,
46+
root: ctx.root,
4747
options: ctx.options,
4848
};
4949

crates/pg_analyse/src/macros.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use pg_diagnostics::Category;
2-
31
/// This macro is used to declare an analyzer rule type, and implement the
42
// [RuleMeta] trait for it
53
/// # Example

crates/pg_analyse/src/options.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use rustc_hash::FxHashMap;
33
use crate::{Rule, RuleKey};
44
use std::any::{Any, TypeId};
55
use std::fmt::Debug;
6-
use std::path::PathBuf;
76

87
/// A convenient new type data structure to store the options that belong to a rule
98
#[derive(Debug)]
@@ -43,7 +42,7 @@ impl AnalyzerRules {
4342
}
4443
}
4544

46-
/// A data structured derived from the `biome.json` file
45+
/// A data structured derived from the `pglsp.toml` file
4746
#[derive(Debug, Default)]
4847
pub struct AnalyzerConfiguration {
4948
/// A list of rules and their options
@@ -53,11 +52,8 @@ pub struct AnalyzerConfiguration {
5352
/// A set of information useful to the analyzer infrastructure
5453
#[derive(Debug, Default)]
5554
pub struct AnalyzerOptions {
56-
/// A data structured derived from the [`biome.json`] file
55+
/// A data structured derived from the [`pglsp.toml`] file
5756
pub configuration: AnalyzerConfiguration,
58-
59-
/// The file that is being analyzed
60-
pub file_path: PathBuf,
6157
}
6258

6359
impl AnalyzerOptions {

crates/pg_analyse/src/registry.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ impl RegistryRule {
174174
R: Rule<Options: Default> + 'static,
175175
{
176176
let options = params.options.rule_options::<R>().unwrap_or_default();
177-
let ctx = RuleContext::new(params.root, &params.options.file_path, &options);
177+
let ctx = RuleContext::new(params.root, &options);
178178
R::run(&ctx)
179179
}
180180

crates/pg_analyse/src/rule.rs

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ pub trait Rule: RuleMeta + Sized {
9595

9696
/// Diagnostic object returned by a single analysis rule
9797
#[derive(Debug, Diagnostic)]
98+
#[diagnostic(severity = Warning)]
9899
pub struct RuleDiagnostic {
99100
#[category]
100101
pub(crate) category: &'static Category,

crates/pg_cli/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ hdrhistogram = { version = "7.5.4", default-features = false }
2020
path-absolutize = { version = "3.1.1", optional = false, features = ["use_unix_paths_on_wasm"] }
2121
pg_configuration = { workspace = true }
2222
pg_console = { workspace = true }
23+
pg_analyse = { workspace = true }
2324
pg_diagnostics = { workspace = true }
2425
pg_flags = { workspace = true }
2526
pg_fs = { workspace = true }

crates/pg_cli/src/execute/process_file/check.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use pg_analyse::RuleCategoriesBuilder;
12
use pg_diagnostics::{category, Error};
23

34
use crate::execute::diagnostics::ResultExt;
@@ -24,10 +25,19 @@ pub(crate) fn check_with_guard<'ctx>(
2425
let input = workspace_file.input()?;
2526
let changed = false;
2627

28+
let (only, skip) = (Vec::new(), Vec::new());
29+
2730
let max_diagnostics = ctx.remaining_diagnostics.load(Ordering::Relaxed);
2831
let pull_diagnostics_result = workspace_file
2932
.guard()
30-
.pull_diagnostics(max_diagnostics)
33+
.pull_diagnostics(
34+
RuleCategoriesBuilder::default()
35+
.all()
36+
.build(),
37+
max_diagnostics,
38+
only,
39+
skip,
40+
)
3141
.with_file_path_and_code(
3242
workspace_file.path.display().to_string(),
3343
category!("check"),

crates/pg_configuration/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use crate::vcs::{partial_vcs_configuration, PartialVcsConfiguration, VcsConfigur
1919
pub use analyser::{
2020
partial_linter_configuration, LinterConfiguration, PartialLinterConfiguration,
2121
RuleConfiguration, RuleFixConfiguration, RulePlainConfiguration, RuleWithFixOptions,
22-
RuleWithOptions, Rules,
22+
RuleWithOptions, Rules, RuleSelector
2323
};
2424
use biome_deserialize_macros::Partial;
2525
use bpaf::Bpaf;

crates/pg_linter/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn lint(
2525
let analyser = pg_analyse::Analyzer::new(METADATA.deref());
2626

2727
analyser.run(pg_analyse::AnalyzerContext {
28-
root: root.clone(),
28+
root,
2929
options,
3030
registry,
3131
})

0 commit comments

Comments
 (0)