Skip to main content

harn_cli/
lib.rs

1#![recursion_limit = "256"]
2
3pub mod acp;
4mod bootstrap;
5pub mod cli;
6mod cli_bytecode;
7pub mod commands;
8mod compiler_context;
9#[doc(hidden)]
10pub mod dispatch;
11mod entrypoint;
12pub mod env_guard;
13mod eval_cli;
14mod exit;
15pub mod format;
16pub mod json_envelope;
17pub use commands::check::{
18    decode_lint_envelope, decode_lint_json, lint_json_schema, DecodedLintEnvelope, LintDecodeError,
19    LintDecodeOptions, LintReportWire,
20};
21mod net;
22pub mod package;
23mod path_policy;
24mod provider_bootstrap;
25mod provider_info;
26mod run_records;
27mod runtime;
28pub mod skill_loader;
29pub mod skill_provenance;
30mod source_exec;
31pub mod test_report;
32pub mod test_runner;
33pub mod test_timing;
34#[doc(hidden)]
35pub mod tests;
36mod typecheck_imports;
37pub use commands::dispatch_explain::DISPATCH_AUDIT_SCHEMA_VERSION;
38pub(crate) use compiler_context::{
39    compiler_for_source, compiler_with_imported_enum_candidates,
40    ensure_builtin_signatures_installed, imported_enum_candidates_for_source,
41};
42pub use harn_skills::{get_embedded_skill, list_embedded_skills, EmbeddedSkill, SkillFrontmatter};
43// Items that used to live directly in this file. A bare item at the crate
44// root is visible crate-wide, so re-exporting the modules' `pub(crate)` items
45// here keeps every existing `crate::<item>` path resolving unchanged.
46pub(crate) use self::entrypoint::*;
47pub(crate) use self::eval_cli::*;
48pub(crate) use self::exit::*;
49pub(crate) use self::provider_info::*;
50pub(crate) use self::run_records::*;
51pub(crate) use self::source_exec::*;
52
53use clap::{error::ErrorKind, CommandFactory, Parser as ClapParser};
54use std::path::{Path, PathBuf};
55use std::sync::{Arc, Once};
56use std::{env, fs, panic, process, thread};
57
58use cli::{
59    Cli, Command, CompletionShell, EvalCommand, GuardCommand, MergeCaptainCommand,
60    MergeCaptainMockCommand, ModelInfoArgs, PackageArtifactsCommand, PackageCacheCommand,
61    PackageCommand, PackageScaffoldCommand, PgCommand, ProviderCommand, SkillCommand,
62    SkillKeyCommand, SkillTrustCommand, TimeCommand, ToolCommand,
63};
64use harn_lexer::Lexer;
65use harn_modules::project_config;
66use harn_parser::{DiagnosticSeverity, Parser, TypeChecker};
67use runtime::{build_cli_runtime, cli_runtime_mode, CliRuntimeMode};
68pub const CLI_RUNTIME_STACK_SIZE: usize = 16 * 1024 * 1024;
69static BROKEN_PIPE_PANIC_HOOK: Once = Once::new();
70
71#[cfg(feature = "hostlib")]
72pub(crate) fn install_default_hostlib(vm: &mut harn_vm::Vm) {
73    let _ = harn_hostlib::install_default(vm);
74    // The `rules` capability lives in its own crate (it depends on
75    // `harn-rules`, which depends on `harn-hostlib`, so it can't ship inside
76    // `install_default`). Wire it in alongside the defaults.
77    harn_rules_hostlib::install(vm);
78}
79
80#[cfg(not(feature = "hostlib"))]
81pub(crate) fn install_default_hostlib(_vm: &mut harn_vm::Vm) {}
82
83/// Entry point used by `src/main.rs`. Hosts the CLI runtime thread and
84/// drives the async dispatcher in `async_main`.
85pub fn run() {
86    install_broken_pipe_panic_hook();
87    harn_vm::initialize_runtime_assets();
88    let raw_args = normalize_serve_args(bootstrap::args_after_pre_runtime_command());
89    // Defeat rlib dead-code stripping of `#[harn_builtin]`-emitted statics
90    // (linkme issue #36). Without this touch the linker can drop every
91    // builtin's distributed-slice entry, leaving `ALL_BUILTIN_DEFS` empty
92    // and surfacing as a swarm of `HARN-NAM-002` errors at first call.
93    harn_vm::stdlib::force_link();
94
95    ensure_builtin_signatures_installed();
96
97    let runtime_mode = cli_runtime_mode(&raw_args);
98
99    let handle = thread::Builder::new()
100        .name("harn-cli".to_string())
101        .stack_size(CLI_RUNTIME_STACK_SIZE)
102        .spawn(move || {
103            let runtime = build_cli_runtime(runtime_mode);
104            runtime.block_on(async_main(raw_args, runtime_mode));
105            // Drain any queued OTLP exports while the tokio runtime
106            // is still alive. The auto-registered `OtelSink` uses a
107            // batch processor with `runtime::Tokio`; if we let the
108            // runtime drop before this call, in-flight spans never
109            // reach the configured collector. No-op when OTel is not
110            // configured.
111            if let Err(error) = harn_vm::events::shutdown_otel_sink() {
112                eprintln!("[harn] OTel exporter shutdown failed: {error}");
113            }
114        })
115        .unwrap_or_else(|error| {
116            eprintln!("failed to start CLI runtime thread: {error}");
117            process::exit(1);
118        });
119
120    if let Err(payload) = handle.join() {
121        if runtime::is_broken_pipe_panic_payload(payload.as_ref()) {
122            process::exit(0);
123        }
124        std::panic::resume_unwind(payload);
125    }
126}
127
128fn install_broken_pipe_panic_hook() {
129    BROKEN_PIPE_PANIC_HOOK.call_once(|| {
130        let previous = panic::take_hook();
131        panic::set_hook(Box::new(move |info| {
132            if runtime::is_broken_pipe_panic_payload(info.payload()) {
133                return;
134            }
135            previous(info);
136        }));
137    });
138}