masterror 0.27.3

Application error types and response mapping
Documentation
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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
// SPDX-FileCopyrightText: 2025 RAprogramm <andrey.rozanov.vl@gmail.com>
//
// SPDX-License-Identifier: MIT

use alloc::{
    borrow::Cow,
    collections::BTreeMap,
    string::{String, ToString}
};
use core::{
    fmt::Write,
    iter::repeat_n,
    mem::{replace, take},
    net::IpAddr,
    str::from_utf8
};

use http::StatusCode;
use itoa::Buffer as IntegerBuffer;
use ryu::Buffer as FloatBuffer;
use serde::Serialize;
#[cfg(feature = "serde_json")]
use serde_json::Value as JsonValue;
use sha2::{Digest, Sha256};

use super::core::ErrorResponse;
use crate::{
    AppCode, AppError, AppErrorKind, FieldRedaction, FieldValue, MessageEditPolicy, Metadata,
    app_error::duration_to_string
};

/// Canonical mapping for a public [`AppCode`].
///
/// # Examples
///
/// ```rust
/// use masterror::{AppCode, mapping_for_code};
///
/// let mapping = mapping_for_code(&AppCode::NotFound);
/// assert_eq!(mapping.http_status(), 404);
/// assert_eq!(
///     mapping.problem_type(),
///     "https://errors.masterror.rs/not-found"
/// );
/// ```
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct CodeMapping {
    http_status:  u16,
    grpc:         GrpcCode,
    problem_type: &'static str,
    kind:         AppErrorKind
}

impl CodeMapping {
    /// HTTP status code associated with the [`AppCode`].
    #[cfg_attr(not(any(test, feature = "tonic")), allow(dead_code))]
    #[must_use]
    pub const fn http_status(&self) -> u16 {
        self.http_status
    }

    /// gRPC code mapping (`tonic::Code` discriminant).
    #[must_use]
    pub const fn grpc(&self) -> GrpcCode {
        self.grpc
    }

    /// Canonical RFC 7807 problem type URI.
    #[must_use]
    pub const fn problem_type(&self) -> &'static str {
        self.problem_type
    }

    /// Canonical error kind for presentation.
    #[must_use]
    pub const fn kind(&self) -> AppErrorKind {
        self.kind
    }
}

/// gRPC status metadata used in RFC7807 payloads and tonic mapping.
///
/// The `value` matches the discriminant of `tonic::Code`, allowing direct
/// conversion when the `tonic` feature is enabled.
///
/// # Examples
///
/// ```rust
/// use masterror::{AppCode, mapping_for_code};
///
/// let grpc = mapping_for_code(&AppCode::Internal).grpc();
/// assert_eq!(grpc.name, "INTERNAL");
/// assert_eq!(grpc.value, 13);
/// ```
#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize)]
pub struct GrpcCode {
    /// Canonical name (e.g. `"NOT_FOUND"`).
    pub name:  &'static str,
    /// Numeric discriminant matching `tonic::Code`.
    pub value: i32
}

/// RFC7807 `application/problem+json` payload enriched with machine-readable
/// metadata.
///
/// Instances are produced by [`ProblemJson::from_app_error`] or
/// [`ProblemJson::from_ref`]. They power the HTTP adapters and expose
/// transport-neutral data for tests.
///
/// # Examples
///
/// ```rust
/// use masterror::{AppError, ProblemJson};
///
/// let problem = ProblemJson::from_ref(&AppError::not_found("missing"));
/// assert_eq!(problem.status, 404);
/// assert_eq!(problem.code.as_str(), "NOT_FOUND");
/// ```
#[derive(Clone, Debug, Serialize)]
pub struct ProblemJson {
    /// Canonical type URI describing the problem class.
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    pub type_uri:         Option<Cow<'static, str>>,
    /// Short, human-friendly title describing the error category.
    pub title:            Cow<'static, str>,
    /// HTTP status code returned to the client.
    pub status:           u16,
    /// Optional human-readable detail (redacted when marked private).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub detail:           Option<Cow<'static, str>>,
    /// Optional structured details emitted to clients.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[cfg(feature = "serde_json")]
    pub details:          Option<JsonValue>,
    /// Optional textual details emitted to clients when JSON is disabled.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[cfg(not(feature = "serde_json"))]
    pub details:          Option<String>,
    /// Stable machine-readable code.
    pub code:             AppCode,
    /// Optional gRPC mapping for multi-protocol clients.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub grpc:             Option<GrpcCode>,
    /// Structured metadata derived from [`Metadata`].
    #[serde(skip_serializing_if = "Option::is_none")]
    pub metadata:         Option<ProblemMetadata>,
    /// Retry advice propagated as the `Retry-After` header.
    #[serde(skip)]
    pub retry_after:      Option<u64>,
    /// Authentication challenge propagated as `WWW-Authenticate`.
    #[serde(skip)]
    pub www_authenticate: Option<String>
}

impl ProblemJson {
    /// Build a problem payload from an owned [`AppError`].
    ///
    /// # Preconditions
    /// - `error.code` must be a public [`AppCode`] (guaranteed by
    ///   construction).
    ///
    /// # Examples
    ///
    /// ```rust
    /// use masterror::{AppCode, AppError, ProblemJson};
    ///
    /// let problem = ProblemJson::from_app_error(AppError::conflict("exists"));
    /// assert_eq!(problem.code, AppCode::Conflict);
    /// assert_eq!(problem.status, 409);
    /// ```
    #[must_use]
    pub fn from_app_error(mut error: AppError) -> Self {
        error.emit_telemetry();
        let kind = error.kind;
        let code = replace(&mut error.code, AppCode::from(kind));
        let message = error.message.take();
        let metadata = take(&mut error.metadata);
        let edit_policy = error.edit_policy;
        let details = sanitize_details_owned(error.details.take(), edit_policy);
        let retry = error.retry.take();
        let www_authenticate = error.www_authenticate.take();
        let mapping = mapping_for_code(&code);
        let status = kind.http_status();
        let title = Cow::Borrowed(kind.label());
        let detail = sanitize_detail(message, kind, edit_policy);
        let metadata = sanitize_metadata_owned(metadata, edit_policy);
        Self {
            type_uri: Some(Cow::Borrowed(mapping.problem_type())),
            title,
            status,
            detail,
            details,
            code,
            grpc: Some(mapping.grpc()),
            metadata,
            retry_after: retry.map(|value| value.after_seconds),
            www_authenticate
        }
    }

    /// Build a problem payload from a borrowed [`AppError`].
    ///
    /// This is useful inside middleware that logs while forwarding the error
    /// downstream without consuming it.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use masterror::{AppError, ProblemJson};
    ///
    /// let err = AppError::bad_request("invalid");
    /// let problem = ProblemJson::from_ref(&err);
    /// assert_eq!(problem.status, 400);
    /// assert!(problem.detail.is_some());
    /// ```
    #[must_use]
    pub fn from_ref(error: &AppError) -> Self {
        let mapping = mapping_for_code(&error.code);
        let status = error.kind.http_status();
        let title = Cow::Borrowed(error.kind.label());
        let detail = sanitize_detail_ref(error);
        let details = sanitize_details_ref(error);
        let metadata = sanitize_metadata_ref(error.metadata(), error.edit_policy);
        Self {
            type_uri: Some(Cow::Borrowed(mapping.problem_type())),
            title,
            status,
            detail,
            details,
            code: error.code.clone(),
            grpc: Some(mapping.grpc()),
            metadata,
            retry_after: error.retry.map(|value| value.after_seconds),
            www_authenticate: error.www_authenticate.clone()
        }
    }

    /// Build a problem payload from a plain [`ErrorResponse`].
    ///
    /// Metadata and redaction hints are not available in this conversion.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use masterror::{AppCode, ErrorResponse, ProblemJson};
    ///
    /// let legacy = ErrorResponse::new(404, AppCode::NotFound, "missing").expect("status");
    /// let problem = ProblemJson::from_error_response(legacy);
    /// assert_eq!(problem.status, 404);
    /// assert_eq!(problem.code.as_str(), "NOT_FOUND");
    /// ```
    #[must_use]
    pub fn from_error_response(response: ErrorResponse) -> Self {
        let ErrorResponse {
            status,
            code,
            message,
            details,
            retry,
            www_authenticate
        } = response;
        let mapping = mapping_for_code(&code);
        let detail = if message.is_empty() {
            None
        } else {
            Some(Cow::Owned(message))
        };
        Self {
            type_uri: Some(Cow::Borrowed(mapping.problem_type())),
            title: Cow::Borrowed(mapping.kind().label()),
            status,
            detail,
            details,
            code,
            grpc: Some(mapping.grpc()),
            metadata: None,
            retry_after: retry.map(|value| value.after_seconds),
            www_authenticate
        }
    }

    /// Convert numeric status into [`StatusCode`].
    ///
    /// Falls back to `500 Internal Server Error` if the value is invalid.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use http::StatusCode;
    /// use masterror::{AppError, ProblemJson};
    ///
    /// let problem = ProblemJson::from_app_error(AppError::service("oops"));
    /// assert_eq!(problem.status_code(), StatusCode::INTERNAL_SERVER_ERROR);
    /// ```
    #[must_use]
    pub fn status_code(&self) -> StatusCode {
        match StatusCode::from_u16(self.status) {
            Ok(status) => status,
            Err(_) => StatusCode::INTERNAL_SERVER_ERROR
        }
    }

    /// Formatter exposing internals for diagnostic logging.
    #[must_use]
    pub fn internal(&self) -> crate::response::internal::ProblemJsonFormatter<'_> {
        crate::response::internal::ProblemJsonFormatter::new(self)
    }
}

/// Metadata section of a [`ProblemJson`] payload.
///
/// # Examples
///
/// ```rust
/// use masterror::{AppError, ProblemJson};
///
/// let err = AppError::service("retry").with_field(masterror::field::u64("attempt", 1));
/// let problem = ProblemJson::from_ref(&err);
/// assert!(problem.metadata.is_some());
/// ```
#[derive(Clone, Debug, Serialize)]
#[serde(transparent)]
pub struct ProblemMetadata(BTreeMap<Cow<'static, str>, ProblemMetadataValue>);

impl ProblemMetadata {
    #[cfg(test)]
    fn is_empty(&self) -> bool {
        self.0.is_empty()
    }
}

/// Individual metadata value serialized in problem payloads.
///
/// # Examples
///
/// ```rust
/// use masterror::{ProblemMetadataValue, field};
///
/// let (_name, field_value, _redaction) = field::u64("attempt", 2).into_parts();
/// let value = ProblemMetadataValue::from(field_value);
/// assert!(matches!(value, ProblemMetadataValue::U64(2)));
/// ```
#[derive(Clone, Debug, Serialize)]
#[serde(untagged)]
pub enum ProblemMetadataValue {
    /// String value preserved as-is.
    String(Cow<'static, str>),
    /// Signed 64-bit integer.
    I64(i64),
    /// Unsigned 64-bit integer.
    U64(u64),
    /// Floating-point number.
    F64(f64),
    /// Boolean flag serialized as `true`/`false`.
    Bool(bool),
    /// Duration represented as seconds plus nanoseconds remainder.
    Duration {
        /// Whole seconds component of the duration.
        secs:  u64,
        /// Additional nanoseconds (always less than one second).
        nanos: u32
    },
    /// IP address (v4 or v6).
    Ip(IpAddr),
    /// Structured JSON payload (requires the `serde_json` feature).
    #[cfg(feature = "serde_json")]
    Json(JsonValue)
}

impl From<FieldValue> for ProblemMetadataValue {
    fn from(value: FieldValue) -> Self {
        match value {
            FieldValue::Str(value) => Self::String(value),
            FieldValue::I64(value) => Self::I64(value),
            FieldValue::U64(value) => Self::U64(value),
            FieldValue::F64(value) => Self::F64(value),
            FieldValue::Bool(value) => Self::Bool(value),
            FieldValue::Uuid(value) => Self::String(Cow::Owned(value.to_string())),
            FieldValue::Duration(value) => Self::Duration {
                secs:  value.as_secs(),
                nanos: value.subsec_nanos()
            },
            FieldValue::Ip(value) => Self::Ip(value),
            #[cfg(feature = "serde_json")]
            FieldValue::Json(value) => Self::Json(value)
        }
    }
}

impl From<&FieldValue> for ProblemMetadataValue {
    fn from(value: &FieldValue) -> Self {
        match value {
            FieldValue::Str(value) => Self::String(value.clone()),
            FieldValue::I64(value) => Self::I64(*value),
            FieldValue::U64(value) => Self::U64(*value),
            FieldValue::F64(value) => Self::F64(*value),
            FieldValue::Bool(value) => Self::Bool(*value),
            FieldValue::Uuid(value) => Self::String(Cow::Owned(value.to_string())),
            FieldValue::Duration(value) => Self::Duration {
                secs:  value.as_secs(),
                nanos: value.subsec_nanos()
            },
            FieldValue::Ip(value) => Self::Ip(*value),
            #[cfg(feature = "serde_json")]
            FieldValue::Json(value) => Self::Json(value.clone())
        }
    }
}

fn sanitize_detail(
    message: Option<Cow<'static, str>>,
    kind: AppErrorKind,
    policy: MessageEditPolicy
) -> Option<Cow<'static, str>> {
    if matches!(policy, MessageEditPolicy::Redact) {
        return None;
    }
    Some(message.unwrap_or_else(|| Cow::Borrowed(kind.label())))
}

fn sanitize_detail_ref(error: &AppError) -> Option<Cow<'static, str>> {
    if matches!(error.edit_policy, MessageEditPolicy::Redact) {
        return None;
    }
    match error.message.as_ref() {
        Some(Cow::Borrowed(msg)) => Some(Cow::Borrowed(*msg)),
        Some(Cow::Owned(msg)) => Some(Cow::Owned(msg.clone())),
        None => Some(Cow::Borrowed(error.kind.label()))
    }
}

#[cfg(feature = "serde_json")]
fn sanitize_details_owned(
    details: Option<JsonValue>,
    policy: MessageEditPolicy
) -> Option<JsonValue> {
    if matches!(policy, MessageEditPolicy::Redact) {
        None
    } else {
        details
    }
}

#[cfg(not(feature = "serde_json"))]
fn sanitize_details_owned(details: Option<String>, policy: MessageEditPolicy) -> Option<String> {
    if matches!(policy, MessageEditPolicy::Redact) {
        None
    } else {
        details
    }
}

#[cfg(feature = "serde_json")]
fn sanitize_details_ref(error: &AppError) -> Option<JsonValue> {
    if matches!(error.edit_policy, MessageEditPolicy::Redact) {
        None
    } else {
        error.details.clone()
    }
}

#[cfg(not(feature = "serde_json"))]
fn sanitize_details_ref(error: &AppError) -> Option<String> {
    if matches!(error.edit_policy, MessageEditPolicy::Redact) {
        None
    } else {
        error.details.clone()
    }
}

fn sanitize_metadata_owned(
    metadata: Metadata,
    policy: MessageEditPolicy
) -> Option<ProblemMetadata> {
    if matches!(policy, MessageEditPolicy::Redact) || metadata.is_empty() {
        return None;
    }
    let mut public = BTreeMap::new();
    for field in metadata {
        let (name, value, redaction) = field.into_parts();
        if let Some(sanitized) = sanitize_problem_metadata_value_owned(value, redaction) {
            public.insert(Cow::Borrowed(name), sanitized);
        }
    }
    if public.is_empty() {
        None
    } else {
        Some(ProblemMetadata(public))
    }
}

fn sanitize_metadata_ref(
    metadata: &Metadata,
    policy: MessageEditPolicy
) -> Option<ProblemMetadata> {
    if matches!(policy, MessageEditPolicy::Redact) || metadata.is_empty() {
        return None;
    }
    let mut public = BTreeMap::new();
    for (name, value, redaction) in metadata.iter_with_redaction() {
        if let Some(sanitized) = sanitize_problem_metadata_value_ref(value, redaction) {
            public.insert(Cow::Borrowed(name), sanitized);
        }
    }
    if public.is_empty() {
        None
    } else {
        Some(ProblemMetadata(public))
    }
}

const REDACTED_PLACEHOLDER: &str = "[REDACTED]";

fn sanitize_problem_metadata_value_owned(
    value: FieldValue,
    redaction: FieldRedaction
) -> Option<ProblemMetadataValue> {
    match redaction {
        FieldRedaction::None => Some(ProblemMetadataValue::from(value)),
        FieldRedaction::Redact => Some(ProblemMetadataValue::String(Cow::Borrowed(
            REDACTED_PLACEHOLDER
        ))),
        FieldRedaction::Hash => Some(ProblemMetadataValue::String(Cow::Owned(hash_field_value(
            &value
        )))),
        FieldRedaction::Last4 => mask_last4_field_value(&value)
            .map(|masked| ProblemMetadataValue::String(Cow::Owned(masked)))
    }
}

fn sanitize_problem_metadata_value_ref(
    value: &FieldValue,
    redaction: FieldRedaction
) -> Option<ProblemMetadataValue> {
    match redaction {
        FieldRedaction::None => Some(ProblemMetadataValue::from(value)),
        FieldRedaction::Redact => Some(ProblemMetadataValue::String(Cow::Borrowed(
            REDACTED_PLACEHOLDER
        ))),
        FieldRedaction::Hash => Some(ProblemMetadataValue::String(Cow::Owned(hash_field_value(
            value
        )))),
        FieldRedaction::Last4 => mask_last4_field_value(value)
            .map(|masked| ProblemMetadataValue::String(Cow::Owned(masked)))
    }
}

struct StackBuffer<const N: usize> {
    buf: [u8; N],
    len: usize
}

impl<const N: usize> StackBuffer<N> {
    const fn new() -> Self {
        Self {
            buf: [0; N],
            len: 0
        }
    }

    fn as_bytes(&self) -> &[u8] {
        &self.buf[..self.len]
    }

    fn as_str(&self) -> Option<&str> {
        from_utf8(self.as_bytes()).ok()
    }
}

impl<const N: usize> Write for StackBuffer<N> {
    fn write_str(&mut self, s: &str) -> core::fmt::Result {
        let remaining = N.saturating_sub(self.len);
        if s.len() > remaining {
            return Err(core::fmt::Error);
        }
        self.buf[self.len..self.len + s.len()].copy_from_slice(s.as_bytes());
        self.len += s.len();
        Ok(())
    }
}

fn hash_field_value(value: &FieldValue) -> String {
    let mut hasher = Sha256::new();
    match value {
        FieldValue::Str(value) => hasher.update(value.as_ref().as_bytes()),
        FieldValue::I64(value) => {
            let mut buffer = IntegerBuffer::new();
            hasher.update(buffer.format(*value).as_bytes());
        }
        FieldValue::U64(value) => {
            let mut buffer = IntegerBuffer::new();
            hasher.update(buffer.format(*value).as_bytes());
        }
        FieldValue::F64(value) => hasher.update(value.to_le_bytes()),
        FieldValue::Bool(value) => {
            if *value {
                hasher.update(b"true");
            } else {
                hasher.update(b"false");
            }
        }
        FieldValue::Uuid(value) => {
            let mut repr = [0u8; 36];
            let text = value.hyphenated().encode_lower(&mut repr);
            hasher.update(text.as_bytes());
        }
        FieldValue::Duration(value) => {
            hasher.update(value.as_secs().to_le_bytes());
            hasher.update(value.subsec_nanos().to_le_bytes());
        }
        FieldValue::Ip(value) => {
            let mut buffer = StackBuffer::<46>::new();
            if write!(&mut buffer, "{value}").is_ok() {
                hasher.update(buffer.as_bytes());
            } else {
                let fallback = value.to_string();
                hasher.update(fallback.as_bytes());
            }
        }
        #[cfg(feature = "serde_json")]
        FieldValue::Json(value) => {
            if let Ok(serialized) = serde_json::to_vec(value) {
                hasher.update(&serialized);
            }
        }
    }
    let digest = hasher.finalize();
    let mut hex = String::with_capacity(digest.len() * 2);
    for byte in digest {
        let _ = write!(&mut hex, "{:02x}", byte);
    }
    hex
}

fn mask_last4_field_value(value: &FieldValue) -> Option<String> {
    match value {
        FieldValue::Str(value) => Some(mask_last4(value.as_ref())),
        FieldValue::I64(value) => {
            let mut buffer = IntegerBuffer::new();
            Some(mask_last4(buffer.format(*value)))
        }
        FieldValue::U64(value) => {
            let mut buffer = IntegerBuffer::new();
            Some(mask_last4(buffer.format(*value)))
        }
        FieldValue::F64(value) => {
            let mut buffer = FloatBuffer::new();
            Some(mask_last4(buffer.format(*value)))
        }
        FieldValue::Uuid(value) => {
            let mut repr = [0u8; 36];
            let text = value.hyphenated().encode_lower(&mut repr);
            Some(mask_last4(text))
        }
        FieldValue::Duration(value) => Some(mask_last4(&duration_to_string(*value))),
        FieldValue::Ip(value) => {
            let mut buffer = StackBuffer::<46>::new();
            if write!(&mut buffer, "{value}").is_err() {
                return Some(mask_last4(&value.to_string()));
            }
            buffer.as_str().map(mask_last4)
        }
        #[cfg(feature = "serde_json")]
        FieldValue::Json(value) => serde_json::to_string(value)
            .ok()
            .map(|text| mask_last4(&text)),
        FieldValue::Bool(_) => None
    }
}

fn mask_last4(value: &str) -> String {
    let chars = value.chars();
    let total = chars.clone().count();
    if total == 0 {
        return String::new();
    }
    let keep = if total <= 4 { 1 } else { 4 };
    let mask_len = total.saturating_sub(keep);
    let mut masked = String::with_capacity(value.len());
    masked.extend(repeat_n('*', mask_len));
    masked.extend(chars.skip(mask_len));
    masked
}

/// Canonical mapping table covering every built-in [`AppCode`].
///
/// # Examples
///
/// ```rust
/// use masterror::CODE_MAPPINGS;
///
/// assert!(
///     CODE_MAPPINGS
///         .iter()
///         .any(|(code, _)| code.as_str() == "NOT_FOUND")
/// );
/// ```
pub const CODE_MAPPINGS: &[(AppCode, CodeMapping)] = &[
    (
        AppCode::NotFound,
        CodeMapping {
            http_status:  404,
            grpc:         GrpcCode {
                name:  "NOT_FOUND",
                value: 5
            },
            problem_type: "https://errors.masterror.rs/not-found",
            kind:         AppErrorKind::NotFound
        }
    ),
    (
        AppCode::Validation,
        CodeMapping {
            http_status:  422,
            grpc:         GrpcCode {
                name:  "INVALID_ARGUMENT",
                value: 3
            },
            problem_type: "https://errors.masterror.rs/validation",
            kind:         AppErrorKind::Validation
        }
    ),
    (
        AppCode::Conflict,
        CodeMapping {
            http_status:  409,
            grpc:         GrpcCode {
                name:  "ALREADY_EXISTS",
                value: 6
            },
            problem_type: "https://errors.masterror.rs/conflict",
            kind:         AppErrorKind::Conflict
        }
    ),
    (
        AppCode::UserAlreadyExists,
        CodeMapping {
            http_status:  409,
            grpc:         GrpcCode {
                name:  "ALREADY_EXISTS",
                value: 6
            },
            problem_type: "https://errors.masterror.rs/user-already-exists",
            kind:         AppErrorKind::Conflict
        }
    ),
    (
        AppCode::Unauthorized,
        CodeMapping {
            http_status:  401,
            grpc:         GrpcCode {
                name:  "UNAUTHENTICATED",
                value: 16
            },
            problem_type: "https://errors.masterror.rs/unauthorized",
            kind:         AppErrorKind::Unauthorized
        }
    ),
    (
        AppCode::Forbidden,
        CodeMapping {
            http_status:  403,
            grpc:         GrpcCode {
                name:  "PERMISSION_DENIED",
                value: 7
            },
            problem_type: "https://errors.masterror.rs/forbidden",
            kind:         AppErrorKind::Forbidden
        }
    ),
    (
        AppCode::NotImplemented,
        CodeMapping {
            http_status:  501,
            grpc:         GrpcCode {
                name:  "UNIMPLEMENTED",
                value: 12
            },
            problem_type: "https://errors.masterror.rs/not-implemented",
            kind:         AppErrorKind::NotImplemented
        }
    ),
    (
        AppCode::BadRequest,
        CodeMapping {
            http_status:  400,
            grpc:         GrpcCode {
                name:  "INVALID_ARGUMENT",
                value: 3
            },
            problem_type: "https://errors.masterror.rs/bad-request",
            kind:         AppErrorKind::BadRequest
        }
    ),
    (
        AppCode::RateLimited,
        CodeMapping {
            http_status:  429,
            grpc:         GrpcCode {
                name:  "RESOURCE_EXHAUSTED",
                value: 8
            },
            problem_type: "https://errors.masterror.rs/rate-limited",
            kind:         AppErrorKind::RateLimited
        }
    ),
    (
        AppCode::TelegramAuth,
        CodeMapping {
            http_status:  401,
            grpc:         GrpcCode {
                name:  "UNAUTHENTICATED",
                value: 16
            },
            problem_type: "https://errors.masterror.rs/telegram-auth",
            kind:         AppErrorKind::TelegramAuth
        }
    ),
    (
        AppCode::InvalidJwt,
        CodeMapping {
            http_status:  401,
            grpc:         GrpcCode {
                name:  "UNAUTHENTICATED",
                value: 16
            },
            problem_type: "https://errors.masterror.rs/invalid-jwt",
            kind:         AppErrorKind::InvalidJwt
        }
    ),
    (
        AppCode::Internal,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/internal",
            kind:         AppErrorKind::Internal
        }
    ),
    (
        AppCode::Database,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/database",
            kind:         AppErrorKind::Database
        }
    ),
    (
        AppCode::Service,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/service",
            kind:         AppErrorKind::Service
        }
    ),
    (
        AppCode::Config,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/config",
            kind:         AppErrorKind::Config
        }
    ),
    (
        AppCode::Turnkey,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/turnkey",
            kind:         AppErrorKind::Turnkey
        }
    ),
    (
        AppCode::Timeout,
        CodeMapping {
            http_status:  504,
            grpc:         GrpcCode {
                name:  "DEADLINE_EXCEEDED",
                value: 4
            },
            problem_type: "https://errors.masterror.rs/timeout",
            kind:         AppErrorKind::Timeout
        }
    ),
    (
        AppCode::Network,
        CodeMapping {
            http_status:  503,
            grpc:         GrpcCode {
                name:  "UNAVAILABLE",
                value: 14
            },
            problem_type: "https://errors.masterror.rs/network",
            kind:         AppErrorKind::Network
        }
    ),
    (
        AppCode::DependencyUnavailable,
        CodeMapping {
            http_status:  503,
            grpc:         GrpcCode {
                name:  "UNAVAILABLE",
                value: 14
            },
            problem_type: "https://errors.masterror.rs/dependency-unavailable",
            kind:         AppErrorKind::DependencyUnavailable
        }
    ),
    (
        AppCode::Serialization,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/serialization",
            kind:         AppErrorKind::Serialization
        }
    ),
    (
        AppCode::Deserialization,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "INTERNAL",
                value: 13
            },
            problem_type: "https://errors.masterror.rs/deserialization",
            kind:         AppErrorKind::Deserialization
        }
    ),
    (
        AppCode::ExternalApi,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "UNAVAILABLE",
                value: 14
            },
            problem_type: "https://errors.masterror.rs/external-api",
            kind:         AppErrorKind::ExternalApi
        }
    ),
    (
        AppCode::Queue,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "UNAVAILABLE",
                value: 14
            },
            problem_type: "https://errors.masterror.rs/queue",
            kind:         AppErrorKind::Queue
        }
    ),
    (
        AppCode::Cache,
        CodeMapping {
            http_status:  500,
            grpc:         GrpcCode {
                name:  "UNAVAILABLE",
                value: 14
            },
            problem_type: "https://errors.masterror.rs/cache",
            kind:         AppErrorKind::Cache
        }
    )
];

const DEFAULT_MAPPING: CodeMapping = CodeMapping {
    http_status:  500,
    grpc:         GrpcCode {
        name:  "INTERNAL",
        value: 13
    },
    problem_type: "https://errors.masterror.rs/internal",
    kind:         AppErrorKind::Internal
};

/// Lookup helper returning canonical mapping for a given [`AppCode`].
///
/// # Examples
///
/// ```rust
/// use masterror::{AppCode, mapping_for_code};
///
/// let mapping = mapping_for_code(&AppCode::Timeout);
/// assert_eq!(mapping.grpc().name, "DEADLINE_EXCEEDED");
/// ```
#[must_use]
pub fn mapping_for_code(code: &AppCode) -> CodeMapping {
    CODE_MAPPINGS
        .iter()
        .find_map(|(candidate, mapping)| {
            if candidate == code {
                Some(*mapping)
            } else {
                None
            }
        })
        .unwrap_or(DEFAULT_MAPPING)
}

#[cfg(test)]
mod tests {
    use std::{
        fmt::Write,
        net::{IpAddr, Ipv4Addr},
        time::Duration
    };

    use serde_json::Value;
    use sha2::{Digest, Sha256};
    use uuid::Uuid;

    use super::*;
    #[cfg(feature = "serde_json")]
    use crate::field::json;
    use crate::{
        AppError,
        field::{duration, f64, ip, str, u64, uuid}
    };

    fn sha256_hex(input: &[u8]) -> String {
        let mut hasher = Sha256::new();
        hasher.update(input);
        hasher
            .finalize()
            .iter()
            .fold(String::with_capacity(64), |mut acc, byte| {
                let _ = write!(&mut acc, "{:02x}", byte);
                acc
            })
    }

    #[test]
    fn metadata_is_skipped_when_redacted() {
        let err = AppError::internal("secret")
            .redactable()
            .with_field(str("token", "super-secret"));
        let problem = ProblemJson::from_ref(&err);
        assert!(problem.detail.is_none());
        assert!(problem.metadata.is_none());
    }

    #[test]
    fn metadata_is_serialized_when_allowed() {
        let err = AppError::internal("oops").with_field(u64("attempt", 2));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        assert!(!metadata.is_empty());
    }

    #[test]
    fn metadata_preserves_extended_field_types() {
        let mut err = AppError::internal("oops");
        err = err.with_field(f64("ratio", 0.25));
        err = err.with_field(duration("elapsed", Duration::from_millis(1500)));
        err = err.with_field(ip("peer", IpAddr::from(Ipv4Addr::new(10, 0, 0, 42))));
        #[cfg(feature = "serde_json")]
        {
            err = err.with_field(json("payload", serde_json::json!({ "status": "ok" })));
        }
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let ratio = metadata.0.get("ratio").expect("ratio metadata");
        assert!(matches!(
            ratio,
            ProblemMetadataValue::F64(value) if (*value - 0.25).abs() < f64::EPSILON
        ));
        let duration = metadata.0.get("elapsed").expect("elapsed metadata");
        assert!(matches!(
            duration,
            ProblemMetadataValue::Duration { secs, nanos }
            if *secs == 1 && *nanos == 500_000_000
        ));
        let ip = metadata.0.get("peer").expect("peer metadata");
        assert!(matches!(ip, ProblemMetadataValue::Ip(addr) if addr.is_ipv4()));
        #[cfg(feature = "serde_json")]
        {
            let payload = metadata.0.get("payload").expect("payload metadata");
            assert!(matches!(
                payload,
                ProblemMetadataValue::Json(value) if value["status"] == "ok"
            ));
        }
    }

    #[test]
    fn redacted_metadata_uses_placeholder() {
        let err = AppError::internal("oops").with_field(str("password", "secret"));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("password").expect("password field");
        match value {
            ProblemMetadataValue::String(text) => {
                assert_eq!(text.as_ref(), super::REDACTED_PLACEHOLDER);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn hashed_metadata_masks_original_value() {
        let err = AppError::internal("oops").with_field(str("token", "super"));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("token").expect("token field");
        match value {
            ProblemMetadataValue::String(text) => {
                assert_eq!(text.len(), 64);
                assert_ne!(text.as_ref(), "super");
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn hashed_numeric_metadata_uses_decimal_text() {
        let err = AppError::internal("oops")
            .with_field(u64("attempt", 42).with_redaction(FieldRedaction::Hash));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("attempt").expect("attempt field");
        match value {
            ProblemMetadataValue::String(text) => {
                let expected = sha256_hex(b"42");
                assert_eq!(text.as_ref(), expected);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn hashed_uuid_metadata_preserves_hyphenated_text() {
        let trace_id = Uuid::from_u128(0x1234_5678_9abc_def0_1234_5678_9abc_def0);
        let err = AppError::internal("oops")
            .with_field(uuid("trace", trace_id).with_redaction(FieldRedaction::Hash));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("trace").expect("trace field");
        match value {
            ProblemMetadataValue::String(text) => {
                let mut repr = [0u8; 36];
                let expected_repr = trace_id.hyphenated().encode_lower(&mut repr);
                let expected = sha256_hex(expected_repr.as_bytes());
                assert_eq!(text.as_ref(), expected);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn hashed_ip_metadata_preserves_display_text() {
        let peer_addr = IpAddr::from(Ipv4Addr::new(10, 10, 10, 10));
        let err = AppError::internal("oops")
            .with_field(ip("peer", peer_addr).with_redaction(FieldRedaction::Hash));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("peer").expect("peer field");
        match value {
            ProblemMetadataValue::String(text) => {
                let expected = sha256_hex(peer_addr.to_string().as_bytes());
                assert_eq!(text.as_ref(), expected);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn last4_metadata_preserves_suffix() {
        let err = AppError::internal("oops").with_field(str("card_number", "4111111111111111"));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("card_number").expect("card number");
        match value {
            ProblemMetadataValue::String(text) => {
                assert!(text.ends_with("1111"));
                assert!(text.starts_with("************"));
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn last4_metadata_handles_multibyte_suffix() {
        let multibyte = "💳💳💳💳💳💳";
        let err = AppError::internal("oops")
            .with_field(str("emoji", multibyte).with_redaction(FieldRedaction::Last4));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let value = metadata.0.get("emoji").expect("emoji field");
        match value {
            ProblemMetadataValue::String(text) => {
                let total = multibyte.chars().count();
                let keep = if total <= 4 { 1 } else { 4 };
                let expected_mask_len = total.saturating_sub(keep);
                let expected_suffix: String = multibyte.chars().skip(expected_mask_len).collect();
                assert!(text.ends_with(&expected_suffix));
                assert!(text.chars().take(expected_mask_len).all(|c| c == '*'));
                assert_eq!(
                    text.chars().filter(|c| *c == '*').count(),
                    expected_mask_len
                );
                assert_eq!(text.chars().count(), multibyte.chars().count());
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn last4_numeric_metadata_matches_decimal_format() {
        let number = 123456789u64;
        let err = AppError::internal("oops")
            .with_field(u64("invoice", number).with_redaction(FieldRedaction::Last4));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let metadata_value = metadata.0.get("invoice").expect("invoice field");
        let expected_suffix = mask_last4(&number.to_string());
        match metadata_value {
            ProblemMetadataValue::String(text) => {
                assert_eq!(text.as_ref(), expected_suffix);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn last4_uuid_metadata_matches_previous_format() {
        let trace_id = Uuid::from_u128(0x4321_8765_cba9_0fed_cba9_8765_4321_0fed);
        let err = AppError::internal("oops")
            .with_field(uuid("trace", trace_id).with_redaction(FieldRedaction::Last4));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let metadata_value = metadata.0.get("trace").expect("trace field");
        let expected_repr = trace_id.to_string();
        let expected_suffix = mask_last4(&expected_repr);
        match metadata_value {
            ProblemMetadataValue::String(text) => {
                assert_eq!(text.as_ref(), expected_suffix);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn last4_ip_metadata_matches_previous_format() {
        let peer_addr = IpAddr::from(Ipv4Addr::new(172, 16, 10, 1));
        let err = AppError::internal("oops")
            .with_field(ip("peer", peer_addr).with_redaction(FieldRedaction::Last4));
        let problem = ProblemJson::from_ref(&err);
        let metadata = problem.metadata.expect("metadata");
        let metadata_value = metadata.0.get("peer").expect("peer field");
        let expected_suffix = mask_last4(&peer_addr.to_string());
        match metadata_value {
            ProblemMetadataValue::String(text) => {
                assert_eq!(text.as_ref(), expected_suffix);
            }
            other => panic!("unexpected metadata value: {other:?}")
        }
    }

    #[test]
    fn problem_json_serialization_masks_sensitive_metadata() {
        let secret = "super-secret";
        let err = AppError::internal("oops").with_field(str("token", secret));
        let problem = ProblemJson::from_ref(&err);
        let json = serde_json::to_value(&problem).expect("serialize problem");
        let metadata = json
            .get("metadata")
            .and_then(Value::as_object)
            .expect("metadata present");
        let hashed = metadata
            .get("token")
            .and_then(Value::as_str)
            .expect("hashed token");
        let mut hasher = Sha256::new();
        hasher.update(secret.as_bytes());
        let digest = hasher.finalize();
        let expected = digest
            .iter()
            .fold(String::with_capacity(64), |mut acc, byte| {
                let _ = write!(&mut acc, "{:02x}", byte);
                acc
            });
        assert_eq!(hashed, expected);
        assert!(!json.to_string().contains(secret));
        let debug_repr = format!("{:?}", problem.internal());
        assert!(debug_repr.contains("metadata"));
        assert!(!debug_repr.contains(secret));
    }

    #[test]
    fn problem_json_serialization_omits_metadata_when_redacted() {
        let secret_value = "sensitive-value";
        let err = AppError::internal("secret")
            .redactable()
            .with_field(str("token", secret_value));
        let problem = ProblemJson::from_ref(&err);
        let json = serde_json::to_value(&problem).expect("serialize problem");
        assert!(json.get("metadata").is_none());
        assert!(!json.to_string().contains(secret_value));
        let debug_repr = format!("{:?}", problem.internal());
        assert!(debug_repr.contains("ProblemJson"));
    }

    #[test]
    fn mapping_for_every_code_matches_http_status() {
        for (code, mapping) in CODE_MAPPINGS {
            let status = mapping.http_status();
            let expected = mapping.kind().http_status();
            assert_eq!(status, expected, "status mismatch for {:?}", code);
        }
    }
}