forked from obi1kenobi/cargo-semver-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rs
351 lines (319 loc) · 11.8 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
#![forbid(unsafe_code)]
use std::path::PathBuf;
use cargo_semver_checks::{
GlobalConfig, PackageSelection, ReleaseType, Rustdoc, ScopeSelection, SemverQuery,
};
use clap::{Args, Parser, Subcommand};
fn main() -> anyhow::Result<()> {
human_panic::setup_panic!();
let Cargo::SemverChecks(args) = Cargo::parse();
if args.bugreport {
use bugreport::{bugreport, collector::*, format::Markdown};
bugreport!()
.info(SoftwareVersion::default())
.info(OperatingSystem::default())
.info(CommandLine::default())
.info(CommandOutput::new("cargo version", "cargo", &["-V"]))
.info(CompileTimeInformation::default())
.print::<Markdown>();
std::process::exit(0);
} else if args.list {
let queries = SemverQuery::all_queries();
let mut rows = vec![["id", "type", "description"], ["==", "====", "==========="]];
for query in queries.values() {
rows.push([
query.id.as_str(),
query.required_update.as_str(),
query.description.as_str(),
]);
}
let mut widths = [0; 3];
for row in &rows {
widths[0] = widths[0].max(row[0].len());
widths[1] = widths[1].max(row[1].len());
widths[2] = widths[2].max(row[2].len());
}
let stdout = std::io::stdout();
let mut stdout = stdout.lock();
for row in rows {
use std::io::Write;
writeln!(
stdout,
"{0:<1$} {2:<3$} {4:<5$}",
row[0], widths[0], row[1], widths[1], row[2], widths[2]
)?;
}
let mut config = GlobalConfig::new().set_level(args.check_release.verbosity.log_level());
config.shell_note("Use `--explain <id>` to see more details")?;
std::process::exit(0);
} else if let Some(id) = args.explain.as_deref() {
let queries = SemverQuery::all_queries();
let query = queries.get(id).ok_or_else(|| {
let ids = queries.keys().cloned().collect::<Vec<_>>();
anyhow::format_err!(
"Unknown id `{}`, available id's:\n {}",
id,
ids.join("\n ")
)
})?;
println!(
"{}",
query
.reference
.as_deref()
.unwrap_or(query.description.as_str())
);
if let Some(link) = &query.reference_link {
println!();
println!("See also {link}");
}
std::process::exit(0);
}
let check: cargo_semver_checks::Check = match args.command {
Some(SemverChecksCommands::CheckRelease(args)) => args.into(),
None => args.check_release.into(),
};
let report = check.check_release()?;
if report.success() {
std::process::exit(0);
} else {
std::process::exit(1);
}
}
#[derive(Debug, Parser)]
#[command(name = "cargo")]
#[command(bin_name = "cargo")]
#[command(version, propagate_version = true)]
enum Cargo {
SemverChecks(SemverChecks),
}
#[derive(Debug, Args)]
#[command(args_conflicts_with_subcommands = true)]
struct SemverChecks {
#[arg(long, global = true, exclusive = true)]
bugreport: bool,
#[arg(long, global = true, exclusive = true)]
explain: Option<String>,
#[arg(long, global = true, exclusive = true)]
list: bool,
#[clap(flatten)]
check_release: CheckRelease,
#[command(subcommand)]
command: Option<SemverChecksCommands>,
}
/// Check your crate for semver violations.
#[derive(Debug, Subcommand)]
enum SemverChecksCommands {
#[command(alias = "diff-files")]
CheckRelease(CheckRelease),
}
#[derive(Debug, Args)]
struct CheckRelease {
#[command(flatten, next_help_heading = "Current")]
pub manifest: clap_cargo::Manifest,
#[command(flatten, next_help_heading = "Current")]
pub workspace: clap_cargo::Workspace,
/// The current rustdoc json output to test for semver violations.
#[arg(
long,
short_alias = 'c',
alias = "current",
value_name = "JSON_PATH",
help_heading = "Current",
requires = "baseline_rustdoc",
conflicts_with_all = [
"default_features",
"only_explicit_features",
"features",
"baseline_features",
"current_features",
"all_features",
]
)]
current_rustdoc: Option<PathBuf>,
/// Version from registry to lookup for a baseline
#[arg(
long,
value_name = "X.Y.Z",
help_heading = "Baseline",
group = "baseline"
)]
baseline_version: Option<String>,
/// Git revision to lookup for a baseline
#[arg(
long,
value_name = "REV",
help_heading = "Baseline",
group = "baseline"
)]
baseline_rev: Option<String>,
/// Directory containing baseline crate source
#[arg(
long,
value_name = "MANIFEST_ROOT",
help_heading = "Baseline",
group = "baseline"
)]
baseline_root: Option<PathBuf>,
/// The rustdoc json file to use as a semver baseline.
#[arg(
long,
short_alias = 'b',
alias = "baseline",
value_name = "JSON_PATH",
help_heading = "Baseline",
group = "baseline",
conflicts_with_all = [
"default_features",
"only_explicit_features",
"features",
"baseline_features",
"current_features",
"all_features",
]
)]
baseline_rustdoc: Option<PathBuf>,
/// Sets the release type instead of deriving it from the version number.
#[arg(
value_enum,
long,
value_name = "TYPE",
help_heading = "Overrides",
group = "overrides"
)]
release_type: Option<ReleaseType>,
/// Use only the crate-defined default features, as well as any features
/// added explicitly via other flags.
///
/// Using this flag disables the heuristic that enables all features
/// except `unstable`, `nightly`, `bench`, `no_std`, and ones starting with `__`.
#[arg(
long,
help_heading = "Features",
conflicts_with = "only_explicit_features"
)]
default_features: bool,
/// Use no features except ones explicitly added by other flags.
///
/// Using this flag disables the heuristic that enables all features
/// except `unstable`, `nightly`, `bench`, `no_std`, and ones starting with `__`.
#[arg(long, help_heading = "Features")]
only_explicit_features: bool,
/// Add a feature to the set of features being checked.
/// The feature will be used in both the baseline and the current version
/// of the crate.
#[arg(long, value_name = "NAME", help_heading = "Features")]
features: Vec<String>,
/// Add a feature to the set of features being checked.
/// The feature will be used in the baseline version of the crate only.
#[arg(long, value_name = "NAME", help_heading = "Features")]
baseline_features: Vec<String>,
/// Add a feature to the set of features being checked.
/// The feature will be used in the current version of the crate only.
#[arg(long, value_name = "NAME", help_heading = "Features")]
current_features: Vec<String>,
/// Use all the features, including features named
/// `unstable`, `nightly`, `bench`, `no_std` or starting with `__`,
/// that are otherwise disabled by default.
#[arg(
long,
help_heading = "Features",
conflicts_with_all = [
"default_features",
"only_explicit_features",
"features",
"baseline_features",
"current_features",
]
)]
all_features: bool,
#[command(flatten)]
verbosity: clap_verbosity_flag::Verbosity<clap_verbosity_flag::InfoLevel>,
}
impl From<CheckRelease> for cargo_semver_checks::Check {
fn from(value: CheckRelease) -> Self {
let (current, current_project_root) = if let Some(current_rustdoc) = value.current_rustdoc {
(Rustdoc::from_path(current_rustdoc), None)
} else if let Some(manifest) = value.manifest.manifest_path {
let project_root = if manifest.is_dir() {
manifest
} else {
manifest
.parent()
.expect("manifest path doesn't have a parent")
.to_path_buf()
};
(Rustdoc::from_root(&project_root), Some(project_root))
} else {
let project_root = std::env::current_dir().expect("can't determine current directory");
(Rustdoc::from_root(&project_root), Some(project_root))
};
let mut check = Self::new(current);
if value.workspace.all || value.workspace.workspace {
// Specified explicit `--workspace` or `--all`.
let mut selection = PackageSelection::new(ScopeSelection::Workspace);
selection.with_excluded_packages(value.workspace.exclude);
check.with_package_selection(selection);
} else if !value.workspace.package.is_empty() {
// Specified explicit `--package`.
check.with_packages(value.workspace.package);
} else if !value.workspace.exclude.is_empty() {
// Specified `--exclude` without `--workspace/--all`.
// Leave the scope selection to the default ("workspace if the manifest is a workspace")
// while excluding any specified packages.
let mut selection = PackageSelection::new(ScopeSelection::DefaultMembers);
selection.with_excluded_packages(value.workspace.exclude);
check.with_package_selection(selection);
}
let custom_baseline = {
if let Some(baseline_version) = value.baseline_version {
Some(Rustdoc::from_registry(baseline_version))
} else if let Some(baseline_rev) = value.baseline_rev {
let root = if let Some(baseline_root) = value.baseline_root {
baseline_root
} else if let Some(current_root) = current_project_root {
current_root
} else {
std::env::current_dir().expect("can't determine current directory")
};
Some(Rustdoc::from_git_revision(root, baseline_rev))
} else if let Some(baseline_rustdoc) = value.baseline_rustdoc {
Some(Rustdoc::from_path(baseline_rustdoc))
} else {
// Either there's a manually-set baseline root path, or fall through
// to the default behavior.
value.baseline_root.map(Rustdoc::from_root)
}
};
if let Some(baseline) = custom_baseline {
check.with_baseline(baseline);
}
if let Some(log_level) = value.verbosity.log_level() {
check.with_log_level(log_level);
}
if let Some(release_type) = value.release_type {
check.with_release_type(release_type);
}
if value.all_features {
check.with_all_features();
} else if value.default_features {
check.with_default_features();
} else if value.only_explicit_features {
check.with_only_explicit_features();
} else {
check.with_heuristically_included_features();
}
let mut mutual_features = value.features;
let mut current_features = value.current_features;
let mut baseline_features = value.baseline_features;
current_features.append(&mut mutual_features.clone());
baseline_features.append(&mut mutual_features);
check.with_extra_features(current_features, baseline_features);
check
}
}
#[test]
fn verify_cli() {
use clap::CommandFactory;
Cargo::command().debug_assert()
}