-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcli.cppm
More file actions
620 lines (592 loc) · 35.5 KB
/
Copy pathcli.cppm
File metadata and controls
620 lines (592 loc) · 35.5 KB
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
// mcpp.cli — top-level command dispatch (and nothing else).
//
// The cli layer only parses arguments and routes:
// mcpp.cli.cmd_build / cmd_new / cmd_registry / cmd_cache /
// mcpp.cli.cmd_toolchain / cmd_publish / cmd_self (parse + route)
// mcpp.pm.commands (add / remove / update)
// Domain logic lives in its owning subsystem: mcpp.build.{prepare,execute},
// mcpp.pm.index_management, mcpp.toolchain.lifecycle, mcpp.scaffold.create,
// mcpp.publish.pipeline, mcpp.pack.pipeline, mcpp.bmi_cache.maintenance, mcpp.doctor,
// mcpp.project, mcpp.fetcher.progress.
// See .agents/docs/2026-06-10-cli-modularization.md for the architecture.
module;
#include <cstdio>
#include <cstdlib>
export module mcpp.cli;
import std;
import mcpplibs.cmdline;
import mcpp.cli.cmd_build;
import mcpp.cli.cmd_cache;
import mcpp.cli.cmd_new;
import mcpp.cli.cmd_publish;
import mcpp.cli.cmd_xpkg;
import mcpp.cli.cmd_registry;
import mcpp.cli.cmd_self;
import mcpp.cli.cmd_toolchain;
import mcpp.pm.commands;
import mcpp.toolchain.fingerprint; // MCPP_VERSION
import mcpp.platform.env; // --offline → MCPP_OFFLINE
import mcpp.ui;
import mcpp.log;
export namespace mcpp::cli {
int run(int argc, char** argv);
} // namespace mcpp::cli
namespace mcpp::cli {
// Custom top-level help. cmdline's auto-generated `print_help` is a fine
// default but its layout (`USAGE:`, no command-specific blurbs) doesn't
// match what the e2e tests assert against — they check for `Usage:`
// (mixed case) plus `mcpp new` / `mcpp build` literals. We keep the
// canonical printer here so the docs/CHANGELOG examples don't drift
// every time cmdline tweaks its formatting.
void print_usage() {
std::println("mcpp v{} - modern C++23 build tool", mcpp::toolchain::MCPP_VERSION);
std::println("");
std::println("Usage:");
std::println("Project commands:");
std::println(" mcpp new <name> Create a new package skeleton");
std::println(" mcpp build [options] Build the current package");
std::println(" mcpp run [target] [-- args...] Build + run a binary target");
std::println(" mcpp test [pattern] [-- args...] Build + run tests/**/*.cpp (--list, --timeout, --build-timeout, --message-format json)");
std::println(" mcpp clean [--bmi-cache] Remove target/ (and optionally the build cache)");
std::println(" mcpp add <pkg>[@<ver>] Add a dependency to mcpp.toml");
std::println(" mcpp remove <pkg> Remove a dependency from mcpp.toml");
std::println(" mcpp update [pkg] Re-resolve deps and rewrite mcpp.lock");
std::println(" mcpp search <keyword> Search packages in registries");
std::println(" mcpp publish [--dry-run] Publish package to default registry");
std::println(" mcpp pack [--mode <m>] Build + bundle a tarball (m: system|vendored|self-contained|static)");
std::println(" mcpp emit xpkg [-V VER] [-o FILE] Generate xpkg Lua entry");
std::println(" mcpp xpkg parse <file.lua> [--json] Validate an xpkg descriptor (resolver grammar)");
std::println("");
std::println("Resource management:");
std::println(" mcpp toolchain install|list|default Manage mcpp's private toolchains");
std::println(" mcpp cache dir|list|info|gc|... Inspect/manage the global build cache");
std::println(" mcpp index list|add|remove|update Manage package registries");
std::println("");
std::println("About mcpp itself:");
std::println(" mcpp self doctor Diagnose mcpp environment health");
std::println(" mcpp self env Print mcpp paths and toolchain");
std::println(" mcpp self config [--mirror CN|GLOBAL] Show or modify mcpp's xlings config");
std::println(" mcpp self version Show mcpp version");
std::println(" mcpp self explain <CODE> Show extended description for an error code");
std::println(" mcpp --help / --version Help / version");
std::println("");
std::println("Build options:");
std::println(" --verbose, -v Verbose compiler output");
std::println(" --quiet, -q Suppress status output");
std::println(" --print-fingerprint Show toolchain fingerprint and 10 inputs");
std::println(" --cache <MODE> Dependency cache: global (default) | local | off");
std::println(" --no-cache Deprecated alias for --cache=off (clears the build dir)");
std::println(" --no-color Disable colored output");
std::println(" --offline Never touch the network (also: MCPP_OFFLINE=1)");
std::println("");
std::println("Docs: https://github.com/mcpp-community/mcpp/tree/main/docs");
}
int run(int argc, char** argv) {
namespace cl = mcpplibs::cmdline;
// ─── --quiet / --no-color: pre-scan ─────────────────────────────────
// The cmdline lib propagates global options into nested subcommand
// ParsedArgs, but we set ui:: state up-front so that *every* line
// emitted from the action lambdas (including the very first
// "Resolving toolchain" banner) honours the user's intent. This is
// a side-channel only — the global options are still declared on
// the App below so they show up in --help and pass schema checks.
for (int i = 1; i < argc; ++i) {
std::string_view a = argv[i];
if (a == "--quiet" || a == "-q") mcpp::ui::set_quiet(true);
else if (a == "--no-color") mcpp::ui::disable_color();
else if (a == "--verbose" || a == "-v") mcpp::log::set_verbose(true);
// --offline is published as the env var rather than plumbed through
// BuildOverrides: its consumers are index refresh, package install and
// toolchain auto-install, which sit in three subsystems and would each
// need a parameter threaded down. Same shape as MCPP_VERBOSE above, and
// it makes `MCPP_OFFLINE=1` and `--offline` literally the same switch.
else if (a == "--offline") mcpp::platform::env::set("MCPP_OFFLINE", "1");
}
// Env override (observability, esp. CI): MCPP_VERBOSE=<non-empty, not "0">
// turns on verbose logging for EVERY mcpp invocation — including the ones
// nested inside e2e test scripts that call $MCPP without flags. Lets a
// workflow flip on diagnostics globally with one env var. An explicit
// --quiet still wins (it is processed above and gates the verbose sinks).
if (const char* v = std::getenv("MCPP_VERBOSE");
v && *v && std::string_view(v) != "0")
mcpp::log::set_verbose(true);
// ─── top-level --help / -h / --version intercept ────────────────────
// cmdline auto-handles these but its formatter doesn't match the
// mixed-case "Usage:" + per-command blurbs that documentation +
// e2e tests pin. Print our canonical screen and `mcpp X.Y.Z`
// version line up-front so the App never sees these tokens.
if (argc >= 2) {
std::string_view a = argv[1];
if (a == "--help" || a == "-h") { print_usage(); return 0; }
if (a == "--version" || a == "-V") {
std::println("mcpp {}", mcpp::toolchain::MCPP_VERSION);
return 0;
}
}
// ─── action_rc plumbing ─────────────────────────────────────────────
// cmdline's action callback returns void. Capture int return codes
// via a shared local; `wrap_rc` adapts an `int(ParsedArgs&)` lambda
// into the void-returning shape cmdline expects.
int action_rc = 0;
auto wrap_rc = [&action_rc](auto&& fn) {
return [fn = std::forward<decltype(fn)>(fn), &action_rc]
(const cl::ParsedArgs& args) {
action_rc = fn(args);
};
};
// ─── nested-subcommand dispatcher ───────────────────────────────────
// cmdline's run() only dispatches one level — when a parent subcommand
// (e.g. `self`, `cache`, `index`, `emit`) has its own children but no
// parent action, the matched leaf never gets invoked. We give every
// such parent an action that switches on the parsed child name and
// forwards to the right cmd_* directly.
using cmd_fn = int(*)(const cl::ParsedArgs&);
auto dispatch_sub = [](std::string_view parent,
const cl::ParsedArgs& parsed,
std::initializer_list<std::pair<std::string_view, cmd_fn>> table) -> int {
if (!parsed.has_subcommand()) {
std::string usage = std::format("`mcpp {}` requires a subcommand: ", parent);
bool first = true;
for (auto& [n, _] : table) {
if (!first) usage += " / ";
usage += n;
first = false;
}
mcpp::ui::error(usage);
return 2;
}
auto name = parsed.subcommand_name();
auto sub_ref = parsed.subcommand();
if (!sub_ref) return 2;
for (auto& [n, fn] : table) {
if (n == name) return fn(sub_ref->get());
}
mcpp::ui::error(std::format("unknown `mcpp {} {}` subcommand", parent, name));
return 2;
};
// ─── `--` passthrough for `mcpp run` / `mcpp test` ──────────────────
// cmdline natively recognises `--` and dumps everything after it
// into `parsed.positionals` (with the bare `--` token dropped). For
// `mcpp run [target] -- args...` we need to distinguish the
// optional `target` (a real positional) from the passthrough
// tokens (which must reach the executed binary verbatim, even when
// they look like `-x` / `--foo`). We split ourselves at the first
// `--` and present cmdline only the pre-`--` slice; post-args go
// into `passthrough` and are handed to the action helper directly.
std::vector<std::string> passthrough;
std::vector<char*> trimmed_argv(argv, argv + argc);
{
for (std::size_t i = 1; i < trimmed_argv.size(); ++i) {
if (std::string_view(trimmed_argv[i]) != "--") continue;
for (std::size_t j = i + 1; j < trimmed_argv.size(); ++j)
passthrough.emplace_back(trimmed_argv[j]);
trimmed_argv.resize(i); // drop `--` and everything after
break;
}
}
int trimmed_argc = static_cast<int>(trimmed_argv.size());
char** trimmed_argp = trimmed_argv.empty() ? nullptr : trimmed_argv.data();
// ─── Build the top-level App ────────────────────────────────────────
auto app = cl::App("mcpp")
.version(std::string{mcpp::toolchain::MCPP_VERSION})
.description("modern C++ build tool")
.option(cl::Option("quiet").short_name('q')
.help("Suppress status output").global())
.option(cl::Option("verbose").short_name('v')
.help("Show detailed progress on stderr").global())
.option(cl::Option("no-color")
.help("Disable colored output").global())
.option(cl::Option("offline")
.help("Never touch the network (index refresh, downloads, toolchain install)")
.global())
// ─── project commands ──────────────────────────────────────────
.subcommand(cl::App("new")
.description("Create a new mcpp package skeleton")
// not .required(): `--list-templates` runs without a name
// (cmd_new validates presence for project creation itself).
.arg(cl::Arg("name").help("Package directory name"))
.option(cl::Option("template").short_name('t').takes_value().value_name("SPEC")
.help("bin (default) | <pkg>[@ver][:<template>] — package-shipped template"))
.option(cl::Option("list-templates").takes_value().value_name("PKG")
.help("List the templates a package ships (PKG[@ver])"))
.action(wrap_rc(cmd_new)))
.subcommand(cl::App("build")
.description("Build the current package")
.option(cl::Option("print-fingerprint")
.help("Show toolchain fingerprint and 10 inputs"))
.option(cl::Option("cache").takes_value().value_name("MODE")
.help("Global dependency cache: global (default) | local | off"))
.option(cl::Option("no-cache")
.help("Deprecated alias for --cache=off (also clears the build dir)"))
.option(cl::Option("target").takes_value().help(
"Build for <triple> (e.g. x86_64-linux-musl); looks up [target.<triple>] in mcpp.toml"))
.option(cl::Option("static").help(
"Force static linking (-static). On Linux, prefer pairing with --target <arch>-linux-musl"))
.option(cl::Option("package").short_name('p').takes_value().value_name("NAME")
.help("Build only the named workspace member"))
.option(cl::Option("profile").takes_value().value_name("NAME")
.help("Build profile: release (default) | dev | dist | <[profile.*] name>"))
.option(cl::Option("release").help("Shorthand for --profile release"))
.option(cl::Option("dev").help("Shorthand for --profile dev (-O0 -g)"))
.option(cl::Option("features").takes_value().value_name("LIST")
.help("Activate root-package features (comma-separated)"))
.option(cl::Option("cap").takes_value().value_name("LIST")
.help("Pin capability providers (e.g. blas=openblas,lapack=mkl)"))
.option(cl::Option("strict")
.help("Treat manifest schema warnings (unknown feature/platform) as errors"))
.option(cl::Option("workspace")
.help("Build all workspace members"))
.action(wrap_rc(cmd_build)))
.subcommand(cl::App("run")
.description("Build + run a binary target (after `--`, args are passed to it)")
// NB: this positional is a BINARY NAME from [[bin]]/src layout —
// unrelated to `--target <triple>` (the cross-target axis).
.arg(cl::Arg("target").help("Binary name (optional)"))
.option(cl::Option("package").short_name('p').takes_value().value_name("NAME")
.help("Run only the named workspace member (single-member; no --workspace fan-out)"))
.option(cl::Option("cache").takes_value().value_name("MODE")
.help("Global dependency cache: global (default) | local | off"))
.option(cl::Option("no-cache")
.help("Deprecated alias for --cache=off (also clears the build dir)"))
.action(wrap_rc([&passthrough](const cl::ParsedArgs& p) {
return cmd_run(p, std::span<const std::string>(passthrough));
})))
.subcommand(cl::App("test")
.description("Build + run all tests/**/*.cpp (after `--`, args go to each test binary)")
.arg(cl::Arg("pattern")
.help("Run only tests whose name contains PATTERN (optional)"))
.option(cl::Option("message-format").takes_value().value_name("FMT")
.help("Output format: human (default) | json (NDJSON, one record per test)"))
.option(cl::Option("list")
.help("List (filtered) tests without building or running them"))
.option(cl::Option("timeout").takes_value().value_name("SECS")
.help("Kill a test still RUNNING after SECS seconds (default 300; 0 = no limit)"))
.option(cl::Option("build-timeout").takes_value().value_name("SECS")
.help("Kill a compile/link drive still running after SECS seconds (default 0 = no limit; POSIX only)"))
.option(cl::Option("workspace-timeout").takes_value().value_name("SECS")
.help("Stop the --workspace fan-out after SECS seconds and report what did run (default 0 = no limit)"))
.option(cl::Option("profile").takes_value().value_name("NAME")
.help("Build profile for the test build: release (default) | dev | dist | <[profile.*] name>"))
.option(cl::Option("features").takes_value().value_name("LIST")
.help("Activate root-package features for the test build (comma-separated)"))
.option(cl::Option("cap").takes_value().value_name("LIST")
.help("Pin capability providers (e.g. blas=openblas,lapack=mkl)"))
.option(cl::Option("strict")
.help("Treat manifest schema warnings (unknown feature/platform) as errors"))
.option(cl::Option("package").short_name('p').takes_value().value_name("NAME")
.help("Run tests only for the named workspace member"))
.option(cl::Option("cache").takes_value().value_name("MODE")
.help("Global dependency cache: global (default) | local | off"))
.option(cl::Option("no-cache")
.help("Deprecated alias for --cache=off (also clears the build dir)"))
.option(cl::Option("workspace")
.help("Run tests for all workspace members"))
.action(wrap_rc([&passthrough](const cl::ParsedArgs& p) {
return cmd_test(p, std::span<const std::string>(passthrough));
})))
.subcommand(cl::App("clean")
.description("Remove target/ (and optionally the global build cache)")
.option(cl::Option("bmi-cache").help("Also wipe the global build cache (see `mcpp cache clean`)"))
.action(wrap_rc(cmd_clean)))
.subcommand(cl::App("why")
.description("Explain how the toolchain / runtime / deps were resolved")
.arg(cl::Arg("topic").help("toolchain | runtime | deps (default: all)"))
.action(wrap_rc(cmd_why)))
.subcommand(cl::App("resolve")
.description("Re-resolve the build plan and explain it")
.option(cl::Option("explain").help("Print resolved toolchain / runtime / deps"))
.action(wrap_rc(cmd_why)))
.subcommand(cl::App("add")
.description("Add a dependency to mcpp.toml")
.arg(cl::Arg("pkg").help("Package spec, e.g. foo@1.0.0").required())
.option(cl::Option("dev").help(
"Add to [dev-dependencies] (test-only, e.g. gtest)"))
.action(wrap_rc(mcpp::pm::commands::cmd_add)))
.subcommand(cl::App("remove")
.description("Remove a dependency from mcpp.toml")
.arg(cl::Arg("pkg").help("Package name").required())
.action(wrap_rc(mcpp::pm::commands::cmd_remove)))
.subcommand(cl::App("update")
.description("Re-resolve dependencies and rewrite mcpp.lock")
.arg(cl::Arg("pkg").help("If given, update only that package"))
.action(wrap_rc(mcpp::pm::commands::cmd_update)))
.subcommand(cl::App("search")
.description("Search packages in configured registries")
.arg(cl::Arg("keyword").help("Search keyword (substring match)").required())
.action(wrap_rc(cmd_search)))
.subcommand(cl::App("publish")
.description("Publish package to default registry")
.option(cl::Option("dry-run").help("Print xpkg.lua without uploading"))
.option(cl::Option("allow-dirty").help("Allow uncommitted changes"))
.action(wrap_rc(cmd_publish)))
.subcommand(cl::App("pack")
.description("Build + bundle into a self-contained tarball")
.option(cl::Option("mode").takes_value()
.help("system | vendored (default) | self-contained | static"))
.option(cl::Option("target").takes_value()
.help("Triple, e.g. x86_64-linux-musl"))
.option(cl::Option("format").takes_value()
.help("tar (default) | dir"))
.option(cl::Option("output").short_name('o').takes_value()
.help("Override output path"))
.action(wrap_rc(cmd_pack)))
// ─── emit (one nested subcommand: xpkg) ────────────────────────
.subcommand(cl::App("emit")
.description("Generate package descriptor (xpkg)")
.subcommand(cl::App("xpkg")
.description("Generate xpkg Lua entry")
.option(cl::Option("version").short_name('V').takes_value().value_name("VER")
.help("Override package version"))
.option(cl::Option("output").short_name('o').takes_value().value_name("FILE")
.help("Write to file instead of stdout"))
.option(cl::Option("namespace").takes_value().value_name("NS")
.help("Package namespace for the emitted descriptor "
"(overrides [package] namespace). Emits both "
"`namespace` and the fully-qualified `name`")))
.action(wrap_rc([&dispatch_sub](const cl::ParsedArgs& p) {
return dispatch_sub("emit", p, {{"xpkg", cmd_emit_xpkg}});
})))
// ─── xpkg (descriptor tooling: parse) ──────────────────────────
.subcommand(cl::App("xpkg")
.description("Inspect / validate xpkg descriptors")
.subcommand(cl::App("parse")
.description("Parse a descriptor's mcpp segment exactly as the resolver would (strict: unknown keys are errors)")
.option(cl::Option("json").help("Emit machine-readable JSON"))
.option(cl::Option("allow-unknown")
.help("Downgrade unknown mcpp-segment keys from error to warning"))
.option(cl::Option("all-os")
.help("Validate every per-OS section (linux/macosx/windows), "
"not just the running host's"))
.option(cl::Option("allow-split-name")
.help("OBSOLETE (kept accepted so 0.0.105-era index CI keeps "
"working): skip the package.name form check. Since "
"0.0.106 the canonical form IS the short name, so "
"xlings-native descriptors pass without this flag")))
.action(wrap_rc([&dispatch_sub](const cl::ParsedArgs& p) {
return dispatch_sub("xpkg", p, {{"parse", cmd_xpkg_parse}});
})))
// ─── resource management ───────────────────────────────────────
.subcommand(cl::App("toolchain")
.description("Install / list / select / remove C++ toolchains")
.subcommand(cl::App("list").description("List installed toolchains"))
.subcommand(cl::App("install")
.description("Install a toolchain via mcpp's xlings")
// Both `mcpp toolchain install gcc 16.1.0` and `mcpp toolchain
// install gcc@16.1.0` are accepted, and the version may be
// partial (`15`, `15.1`) — mcpp resolves to the highest match.
// With --target the family may be omitted entirely (taken from
// the target's convention pin):
// mcpp toolchain install --target x86_64-windows-gnu
.arg(cl::Arg("compiler").help("gcc | llvm | msvc (or gcc@16.1.0; legacy aliases accepted)"))
.arg(cl::Arg("version").help("e.g. 16.1.0, 15, 15.1"))
.option(cl::Option("target").takes_value().help(
"Install the toolchain payload for <triple> (e.g. x86_64-windows-gnu)")))
.subcommand(cl::App("default")
.description("Set the default toolchain (and optionally the default target)")
// Same dual-form as `install`: `gcc@16.1.0` or `gcc 16.1.0`,
// partial versions allowed.
.arg(cl::Arg("spec").help("<family>[@<version>] (version may be partial)").required())
.arg(cl::Arg("version").help("(optional, alternative to @-form)"))
.option(cl::Option("target").takes_value().help(
"Default build target <triple> (omit = host)")))
.subcommand(cl::App("remove")
.description("Uninstall a toolchain")
.arg(cl::Arg("spec").help("<family>@<version>").required())
.option(cl::Option("target").takes_value().help(
"Remove the payload for <triple> instead of the host one")))
.action(wrap_rc(cmd_toolchain)))
.subcommand(cl::App("cache")
.description("Inspect and manage the global build cache")
.subcommand(cl::App("dir")
.description("Print the cache root (and any pre-v1 cache)"))
.subcommand(cl::App("list")
.description("List cache entries with size + last-use")
.option(cl::Option("json").help("Emit machine-readable JSON")))
.subcommand(cl::App("info")
.description("Show details (incl. key inputs) for a cached package")
.arg(cl::Arg("pkg").help("<pkg>@<ver>").required()))
.subcommand(cl::App("prune")
.description("Drop entries not used within a threshold")
.option(cl::Option("older-than").takes_value().value_name("N{s|m|h|d}")
.help("Age threshold (e.g. 30d)")))
.subcommand(cl::App("gc")
.description("LRU-collect package entries to a size and/or age budget")
.option(cl::Option("max-size").takes_value().value_name("N{MiB|GiB}")
.help("Keep the package cache under this size (e.g. 5GiB)"))
.option(cl::Option("older-than").takes_value().value_name("N{s|m|h|d}")
.help("Also drop entries unused for longer than this")))
.subcommand(cl::App("clean")
.description("Drop cache entries (default: package entries only)")
.option(cl::Option("deps").help("Drop package entries (default)"))
.option(cl::Option("std").help("Drop std module entries"))
.option(cl::Option("all").help("Drop both"))
.option(cl::Option("legacy")
.help("Remove the unused pre-v1 cache at $MCPP_HOME/bmi")))
.subcommand(cl::App("verify")
.description("Check every entry's manifest against the files on disk"))
.action(wrap_rc([&dispatch_sub](const cl::ParsedArgs& p) {
return dispatch_sub("cache", p, {
{"dir", cmd_cache_dir},
{"list", cmd_cache_list},
{"info", cmd_cache_info},
{"prune", cmd_cache_prune},
{"gc", cmd_cache_gc},
{"clean", cmd_cache_clean},
{"verify", cmd_cache_verify},
});
})))
.subcommand(cl::App("index")
.description("Manage configured package registries")
.subcommand(cl::App("list")
.description("List configured registries"))
.subcommand(cl::App("add")
.description("Add a custom registry")
.arg(cl::Arg("name").help("Registry name").required())
.arg(cl::Arg("url").help("Registry URL").required()))
.subcommand(cl::App("remove")
.description("Remove a registry")
.arg(cl::Arg("name").help("Registry name").required()))
.subcommand(cl::App("update")
.description("Refresh local registry clones")
.arg(cl::Arg("name").help("If given, update only this index")))
.subcommand(cl::App("status")
.description("Show local index presence/freshness (offline)"))
.subcommand(cl::App("pin")
.description("Pin a custom index to a commit rev in mcpp.toml")
.arg(cl::Arg("name").help("Index name").required())
.arg(cl::Arg("rev").help("Commit sha (defaults to current lock rev)")))
.subcommand(cl::App("unpin")
.description("Remove rev pin from a custom index in mcpp.toml")
.arg(cl::Arg("name").help("Index name").required()))
.action(wrap_rc([&dispatch_sub](const cl::ParsedArgs& p) {
return dispatch_sub("index", p, {
{"list", cmd_index_list},
{"add", cmd_index_add},
{"remove", cmd_index_remove},
{"update", cmd_index_update},
{"status", cmd_index_status},
{"pin", cmd_index_pin},
{"unpin", cmd_index_unpin},
});
})))
// ─── about mcpp itself ─────────────────────────────────────────
.subcommand(cl::App("self")
.description("Inspect and manage mcpp itself")
.subcommand(cl::App("init")
.description("Initialize or repair mcpp sandbox")
.option(cl::Option("force")
.help("Delete registry and re-initialize from scratch")))
.subcommand(cl::App("doctor")
.description("Diagnose mcpp environment health"))
.subcommand(cl::App("env")
.description("Print mcpp paths and configuration"))
.subcommand(cl::App("config")
.description("Show or modify mcpp's private xlings configuration")
.option(cl::Option("mirror").takes_value().value_name("CN|GLOBAL")
.help("Set xlings mirror for mcpp's private registry")))
.subcommand(cl::App("version")
.description("Show mcpp version"))
.subcommand(cl::App("explain")
.description("Show extended description for an error code")
.arg(cl::Arg("code").help("Error code such as E0001").required()))
.action(wrap_rc([&dispatch_sub](const cl::ParsedArgs& p) {
return dispatch_sub("self", p, {
{"init", cmd_self_init},
{"doctor", cmd_doctor},
{"env", cmd_env},
{"config", cmd_self_config},
{"version", cmd_self_version},
{"explain", cmd_explain_action},
});
})))
// ─── top-level explain alias ──────────────────────────────────
// Preserves `mcpp explain E0001` as a shortcut for
// `mcpp self explain E0001`.
.subcommand(cl::App("explain")
.description("Show extended description for an error code")
.arg(cl::Arg("code").help("Error code such as E0001").required())
.action(wrap_rc(cmd_explain_action)))
// ─── bareword `version` alias ─────────────────────────────────
// cmdline natively handles `--help`/`--version`/`-h`; the bareword
// `mcpp help` is intercepted by the pre-scan above (prints the
// canonical usage screen). `mcpp version` is wired through the
// App so it shows up in the auto-generated subcommand list.
.subcommand(cl::App("version")
.description("Show mcpp version")
.action(wrap_rc(cmd_self_version)))
// ─── hidden / internal ─────────────────────────────────────────
.subcommand(cl::App("dyndep")
.description("(internal: invoked by ninja) Emit ninja dyndep file from .ddi inputs")
.option(cl::Option("output").short_name('o').takes_value().value_name("PATH")
.help("Path to write dyndep file"))
.option(cl::Option("single").help("Single-file mode: one .ddi → one .dd"))
.option(cl::Option("bmi-dir").takes_value().value_name("DIR")
.help("BMI cache directory name (default: gcm.cache)"))
.option(cl::Option("bmi-ext").takes_value().value_name("EXT")
.help("BMI file extension (default: .gcm)"))
.option(cl::Option("expect-provides").takes_value().value_name("NAME")
.help("(verification) planned provided module for this TU"))
.option(cl::Option("expect-imports").takes_value().value_name("CSV")
.help("(verification) planned imports for this TU, comma-separated"))
.option(cl::Option("expect-none")
.help("(verification) planner assumed no provides/imports"))
.action(wrap_rc(cmd_dyndep)))
.subcommand(cl::App("stage")
.description("(internal: invoked by ninja) Stage a cached artifact into the build dir")
.option(cl::Option("output").short_name('o').takes_value().value_name("PATH")
.help("Destination path inside the build directory"))
.option(cl::Option("verify").takes_value().value_name("MODE")
.help("Already-staged check: size (default) | content"))
.action(wrap_rc(cmd_stage)))
;
// The bareword `mcpp help` and `mcpp` (no args) both print the
// canonical help screen.
if (argc <= 1) {
print_usage();
return 0;
}
if (std::string_view(argv[1]) == "help") {
print_usage();
return 0;
}
// Legacy `--explain CODE` form (still tested by e2e #22). cmdline
// wouldn't naturally accept this as a top-level option taking a
// value (it'd require declaring it on the root App, but then it'd
// also need to coexist with the `explain` subcommand, which is
// the form documented going forward). Special-case here before
// invoking the App.
if (std::string_view(argv[1]) == "--explain") {
if (argc < 3) {
std::println(stderr, "error: --explain requires an error code (e.g. E0001)");
return 2;
}
return cmd_explain(argv[2]);
}
// Unknown-command pre-check. cmdline doesn't error on an unknown
// top-level word — it just treats it as a positional and returns
// 0 silently (since the root App has no top-level action). The
// pre-existing CLI returned 127 for "unknown command", and e2e
// #01 asserts that exit code, so reproduce it here.
{
std::string_view first = argv[1];
if (!first.starts_with('-')) {
static constexpr std::array<std::string_view, 23> known = {
"new", "build", "run", "test", "clean", "add", "remove",
"update", "search", "publish", "pack", "emit", "xpkg",
"toolchain", "cache", "index", "self", "explain",
"version", "dyndep", "why", "resolve", "stage",
};
bool ok = false;
for (auto k : known) if (k == first) { ok = true; break; }
if (!ok) {
std::println(stderr, "error: unknown command '{}'", first);
print_usage();
return 127;
}
}
}
auto app_rc = app.run(trimmed_argc, trimmed_argp);
if (app_rc != 0) return app_rc;
return action_rc;
}
} // namespace mcpp::cli