adk-rust-mcp-speech 0.5.0

MCP server for text-to-speech using Cloud TTS Chirp3-HD
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
//! Speech synthesis handler for the MCP Speech server.
//!
//! This module provides the `SpeechHandler` struct and parameter types for
//! text-to-speech synthesis using Google's Cloud TTS Chirp3-HD API.

use adk_rust_mcp_common::auth::AuthProvider;
use adk_rust_mcp_common::config::Config;
use adk_rust_mcp_common::error::Error;
use base64::{engine::general_purpose::STANDARD as BASE64, Engine as _};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use std::path::Path;
use tracing::{debug, info, instrument};

/// Default voice for speech synthesis.
pub const DEFAULT_VOICE: &str = "en-US-Chirp3-HD-Achernar";

/// Default language code.
pub const DEFAULT_LANGUAGE_CODE: &str = "en-US";

/// Default speaking rate.
pub const DEFAULT_SPEAKING_RATE: f32 = 1.0;

/// Minimum speaking rate.
pub const MIN_SPEAKING_RATE: f32 = 0.25;

/// Maximum speaking rate.
pub const MAX_SPEAKING_RATE: f32 = 4.0;

/// Default pitch.
pub const DEFAULT_PITCH: f32 = 0.0;

/// Minimum pitch (semitones).
pub const MIN_PITCH: f32 = -20.0;

/// Maximum pitch (semitones).
pub const MAX_PITCH: f32 = 20.0;

/// Valid pronunciation alphabets.
pub const VALID_ALPHABETS: &[&str] = &["ipa", "x-sampa"];


/// Custom pronunciation for a word.
///
/// Allows specifying phonetic pronunciation using IPA or X-SAMPA alphabets.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct Pronunciation {
    /// The word to apply custom pronunciation to.
    pub word: String,

    /// The phonetic representation of the word.
    pub phonetic: String,

    /// The phonetic alphabet used: "ipa" or "x-sampa".
    pub alphabet: String,
}

impl Pronunciation {
    /// Validate the pronunciation entry.
    pub fn validate(&self) -> Result<(), ValidationError> {
        if self.word.trim().is_empty() {
            return Err(ValidationError {
                field: "word".to_string(),
                message: "Word cannot be empty".to_string(),
            });
        }

        if self.phonetic.trim().is_empty() {
            return Err(ValidationError {
                field: "phonetic".to_string(),
                message: "Phonetic representation cannot be empty".to_string(),
            });
        }

        let alphabet_lower = self.alphabet.to_lowercase();
        if !VALID_ALPHABETS.contains(&alphabet_lower.as_str()) {
            return Err(ValidationError {
                field: "alphabet".to_string(),
                message: format!(
                    "Invalid alphabet '{}'. Must be one of: {}",
                    self.alphabet,
                    VALID_ALPHABETS.join(", ")
                ),
            });
        }

        Ok(())
    }

    /// Convert to SSML phoneme element.
    pub fn to_ssml(&self) -> String {
        let alphabet = self.alphabet.to_lowercase();
        format!(
            r#"<phoneme alphabet="{}" ph="{}">{}</phoneme>"#,
            alphabet, self.phonetic, self.word
        )
    }
}

/// Speech synthesis parameters.
///
/// These parameters control the text-to-speech synthesis via the Cloud TTS API.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
pub struct SpeechSynthesizeParams {
    /// Text to synthesize into speech.
    pub text: String,

    /// Voice name to use (Chirp3-HD voice).
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub voice: Option<String>,

    /// Language code (e.g., "en-US", "es-ES").
    #[serde(default = "default_language_code")]
    pub language_code: String,

    /// Speaking rate (0.25-4.0, default 1.0).
    #[serde(default = "default_speaking_rate")]
    pub speaking_rate: f32,

    /// Pitch adjustment in semitones (-20.0 to 20.0, default 0.0).
    #[serde(default)]
    pub pitch: f32,

    /// Custom pronunciations for specific words.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub pronunciations: Option<Vec<Pronunciation>>,

    /// Output file path for saving the WAV locally.
    /// If not specified, returns base64-encoded data.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub output_file: Option<String>,
}

fn default_language_code() -> String {
    DEFAULT_LANGUAGE_CODE.to_string()
}

fn default_speaking_rate() -> f32 {
    DEFAULT_SPEAKING_RATE
}


/// Validation error details for speech synthesis parameters.
#[derive(Debug, Clone)]
pub struct ValidationError {
    /// The field that failed validation.
    pub field: String,
    /// Description of the validation failure.
    pub message: String,
}

impl std::fmt::Display for ValidationError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}: {}", self.field, self.message)
    }
}

impl SpeechSynthesizeParams {
    /// Validate the parameters.
    ///
    /// # Returns
    /// - `Ok(())` if all parameters are valid
    /// - `Err(Vec<ValidationError>)` with all validation errors
    pub fn validate(&self) -> Result<(), Vec<ValidationError>> {
        let mut errors = Vec::new();

        // Validate text is not empty
        if self.text.trim().is_empty() {
            errors.push(ValidationError {
                field: "text".to_string(),
                message: "Text cannot be empty".to_string(),
            });
        }

        // Validate speaking_rate range
        if self.speaking_rate < MIN_SPEAKING_RATE || self.speaking_rate > MAX_SPEAKING_RATE {
            errors.push(ValidationError {
                field: "speaking_rate".to_string(),
                message: format!(
                    "speaking_rate must be between {} and {}, got {}",
                    MIN_SPEAKING_RATE, MAX_SPEAKING_RATE, self.speaking_rate
                ),
            });
        }

        // Validate pitch range
        if self.pitch < MIN_PITCH || self.pitch > MAX_PITCH {
            errors.push(ValidationError {
                field: "pitch".to_string(),
                message: format!(
                    "pitch must be between {} and {} semitones, got {}",
                    MIN_PITCH, MAX_PITCH, self.pitch
                ),
            });
        }

        // Validate pronunciations if provided
        if let Some(ref pronunciations) = self.pronunciations {
            for (i, pron) in pronunciations.iter().enumerate() {
                if let Err(e) = pron.validate() {
                    errors.push(ValidationError {
                        field: format!("pronunciations[{}].{}", i, e.field),
                        message: e.message,
                    });
                }
            }
        }

        if errors.is_empty() {
            Ok(())
        } else {
            Err(errors)
        }
    }

    /// Get the voice name to use, defaulting if not specified.
    pub fn get_voice(&self) -> &str {
        self.voice.as_deref().unwrap_or(DEFAULT_VOICE)
    }

    /// Build SSML text with pronunciations applied.
    pub fn build_ssml(&self) -> String {
        let mut text = self.text.clone();

        // Apply pronunciations if provided
        if let Some(ref pronunciations) = self.pronunciations {
            for pron in pronunciations {
                // Replace word with SSML phoneme
                text = text.replace(&pron.word, &pron.to_ssml());
            }
        }

        // Wrap in SSML speak element
        format!(r#"<speak>{}</speak>"#, text)
    }
}


/// Speech synthesis handler.
///
/// Handles text-to-speech requests using the Cloud TTS Chirp3-HD API.
pub struct SpeechHandler {
    /// Application configuration.
    pub config: Config,
    /// HTTP client for API requests.
    pub http: reqwest::Client,
    /// Authentication provider.
    pub auth: AuthProvider,
}

impl SpeechHandler {
    /// Create a new SpeechHandler with the given configuration.
    ///
    /// # Errors
    /// Returns an error if auth provider initialization fails.
    #[instrument(level = "debug", name = "speech_handler_new", skip_all)]
    pub async fn new(config: Config) -> Result<Self, Error> {
        debug!("Initializing SpeechHandler");

        let auth = AuthProvider::new().await?;
        let http = reqwest::Client::new();

        Ok(Self { config, http, auth })
    }

    /// Create a new SpeechHandler with provided dependencies (for testing).
    #[cfg(test)]
    pub fn with_deps(config: Config, http: reqwest::Client, auth: AuthProvider) -> Self {
        Self { config, http, auth }
    }

    /// Get the Cloud TTS API endpoint.
    pub fn get_endpoint(&self) -> String {
        if self.config.is_gemini() {
            "https://texttospeech.googleapis.com/v1/text:synthesize".to_string()
        } else {
            "https://texttospeech.googleapis.com/v1/text:synthesize".to_string()
        }
    }

    /// Get the Cloud TTS voices list endpoint.
    pub fn get_voices_endpoint(&self) -> String {
        "https://texttospeech.googleapis.com/v1/voices".to_string()
    }

    /// Add auth headers based on provider.
    async fn add_auth(&self, builder: reqwest::RequestBuilder) -> Result<reqwest::RequestBuilder, Error> {
        if self.config.is_gemini() {
            let key = self.config.gemini_api_key.as_deref().unwrap_or_default();
            Ok(builder.header("x-goog-api-key", key))
        } else {
            let token = self.auth.get_token(&["https://www.googleapis.com/auth/cloud-platform"]).await?;
            Ok(builder
                .header("Authorization", format!("Bearer {}", token))
                .header("x-goog-user-project", &self.config.project_id))
        }
    }

    /// Synthesize speech from text.
    ///
    /// # Arguments
    /// * `params` - Speech synthesis parameters
    ///
    /// # Returns
    /// * `Ok(SpeechSynthesizeResult)` - Generated audio with data or path
    /// * `Err(Error)` - If validation fails, API call fails, or output handling fails
    #[instrument(level = "info", name = "synthesize_speech", skip(self, params))]
    pub async fn synthesize(&self, params: SpeechSynthesizeParams) -> Result<SpeechSynthesizeResult, Error> {
        // Validate parameters
        params.validate().map_err(|errors| {
            let messages: Vec<String> = errors.iter().map(|e| e.to_string()).collect();
            Error::validation(messages.join("; "))
        })?;

        info!(voice = %params.get_voice(), "Synthesizing speech with Cloud TTS API");

        // Determine if we need SSML (for pronunciations)
        let (input, use_ssml) = if params.pronunciations.is_some() {
            (params.build_ssml(), true)
        } else {
            (params.text.clone(), false)
        };

        // Build the API request
        let request = TtsRequest {
            input: TtsInput {
                text: if use_ssml { None } else { Some(input.clone()) },
                ssml: if use_ssml { Some(input) } else { None },
            },
            voice: TtsVoice {
                language_code: params.language_code.clone(),
                name: params.get_voice().to_string(),
            },
            audio_config: TtsAudioConfig {
                audio_encoding: "LINEAR16".to_string(),
                speaking_rate: Some(params.speaking_rate),
                pitch: Some(params.pitch),
                sample_rate_hertz: Some(24000),
            },
        };

        // Make API request
        let endpoint = self.get_endpoint();
        debug!(endpoint = %endpoint, "Calling Cloud TTS API");

        let builder = self.http
            .post(&endpoint)
            .header("Content-Type", "application/json")
            .json(&request);
        let builder = self.add_auth(builder).await?;

        let response = builder
            .send()
            .await
            .map_err(|e| Error::api(&endpoint, 0, format!("Request failed: {}", e)))?;

        let status = response.status();
        if !status.is_success() {
            let body = response.text().await.unwrap_or_default();
            return Err(Error::api(&endpoint, status.as_u16(), body));
        }

        // Parse response
        let api_response: TtsResponse = response.json().await.map_err(|e| {
            Error::api(
                &endpoint,
                status.as_u16(),
                format!("Failed to parse response: {}", e),
            )
        })?;

        let audio_data = api_response.audio_content;
        if audio_data.is_empty() {
            return Err(Error::api(&endpoint, 200, "No audio content returned from API"));
        }

        info!("Received audio data from Cloud TTS API");

        let audio = GeneratedAudio {
            data: audio_data,
            mime_type: "audio/wav".to_string(),
        };

        // Handle output based on params
        self.handle_output(audio, &params).await
    }


    /// List available voices.
    ///
    /// # Returns
    /// * `Ok(Vec<VoiceInfo>)` - List of available voices
    /// * `Err(Error)` - If API call fails
    #[instrument(level = "info", name = "list_voices", skip(self))]
    pub async fn list_voices(&self) -> Result<Vec<VoiceInfo>, Error> {
        info!("Listing available voices from Cloud TTS API");

        // Make API request
        let endpoint = self.get_voices_endpoint();
        debug!(endpoint = %endpoint, "Calling Cloud TTS voices API");

        let builder = self.http.get(&endpoint);
        let builder = self.add_auth(builder).await?;

        let response = builder
            .send()
            .await
            .map_err(|e| Error::api(&endpoint, 0, format!("Request failed: {}", e)))?;

        let status = response.status();
        if !status.is_success() {
            let body = response.text().await.unwrap_or_default();
            return Err(Error::api(&endpoint, status.as_u16(), body));
        }

        // Parse response
        let api_response: VoicesResponse = response.json().await.map_err(|e| {
            Error::api(
                &endpoint,
                status.as_u16(),
                format!("Failed to parse response: {}", e),
            )
        })?;

        // Filter for Chirp3-HD voices
        let chirp3_voices: Vec<VoiceInfo> = api_response
            .voices
            .into_iter()
            .filter(|v| v.name.contains("Chirp3-HD"))
            .map(|v| VoiceInfo {
                name: v.name,
                language_codes: v.language_codes,
                ssml_gender: v.ssml_gender,
                natural_sample_rate_hertz: v.natural_sample_rate_hertz,
            })
            .collect();

        info!(count = chirp3_voices.len(), "Found Chirp3-HD voices");
        Ok(chirp3_voices)
    }

    /// Handle output of generated audio based on params.
    async fn handle_output(
        &self,
        audio: GeneratedAudio,
        params: &SpeechSynthesizeParams,
    ) -> Result<SpeechSynthesizeResult, Error> {
        // If output_file is specified, save to local file
        if let Some(output_file) = &params.output_file {
            return self.save_to_file(audio, output_file).await;
        }

        // Otherwise, return base64-encoded data
        Ok(SpeechSynthesizeResult::Base64(audio))
    }

    /// Save audio to local file.
    async fn save_to_file(
        &self,
        audio: GeneratedAudio,
        output_file: &str,
    ) -> Result<SpeechSynthesizeResult, Error> {
        // Decode base64 data
        let data = BASE64.decode(&audio.data).map_err(|e| {
            Error::validation(format!("Invalid base64 data: {}", e))
        })?;

        // Ensure parent directory exists
        if let Some(parent) = Path::new(output_file).parent() {
            if !parent.as_os_str().is_empty() {
                tokio::fs::create_dir_all(parent).await?;
            }
        }

        // Write to file
        tokio::fs::write(output_file, &data).await?;

        info!(path = %output_file, "Saved audio to local file");
        Ok(SpeechSynthesizeResult::LocalFile(output_file.to_string()))
    }
}


// =============================================================================
// API Request/Response Types
// =============================================================================

/// Cloud TTS API request.
#[derive(Debug, Serialize)]
pub struct TtsRequest {
    /// Input text or SSML
    pub input: TtsInput,
    /// Voice configuration
    pub voice: TtsVoice,
    /// Audio configuration
    #[serde(rename = "audioConfig")]
    pub audio_config: TtsAudioConfig,
}

/// TTS input (text or SSML).
#[derive(Debug, Serialize)]
pub struct TtsInput {
    /// Plain text input
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// SSML input
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ssml: Option<String>,
}

/// TTS voice configuration.
#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TtsVoice {
    /// Language code (e.g., "en-US")
    pub language_code: String,
    /// Voice name
    pub name: String,
}

/// TTS audio configuration.
#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TtsAudioConfig {
    /// Audio encoding format
    pub audio_encoding: String,
    /// Speaking rate
    #[serde(skip_serializing_if = "Option::is_none")]
    pub speaking_rate: Option<f32>,
    /// Pitch adjustment
    #[serde(skip_serializing_if = "Option::is_none")]
    pub pitch: Option<f32>,
    /// Sample rate in Hz
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sample_rate_hertz: Option<u32>,
}

/// Cloud TTS API response.
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TtsResponse {
    /// Base64-encoded audio content
    pub audio_content: String,
}

/// Cloud TTS voices list response.
#[derive(Debug, Deserialize)]
pub struct VoicesResponse {
    /// List of available voices
    pub voices: Vec<ApiVoiceInfo>,
}

/// Voice information from API.
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ApiVoiceInfo {
    /// Voice name
    pub name: String,
    /// Supported language codes
    pub language_codes: Vec<String>,
    /// SSML gender
    pub ssml_gender: Option<String>,
    /// Natural sample rate
    pub natural_sample_rate_hertz: Option<u32>,
}

// =============================================================================
// Result Types
// =============================================================================

/// Generated audio data.
#[derive(Debug, Clone)]
pub struct GeneratedAudio {
    /// Base64-encoded audio data
    pub data: String,
    /// MIME type of the audio
    pub mime_type: String,
}

/// Voice information.
#[derive(Debug, Clone, Serialize)]
pub struct VoiceInfo {
    /// Voice name
    pub name: String,
    /// Supported language codes
    pub language_codes: Vec<String>,
    /// SSML gender
    pub ssml_gender: Option<String>,
    /// Natural sample rate
    pub natural_sample_rate_hertz: Option<u32>,
}

/// Result of speech synthesis.
#[derive(Debug)]
pub enum SpeechSynthesizeResult {
    /// Base64-encoded audio data (when no output specified)
    Base64(GeneratedAudio),
    /// Local file path (when output_file specified)
    LocalFile(String),
}


#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_default_params() {
        let params: SpeechSynthesizeParams =
            serde_json::from_str(r#"{"text": "Hello world"}"#).unwrap();
        assert_eq!(params.language_code, DEFAULT_LANGUAGE_CODE);
        assert_eq!(params.speaking_rate, DEFAULT_SPEAKING_RATE);
        assert_eq!(params.pitch, DEFAULT_PITCH);
        assert!(params.voice.is_none());
        assert!(params.pronunciations.is_none());
        assert!(params.output_file.is_none());
    }

    #[test]
    fn test_valid_params() {
        let params = SpeechSynthesizeParams {
            text: "Hello world".to_string(),
            voice: Some("en-US-Chirp3-HD-Achernar".to_string()),
            language_code: "en-US".to_string(),
            speaking_rate: 1.5,
            pitch: 2.0,
            pronunciations: None,
            output_file: None,
        };

        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_empty_text() {
        let params = SpeechSynthesizeParams {
            text: "   ".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };

        let result = params.validate();
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors.iter().any(|e| e.field == "text"));
    }

    #[test]
    fn test_speaking_rate_too_low() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 0.1,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };

        let result = params.validate();
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors.iter().any(|e| e.field == "speaking_rate"));
    }

    #[test]
    fn test_speaking_rate_too_high() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 5.0,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };

        let result = params.validate();
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors.iter().any(|e| e.field == "speaking_rate"));
    }

    #[test]
    fn test_pitch_too_low() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: -25.0,
            pronunciations: None,
            output_file: None,
        };

        let result = params.validate();
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors.iter().any(|e| e.field == "pitch"));
    }

    #[test]
    fn test_pitch_too_high() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 25.0,
            pronunciations: None,
            output_file: None,
        };

        let result = params.validate();
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors.iter().any(|e| e.field == "pitch"));
    }

    #[test]
    fn test_valid_speaking_rate_boundaries() {
        // Test minimum valid speaking rate
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: MIN_SPEAKING_RATE,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };
        assert!(params.validate().is_ok());

        // Test maximum valid speaking rate
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: MAX_SPEAKING_RATE,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_valid_pitch_boundaries() {
        // Test minimum valid pitch
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: MIN_PITCH,
            pronunciations: None,
            output_file: None,
        };
        assert!(params.validate().is_ok());

        // Test maximum valid pitch
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: MAX_PITCH,
            pronunciations: None,
            output_file: None,
        };
        assert!(params.validate().is_ok());
    }

    #[test]
    fn test_pronunciation_valid_ipa() {
        let pron = Pronunciation {
            word: "tomato".to_string(),
            phonetic: "təˈmeɪtoʊ".to_string(),
            alphabet: "ipa".to_string(),
        };
        assert!(pron.validate().is_ok());
    }

    #[test]
    fn test_pronunciation_valid_xsampa() {
        let pron = Pronunciation {
            word: "tomato".to_string(),
            phonetic: "t@\"meItoU".to_string(),
            alphabet: "x-sampa".to_string(),
        };
        assert!(pron.validate().is_ok());
    }

    #[test]
    fn test_pronunciation_invalid_alphabet() {
        let pron = Pronunciation {
            word: "tomato".to_string(),
            phonetic: "tomato".to_string(),
            alphabet: "invalid".to_string(),
        };
        let result = pron.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().field == "alphabet");
    }

    #[test]
    fn test_pronunciation_empty_word() {
        let pron = Pronunciation {
            word: "".to_string(),
            phonetic: "test".to_string(),
            alphabet: "ipa".to_string(),
        };
        let result = pron.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().field == "word");
    }

    #[test]
    fn test_pronunciation_empty_phonetic() {
        let pron = Pronunciation {
            word: "test".to_string(),
            phonetic: "".to_string(),
            alphabet: "ipa".to_string(),
        };
        let result = pron.validate();
        assert!(result.is_err());
        assert!(result.unwrap_err().field == "phonetic");
    }

    #[test]
    fn test_pronunciation_to_ssml() {
        let pron = Pronunciation {
            word: "tomato".to_string(),
            phonetic: "təˈmeɪtoʊ".to_string(),
            alphabet: "ipa".to_string(),
        };
        let ssml = pron.to_ssml();
        assert!(ssml.contains("phoneme"));
        assert!(ssml.contains("ipa"));
        assert!(ssml.contains("təˈmeɪtoʊ"));
        assert!(ssml.contains("tomato"));
    }

    #[test]
    fn test_build_ssml_with_pronunciations() {
        let params = SpeechSynthesizeParams {
            text: "I like tomato".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 0.0,
            pronunciations: Some(vec![Pronunciation {
                word: "tomato".to_string(),
                phonetic: "təˈmeɪtoʊ".to_string(),
                alphabet: "ipa".to_string(),
            }]),
            output_file: None,
        };

        let ssml = params.build_ssml();
        assert!(ssml.starts_with("<speak>"));
        assert!(ssml.ends_with("</speak>"));
        assert!(ssml.contains("phoneme"));
        assert!(!ssml.contains("tomato</speak>")); // tomato should be wrapped in phoneme
    }

    #[test]
    fn test_build_ssml_without_pronunciations() {
        let params = SpeechSynthesizeParams {
            text: "Hello world".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };

        let ssml = params.build_ssml();
        assert_eq!(ssml, "<speak>Hello world</speak>");
    }

    #[test]
    fn test_get_voice_default() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };

        assert_eq!(params.get_voice(), DEFAULT_VOICE);
    }

    #[test]
    fn test_get_voice_custom() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: Some("custom-voice".to_string()),
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 0.0,
            pronunciations: None,
            output_file: None,
        };

        assert_eq!(params.get_voice(), "custom-voice");
    }

    #[test]
    fn test_params_with_invalid_pronunciation() {
        let params = SpeechSynthesizeParams {
            text: "Hello".to_string(),
            voice: None,
            language_code: "en-US".to_string(),
            speaking_rate: 1.0,
            pitch: 0.0,
            pronunciations: Some(vec![Pronunciation {
                word: "test".to_string(),
                phonetic: "test".to_string(),
                alphabet: "invalid".to_string(),
            }]),
            output_file: None,
        };

        let result = params.validate();
        assert!(result.is_err());
        let errors = result.unwrap_err();
        assert!(errors.iter().any(|e| e.field.contains("pronunciations")));
    }

    #[test]
    fn test_serialization_roundtrip() {
        let params = SpeechSynthesizeParams {
            text: "Hello world".to_string(),
            voice: Some("en-US-Chirp3-HD-Achernar".to_string()),
            language_code: "en-US".to_string(),
            speaking_rate: 1.5,
            pitch: 2.0,
            pronunciations: Some(vec![Pronunciation {
                word: "hello".to_string(),
                phonetic: "həˈloʊ".to_string(),
                alphabet: "ipa".to_string(),
            }]),
            output_file: Some("/tmp/output.wav".to_string()),
        };

        let json = serde_json::to_string(&params).unwrap();
        let deserialized: SpeechSynthesizeParams = serde_json::from_str(&json).unwrap();

        assert_eq!(params.text, deserialized.text);
        assert_eq!(params.voice, deserialized.voice);
        assert_eq!(params.language_code, deserialized.language_code);
        assert_eq!(params.speaking_rate, deserialized.speaking_rate);
        assert_eq!(params.pitch, deserialized.pitch);
        assert_eq!(params.output_file, deserialized.output_file);
    }
}


#[cfg(test)]
mod property_tests {
    use super::*;
    use proptest::prelude::*;

    // Feature: rust-mcp-genmedia, Property 8: Numeric Parameter Range Validation (speaking_rate, pitch)
    // **Validates: Requirements 7.6, 7.7**
    //
    // For any numeric parameter with defined bounds (speaking_rate 0.25-4.0, pitch -20.0 to 20.0),
    // values outside the valid range SHALL be rejected with a validation error.

    /// Strategy to generate valid speaking_rate values (0.25-4.0)
    fn valid_speaking_rate_strategy() -> impl Strategy<Value = f32> {
        (MIN_SPEAKING_RATE..=MAX_SPEAKING_RATE).prop_map(|x| (x * 100.0).round() / 100.0)
    }

    /// Strategy to generate invalid speaking_rate values (< 0.25 or > 4.0)
    fn invalid_speaking_rate_strategy() -> impl Strategy<Value = f32> {
        prop_oneof![
            // Values below minimum (exclusive of MIN_SPEAKING_RATE)
            (0.0f32..0.24f32).prop_map(|x| (x * 100.0).round() / 100.0),
            // Values above maximum (exclusive of MAX_SPEAKING_RATE)
            (4.01f32..10.0f32).prop_map(|x| (x * 100.0).round() / 100.0),
        ]
    }

    /// Strategy to generate valid pitch values (-20.0 to 20.0)
    fn valid_pitch_strategy() -> impl Strategy<Value = f32> {
        (MIN_PITCH..=MAX_PITCH).prop_map(|x| (x * 10.0).round() / 10.0)
    }

    /// Strategy to generate invalid pitch values (< -20.0 or > 20.0)
    fn invalid_pitch_strategy() -> impl Strategy<Value = f32> {
        prop_oneof![
            (-50.0f32..MIN_PITCH).prop_map(|x| (x * 10.0).round() / 10.0),
            (MAX_PITCH + 0.1..50.0f32).prop_map(|x| (x * 10.0).round() / 10.0),
        ]
    }

    /// Strategy to generate valid text (non-empty)
    fn valid_text_strategy() -> impl Strategy<Value = String> {
        "[a-zA-Z0-9 ]{1,100}"
            .prop_map(|s| s.trim().to_string())
            .prop_filter("Must not be empty", |s| !s.trim().is_empty())
    }

    proptest! {
        /// Property 8: Valid speaking_rate values (0.25-4.0) should pass validation
        #[test]
        fn valid_speaking_rate_passes_validation(
            rate in valid_speaking_rate_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: rate,
                pitch: 0.0,
                pronunciations: None,
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_ok(),
                "speaking_rate {} should be valid, but got errors: {:?}",
                rate,
                result.err()
            );
        }

        /// Property 8: Invalid speaking_rate values (< 0.25 or > 4.0) should fail validation
        #[test]
        fn invalid_speaking_rate_fails_validation(
            rate in invalid_speaking_rate_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: rate,
                pitch: 0.0,
                pronunciations: None,
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_err(),
                "speaking_rate {} should be invalid",
                rate
            );

            let errors = result.unwrap_err();
            prop_assert!(
                errors.iter().any(|e| e.field == "speaking_rate"),
                "Should have a speaking_rate validation error for value {}",
                rate
            );
        }

        /// Property 8: Valid pitch values (-20.0 to 20.0) should pass validation
        #[test]
        fn valid_pitch_passes_validation(
            pitch in valid_pitch_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: 1.0,
                pitch,
                pronunciations: None,
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_ok(),
                "pitch {} should be valid, but got errors: {:?}",
                pitch,
                result.err()
            );
        }

        /// Property 8: Invalid pitch values (< -20.0 or > 20.0) should fail validation
        #[test]
        fn invalid_pitch_fails_validation(
            pitch in invalid_pitch_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: 1.0,
                pitch,
                pronunciations: None,
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_err(),
                "pitch {} should be invalid",
                pitch
            );

            let errors = result.unwrap_err();
            prop_assert!(
                errors.iter().any(|e| e.field == "pitch"),
                "Should have a pitch validation error for value {}",
                pitch
            );
        }

        /// Property: Combined valid speaking_rate and pitch should pass validation
        #[test]
        fn valid_speaking_rate_and_pitch_passes_validation(
            rate in valid_speaking_rate_strategy(),
            pitch in valid_pitch_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: rate,
                pitch,
                pronunciations: None,
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_ok(),
                "speaking_rate {} and pitch {} should be valid, but got errors: {:?}",
                rate,
                pitch,
                result.err()
            );
        }
    }

    // Feature: rust-mcp-genmedia, Property 12: Pronunciation Alphabet Validation
    // **Validates: Requirements 7.9**
    //
    // For any pronunciation entry in speech_synthesize, the alphabet field SHALL be
    // either "ipa" or "x-sampa". Other values SHALL be rejected with a validation error.

    /// Strategy to generate valid alphabet values
    fn valid_alphabet_strategy() -> impl Strategy<Value = String> {
        prop_oneof![Just("ipa".to_string()), Just("x-sampa".to_string()),]
    }

    /// Strategy to generate invalid alphabet values
    fn invalid_alphabet_strategy() -> impl Strategy<Value = String> {
        "[a-z]{1,10}"
            .prop_filter("Must not be valid alphabet", |s| {
                let lower = s.to_lowercase();
                lower != "ipa" && lower != "x-sampa"
            })
    }

    /// Strategy to generate valid word (non-empty)
    fn valid_word_strategy() -> impl Strategy<Value = String> {
        "[a-zA-Z]{1,20}".prop_filter("Must not be empty", |s| !s.trim().is_empty())
    }

    /// Strategy to generate valid phonetic (non-empty)
    fn valid_phonetic_strategy() -> impl Strategy<Value = String> {
        "[a-zA-Zəˈɪʊæɑɔɛʌ]{1,30}".prop_filter("Must not be empty", |s| !s.trim().is_empty())
    }

    proptest! {
        /// Property 12: Valid alphabet values ("ipa", "x-sampa") should pass validation
        #[test]
        fn valid_alphabet_passes_validation(
            alphabet in valid_alphabet_strategy(),
            word in valid_word_strategy(),
            phonetic in valid_phonetic_strategy(),
        ) {
            let pron = Pronunciation {
                word,
                phonetic,
                alphabet: alphabet.clone(),
            };

            let result = pron.validate();
            prop_assert!(
                result.is_ok(),
                "alphabet '{}' should be valid, but got error: {:?}",
                alphabet,
                result.err()
            );
        }

        /// Property 12: Invalid alphabet values should fail validation
        #[test]
        fn invalid_alphabet_fails_validation(
            alphabet in invalid_alphabet_strategy(),
            word in valid_word_strategy(),
            phonetic in valid_phonetic_strategy(),
        ) {
            let pron = Pronunciation {
                word,
                phonetic,
                alphabet: alphabet.clone(),
            };

            let result = pron.validate();
            prop_assert!(
                result.is_err(),
                "alphabet '{}' should be invalid",
                alphabet
            );

            let error = result.unwrap_err();
            prop_assert!(
                error.field == "alphabet",
                "Should have an alphabet validation error for value '{}'",
                alphabet
            );
        }

        /// Property 12: Pronunciation with valid alphabet in params should pass validation
        #[test]
        fn params_with_valid_pronunciation_passes_validation(
            alphabet in valid_alphabet_strategy(),
            word in valid_word_strategy(),
            phonetic in valid_phonetic_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: 1.0,
                pitch: 0.0,
                pronunciations: Some(vec![Pronunciation {
                    word,
                    phonetic,
                    alphabet: alphabet.clone(),
                }]),
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_ok(),
                "params with alphabet '{}' should be valid, but got errors: {:?}",
                alphabet,
                result.err()
            );
        }

        /// Property 12: Pronunciation with invalid alphabet in params should fail validation
        #[test]
        fn params_with_invalid_pronunciation_fails_validation(
            alphabet in invalid_alphabet_strategy(),
            word in valid_word_strategy(),
            phonetic in valid_phonetic_strategy(),
            text in valid_text_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text,
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: 1.0,
                pitch: 0.0,
                pronunciations: Some(vec![Pronunciation {
                    word,
                    phonetic,
                    alphabet: alphabet.clone(),
                }]),
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(
                result.is_err(),
                "params with alphabet '{}' should be invalid",
                alphabet
            );

            let errors = result.unwrap_err();
            prop_assert!(
                errors.iter().any(|e| e.field.contains("pronunciations") && e.field.contains("alphabet")),
                "Should have a pronunciations.alphabet validation error for value '{}'",
                alphabet
            );
        }

        /// Property: Empty text should always fail validation regardless of other params
        #[test]
        fn empty_text_fails_validation(
            rate in valid_speaking_rate_strategy(),
            pitch in valid_pitch_strategy(),
        ) {
            let params = SpeechSynthesizeParams {
                text: "   ".to_string(),
                voice: None,
                language_code: "en-US".to_string(),
                speaking_rate: rate,
                pitch,
                pronunciations: None,
                output_file: None,
            };

            let result = params.validate();
            prop_assert!(result.is_err());

            let errors = result.unwrap_err();
            prop_assert!(
                errors.iter().any(|e| e.field == "text"),
                "Should have a text validation error"
            );
        }
    }
}