voirs-sdk 0.1.0-rc.1

Unified SDK and public API for VoiRS speech synthesis
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
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
//! Core error types for VoiRS operations.
//!
//! This module provides a comprehensive error type system for the VoiRS SDK,
//! categorized by operation type and severity level.

use serde::{Deserialize, Serialize};
use std::{collections::HashMap, path::PathBuf, time::Duration};
use thiserror::Error;

/// Main error type for VoiRS operations with enhanced categorization
#[derive(Debug, Error)]
pub enum VoirsError {
    // === Voice Management Errors ===
    /// Voice not found error with suggestions
    #[error("Voice '{voice}' not found. Available voices: {available:?}")]
    VoiceNotFound {
        voice: String,
        available: Vec<String>,
        suggestions: Vec<String>,
    },

    /// Voice unavailable due to missing dependencies
    #[error("Voice '{voice}' is unavailable: {reason}")]
    VoiceUnavailable { voice: String, reason: String },

    /// Voice configuration invalid
    #[error("Voice '{voice}' has invalid configuration: {issue}")]
    VoiceConfigurationInvalid { voice: String, issue: String },

    // === Synthesis Errors ===
    /// Synthesis operation failed with context
    #[error("Synthesis failed for text: '{text}' (length: {text_length})")]
    SynthesisFailed {
        text: String,
        text_length: usize,
        stage: SynthesisStage,
        #[source]
        cause: Box<dyn std::error::Error + Send + Sync>,
    },

    /// Synthesis quality degraded
    #[error("Synthesis quality degraded: {reason}")]
    SynthesisQualityDegraded {
        reason: String,
        metrics: QualityMetrics,
    },

    /// Synthesis interrupted
    #[error("Synthesis was interrupted at stage '{stage}'")]
    SynthesisInterrupted {
        stage: SynthesisStage,
        reason: String,
    },

    // === Device and Hardware Errors ===
    /// Device or hardware error with recovery hints
    #[error("Device error ({device}): {message}")]
    DeviceError {
        device: String,
        message: String,
        recovery_hint: Option<String>,
    },

    /// Device not available error with alternatives
    #[error("Device '{device}' is not available")]
    DeviceNotAvailable {
        device: String,
        alternatives: Vec<String>,
    },

    /// Unsupported device error
    #[error("Device '{device}' is not supported")]
    UnsupportedDevice { device: String },

    /// GPU out of memory
    #[error(
        "GPU out of memory on device '{device}': {used_mb}MB used, {available_mb}MB available"
    )]
    GpuOutOfMemory {
        device: String,
        used_mb: u32,
        available_mb: u32,
    },

    // === File and I/O Errors ===
    /// File I/O error with operation context
    #[error("I/O error during '{operation}' at path '{path}'")]
    IoError {
        path: PathBuf,
        operation: IoOperation,
        #[source]
        source: std::io::Error,
    },

    /// File format not supported
    #[error("Unsupported file format '{format}' for path '{path}'")]
    UnsupportedFileFormat { path: PathBuf, format: String },

    /// File corrupted or invalid
    #[error("File is corrupted or invalid: '{path}'")]
    FileCorrupted { path: PathBuf, reason: String },

    // === Configuration Errors ===
    /// Configuration error with field context
    #[error("Configuration error in field '{field}': {message}")]
    ConfigError { field: String, message: String },

    /// Invalid configuration error with validation details
    #[error("Invalid configuration for field '{field}': {reason}")]
    InvalidConfiguration {
        field: String,
        value: String,
        reason: String,
        valid_values: Option<Vec<String>>,
    },

    /// Configuration migration failed
    #[error("Configuration migration failed from version '{from}' to '{to}': {reason}")]
    ConfigMigrationFailed {
        from: String,
        to: String,
        reason: String,
    },

    // === Model Errors ===
    /// Model loading or processing error
    #[error("Model error for '{model_type}': {message}")]
    ModelError {
        model_type: ModelType,
        message: String,
        #[source]
        source: Option<Box<dyn std::error::Error + Send + Sync>>,
    },

    /// Model not found
    #[error("Model '{model_name}' not found at path '{path}'")]
    ModelNotFound { model_name: String, path: PathBuf },

    /// Model version mismatch
    #[error("Model version mismatch: expected {expected}, found {found}")]
    ModelVersionMismatch { expected: String, found: String },

    /// Model incompatible with device
    #[error("Model '{model_name}' is incompatible with device '{device}'")]
    ModelDeviceIncompatible { model_name: String, device: String },

    // === Audio Processing Errors ===
    /// Audio processing error with buffer info
    #[error("Audio processing error: {message}")]
    AudioError {
        message: String,
        buffer_info: Option<AudioBufferInfo>,
    },

    /// Audio format conversion failed
    #[error("Audio format conversion failed from '{from}' to '{to}': {reason}")]
    AudioFormatConversionFailed {
        from: String,
        to: String,
        reason: String,
    },

    /// Audio buffer overflow/underflow
    #[error("Audio buffer {error_type}: {details}")]
    AudioBufferError {
        error_type: AudioBufferErrorType,
        details: String,
    },

    // === Language Processing Errors ===
    /// G2P (Grapheme-to-Phoneme) conversion error
    #[error("G2P conversion failed for text '{text}': {message}")]
    G2pError {
        text: String,
        message: String,
        language: Option<String>,
    },

    /// Text preprocessing error
    #[error("Text preprocessing failed: {message}")]
    TextPreprocessingError {
        message: String,
        text_sample: String,
    },

    /// Language not supported
    #[error("Language '{language}' is not supported")]
    LanguageNotSupported {
        language: String,
        supported: Vec<String>,
    },

    // === Network and Remote Errors ===
    /// Network or download error with retry info
    #[error("Network error: {message}")]
    NetworkError {
        message: String,
        retry_count: u32,
        max_retries: u32,
        #[source]
        source: Option<Box<dyn std::error::Error + Send + Sync>>,
    },

    /// Download failed
    #[error("Download failed for '{url}': {reason}")]
    DownloadFailed {
        url: String,
        reason: String,
        bytes_downloaded: u64,
        total_bytes: Option<u64>,
    },

    /// Authentication failed
    #[error("Authentication failed for service '{service}': {reason}")]
    AuthenticationFailed { service: String, reason: String },

    // === Pipeline and State Errors ===
    /// Pipeline not ready error
    #[error("Pipeline is not ready for operation")]
    PipelineNotReady,

    /// Invalid state transition error
    #[error("Invalid state transition from '{from}' to '{to}': {reason}")]
    InvalidStateTransition {
        from: String,
        to: String,
        reason: String,
    },

    /// Component synchronization failed
    #[error("Component '{component}' synchronization failed: {reason}")]
    ComponentSynchronizationFailed { component: String, reason: String },

    // === Timing and Performance Errors ===
    /// Timeout error with operation context
    #[error("Operation '{operation}' timed out after {duration:?}")]
    TimeoutError {
        operation: String,
        duration: Duration,
        expected_duration: Option<Duration>,
    },

    /// Performance degradation detected
    #[error("Performance degradation detected: {metric} = {value} (threshold: {threshold})")]
    PerformanceDegradation {
        metric: String,
        value: f64,
        threshold: f64,
    },

    /// Real-time constraint violation
    #[error("Real-time constraint violated: {constraint}")]
    RealTimeConstraintViolation { constraint: String },

    // === Memory and Resource Errors ===
    /// Out of memory error
    #[error("Out of memory: {message}")]
    OutOfMemory { message: String, requested_mb: u32 },

    /// Resource exhausted
    #[error("Resource '{resource}' exhausted: {details}")]
    ResourceExhausted { resource: String, details: String },

    /// Memory leak detected
    #[error("Memory leak detected in component '{component}': {leaked_mb}MB")]
    MemoryLeak { component: String, leaked_mb: u32 },

    // === Serialization and Data Errors ===
    /// Serialization error with format context
    #[error("Serialization error ({format}): {message}")]
    SerializationError { format: String, message: String },

    /// Data validation failed
    #[error("Data validation failed for '{data_type}': {reason}")]
    DataValidationFailed { data_type: String, reason: String },

    /// Schema mismatch
    #[error("Schema mismatch: expected version {expected}, found {found}")]
    SchemaMismatch { expected: String, found: String },

    // === Generic and Internal Errors ===
    /// Generic internal error with context
    #[error("Internal error in '{component}': {message}")]
    InternalError { component: String, message: String },

    /// Feature not implemented
    #[error("Feature '{feature}' is not implemented")]
    NotImplemented { feature: String },

    /// Feature not available
    #[error("Feature '{feature}' is not available: {reason}")]
    FeatureUnavailable { feature: String, reason: String },

    /// Deprecated functionality used
    #[error("Deprecated functionality '{feature}' used. Use '{replacement}' instead")]
    DeprecatedFunctionality {
        feature: String,
        replacement: String,
    },

    // === Advanced Feature-Specific Errors ===

    // Emotion Control Errors
    /// Emotion control error
    #[error("Emotion control error: {message}")]
    EmotionError {
        message: String,
        emotion_type: Option<String>,
        intensity: Option<f32>,
    },

    /// Emotion not supported
    #[error("Emotion '{emotion}' is not supported. Available emotions: {available:?}")]
    EmotionNotSupported {
        emotion: String,
        available: Vec<String>,
    },

    /// Emotion intensity out of range
    #[error("Emotion intensity {intensity} is out of range (0.0-1.0)")]
    EmotionIntensityOutOfRange { intensity: f32 },

    /// Emotion configuration invalid
    #[error("Emotion configuration invalid: {reason}")]
    EmotionConfigurationInvalid { reason: String },

    // Voice Cloning Errors
    /// Voice cloning error
    #[error("Voice cloning error: {message}")]
    VoiceCloningError {
        message: String,
        cloning_method: Option<String>,
    },

    /// Voice cloning source invalid
    #[error("Voice cloning source is invalid: {reason}")]
    VoiceCloningSourceInvalid {
        reason: String,
        audio_duration: Option<f32>,
        required_duration: Option<f32>,
    },

    /// Voice cloning quality too low
    #[error("Voice cloning quality {quality} is below threshold {threshold}")]
    VoiceCloningQualityTooLow { quality: f32, threshold: f32 },

    /// Voice cloning method not supported
    #[error("Voice cloning method '{method}' is not supported")]
    VoiceCloningMethodNotSupported {
        method: String,
        supported: Vec<String>,
    },

    // Voice Conversion Errors
    /// Voice conversion error
    #[error("Voice conversion error: {message}")]
    VoiceConversionError {
        message: String,
        conversion_type: Option<String>,
    },

    /// Voice conversion target invalid
    #[error("Voice conversion target is invalid: {reason}")]
    VoiceConversionTargetInvalid { reason: String, target: String },

    /// Voice conversion not supported
    #[error("Voice conversion from '{from}' to '{to}' is not supported")]
    VoiceConversionNotSupported { from: String, to: String },

    /// Real-time conversion buffer overflow
    #[error("Real-time conversion buffer overflow: {details}")]
    RealTimeConversionBufferOverflow { details: String, buffer_size: usize },

    // Singing Synthesis Errors
    /// Singing synthesis error
    #[error("Singing synthesis error: {message}")]
    SingingError {
        message: String,
        voice_type: Option<String>,
    },

    /// Musical score parsing error
    #[error("Musical score parsing error: {message}")]
    MusicalScoreParsingError {
        message: String,
        line: Option<usize>,
        column: Option<usize>,
    },

    /// Musical note invalid
    #[error("Musical note '{note}' is invalid: {reason}")]
    MusicalNoteInvalid { note: String, reason: String },

    /// Singing technique not supported
    #[error("Singing technique '{technique}' is not supported")]
    SingingTechniqueNotSupported {
        technique: String,
        supported: Vec<String>,
    },

    /// Tempo out of range
    #[error("Tempo {tempo} BPM is out of range ({min_tempo}-{max_tempo})")]
    TempoOutOfRange {
        tempo: f32,
        min_tempo: f32,
        max_tempo: f32,
    },

    // 3D Spatial Audio Errors
    /// 3D spatial audio error
    #[error("3D spatial audio error: {message}")]
    SpatialAudioError {
        message: String,
        position: Option<String>,
    },

    /// HRTF processing error
    #[error("HRTF processing error: {message}")]
    HrtfProcessingError {
        message: String,
        sample_rate: Option<u32>,
    },

    /// 3D position invalid
    #[error("3D position ({x}, {y}, {z}) is invalid: {reason}")]
    Position3DInvalid {
        x: f32,
        y: f32,
        z: f32,
        reason: String,
    },

    /// Room acoustics configuration invalid
    #[error("Room acoustics configuration invalid: {reason}")]
    RoomAcousticsConfigurationInvalid {
        reason: String,
        room_size: Option<String>,
    },

    /// Binaural rendering error
    #[error("Binaural rendering error: {message}")]
    BinauralRenderingError {
        message: String,
        channel_count: Option<u32>,
    },

    // === Model Runtime Errors ===
    /// Model loading failed
    #[error("Model load error: {0}")]
    ModelLoadError(String),

    /// Inference failed
    #[error("Inference error: {0}")]
    InferenceError(String),
}

impl Clone for VoirsError {
    fn clone(&self) -> Self {
        match self {
            Self::VoiceNotFound {
                voice,
                available,
                suggestions,
            } => Self::VoiceNotFound {
                voice: voice.clone(),
                available: available.clone(),
                suggestions: suggestions.clone(),
            },
            Self::VoiceUnavailable { voice, reason } => Self::VoiceUnavailable {
                voice: voice.clone(),
                reason: reason.clone(),
            },
            Self::VoiceConfigurationInvalid { voice, issue } => Self::VoiceConfigurationInvalid {
                voice: voice.clone(),
                issue: issue.clone(),
            },
            Self::SynthesisFailed {
                text,
                text_length,
                stage,
                cause: _,
            } => Self::SynthesisFailed {
                text: text.clone(),
                text_length: *text_length,
                stage: *stage,
                cause: format!("Original error (cannot clone): {}", "error").into(),
            },
            Self::SynthesisQualityDegraded { reason, metrics } => Self::SynthesisQualityDegraded {
                reason: reason.clone(),
                metrics: metrics.clone(),
            },
            Self::SynthesisInterrupted { stage, reason } => Self::SynthesisInterrupted {
                stage: *stage,
                reason: reason.clone(),
            },
            Self::DeviceError {
                device,
                message,
                recovery_hint,
            } => Self::DeviceError {
                device: device.clone(),
                message: message.clone(),
                recovery_hint: recovery_hint.clone(),
            },
            Self::DeviceNotAvailable {
                device,
                alternatives,
            } => Self::DeviceNotAvailable {
                device: device.clone(),
                alternatives: alternatives.clone(),
            },
            Self::UnsupportedDevice { device } => Self::UnsupportedDevice {
                device: device.clone(),
            },
            Self::GpuOutOfMemory {
                device,
                used_mb,
                available_mb,
            } => Self::GpuOutOfMemory {
                device: device.clone(),
                used_mb: *used_mb,
                available_mb: *available_mb,
            },
            Self::IoError {
                path,
                operation,
                source: _,
            } => Self::IoError {
                path: path.clone(),
                operation: *operation,
                source: std::io::Error::other("Cloned error"),
            },
            Self::UnsupportedFileFormat { path, format } => Self::UnsupportedFileFormat {
                path: path.clone(),
                format: format.clone(),
            },
            Self::FileCorrupted { path, reason } => Self::FileCorrupted {
                path: path.clone(),
                reason: reason.clone(),
            },
            Self::ConfigError { field, message } => Self::ConfigError {
                field: field.clone(),
                message: message.clone(),
            },
            Self::InvalidConfiguration {
                field,
                value,
                reason,
                valid_values,
            } => Self::InvalidConfiguration {
                field: field.clone(),
                value: value.clone(),
                reason: reason.clone(),
                valid_values: valid_values.clone(),
            },
            Self::ConfigMigrationFailed { from, to, reason } => Self::ConfigMigrationFailed {
                from: from.clone(),
                to: to.clone(),
                reason: reason.clone(),
            },
            Self::ModelError {
                model_type,
                message,
                source: _,
            } => Self::ModelError {
                model_type: *model_type,
                message: message.clone(),
                source: None,
            },
            Self::ModelNotFound { model_name, path } => Self::ModelNotFound {
                model_name: model_name.clone(),
                path: path.clone(),
            },
            Self::ModelVersionMismatch { expected, found } => Self::ModelVersionMismatch {
                expected: expected.clone(),
                found: found.clone(),
            },
            Self::ModelDeviceIncompatible { model_name, device } => Self::ModelDeviceIncompatible {
                model_name: model_name.clone(),
                device: device.clone(),
            },
            Self::AudioError {
                message,
                buffer_info,
            } => Self::AudioError {
                message: message.clone(),
                buffer_info: buffer_info.clone(),
            },
            Self::AudioFormatConversionFailed { from, to, reason } => {
                Self::AudioFormatConversionFailed {
                    from: from.clone(),
                    to: to.clone(),
                    reason: reason.clone(),
                }
            }
            Self::AudioBufferError {
                error_type,
                details,
            } => Self::AudioBufferError {
                error_type: *error_type,
                details: details.clone(),
            },
            Self::G2pError {
                text,
                message,
                language,
            } => Self::G2pError {
                text: text.clone(),
                message: message.clone(),
                language: language.clone(),
            },
            Self::TextPreprocessingError {
                message,
                text_sample,
            } => Self::TextPreprocessingError {
                message: message.clone(),
                text_sample: text_sample.clone(),
            },
            Self::LanguageNotSupported {
                language,
                supported,
            } => Self::LanguageNotSupported {
                language: language.clone(),
                supported: supported.clone(),
            },
            Self::NetworkError {
                message,
                retry_count,
                max_retries,
                source: _,
            } => Self::NetworkError {
                message: message.clone(),
                retry_count: *retry_count,
                max_retries: *max_retries,
                source: None,
            },
            Self::DownloadFailed {
                url,
                reason,
                bytes_downloaded,
                total_bytes,
            } => Self::DownloadFailed {
                url: url.clone(),
                reason: reason.clone(),
                bytes_downloaded: *bytes_downloaded,
                total_bytes: *total_bytes,
            },
            Self::AuthenticationFailed { service, reason } => Self::AuthenticationFailed {
                service: service.clone(),
                reason: reason.clone(),
            },
            Self::PipelineNotReady => Self::PipelineNotReady,
            Self::InvalidStateTransition { from, to, reason } => Self::InvalidStateTransition {
                from: from.clone(),
                to: to.clone(),
                reason: reason.clone(),
            },
            Self::ComponentSynchronizationFailed { component, reason } => {
                Self::ComponentSynchronizationFailed {
                    component: component.clone(),
                    reason: reason.clone(),
                }
            }
            Self::TimeoutError {
                operation,
                duration,
                expected_duration,
            } => Self::TimeoutError {
                operation: operation.clone(),
                duration: *duration,
                expected_duration: *expected_duration,
            },
            Self::PerformanceDegradation {
                metric,
                value,
                threshold,
            } => Self::PerformanceDegradation {
                metric: metric.clone(),
                value: *value,
                threshold: *threshold,
            },
            Self::RealTimeConstraintViolation { constraint } => Self::RealTimeConstraintViolation {
                constraint: constraint.clone(),
            },
            Self::OutOfMemory {
                message,
                requested_mb,
            } => Self::OutOfMemory {
                message: message.clone(),
                requested_mb: *requested_mb,
            },
            Self::ResourceExhausted { resource, details } => Self::ResourceExhausted {
                resource: resource.clone(),
                details: details.clone(),
            },
            Self::MemoryLeak {
                component,
                leaked_mb,
            } => Self::MemoryLeak {
                component: component.clone(),
                leaked_mb: *leaked_mb,
            },
            Self::SerializationError { format, message } => Self::SerializationError {
                format: format.clone(),
                message: message.clone(),
            },
            Self::DataValidationFailed { data_type, reason } => Self::DataValidationFailed {
                data_type: data_type.clone(),
                reason: reason.clone(),
            },
            Self::SchemaMismatch { expected, found } => Self::SchemaMismatch {
                expected: expected.clone(),
                found: found.clone(),
            },
            Self::InternalError { component, message } => Self::InternalError {
                component: component.clone(),
                message: message.clone(),
            },
            Self::NotImplemented { feature } => Self::NotImplemented {
                feature: feature.clone(),
            },
            Self::DeprecatedFunctionality {
                feature,
                replacement,
            } => Self::DeprecatedFunctionality {
                feature: feature.clone(),
                replacement: replacement.clone(),
            },

            // Advanced Feature-Specific Errors
            Self::EmotionError {
                message,
                emotion_type,
                intensity,
            } => Self::EmotionError {
                message: message.clone(),
                emotion_type: emotion_type.clone(),
                intensity: *intensity,
            },
            Self::EmotionNotSupported { emotion, available } => Self::EmotionNotSupported {
                emotion: emotion.clone(),
                available: available.clone(),
            },
            Self::EmotionIntensityOutOfRange { intensity } => Self::EmotionIntensityOutOfRange {
                intensity: *intensity,
            },
            Self::EmotionConfigurationInvalid { reason } => Self::EmotionConfigurationInvalid {
                reason: reason.clone(),
            },

            Self::VoiceCloningError {
                message,
                cloning_method,
            } => Self::VoiceCloningError {
                message: message.clone(),
                cloning_method: cloning_method.clone(),
            },
            Self::VoiceCloningSourceInvalid {
                reason,
                audio_duration,
                required_duration,
            } => Self::VoiceCloningSourceInvalid {
                reason: reason.clone(),
                audio_duration: *audio_duration,
                required_duration: *required_duration,
            },
            Self::VoiceCloningQualityTooLow { quality, threshold } => {
                Self::VoiceCloningQualityTooLow {
                    quality: *quality,
                    threshold: *threshold,
                }
            }
            Self::VoiceCloningMethodNotSupported { method, supported } => {
                Self::VoiceCloningMethodNotSupported {
                    method: method.clone(),
                    supported: supported.clone(),
                }
            }

            Self::VoiceConversionError {
                message,
                conversion_type,
            } => Self::VoiceConversionError {
                message: message.clone(),
                conversion_type: conversion_type.clone(),
            },
            Self::VoiceConversionTargetInvalid { reason, target } => {
                Self::VoiceConversionTargetInvalid {
                    reason: reason.clone(),
                    target: target.clone(),
                }
            }
            Self::VoiceConversionNotSupported { from, to } => Self::VoiceConversionNotSupported {
                from: from.clone(),
                to: to.clone(),
            },
            Self::RealTimeConversionBufferOverflow {
                details,
                buffer_size,
            } => Self::RealTimeConversionBufferOverflow {
                details: details.clone(),
                buffer_size: *buffer_size,
            },

            Self::SingingError {
                message,
                voice_type,
            } => Self::SingingError {
                message: message.clone(),
                voice_type: voice_type.clone(),
            },
            Self::MusicalScoreParsingError {
                message,
                line,
                column,
            } => Self::MusicalScoreParsingError {
                message: message.clone(),
                line: *line,
                column: *column,
            },
            Self::MusicalNoteInvalid { note, reason } => Self::MusicalNoteInvalid {
                note: note.clone(),
                reason: reason.clone(),
            },
            Self::SingingTechniqueNotSupported {
                technique,
                supported,
            } => Self::SingingTechniqueNotSupported {
                technique: technique.clone(),
                supported: supported.clone(),
            },
            Self::TempoOutOfRange {
                tempo,
                min_tempo,
                max_tempo,
            } => Self::TempoOutOfRange {
                tempo: *tempo,
                min_tempo: *min_tempo,
                max_tempo: *max_tempo,
            },

            Self::SpatialAudioError { message, position } => Self::SpatialAudioError {
                message: message.clone(),
                position: position.clone(),
            },
            Self::HrtfProcessingError {
                message,
                sample_rate,
            } => Self::HrtfProcessingError {
                message: message.clone(),
                sample_rate: *sample_rate,
            },
            Self::Position3DInvalid { x, y, z, reason } => Self::Position3DInvalid {
                x: *x,
                y: *y,
                z: *z,
                reason: reason.clone(),
            },
            Self::RoomAcousticsConfigurationInvalid { reason, room_size } => {
                Self::RoomAcousticsConfigurationInvalid {
                    reason: reason.clone(),
                    room_size: room_size.clone(),
                }
            }
            Self::BinauralRenderingError {
                message,
                channel_count,
            } => Self::BinauralRenderingError {
                message: message.clone(),
                channel_count: *channel_count,
            },
            Self::FeatureUnavailable { feature, reason } => Self::FeatureUnavailable {
                feature: feature.clone(),
                reason: reason.clone(),
            },
            Self::ModelLoadError(msg) => Self::ModelLoadError(msg.clone()),
            Self::InferenceError(msg) => Self::InferenceError(msg.clone()),
        }
    }
}

/// Synthesis stage identifier
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum SynthesisStage {
    TextPreprocessing,
    G2pConversion,
    AcousticModeling,
    Vocoding,
    PostProcessing,
    AudioFinalization,
}

impl std::fmt::Display for SynthesisStage {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::TextPreprocessing => write!(f, "text preprocessing"),
            Self::G2pConversion => write!(f, "G2P conversion"),
            Self::AcousticModeling => write!(f, "acoustic modeling"),
            Self::Vocoding => write!(f, "vocoding"),
            Self::PostProcessing => write!(f, "post-processing"),
            Self::AudioFinalization => write!(f, "audio finalization"),
        }
    }
}

/// Model type identifier
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum ModelType {
    G2p,
    Acoustic,
    Vocoder,
    Preprocessor,
    Postprocessor,
    ASR,
}

impl std::fmt::Display for ModelType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::G2p => write!(f, "G2P"),
            Self::Acoustic => write!(f, "acoustic"),
            Self::Vocoder => write!(f, "vocoder"),
            Self::Preprocessor => write!(f, "preprocessor"),
            Self::Postprocessor => write!(f, "postprocessor"),
            Self::ASR => write!(f, "ASR"),
        }
    }
}

/// I/O operation type
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum IoOperation {
    Read,
    Write,
    Create,
    Delete,
    Copy,
    Move,
    Metadata,
}

impl std::fmt::Display for IoOperation {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Read => write!(f, "read"),
            Self::Write => write!(f, "write"),
            Self::Create => write!(f, "create"),
            Self::Delete => write!(f, "delete"),
            Self::Copy => write!(f, "copy"),
            Self::Move => write!(f, "move"),
            Self::Metadata => write!(f, "metadata"),
        }
    }
}

/// Audio buffer error type
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum AudioBufferErrorType {
    Overflow,
    Underflow,
    InvalidFormat,
    SizeExceeded,
    Corruption,
}

impl std::fmt::Display for AudioBufferErrorType {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Overflow => write!(f, "overflow"),
            Self::Underflow => write!(f, "underflow"),
            Self::InvalidFormat => write!(f, "invalid format"),
            Self::SizeExceeded => write!(f, "size exceeded"),
            Self::Corruption => write!(f, "corruption"),
        }
    }
}

/// Quality metrics for synthesis operations
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QualityMetrics {
    /// Real-time factor (processing_time / audio_duration)
    pub real_time_factor: f32,
    /// Mean opinion score (1.0-5.0)
    pub mean_opinion_score: Option<f32>,
    /// Signal-to-noise ratio in dB
    pub signal_to_noise_ratio: Option<f32>,
    /// Perceptual quality score (0.0-1.0)
    pub perceptual_quality: Option<f32>,
}

impl Default for QualityMetrics {
    fn default() -> Self {
        Self {
            real_time_factor: 1.0,
            mean_opinion_score: None,
            signal_to_noise_ratio: None,
            perceptual_quality: None,
        }
    }
}

/// Audio buffer information for error context
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AudioBufferInfo {
    /// Sample rate in Hz
    pub sample_rate: u32,
    /// Number of channels
    pub channels: u32,
    /// Buffer size in samples
    pub buffer_size: usize,
    /// Duration in seconds
    pub duration: f32,
    /// Audio format
    pub format: String,
}

/// Error severity levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
pub enum ErrorSeverity {
    /// Information (non-error conditions)
    Info,
    /// Warning (potentially problematic)
    Warning,
    /// Error (operation failed but recoverable)
    Error,
    /// Critical (system-wide failure)
    Critical,
    /// Fatal (unrecoverable error)
    Fatal,
}

impl std::fmt::Display for ErrorSeverity {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Info => write!(f, "INFO"),
            Self::Warning => write!(f, "WARN"),
            Self::Error => write!(f, "ERROR"),
            Self::Critical => write!(f, "CRITICAL"),
            Self::Fatal => write!(f, "FATAL"),
        }
    }
}

/// Error context with additional metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ErrorContext {
    /// Error severity level
    pub severity: ErrorSeverity,
    /// Component where error occurred
    pub component: String,
    /// Operation being performed
    pub operation: String,
    /// Additional context data
    pub context: HashMap<String, String>,
    /// Timestamp when error occurred
    pub timestamp: std::time::SystemTime,
    /// Stack trace if available
    pub stack_trace: Option<String>,
}

impl Default for ErrorContext {
    fn default() -> Self {
        Self {
            severity: ErrorSeverity::Error,
            component: "unknown".to_string(),
            operation: "unknown".to_string(),
            context: HashMap::new(),
            timestamp: std::time::SystemTime::now(),
            stack_trace: None,
        }
    }
}

impl VoirsError {
    /// Get the severity level of this error
    pub fn severity(&self) -> ErrorSeverity {
        match self {
            // Fatal errors
            Self::OutOfMemory { .. } | Self::GpuOutOfMemory { .. } => ErrorSeverity::Fatal,

            // Critical errors
            Self::ModelNotFound { .. }
            | Self::DeviceNotAvailable { .. }
            | Self::UnsupportedDevice { .. } => ErrorSeverity::Critical,

            // Regular errors
            Self::SynthesisFailed { .. }
            | Self::VoiceNotFound { .. }
            | Self::IoError { .. }
            | Self::ConfigError { .. }
            | Self::ModelError { .. }
            | Self::AudioError { .. }
            | Self::G2pError { .. }
            | Self::NetworkError { .. }
            | Self::TimeoutError { .. }
            | Self::InvalidStateTransition { .. }
            | Self::EmotionError { .. }
            | Self::EmotionNotSupported { .. }
            | Self::EmotionConfigurationInvalid { .. }
            | Self::VoiceCloningError { .. }
            | Self::VoiceCloningSourceInvalid { .. }
            | Self::VoiceCloningMethodNotSupported { .. }
            | Self::VoiceConversionError { .. }
            | Self::VoiceConversionTargetInvalid { .. }
            | Self::VoiceConversionNotSupported { .. }
            | Self::RealTimeConversionBufferOverflow { .. }
            | Self::SingingError { .. }
            | Self::MusicalScoreParsingError { .. }
            | Self::MusicalNoteInvalid { .. }
            | Self::SingingTechniqueNotSupported { .. }
            | Self::SpatialAudioError { .. }
            | Self::HrtfProcessingError { .. }
            | Self::Position3DInvalid { .. }
            | Self::RoomAcousticsConfigurationInvalid { .. }
            | Self::BinauralRenderingError { .. } => ErrorSeverity::Error,

            // Warnings
            Self::SynthesisQualityDegraded { .. }
            | Self::PerformanceDegradation { .. }
            | Self::VoiceUnavailable { .. }
            | Self::DeprecatedFunctionality { .. }
            | Self::EmotionIntensityOutOfRange { .. }
            | Self::VoiceCloningQualityTooLow { .. }
            | Self::TempoOutOfRange { .. } => ErrorSeverity::Warning,

            // Info
            Self::NotImplemented { .. } => ErrorSeverity::Info,

            // Default to Error for unspecified cases
            _ => ErrorSeverity::Error,
        }
    }

    /// Get the component associated with this error
    pub fn component(&self) -> &str {
        match self {
            Self::VoiceNotFound { .. }
            | Self::VoiceUnavailable { .. }
            | Self::VoiceConfigurationInvalid { .. } => "voice",

            Self::SynthesisFailed { .. }
            | Self::SynthesisQualityDegraded { .. }
            | Self::SynthesisInterrupted { .. } => "synthesis",

            Self::DeviceError { .. }
            | Self::DeviceNotAvailable { .. }
            | Self::UnsupportedDevice { .. }
            | Self::GpuOutOfMemory { .. } => "device",

            Self::IoError { .. }
            | Self::UnsupportedFileFormat { .. }
            | Self::FileCorrupted { .. } => "io",

            Self::ConfigError { .. }
            | Self::InvalidConfiguration { .. }
            | Self::ConfigMigrationFailed { .. } => "config",

            Self::ModelError { .. }
            | Self::ModelNotFound { .. }
            | Self::ModelVersionMismatch { .. }
            | Self::ModelDeviceIncompatible { .. } => "model",

            Self::AudioError { .. }
            | Self::AudioFormatConversionFailed { .. }
            | Self::AudioBufferError { .. } => "audio",

            Self::G2pError { .. }
            | Self::TextPreprocessingError { .. }
            | Self::LanguageNotSupported { .. } => "language",

            Self::NetworkError { .. }
            | Self::DownloadFailed { .. }
            | Self::AuthenticationFailed { .. } => "network",

            Self::PipelineNotReady
            | Self::InvalidStateTransition { .. }
            | Self::ComponentSynchronizationFailed { .. } => "pipeline",

            Self::TimeoutError { .. }
            | Self::PerformanceDegradation { .. }
            | Self::RealTimeConstraintViolation { .. } => "performance",

            Self::OutOfMemory { .. } | Self::ResourceExhausted { .. } | Self::MemoryLeak { .. } => {
                "memory"
            }

            Self::SerializationError { .. }
            | Self::DataValidationFailed { .. }
            | Self::SchemaMismatch { .. } => "data",

            Self::InternalError { component, .. } => component,
            Self::NotImplemented { .. } | Self::DeprecatedFunctionality { .. } => "system",

            // Advanced feature components
            Self::EmotionError { .. }
            | Self::EmotionNotSupported { .. }
            | Self::EmotionIntensityOutOfRange { .. }
            | Self::EmotionConfigurationInvalid { .. } => "emotion",

            Self::VoiceCloningError { .. }
            | Self::VoiceCloningSourceInvalid { .. }
            | Self::VoiceCloningQualityTooLow { .. }
            | Self::VoiceCloningMethodNotSupported { .. } => "voice_cloning",

            Self::VoiceConversionError { .. }
            | Self::VoiceConversionTargetInvalid { .. }
            | Self::VoiceConversionNotSupported { .. }
            | Self::RealTimeConversionBufferOverflow { .. } => "voice_conversion",

            Self::SingingError { .. }
            | Self::MusicalScoreParsingError { .. }
            | Self::MusicalNoteInvalid { .. }
            | Self::SingingTechniqueNotSupported { .. }
            | Self::TempoOutOfRange { .. } => "singing",

            Self::SpatialAudioError { .. }
            | Self::HrtfProcessingError { .. }
            | Self::Position3DInvalid { .. }
            | Self::RoomAcousticsConfigurationInvalid { .. }
            | Self::BinauralRenderingError { .. } => "spatial_audio",

            Self::FeatureUnavailable { .. } => "feature",

            Self::ModelLoadError(_) => "model",
            Self::InferenceError(_) => "model",
        }
    }

    /// Check if this error is recoverable
    pub fn is_recoverable(&self) -> bool {
        match self {
            // Unrecoverable errors
            Self::OutOfMemory { .. }
            | Self::GpuOutOfMemory { .. }
            | Self::UnsupportedDevice { .. }
            | Self::ModelNotFound { .. }
            | Self::FileCorrupted { .. }
            | Self::LanguageNotSupported { .. }
            | Self::PipelineNotReady => false,

            // Potentially recoverable with retry
            Self::NetworkError { .. }
            | Self::DownloadFailed { .. }
            | Self::TimeoutError { .. }
            | Self::DeviceNotAvailable { .. }
            | Self::ComponentSynchronizationFailed { .. } => true,

            // Configuration errors are recoverable with fixes
            Self::ConfigError { .. }
            | Self::InvalidConfiguration { .. }
            | Self::VoiceConfigurationInvalid { .. } => true,

            // Most other errors are potentially recoverable
            _ => true,
        }
    }

    /// Get suggested recovery actions
    pub fn recovery_suggestions(&self) -> Vec<String> {
        match self {
            Self::VoiceNotFound { suggestions, .. } => suggestions.clone(),

            Self::DeviceNotAvailable { alternatives, .. } => {
                let mut suggestions = vec!["Check device availability".to_string()];
                for alt in alternatives {
                    suggestions.push(format!("Try using device: {alt}"));
                }
                suggestions
            }

            Self::NetworkError {
                retry_count,
                max_retries,
                ..
            } => {
                if retry_count < max_retries {
                    vec![
                        "Retry the operation".to_string(),
                        "Check network connection".to_string(),
                    ]
                } else {
                    vec![
                        "Check network connection".to_string(),
                        "Try again later".to_string(),
                    ]
                }
            }

            Self::TimeoutError { .. } => vec![
                "Increase timeout duration".to_string(),
                "Check system performance".to_string(),
                "Retry with smaller batch size".to_string(),
            ],

            Self::OutOfMemory { .. } => vec![
                "Reduce batch size".to_string(),
                "Close other applications".to_string(),
                "Use CPU instead of GPU".to_string(),
            ],

            Self::ConfigError { .. } => vec![
                "Check configuration file syntax".to_string(),
                "Validate configuration values".to_string(),
                "Reset to default configuration".to_string(),
            ],

            Self::ModelError { .. } => vec![
                "Re-download the model".to_string(),
                "Check model compatibility".to_string(),
                "Verify model integrity".to_string(),
            ],

            _ => vec!["Retry the operation".to_string()],
        }
    }

    /// Convert error to context with additional metadata
    pub fn with_context(
        self,
        component: impl Into<String>,
        operation: impl Into<String>,
    ) -> ErrorWithContext {
        let mut context = ErrorContext {
            severity: self.severity(),
            component: component.into(),
            operation: operation.into(),
            context: HashMap::new(),
            timestamp: std::time::SystemTime::now(),
            stack_trace: if cfg!(debug_assertions) {
                Some(std::backtrace::Backtrace::force_capture().to_string())
            } else {
                None
            },
        };

        // Add error-specific context
        match &self {
            Self::VoiceNotFound { voice, .. } => {
                context.context.insert("voice".to_string(), voice.clone());
            }
            Self::SynthesisFailed { text_length, .. } => {
                context
                    .context
                    .insert("text_length".to_string(), text_length.to_string());
            }
            Self::DeviceError { device, .. } => {
                context.context.insert("device".to_string(), device.clone());
            }
            Self::IoError {
                path, operation, ..
            } => {
                context
                    .context
                    .insert("path".to_string(), path.display().to_string());
                context
                    .context
                    .insert("io_operation".to_string(), operation.to_string());
            }
            _ => {}
        }

        ErrorWithContext {
            error: self,
            context,
        }
    }
}

/// Error with additional context information
#[derive(Debug)]
pub struct ErrorWithContext {
    pub error: VoirsError,
    pub context: ErrorContext,
}

impl std::fmt::Display for ErrorWithContext {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "[{}] {} in {}: {}",
            self.context.severity, self.context.component, self.context.operation, self.error
        )
    }
}

impl std::error::Error for ErrorWithContext {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        Some(&self.error)
    }
}

/// Result type alias for VoiRS operations
pub type Result<T> = std::result::Result<T, VoirsError>;

impl From<ErrorWithContext> for VoirsError {
    fn from(val: ErrorWithContext) -> Self {
        val.error
    }
}

/// Result type with context
pub type ContextResult<T> = std::result::Result<T, ErrorWithContext>;

impl VoirsError {
    // Convenience methods for creating feature-specific errors

    /// Create an emotion error
    pub fn emotion_error(message: impl Into<String>) -> Self {
        Self::EmotionError {
            message: message.into(),
            emotion_type: None,
            intensity: None,
        }
    }

    /// Create an emotion not supported error
    pub fn emotion_not_supported(emotion: impl Into<String>, available: Vec<String>) -> Self {
        Self::EmotionNotSupported {
            emotion: emotion.into(),
            available,
        }
    }

    /// Create an emotion intensity out of range error
    pub fn emotion_intensity_out_of_range(intensity: f32) -> Self {
        Self::EmotionIntensityOutOfRange { intensity }
    }

    /// Create a voice cloning error
    pub fn voice_cloning_error(message: impl Into<String>) -> Self {
        Self::VoiceCloningError {
            message: message.into(),
            cloning_method: None,
        }
    }

    /// Create a voice cloning source invalid error
    pub fn voice_cloning_source_invalid(reason: impl Into<String>) -> Self {
        Self::VoiceCloningSourceInvalid {
            reason: reason.into(),
            audio_duration: None,
            required_duration: None,
        }
    }

    /// Create a voice cloning quality too low error
    pub fn voice_cloning_quality_too_low(quality: f32, threshold: f32) -> Self {
        Self::VoiceCloningQualityTooLow { quality, threshold }
    }

    /// Create a voice conversion error
    pub fn voice_conversion_error(message: impl Into<String>) -> Self {
        Self::VoiceConversionError {
            message: message.into(),
            conversion_type: None,
        }
    }

    /// Create a voice conversion target invalid error
    pub fn voice_conversion_target_invalid(
        reason: impl Into<String>,
        target: impl Into<String>,
    ) -> Self {
        Self::VoiceConversionTargetInvalid {
            reason: reason.into(),
            target: target.into(),
        }
    }

    /// Create a voice conversion not supported error
    pub fn voice_conversion_not_supported(from: impl Into<String>, to: impl Into<String>) -> Self {
        Self::VoiceConversionNotSupported {
            from: from.into(),
            to: to.into(),
        }
    }

    /// Create a singing error
    pub fn singing_error(message: impl Into<String>) -> Self {
        Self::SingingError {
            message: message.into(),
            voice_type: None,
        }
    }

    /// Create a musical score parsing error
    pub fn musical_score_parsing_error(message: impl Into<String>) -> Self {
        Self::MusicalScoreParsingError {
            message: message.into(),
            line: None,
            column: None,
        }
    }

    /// Create a musical note invalid error
    pub fn musical_note_invalid(note: impl Into<String>, reason: impl Into<String>) -> Self {
        Self::MusicalNoteInvalid {
            note: note.into(),
            reason: reason.into(),
        }
    }

    /// Create a tempo out of range error
    pub fn tempo_out_of_range(tempo: f32, min_tempo: f32, max_tempo: f32) -> Self {
        Self::TempoOutOfRange {
            tempo,
            min_tempo,
            max_tempo,
        }
    }

    /// Create a spatial audio error
    pub fn spatial_audio_error(message: impl Into<String>) -> Self {
        Self::SpatialAudioError {
            message: message.into(),
            position: None,
        }
    }

    /// Create an HRTF processing error
    pub fn hrtf_processing_error(message: impl Into<String>) -> Self {
        Self::HrtfProcessingError {
            message: message.into(),
            sample_rate: None,
        }
    }

    /// Create a 3D position invalid error
    pub fn position_3d_invalid(x: f32, y: f32, z: f32, reason: impl Into<String>) -> Self {
        Self::Position3DInvalid {
            x,
            y,
            z,
            reason: reason.into(),
        }
    }

    /// Create a room acoustics configuration invalid error
    pub fn room_acoustics_configuration_invalid(reason: impl Into<String>) -> Self {
        Self::RoomAcousticsConfigurationInvalid {
            reason: reason.into(),
            room_size: None,
        }
    }

    /// Create a binaural rendering error
    pub fn binaural_rendering_error(message: impl Into<String>) -> Self {
        Self::BinauralRenderingError {
            message: message.into(),
            channel_count: None,
        }
    }
}