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
pub use git_config::*;
use git_features::threading::OnceCell;
use crate::{bstr::BString, repository::identity, revision::spec, Repository};
pub(crate) mod cache;
mod snapshot;
pub use snapshot::credential_helpers;
pub mod overrides;
pub mod tree;
pub use tree::root::Tree;
pub struct Snapshot<'repo> {
pub(crate) repo: &'repo Repository,
}
pub struct SnapshotMut<'repo> {
pub(crate) repo: Option<&'repo mut Repository>,
pub(crate) config: git_config::File<'static>,
}
pub struct CommitAutoRollback<'repo> {
pub(crate) repo: Option<&'repo mut Repository>,
pub(crate) prev_config: crate::Config,
}
pub(crate) mod section {
pub fn is_trusted(meta: &git_config::file::Metadata) -> bool {
meta.trust == git_sec::Trust::Full || meta.source.kind() != git_config::source::Kind::Repository
}
}
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
ConfigBoolean(#[from] boolean::Error),
#[error(transparent)]
ConfigUnsigned(#[from] unsigned_integer::Error),
#[error(transparent)]
ConfigTypedString(#[from] key::GenericErrorWithValue),
#[error("Cannot handle objects formatted as {:?}", .name)]
UnsupportedObjectFormat { name: BString },
#[error(transparent)]
CoreAbbrev(#[from] abbrev::Error),
#[error("Could not read configuration file")]
Io(#[from] std::io::Error),
#[error(transparent)]
Init(#[from] git_config::file::init::Error),
#[error(transparent)]
ResolveIncludes(#[from] git_config::file::includes::Error),
#[error(transparent)]
FromEnv(#[from] git_config::file::init::from_env::Error),
#[error(transparent)]
PathInterpolation(#[from] git_config::path::interpolate::Error),
#[error("{source:?} configuration overrides at open or init time could not be applied.")]
ConfigOverrides {
#[source]
err: overrides::Error,
source: git_config::Source,
},
}
pub mod diff {
pub mod algorithm {
use crate::bstr::BString;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("Unknown diff algorithm named '{name}'")]
Unknown { name: BString },
#[error("The '{name}' algorithm is not yet implemented")]
Unimplemented { name: BString },
}
}
}
pub mod checkout_options {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
ConfigCheckStat(#[from] super::key::GenericErrorWithValue),
#[error(transparent)]
ConfigBoolean(#[from] super::boolean::Error),
#[error(transparent)]
CheckoutWorkers(#[from] super::checkout::workers::Error),
#[error("Failed to interpolate the attribute file configured at `core.attributesFile`")]
AttributesFileInterpolation(#[from] git_config::path::interpolate::Error),
}
}
pub mod protocol {
pub mod allow {
use crate::bstr::BString;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
#[error("The value {value:?} must be allow|deny|user in configuration key protocol{0}.allow", scheme.as_ref().map(|s| format!(".{s}")).unwrap_or_default())]
pub struct Error {
pub scheme: Option<String>,
pub value: BString,
}
}
}
pub mod ssh_connect_options {
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
#[error(transparent)]
pub struct Error(#[from] super::key::GenericErrorWithValue);
}
pub mod key {
use crate::bstr::BString;
const fn prefix(kind: char) -> &'static str {
match kind {
'n' => "", 'k' => "The value of key", 't' => "The date format at key", 'i' => "The timeout at key", 'd' => "The duration [ms] at key", 'b' => "The boolean at key", 'v' => "The key", 'r' => "The refspec at", 's' => "The ssl version at", 'u' => "The url at", 'w' => "The utf-8 string at", _ => panic!("BUG: invalid prefix kind - add a case for it here"),
}
}
const fn suffix(kind: char) -> &'static str {
match kind {
'd' => "could not be decoded", 'i' => "was invalid", 'u' => "could not be parsed as unsigned integer", 'p' => "could not be parsed", _ => panic!("BUG: invalid suffix kind - add a case for it here"),
}
}
#[derive(Debug, thiserror::Error)]
#[error("{} \"{key}{}\"{} {}", prefix(PREFIX), value.as_ref().map(|v| format!("={v}")).unwrap_or_default(), environment_override.as_deref().map(|var| format!(" (possibly from {var})")).unwrap_or_default(), suffix(SUFFIX))]
pub struct Error<E: std::error::Error + Send + Sync + 'static, const PREFIX: char, const SUFFIX: char> {
pub key: BString,
pub value: Option<BString>,
pub environment_override: Option<&'static str>,
pub source: Option<E>,
}
impl<T, E, const PREFIX: char, const SUFFIX: char> From<&'static T> for Error<E, PREFIX, SUFFIX>
where
E: std::error::Error + Send + Sync + 'static,
T: super::tree::Key,
{
fn from(key: &'static T) -> Self {
Error {
key: key.logical_name().into(),
value: None,
environment_override: key.environment_override(),
source: None,
}
}
}
impl<E, const PREFIX: char, const SUFFIX: char> Error<E, PREFIX, SUFFIX>
where
E: std::error::Error + Send + Sync + 'static,
{
pub fn from_value(key: &'static impl super::tree::Key, value: BString) -> Self {
Error::from(key).with_value(value)
}
}
impl<E, const PREFIX: char, const SUFFIX: char> Error<E, PREFIX, SUFFIX>
where
E: std::error::Error + Send + Sync + 'static,
{
pub fn with_source(mut self, err: E) -> Self {
self.source = Some(err);
self
}
pub fn with_value(mut self, value: BString) -> Self {
self.value = Some(value);
self
}
}
pub type GenericError<E = git_config::value::Error> = Error<E, 'k', 'i'>;
pub type GenericErrorWithValue<E = git_config::value::Error> = Error<E, 'v', 'i'>;
}
pub mod checkout {
pub mod workers {
use crate::config;
pub type Error = config::key::Error<git_config::value::Error, 'n', 'd'>;
}
}
pub mod abbrev {
use crate::bstr::BString;
#[derive(Debug, thiserror::Error)]
#[error("Invalid value for 'core.abbrev' = '{}'. It must be between 4 and {}", .value, .max)]
pub struct Error {
pub value: BString,
pub max: u8,
}
}
pub mod remote {
pub mod symbolic_name {
pub type Error = super::super::key::Error<crate::remote::name::Error, 'v', 'i'>;
}
}
pub mod time {
pub type Error = super::key::Error<git_date::parse::Error, 't', 'i'>;
}
pub mod lock_timeout {
pub type Error = super::key::Error<git_config::value::Error, 'i', 'i'>;
}
pub mod duration {
pub type Error = super::key::Error<git_config::value::Error, 'd', 'i'>;
}
pub mod boolean {
pub type Error = super::key::Error<git_config::value::Error, 'b', 'i'>;
}
pub mod unsigned_integer {
pub type Error = super::key::Error<git_config::value::Error, 'k', 'u'>;
}
pub mod url {
pub type Error = super::key::Error<git_url::parse::Error, 'u', 'p'>;
}
pub mod string {
pub type Error = super::key::Error<crate::bstr::Utf8Error, 'w', 'd'>;
}
pub mod refspec {
pub type Error = super::key::Error<git_refspec::parse::Error, 'r', 'p'>;
}
pub mod ssl_version {
pub type Error = super::key::Error<std::convert::Infallible, 's', 'i'>;
}
pub mod transport {
use std::borrow::Cow;
use crate::bstr::BStr;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(
"Could not interpret configuration key {key:?} as {kind} integer of desired range with value: {actual}"
)]
InvalidInteger {
key: &'static str,
kind: &'static str,
actual: i64,
},
#[error("Could not interpret configuration key {key:?}")]
ConfigValue {
source: git_config::value::Error,
key: &'static str,
},
#[error("Could not interpolate path at key {key:?}")]
InterpolatePath {
source: git_config::path::interpolate::Error,
key: &'static str,
},
#[error("Could not decode value at key {key:?} as UTF-8 string")]
IllformedUtf8 {
key: Cow<'static, BStr>,
source: crate::config::string::Error,
},
#[error("Invalid URL passed for configuration")]
ParseUrl(#[from] git_url::parse::Error),
#[error("Could obtain configuration for an HTTP url")]
Http(#[from] http::Error),
}
pub mod http {
use std::borrow::Cow;
use crate::bstr::BStr;
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
Boolean(#[from] crate::config::boolean::Error),
#[error(transparent)]
UnsignedInteger(#[from] crate::config::unsigned_integer::Error),
#[error(transparent)]
ConnectTimeout(#[from] crate::config::duration::Error),
#[error("The proxy authentication at key `{key}` is invalid")]
InvalidProxyAuthMethod {
source: crate::config::key::GenericErrorWithValue,
key: Cow<'static, BStr>,
},
#[error("Could not configure the credential helpers for the authenticated proxy url")]
ConfigureProxyAuthenticate(#[from] crate::config::snapshot::credential_helpers::Error),
#[error(transparent)]
InvalidSslVersion(#[from] crate::config::ssl_version::Error),
#[error("The HTTP version must be 'HTTP/2' or 'HTTP/1.1'")]
InvalidHttpVersion(#[from] crate::config::key::GenericErrorWithValue),
#[error("The follow redirects value 'initial', or boolean true or false")]
InvalidFollowRedirects(#[source] crate::config::key::GenericErrorWithValue),
}
}
}
#[derive(Clone)]
pub(crate) struct Cache {
pub resolved: crate::Config,
pub hex_len: Option<usize>,
pub is_bare: bool,
pub object_hash: git_hash::Kind,
pub use_multi_pack_index: bool,
pub reflog: Option<git_ref::store::WriteReflog>,
pub(crate) user_agent: OnceCell<String>,
pub(crate) personas: OnceCell<identity::Personas>,
pub(crate) url_rewrite: OnceCell<crate::remote::url::Rewrite>,
pub(crate) diff_renames: OnceCell<Option<crate::object::tree::diff::Renames>>,
#[cfg(any(feature = "blocking-network-client", feature = "async-network-client"))]
pub(crate) url_scheme: OnceCell<crate::remote::url::SchemePermission>,
pub(crate) diff_algorithm: OnceCell<git_diff::blob::Algorithm>,
pub(crate) pack_cache_bytes: Option<usize>,
pub(crate) object_cache_bytes: usize,
filter_config_section: fn(&git_config::file::Metadata) -> bool,
pub object_kind_hint: Option<spec::parse::ObjectKindHint>,
pub ignore_case: bool,
pub lenient_config: bool,
xdg_config_home_env: git_sec::Permission,
home_env: git_sec::Permission,
}