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
//! Locale resolution helpers for CLI parsing and runtime diagnostics.
//!
//! These helpers centralize locale precedence rules and normalization so both
//! clap help and runtime diagnostics resolve the same locale.
use cratecli;
use crateCli;
use crateparse_bool_hint;
use LanguageIdentifier;
use OsString;
use FromStr;
/// Environment variable name used to override the locale.
pub const NETSUKE_LOCALE_ENV: &str = "NETSUKE_LOCALE";
/// Environment variable name used to request JSON output.
pub const NETSUKE_JSON_ENV: &str = "NETSUKE_JSON";
/// Read-only environment access used for locale resolution.
///
/// This abstracts locale environment lookup used during startup resolution.
/// Production code uses [`SystemEnv`]. Tests can supply an in-memory
/// implementation such as `StubEnv` instead of mutating process-global
/// environment state.
/// Environment provider backed by the process environment.
;
/// System locale provider for the current host.
/// System locale provider backed by `sys-locale`.
;
/// Normalize a raw locale string into a valid BCP 47 language tag.
///
/// This strips encoding suffixes (for example `.UTF-8`), removes variant
/// sections (for example `@latin`), replaces underscores with hyphens, and
/// validates the result using `LanguageIdentifier`.
///
/// # Examples
///
/// ```rust
/// use netsuke::locale_resolution::normalize_locale_tag;
///
/// assert_eq!(normalize_locale_tag("en_US.UTF-8"), Some("en-US".to_string()));
/// assert_eq!(normalize_locale_tag("es-ES"), Some("es-ES".to_string()));
/// assert_eq!(normalize_locale_tag("en-@latin"), None);
/// ```
/// Resolve the locale used for clap parsing (help and error messages).
///
/// Precedence is `--locale` (when supplied) followed by `NETSUKE_LOCALE`, and
/// finally the system default. The returned locale is normalized; when no
/// valid locale is found, `None` is returned so callers fall back to English.
///
/// # Examples
///
/// ```rust
/// use netsuke::locale_resolution::{
/// LocaleEnvProvider, SystemLocale, resolve_startup_locale,
/// };
/// use std::ffi::OsString;
///
/// struct StubEnv(Option<String>);
/// impl LocaleEnvProvider for StubEnv {
/// fn var(&self, key: &str) -> Option<String> {
/// (key == "NETSUKE_LOCALE").then(|| self.0.clone()).flatten()
/// }
/// }
///
/// struct StubSystem(Option<String>);
/// impl SystemLocale for StubSystem {
/// fn system_locale(&self) -> Option<String> {
/// self.0.clone()
/// }
/// }
///
/// let args = vec![
/// OsString::from("netsuke"),
/// OsString::from("--locale"),
/// OsString::from("es-ES"),
/// ];
/// let locale = resolve_startup_locale(
/// &args,
/// &StubEnv(None),
/// &StubSystem(Some("en_US".into())),
/// );
/// assert_eq!(locale.as_deref(), Some("es-ES"));
/// ```
/// Resolve whether JSON output was requested before full CLI parsing.
///
/// Precedence is the CLI `--json` flag followed by `NETSUKE_JSON`. Unlike the
/// merged runtime configuration, configuration files are not considered here
/// because this helper is used before config discovery and loading succeed.
/// Resolve the locale used for runtime diagnostics.
///
/// The merged CLI configuration already includes configuration files,
/// environment variables, and explicit CLI overrides. When no valid locale is
/// present in the merged configuration, the system default is used. The
/// returned locale is normalized; when no valid locale is found, `None` is
/// returned so callers fall back to English.
///
/// # Examples
///
/// ```rust
/// use netsuke::cli::Cli;
/// use netsuke::locale_resolution::{resolve_runtime_locale, SystemLocale};
///
/// struct StubSystem(Option<String>);
/// impl SystemLocale for StubSystem {
/// fn system_locale(&self) -> Option<String> {
/// self.0.clone()
/// }
/// }
///
/// let cli = Cli { locale: Some("es-ES".to_string()), ..Cli::default() };
/// let locale = resolve_runtime_locale(&cli, &StubSystem(Some("en_US".into())));
/// assert_eq!(locale.as_deref(), Some("es-ES"));
/// ```