piper-plus-g2p 0.2.0

Multilingual G2P (Grapheme-to-Phoneme) for TTS — eSpeak-ng free
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
//! C FFI for piper-g2p — foundation for mobile (UniFFI) bindings.

use std::ffi::{CStr, CString};
use std::os::raw::c_char;
use std::panic::AssertUnwindSafe;
use std::ptr;

use crate::phonemizer::PhonemizerRegistry;

/// Opaque handle to a PhonemizerRegistry.
pub struct PiperG2pHandle {
    registry: PhonemizerRegistry,
}

/// Create a new G2P handle. Returns NULL on failure.
///
/// # Safety
/// `languages` must be a valid null-terminated UTF-8 string or NULL.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn piper_plus_g2p_create(languages: *const c_char) -> *mut PiperG2pHandle {
    let result = std::panic::catch_unwind(|| {
        let mut registry = PhonemizerRegistry::new();
        let langs: Vec<&str> = if languages.is_null() {
            vec!["en", "es", "fr", "pt", "sv"]
        } else {
            match unsafe { CStr::from_ptr(languages) }.to_str() {
                Ok("") => vec!["en", "es", "fr", "pt", "sv"],
                Ok(s) => s.split(',').map(str::trim).collect(),
                Err(_) => return ptr::null_mut(),
            }
        };
        for lang in &langs {
            let _ = register_one(&mut registry, lang);
        }
        Box::into_raw(Box::new(PiperG2pHandle { registry }))
    });
    result.unwrap_or(ptr::null_mut())
}

/// Phonemize text, returning JSON: `{"tokens":[...],"language":".."}`.
/// Caller must free result with `piper_plus_g2p_free_string`.
///
/// # Safety
/// All pointer args must be valid null-terminated UTF-8 or NULL.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn piper_plus_g2p_phonemize(
    handle: *const PiperG2pHandle,
    text: *const c_char,
    language: *const c_char,
) -> *mut c_char {
    if handle.is_null() || text.is_null() {
        return ptr::null_mut();
    }
    let result = std::panic::catch_unwind(AssertUnwindSafe(|| {
        let h = unsafe { &*handle };
        let text = unsafe { CStr::from_ptr(text) }.to_str().ok()?;
        let lang = if language.is_null() {
            "en"
        } else {
            unsafe { CStr::from_ptr(language) }.to_str().ok()?
        };
        let p = h.registry.get(lang)?;
        let (tokens, _) = p.phonemize_with_prosody(text).ok()?;
        let json = serde_json::json!({"tokens": tokens, "language": lang});
        CString::new(json.to_string()).ok()
    }));
    match result {
        Ok(Some(s)) => s.into_raw(),
        _ => ptr::null_mut(),
    }
}

/// Free a string from piper_plus_g2p functions.
/// # Safety
/// `ptr` must be from a piper_plus_g2p function, or NULL.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn piper_plus_g2p_free_string(ptr: *mut c_char) {
    if !ptr.is_null() {
        unsafe {
            drop(CString::from_raw(ptr));
        }
    }
}

/// Destroy a G2P handle.
/// # Safety
/// `handle` must be from `piper_plus_g2p_create`, or NULL.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn piper_plus_g2p_free(handle: *mut PiperG2pHandle) {
    if !handle.is_null() {
        unsafe {
            drop(Box::from_raw(handle));
        }
    }
}

/// Get available languages as comma-separated string.
/// # Safety
/// `handle` must be valid or NULL.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn piper_plus_g2p_available_languages(
    handle: *const PiperG2pHandle,
) -> *mut c_char {
    if handle.is_null() {
        return ptr::null_mut();
    }
    let result = std::panic::catch_unwind(AssertUnwindSafe(|| {
        let h = unsafe { &*handle };
        let joined = h.registry.available_languages().join(",");
        CString::new(joined).ok()
    }));
    match result {
        Ok(Some(s)) => s.into_raw(),
        _ => ptr::null_mut(),
    }
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------
#[cfg(test)]
mod tests {
    use super::*;
    use std::ffi::{CStr, CString};

    // -----------------------------------------------------------------------
    // Korean FFI tests
    // -----------------------------------------------------------------------

    #[test]
    #[cfg(feature = "korean")]
    fn test_ffi_create_with_korean() {
        let lang = CString::new("ko").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null(), "handle should not be NULL for 'ko'");
            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    #[cfg(feature = "korean")]
    fn test_ffi_phonemize_korean() {
        let lang = CString::new("ko").unwrap();
        let text = CString::new("").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), lang.as_ptr());
            assert!(!result.is_null(), "phonemize result should not be NULL");

            let s = CStr::from_ptr(result).to_str().unwrap();
            assert!(!s.is_empty(), "phonemize result should not be empty");
            // Result is JSON with "tokens" and "language" keys
            assert!(s.contains("\"tokens\""), "result should contain tokens key");
            assert!(
                s.contains("\"language\""),
                "result should contain language key"
            );

            piper_plus_g2p_free_string(result);
            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    #[cfg(feature = "korean")]
    fn test_ffi_korean_available_languages() {
        let lang = CString::new("ko").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            let langs_ptr = piper_plus_g2p_available_languages(handle);
            assert!(!langs_ptr.is_null());

            let langs_str = CStr::from_ptr(langs_ptr).to_str().unwrap();
            let langs: Vec<&str> = langs_str.split(',').collect();
            assert!(
                langs.contains(&"ko"),
                "available languages should contain 'ko', got: {langs_str}"
            );

            piper_plus_g2p_free_string(langs_ptr);
            piper_plus_g2p_free(handle);
        }
    }

    // -----------------------------------------------------------------------
    // Swedish FFI tests
    // -----------------------------------------------------------------------

    #[test]
    #[cfg(feature = "swedish")]
    fn test_ffi_create_with_swedish() {
        let lang = CString::new("sv").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null(), "handle should not be NULL for 'sv'");
            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    #[cfg(feature = "swedish")]
    fn test_ffi_phonemize_swedish() {
        let lang = CString::new("sv").unwrap();
        let text = CString::new("hej").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), lang.as_ptr());
            assert!(!result.is_null(), "phonemize result should not be NULL");

            let s = CStr::from_ptr(result).to_str().unwrap();
            assert!(!s.is_empty(), "phonemize result should not be empty");
            assert!(s.contains("\"tokens\""), "result should contain tokens key");
            assert!(
                s.contains("\"language\""),
                "result should contain language key"
            );

            piper_plus_g2p_free_string(result);
            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    #[cfg(feature = "swedish")]
    fn test_ffi_swedish_available_languages() {
        let lang = CString::new("sv").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            let langs_ptr = piper_plus_g2p_available_languages(handle);
            assert!(!langs_ptr.is_null());

            let langs_str = CStr::from_ptr(langs_ptr).to_str().unwrap();
            let langs: Vec<&str> = langs_str.split(',').collect();
            assert!(
                langs.contains(&"sv"),
                "available languages should contain 'sv', got: {langs_str}"
            );

            piper_plus_g2p_free_string(langs_ptr);
            piper_plus_g2p_free(handle);
        }
    }

    // -----------------------------------------------------------------------
    // NULL pointer tests
    // -----------------------------------------------------------------------

    #[test]
    fn test_ffi_create_null_languages() {
        // NULL languages pointer should succeed (uses default language set)
        unsafe {
            let handle = piper_plus_g2p_create(ptr::null());
            assert!(
                !handle.is_null(),
                "NULL languages should create a handle with defaults"
            );
            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    fn test_ffi_phonemize_null_text() {
        let lang = CString::new("en").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            // NULL text should return NULL without crashing
            let result = piper_plus_g2p_phonemize(handle, ptr::null(), lang.as_ptr());
            assert!(result.is_null(), "NULL text should return NULL");

            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    fn test_ffi_phonemize_null_handle() {
        let text = CString::new("hello").unwrap();
        let lang = CString::new("en").unwrap();
        unsafe {
            // NULL handle should return NULL without crashing
            let result = piper_plus_g2p_phonemize(ptr::null(), text.as_ptr(), lang.as_ptr());
            assert!(result.is_null(), "NULL handle should return NULL");
        }
    }

    #[test]
    fn test_ffi_phonemize_null_language() {
        // NULL language defaults to "en" inside piper_plus_g2p_phonemize.
        // Register "en" (plus "es" as fallback) so the test works in environments
        // where the CMU dictionary is available. If "en" fails to register
        // (no dictionary), the result will be NULL — which is still safe.
        let langs = CString::new("en,es").unwrap();
        let text = CString::new("hello").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(langs.as_ptr());
            assert!(!handle.is_null());

            // NULL language triggers the default "en" path — must not crash
            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), ptr::null());
            if !result.is_null() {
                let s = CStr::from_ptr(result).to_str().unwrap();
                assert!(
                    s.contains("\"language\":\"en\""),
                    "should default to 'en', got: {s}"
                );
                piper_plus_g2p_free_string(result);
            }
            // If result is NULL, "en" was not registered (no CMU dict) — still safe

            piper_plus_g2p_free(handle);
        }
    }

    // -----------------------------------------------------------------------
    // Invalid language code tests
    // -----------------------------------------------------------------------

    #[test]
    fn test_ffi_phonemize_unsupported_language() {
        // Create handle with defaults, then try to phonemize with unsupported language
        let lang = CString::new("en").unwrap();
        let text = CString::new("hello").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            let unsupported = CString::new("xx").unwrap();
            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), unsupported.as_ptr());
            assert!(
                result.is_null(),
                "unsupported language 'xx' should return NULL"
            );

            let invalid = CString::new("invalid").unwrap();
            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), invalid.as_ptr());
            assert!(
                result.is_null(),
                "unsupported language 'invalid' should return NULL"
            );

            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    fn test_ffi_create_unsupported_language() {
        // Creating with an unsupported language should still return a handle
        // (register_one silently fails for unknown languages)
        let lang = CString::new("xx").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(
                !handle.is_null(),
                "handle should be non-NULL even if language is unsupported"
            );

            // The handle should have no registered languages
            let avail_ptr = piper_plus_g2p_available_languages(handle);
            assert!(!avail_ptr.is_null());
            let avail_str = CStr::from_ptr(avail_ptr).to_str().unwrap();
            assert!(
                avail_str.is_empty(),
                "no languages should be registered, got: {avail_str}"
            );

            piper_plus_g2p_free_string(avail_ptr);
            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    fn test_ffi_phonemize_empty_language() {
        // Empty language string in phonemize should fail (not registered)
        let lang = CString::new("en").unwrap();
        let text = CString::new("hello").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            let empty_lang = CString::new("").unwrap();
            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), empty_lang.as_ptr());
            assert!(result.is_null(), "empty language code should return NULL");

            piper_plus_g2p_free(handle);
        }
    }

    #[test]
    fn test_ffi_create_empty_language() {
        // Empty string for languages in create should use defaults
        let lang = CString::new("").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(
                !handle.is_null(),
                "empty languages string should use defaults"
            );

            let avail_ptr = piper_plus_g2p_available_languages(handle);
            assert!(!avail_ptr.is_null());
            let avail_str = CStr::from_ptr(avail_ptr).to_str().unwrap();
            assert!(
                !avail_str.is_empty(),
                "defaults should register at least one language"
            );

            piper_plus_g2p_free_string(avail_ptr);
            piper_plus_g2p_free(handle);
        }
    }

    // -----------------------------------------------------------------------
    // Empty string input tests
    // -----------------------------------------------------------------------

    #[test]
    fn test_ffi_phonemize_empty_text() {
        let lang = CString::new("en").unwrap();
        let text = CString::new("").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(lang.as_ptr());
            assert!(!handle.is_null());

            // Empty text: the phonemizer may return NULL or an empty tokens result.
            // Either way it must not crash.
            let result = piper_plus_g2p_phonemize(handle, text.as_ptr(), lang.as_ptr());
            if !result.is_null() {
                piper_plus_g2p_free_string(result);
            }

            piper_plus_g2p_free(handle);
        }
    }

    // -----------------------------------------------------------------------
    // Memory safety tests (NULL to free functions)
    // -----------------------------------------------------------------------

    #[test]
    fn test_ffi_free_string_null() {
        // Passing NULL to free_string should be a no-op, not crash
        unsafe {
            piper_plus_g2p_free_string(ptr::null_mut());
        }
    }

    #[test]
    fn test_ffi_free_null_handle() {
        // Passing NULL to free should be a no-op, not crash
        unsafe {
            piper_plus_g2p_free(ptr::null_mut());
        }
    }

    #[test]
    fn test_ffi_available_languages_null_handle() {
        // NULL handle should return NULL, not crash
        unsafe {
            let result = piper_plus_g2p_available_languages(ptr::null());
            assert!(
                result.is_null(),
                "NULL handle should return NULL from available_languages"
            );
        }
    }

    // -----------------------------------------------------------------------
    // Combined test
    // -----------------------------------------------------------------------

    #[test]
    #[cfg(all(feature = "korean", feature = "swedish"))]
    fn test_ffi_create_multilingual() {
        let langs = CString::new("ko,sv").unwrap();
        unsafe {
            let handle = piper_plus_g2p_create(langs.as_ptr());
            assert!(!handle.is_null(), "handle should not be NULL for 'ko,sv'");

            let avail_ptr = piper_plus_g2p_available_languages(handle);
            assert!(!avail_ptr.is_null());

            let avail_str = CStr::from_ptr(avail_ptr).to_str().unwrap();
            let avail: Vec<&str> = avail_str.split(',').collect();
            assert!(
                avail.contains(&"ko"),
                "should contain 'ko', got: {avail_str}"
            );
            assert!(
                avail.contains(&"sv"),
                "should contain 'sv', got: {avail_str}"
            );

            // Phonemize Korean text
            let ko_text = CString::new("").unwrap();
            let ko_lang = CString::new("ko").unwrap();
            let ko_result = piper_plus_g2p_phonemize(handle, ko_text.as_ptr(), ko_lang.as_ptr());
            assert!(!ko_result.is_null(), "Korean phonemize should succeed");
            piper_plus_g2p_free_string(ko_result);

            // Phonemize Swedish text
            let sv_text = CString::new("hej").unwrap();
            let sv_lang = CString::new("sv").unwrap();
            let sv_result = piper_plus_g2p_phonemize(handle, sv_text.as_ptr(), sv_lang.as_ptr());
            assert!(!sv_result.is_null(), "Swedish phonemize should succeed");
            piper_plus_g2p_free_string(sv_result);

            piper_plus_g2p_free_string(avail_ptr);
            piper_plus_g2p_free(handle);
        }
    }
}

fn register_one(registry: &mut PhonemizerRegistry, lang: &str) -> Result<(), crate::G2pError> {
    match lang {
        #[cfg(feature = "english")]
        "en" => {
            registry.register("en", Box::new(crate::english::EnglishPhonemizer::new()?));
        }
        #[cfg(feature = "chinese")]
        "zh" => {
            // ChinesePhonemizer requires dictionary file paths;
            // skip registration when paths are not available via FFI.
            return Err(crate::G2pError::Phonemize(
                "Chinese requires dictionary paths; use from_dicts() instead".into(),
            ));
        }
        #[cfg(feature = "korean")]
        "ko" => {
            registry.register("ko", Box::new(crate::korean::KoreanPhonemizer::new()));
        }
        #[cfg(feature = "spanish")]
        "es" => {
            registry.register("es", Box::new(crate::spanish::SpanishPhonemizer::new()));
        }
        #[cfg(feature = "french")]
        "fr" => {
            registry.register("fr", Box::new(crate::french::FrenchPhonemizer::new()));
        }
        #[cfg(feature = "portuguese")]
        "pt" => {
            registry.register(
                "pt",
                Box::new(crate::portuguese::PortuguesePhonemizer::new()),
            );
        }
        #[cfg(feature = "swedish")]
        "sv" => {
            registry.register("sv", Box::new(crate::swedish::SwedishPhonemizer::new()));
        }
        #[cfg(feature = "japanese")]
        "ja" => {
            registry.register("ja", Box::new(crate::japanese::JapanesePhonemizer::new()?));
        }
        _ => {
            return Err(crate::G2pError::UnsupportedLanguage {
                code: lang.to_string(),
            });
        }
    }
    Ok(())
}