|
|
|
@ -1,13 +1,11 @@
|
|
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
|
|
|
|
|
use libc::size_t;
|
|
|
|
|
use std::{
|
|
|
|
|
collections::HashMap,
|
|
|
|
|
ffi::{CStr, CString},
|
|
|
|
|
fmt,
|
|
|
|
|
marker::Send,
|
|
|
|
|
os::raw::{c_char, c_int},
|
|
|
|
|
sync::{Arc, Mutex},
|
|
|
|
|
sync::Mutex,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
@ -33,46 +31,18 @@ pub enum Priority {
|
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
|
#[repr(u32)]
|
|
|
|
|
pub enum VoiceType {
|
|
|
|
|
Male1 = SPDVoiceType::SPD_MALE1 as u32,
|
|
|
|
|
Male2 = SPDVoiceType::SPD_MALE2 as u32,
|
|
|
|
|
Male3 = SPDVoiceType::SPD_MALE3 as u32,
|
|
|
|
|
Female1 = SPDVoiceType::SPD_FEMALE1 as u32,
|
|
|
|
|
Female2 = SPDVoiceType::SPD_FEMALE2 as u32,
|
|
|
|
|
Female3 = SPDVoiceType::SPD_FEMALE3 as u32,
|
|
|
|
|
ChildMale = SPDVoiceType::SPD_CHILD_MALE as u32,
|
|
|
|
|
ChildFemale = SPDVoiceType::SPD_CHILD_FEMALE as u32,
|
|
|
|
|
Male1 = SPDVoiceType::SPD_MALE1,
|
|
|
|
|
Male2 = SPDVoiceType::SPD_MALE2,
|
|
|
|
|
Male3 = SPDVoiceType::SPD_MALE3,
|
|
|
|
|
Female1 = SPDVoiceType::SPD_FEMALE1,
|
|
|
|
|
Female2 = SPDVoiceType::SPD_FEMALE2,
|
|
|
|
|
Female3 = SPDVoiceType::SPD_FEMALE3,
|
|
|
|
|
ChildMale = SPDVoiceType::SPD_CHILD_MALE,
|
|
|
|
|
ChildFemale = SPDVoiceType::SPD_CHILD_FEMALE,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Hash, PartialEq)]
|
|
|
|
|
pub struct Voice {
|
|
|
|
|
/// The name of this voice. Unique with regards to the output module it came from.
|
|
|
|
|
pub name: String,
|
|
|
|
|
/// The language of this voice. Probably a BCP 47 language tag.
|
|
|
|
|
pub language: String,
|
|
|
|
|
/// The variant of this language, if present. Loosely defined.
|
|
|
|
|
pub variant: Option<String>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Voice {
|
|
|
|
|
/// Convert a SPDVoice to a Voice. Only fails if the fields are non-Unicode.
|
|
|
|
|
/// Does not check that the pointers are non-null, caller must ensure that.
|
|
|
|
|
unsafe fn try_from(v: &SPDVoice) -> Result<Self, std::str::Utf8Error> {
|
|
|
|
|
// SPDVoice fields appear to all be ASCII.
|
|
|
|
|
let name = CStr::from_ptr(v.name).to_str()?.to_owned();
|
|
|
|
|
let language = CStr::from_ptr(v.language).to_str()?.to_owned();
|
|
|
|
|
let variant = CStr::from_ptr(v.variant).to_str()?;
|
|
|
|
|
let variant = if variant == "none" {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
Some(variant.to_owned())
|
|
|
|
|
};
|
|
|
|
|
Ok(Self {
|
|
|
|
|
name,
|
|
|
|
|
language,
|
|
|
|
|
variant,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
|
pub struct Connection(pub *mut SPDConnection, u64);
|
|
|
|
|
|
|
|
|
|
pub type Address = SPDConnectionAddress;
|
|
|
|
|
|
|
|
|
@ -99,10 +69,8 @@ pub enum Notification {
|
|
|
|
|
#[repr(u32)]
|
|
|
|
|
pub enum Punctuation {
|
|
|
|
|
All = SPDPunctuation::SPD_PUNCT_ALL,
|
|
|
|
|
#[cfg(feature = "0_10")]
|
|
|
|
|
Most = SPDPunctuation::SPD_PUNCT_MOST,
|
|
|
|
|
Some = SPDPunctuation::SPD_PUNCT_SOME,
|
|
|
|
|
None = SPDPunctuation::SPD_PUNCT_NONE,
|
|
|
|
|
Some = SPDPunctuation::SPD_PUNCT_SOME,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
@ -113,22 +81,18 @@ pub enum CapitalLetters {
|
|
|
|
|
Icon = SPDCapitalLetters::SPD_CAP_ICON,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Converts a `0` to a success and everything else to an error.
|
|
|
|
|
fn c_int_to_result(r: c_int) -> Result<(), Error> {
|
|
|
|
|
match r {
|
|
|
|
|
0 => Ok(()),
|
|
|
|
|
_ => Err(Error::OperationFailed),
|
|
|
|
|
}
|
|
|
|
|
fn i32_to_bool(v: i32) -> bool {
|
|
|
|
|
v == 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
|
struct Callbacks {
|
|
|
|
|
begin: Option<Box<dyn FnMut(size_t, size_t)>>,
|
|
|
|
|
end: Option<Box<dyn FnMut(size_t, size_t)>>,
|
|
|
|
|
index_mark: Option<Box<dyn FnMut(size_t, size_t, String)>>,
|
|
|
|
|
cancel: Option<Box<dyn FnMut(size_t, size_t)>>,
|
|
|
|
|
pause: Option<Box<dyn FnMut(size_t, size_t)>>,
|
|
|
|
|
resume: Option<Box<dyn FnMut(size_t, size_t)>>,
|
|
|
|
|
begin: Option<Box<dyn FnMut(u64, u64)>>,
|
|
|
|
|
end: Option<Box<dyn FnMut(u64, u64)>>,
|
|
|
|
|
index_mark: Option<Box<dyn FnMut(u64, u64, String)>>,
|
|
|
|
|
cancel: Option<Box<dyn FnMut(u64, u64)>>,
|
|
|
|
|
pause: Option<Box<dyn FnMut(u64, u64)>>,
|
|
|
|
|
resume: Option<Box<dyn FnMut(u64, u64)>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe impl Send for Callbacks {}
|
|
|
|
@ -136,13 +100,13 @@ unsafe impl Send for Callbacks {}
|
|
|
|
|
unsafe impl Sync for Callbacks {}
|
|
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref callbacks: Mutex<HashMap<size_t, Callbacks>> = {
|
|
|
|
|
static ref callbacks: Mutex<HashMap<u64, Callbacks>> = {
|
|
|
|
|
let m = HashMap::new();
|
|
|
|
|
Mutex::new(m)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe extern "C" fn cb(msg_id: size_t, client_id: size_t, state: u32) {
|
|
|
|
|
unsafe extern "C" fn cb(msg_id: u64, client_id: u64, state: u32) {
|
|
|
|
|
let state = match state {
|
|
|
|
|
SPDNotificationType_SPD_EVENT_BEGIN => Notification::Begin,
|
|
|
|
|
SPDNotificationType_SPD_EVENT_END => Notification::End,
|
|
|
|
@ -166,7 +130,7 @@ unsafe extern "C" fn cb(msg_id: size_t, client_id: size_t, state: u32) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe extern "C" fn cb_im(msg_id: size_t, client_id: size_t, state: u32, index_mark: *mut c_char) {
|
|
|
|
|
unsafe extern "C" fn cb_im(msg_id: u64, client_id: u64, state: u32, index_mark: *mut i8) {
|
|
|
|
|
let index_mark = CStr::from_ptr(index_mark);
|
|
|
|
|
let index_mark = index_mark.to_string_lossy().to_string();
|
|
|
|
|
let state = match state {
|
|
|
|
@ -185,36 +149,28 @@ unsafe extern "C" fn cb_im(msg_id: size_t, client_id: size_t, state: u32, index_
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub enum Error {
|
|
|
|
|
/// speech-dispatcher failed to initialize. Ensure speech-dispatcher is actually working on
|
|
|
|
|
/// your system; for example, does the command `spd-say hello` work?
|
|
|
|
|
pub enum SpeechDispatcherError {
|
|
|
|
|
InitializationError,
|
|
|
|
|
/// The operation failed
|
|
|
|
|
OperationFailed,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl std::error::Error for Error {}
|
|
|
|
|
impl std::error::Error for SpeechDispatcherError {}
|
|
|
|
|
|
|
|
|
|
impl fmt::Display for Error {
|
|
|
|
|
impl fmt::Display for SpeechDispatcherError {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
use Error::*;
|
|
|
|
|
use SpeechDispatcherError::*;
|
|
|
|
|
match self {
|
|
|
|
|
InitializationError => write!(f, "failed to initialize"),
|
|
|
|
|
OperationFailed => write!(f, "operation failed"),
|
|
|
|
|
InitializationError => write!(f, "Failed to initialize"),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
|
pub struct Connection(pub Arc<*mut SPDConnection>, size_t);
|
|
|
|
|
|
|
|
|
|
impl Connection {
|
|
|
|
|
pub fn open<S: Into<String>>(
|
|
|
|
|
client_name: S,
|
|
|
|
|
connection_name: S,
|
|
|
|
|
user_name: S,
|
|
|
|
|
mode: Mode,
|
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
|
) -> Result<Self, SpeechDispatcherError> {
|
|
|
|
|
let clientname = CString::new(client_name.into()).unwrap();
|
|
|
|
|
let connectionname = CString::new(connection_name.into()).unwrap();
|
|
|
|
|
let username = CString::new(user_name.into()).unwrap();
|
|
|
|
@ -226,14 +182,18 @@ impl Connection {
|
|
|
|
|
mode as u32,
|
|
|
|
|
);
|
|
|
|
|
if c.is_null() {
|
|
|
|
|
Err(Error::InitializationError)
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
Ok(Self::setup_connection(c))
|
|
|
|
|
Some(Self::setup_connection(c))
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
let mut c = Self(Arc::new(connection?), 0);
|
|
|
|
|
c.setup()?;
|
|
|
|
|
Ok(c)
|
|
|
|
|
if let Some(connection) = connection {
|
|
|
|
|
let mut c = Self(connection, 0);
|
|
|
|
|
c.setup();
|
|
|
|
|
Ok(c)
|
|
|
|
|
} else {
|
|
|
|
|
Err(SpeechDispatcherError::InitializationError)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub unsafe fn open2<S: Into<String>>(
|
|
|
|
@ -243,7 +203,7 @@ impl Connection {
|
|
|
|
|
mode: Mode,
|
|
|
|
|
address: *mut Address,
|
|
|
|
|
autospawn: bool,
|
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
|
) -> Self {
|
|
|
|
|
let auto_spawn = if autospawn { 1 } else { 0 };
|
|
|
|
|
let error_result = vec![CString::new("").unwrap().into_raw()].as_mut_ptr();
|
|
|
|
|
let clientname = CString::new(client_name.into()).unwrap();
|
|
|
|
@ -259,15 +219,11 @@ impl Connection {
|
|
|
|
|
auto_spawn,
|
|
|
|
|
error_result,
|
|
|
|
|
);
|
|
|
|
|
if c.is_null() {
|
|
|
|
|
Err(Error::InitializationError)
|
|
|
|
|
} else {
|
|
|
|
|
Ok(Self::setup_connection(c))
|
|
|
|
|
}
|
|
|
|
|
Self::setup_connection(c)
|
|
|
|
|
};
|
|
|
|
|
let mut c = Self(Arc::new(connection?), 0);
|
|
|
|
|
c.setup()?;
|
|
|
|
|
Ok(c)
|
|
|
|
|
let mut c = Self(connection, 0);
|
|
|
|
|
c.setup();
|
|
|
|
|
c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe fn setup_connection(c: *mut SPDConnection) -> *mut SPDConnection {
|
|
|
|
@ -280,7 +236,7 @@ impl Connection {
|
|
|
|
|
c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn setup(&mut self) -> Result<(), Error> {
|
|
|
|
|
fn setup(&mut self) {
|
|
|
|
|
let client_id = self.send_data("HISTORY GET CLIENT_ID\r\n", true);
|
|
|
|
|
if let Some(client_id) = client_id {
|
|
|
|
|
let client_id: Vec<&str> = client_id.split("\r\n").collect();
|
|
|
|
@ -288,26 +244,24 @@ impl Connection {
|
|
|
|
|
if let Some(client_id) = client_id {
|
|
|
|
|
let client_id: Vec<&str> = client_id.split("-").collect();
|
|
|
|
|
if let Some(client_id) = client_id.get(1) {
|
|
|
|
|
if let Ok(client_id) = client_id.parse::<size_t>() {
|
|
|
|
|
if let Ok(client_id) = client_id.parse::<u64>() {
|
|
|
|
|
self.1 = client_id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
callbacks.lock().unwrap().insert(self.1, Default::default());
|
|
|
|
|
self.set_notification_on(Notification::All)
|
|
|
|
|
.map_err(|_| Error::InitializationError)?;
|
|
|
|
|
Ok(())
|
|
|
|
|
self.set_notification_on(Notification::All);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn close(&self) {
|
|
|
|
|
unsafe { spd_close(*self.0) };
|
|
|
|
|
unsafe { spd_close(self.0) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn say<S: Into<String>>(&self, priority: Priority, text: S) -> Option<u64> {
|
|
|
|
|
let text: String = text.into();
|
|
|
|
|
let param = CString::new(text).unwrap();
|
|
|
|
|
let rv = unsafe { spd_say(*self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
let rv = unsafe { spd_say(self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
if rv != -1 {
|
|
|
|
|
Some(rv as u64)
|
|
|
|
|
} else {
|
|
|
|
@ -318,7 +272,7 @@ impl Connection {
|
|
|
|
|
pub fn sayf<S: Into<String>>(&self, priority: Priority, format: S) -> Option<i32> {
|
|
|
|
|
let format: String = format.into();
|
|
|
|
|
let param = CString::new(format).unwrap();
|
|
|
|
|
let rv = unsafe { spd_sayf(*self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
let rv = unsafe { spd_sayf(self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
if rv != -1 {
|
|
|
|
|
Some(rv)
|
|
|
|
|
} else {
|
|
|
|
@ -326,120 +280,107 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn stop(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_stop(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn stop(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_stop(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn stop_all(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_stop_all(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn stop_all(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_stop_all(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn stop_uid(&self, target_uid: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_stop_uid(*self.0, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn stop_uid(&self, target_uid: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_stop_uid(self.0, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn cancel(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_cancel(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn cancel(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_cancel(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn cancel_all(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_cancel_all(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn cancel_all(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_cancel_all(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn cancel_uid(&self, target_uid: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_cancel_uid(*self.0, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn cancel_uid(&self, target_uid: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_cancel_uid(self.0, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn pause(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_pause(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn pause(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_pause(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn pause_all(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_pause_all(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn pause_all(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_pause_all(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn pause_uid(&self, target_uid: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_pause_uid(*self.0, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn pause_uid(&self, target_uid: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_pause_uid(self.0, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn resume(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_resume(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn resume(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_resume(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn resume_all(&self) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_resume_all(*self.0) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn resume_all(&self) -> bool {
|
|
|
|
|
let v = unsafe { spd_resume_all(self.0) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn resume_uid(&self, target_uid: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_resume_uid(*self.0, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn resume_uid(&self, target_uid: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_resume_uid(self.0, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn key<S: Into<String>>(&self, priority: Priority, key_name: S) -> Result<(), Error> {
|
|
|
|
|
pub fn key<S: Into<String>>(&self, priority: Priority, key_name: S) -> bool {
|
|
|
|
|
let param = CString::new(key_name.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_key(*self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_key(self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn char<S: Into<String>>(&self, priority: Priority, char: S) -> Result<(), Error> {
|
|
|
|
|
pub fn char<S: Into<String>>(&self, priority: Priority, char: S) -> bool {
|
|
|
|
|
let param = CString::new(char.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_char(*self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_char(self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn wchar(&self, priority: Priority, wchar: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_wchar(*self.0, priority as u32, wchar as wchar_t) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn wchar(&self, priority: Priority, wchar: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_wchar(self.0, priority as u32, wchar) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn sound_icon<S: Into<String>>(
|
|
|
|
|
&self,
|
|
|
|
|
priority: Priority,
|
|
|
|
|
icon_name: S,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
pub fn sound_icon<S: Into<String>>(&self, priority: Priority, icon_name: S) -> bool {
|
|
|
|
|
let param = CString::new(icon_name.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_char(*self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_char(self.0, priority as u32, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_type(&self, voice_type: VoiceType) -> Result<(), Error> {
|
|
|
|
|
#[cfg(all(any(feature = "0_9", feature = "0_10"), not(feature = "0_11")))]
|
|
|
|
|
let v = unsafe { spd_set_voice_type(*self.0, voice_type as u32) };
|
|
|
|
|
#[cfg(all(not(feature = "0_9"), any(feature = "0_11", not(feature = "0_10"))))]
|
|
|
|
|
let v = unsafe { spd_set_voice_type(*self.0, voice_type as i32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_type(&self, voice_type: VoiceType) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_type(self.0, voice_type as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_type_all(&self, voice_type: VoiceType) -> Result<(), Error> {
|
|
|
|
|
#[cfg(all(any(feature = "0_9", feature = "0_10"), not(feature = "0_11")))]
|
|
|
|
|
let v = unsafe { spd_set_voice_type_all(*self.0, voice_type as u32) };
|
|
|
|
|
#[cfg(all(not(feature = "0_9"), any(feature = "0_11", not(feature = "0_10"))))]
|
|
|
|
|
let v = unsafe { spd_set_voice_type_all(*self.0, voice_type as i32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_type_all(&self, voice_type: VoiceType) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_type_all(self.0, voice_type as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_type_uid(&self, voice_type: VoiceType, target_uid: u32) -> Result<(), Error> {
|
|
|
|
|
#[cfg(all(any(feature = "0_9", feature = "0_10"), not(feature = "0_11")))]
|
|
|
|
|
let v = unsafe { spd_set_voice_type_uid(*self.0, voice_type as u32, target_uid) };
|
|
|
|
|
#[cfg(all(not(feature = "0_9"), any(feature = "0_11", not(feature = "0_10"))))]
|
|
|
|
|
let v = unsafe { spd_set_voice_type_uid(*self.0, voice_type as i32, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_type_uid(&self, voice_type: VoiceType, target_uid: u32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_type_uid(self.0, voice_type as u32, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_voice_type(&self) -> Result<VoiceType, Error> {
|
|
|
|
|
let v = unsafe { spd_get_voice_type(*self.0) };
|
|
|
|
|
Ok(match v {
|
|
|
|
|
pub fn get_voice_type(&self) -> VoiceType {
|
|
|
|
|
let v = unsafe { spd_get_voice_type(self.0) };
|
|
|
|
|
match v {
|
|
|
|
|
SPDVoiceType::SPD_MALE1 => VoiceType::Male1,
|
|
|
|
|
SPDVoiceType::SPD_MALE2 => VoiceType::Male2,
|
|
|
|
|
SPDVoiceType::SPD_MALE3 => VoiceType::Male3,
|
|
|
|
@ -448,234 +389,213 @@ impl Connection {
|
|
|
|
|
SPDVoiceType::SPD_FEMALE3 => VoiceType::Female3,
|
|
|
|
|
SPDVoiceType::SPD_CHILD_MALE => VoiceType::ChildMale,
|
|
|
|
|
SPDVoiceType::SPD_CHILD_FEMALE => VoiceType::ChildFemale,
|
|
|
|
|
_ => return Err(Error::OperationFailed), // can this happen?
|
|
|
|
|
})
|
|
|
|
|
_ => panic!("Invalid voice type"),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_synthesis_voice(&self, voice: &Voice) -> Result<(), Error> {
|
|
|
|
|
let param = CString::new(voice.name.clone()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_synthesis_voice(*self.0, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_synthesis_voice_all<S: Into<String>>(&self, voice_name: S) -> Result<(), Error> {
|
|
|
|
|
pub fn set_synthesis_voice<S: Into<String>>(&self, voice_name: S) -> bool {
|
|
|
|
|
let param = CString::new(voice_name.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_synthesis_voice_all(*self.0, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_synthesis_voice(self.0, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_synthesis_voice_uid<S: Into<String>>(
|
|
|
|
|
&self,
|
|
|
|
|
voice_name: S,
|
|
|
|
|
target_uid: u32,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
pub fn set_synthesis_voice_all<S: Into<String>>(&self, voice_name: S) -> bool {
|
|
|
|
|
let param = CString::new(voice_name.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_synthesis_voice_uid(*self.0, param.as_ptr(), target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_synthesis_voice_all(self.0, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_data_mode(&self, mode: DataMode) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_data_mode(*self.0, mode as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_synthesis_voice_uid<S: Into<String>>(&self, voice_name: S, target_uid: u32) -> bool {
|
|
|
|
|
let param = CString::new(voice_name.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_synthesis_voice_uid(self.0, param.as_ptr(), target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_notification_on(&self, notification: Notification) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_notification_on(*self.0, notification as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_data_mode(&self, mode: DataMode) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_data_mode(self.0, mode as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_notification_off(&self, notification: Notification) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_notification_off(*self.0, notification as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_notification_on(&self, notification: Notification) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_notification_on(self.0, notification as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_notification<S: Into<String>>(
|
|
|
|
|
&self,
|
|
|
|
|
notification: Notification,
|
|
|
|
|
state: S,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
pub fn set_notification_off(&self, notification: Notification) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_notification_off(self.0, notification as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_notification<S: Into<String>>(&self, notification: Notification, state: S) -> bool {
|
|
|
|
|
let param = CString::new(state.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_notification(*self.0, notification as u32, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_notification(self.0, notification as u32, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_rate(&self, rate: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_voice_rate(*self.0, rate) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_rate(&self, rate: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_rate(self.0, rate) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_rate_all(&self, rate: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_voice_rate_all(*self.0, rate) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_rate_all(&self, rate: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_rate_all(self.0, rate) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_rate_uid(&self, rate: i32, target_uid: u32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_voice_rate_uid(*self.0, rate, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_rate_uid(&self, rate: i32, target_uid: u32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_rate_uid(self.0, rate, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_voice_rate(&self) -> i32 {
|
|
|
|
|
unsafe { spd_get_voice_rate(*self.0) }
|
|
|
|
|
unsafe { spd_get_voice_rate(self.0) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_pitch(&self, pitch: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_voice_pitch(*self.0, pitch) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_pitch(&self, pitch: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_pitch(self.0, pitch) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_pitch_all(&self, pitch: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_voice_pitch_all(*self.0, pitch) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_pitch_all(&self, pitch: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_pitch_all(self.0, pitch) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_voice_pitch_uid(&self, pitch: i32, target_uid: u32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_voice_pitch_uid(*self.0, pitch, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_voice_pitch_uid(&self, pitch: i32, target_uid: u32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_voice_pitch_uid(self.0, pitch, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_voice_pitch(&self) -> i32 {
|
|
|
|
|
unsafe { spd_get_voice_pitch(*self.0) }
|
|
|
|
|
unsafe { spd_get_voice_pitch(self.0) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_volume(&self, volume: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_volume(*self.0, volume) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_volume(&self, volume: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_volume(self.0, volume) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_volume_all(&self, volume: i32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_volume_all(*self.0, volume) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_volume_all(&self, volume: i32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_volume_all(self.0, volume) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_volume_uid(&self, volume: i32, target_uid: u32) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_volume_uid(*self.0, volume, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_volume_uid(&self, volume: i32, target_uid: u32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_volume_uid(self.0, volume, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_volume(&self) -> i32 {
|
|
|
|
|
unsafe { spd_get_volume(*self.0) }
|
|
|
|
|
unsafe { spd_get_volume(self.0) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_punctuation(&self, punctuation: Punctuation) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_punctuation(*self.0, punctuation as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_punctuation(&self, punctuation: Punctuation) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_punctuation(self.0, punctuation as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_punctuation_all(&self, punctuation: Punctuation) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_punctuation_all(*self.0, punctuation as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_punctuation_all(&self, punctuation: Punctuation) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_punctuation_all(self.0, punctuation as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_punctuation_uid(
|
|
|
|
|
&self,
|
|
|
|
|
punctuation: Punctuation,
|
|
|
|
|
target_uid: u32,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_punctuation_uid(*self.0, punctuation as u32, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_punctuation_uid(&self, punctuation: Punctuation, target_uid: u32) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_punctuation_uid(self.0, punctuation as u32, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_capital_letters(&self, capital_letters: CapitalLetters) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_capital_letters(*self.0, capital_letters as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_capital_letters(&self, capital_letters: CapitalLetters) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_capital_letters(self.0, capital_letters as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_capital_letters_all(&self, capital_letters: CapitalLetters) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_capital_letters_all(*self.0, capital_letters as u32) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
pub fn set_capital_letters_all(&self, capital_letters: CapitalLetters) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_capital_letters_all(self.0, capital_letters as u32) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_capital_letters_uid(
|
|
|
|
|
&self,
|
|
|
|
|
capital_letters: CapitalLetters,
|
|
|
|
|
target_uid: u32,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
let v = unsafe { spd_set_capital_letters_uid(*self.0, capital_letters as u32, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
) -> bool {
|
|
|
|
|
let v = unsafe { spd_set_capital_letters_uid(self.0, capital_letters as u32, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_spelling(&self, spelling: bool) -> Result<(), Error> {
|
|
|
|
|
pub fn set_spelling(&self, spelling: bool) -> bool {
|
|
|
|
|
let s = if spelling {
|
|
|
|
|
SPDSpelling::SPD_SPELL_ON
|
|
|
|
|
} else {
|
|
|
|
|
SPDSpelling::SPD_SPELL_OFF
|
|
|
|
|
};
|
|
|
|
|
let v = unsafe { spd_set_spelling(*self.0, s) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_spelling(self.0, s) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_spelling_all(&self, spelling: bool) -> Result<(), Error> {
|
|
|
|
|
pub fn set_spelling_all(&self, spelling: bool) -> bool {
|
|
|
|
|
let s = if spelling {
|
|
|
|
|
SPDSpelling::SPD_SPELL_ON
|
|
|
|
|
} else {
|
|
|
|
|
SPDSpelling::SPD_SPELL_OFF
|
|
|
|
|
};
|
|
|
|
|
let v = unsafe { spd_set_spelling_all(*self.0, s) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_spelling_all(self.0, s) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_spelling_uid(&self, spelling: bool, target_uid: u32) -> Result<(), Error> {
|
|
|
|
|
pub fn set_spelling_uid(&self, spelling: bool, target_uid: u32) -> bool {
|
|
|
|
|
let s = if spelling {
|
|
|
|
|
SPDSpelling::SPD_SPELL_ON
|
|
|
|
|
} else {
|
|
|
|
|
SPDSpelling::SPD_SPELL_OFF
|
|
|
|
|
};
|
|
|
|
|
let v = unsafe { spd_set_spelling_uid(*self.0, s, target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_spelling_uid(self.0, s, target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_language<S: Into<String>>(&self, language: S) -> Result<(), Error> {
|
|
|
|
|
pub fn set_language<S: Into<String>>(&self, language: S) -> bool {
|
|
|
|
|
let param = CString::new(language.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_language(*self.0, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_language(self.0, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_language_all<S: Into<String>>(&self, language: S) -> Result<(), Error> {
|
|
|
|
|
pub fn set_language_all<S: Into<String>>(&self, language: S) -> bool {
|
|
|
|
|
let param = CString::new(language.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_language_all(*self.0, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_language_all(self.0, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_language_uid<S: Into<String>>(
|
|
|
|
|
&self,
|
|
|
|
|
language: S,
|
|
|
|
|
target_uid: u32,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
pub fn set_language_uid<S: Into<String>>(&self, language: S, target_uid: u32) -> bool {
|
|
|
|
|
let param = CString::new(language.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_language_uid(*self.0, param.as_ptr(), target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_language_uid(self.0, param.as_ptr(), target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_language(&self) -> Result<&str, Error> {
|
|
|
|
|
let language = unsafe { spd_get_language(*self.0) };
|
|
|
|
|
if language.is_null() {
|
|
|
|
|
Err(Error::OperationFailed)
|
|
|
|
|
} else {
|
|
|
|
|
let language = unsafe { CStr::from_ptr(language) };
|
|
|
|
|
language.to_str().map_err(|_| Error::OperationFailed)
|
|
|
|
|
}
|
|
|
|
|
pub fn get_language(&self) -> &str {
|
|
|
|
|
let v = unsafe { CStr::from_ptr(spd_get_language(self.0)) };
|
|
|
|
|
v.to_str().unwrap()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_output_module<S: Into<String>>(&self, output_module: S) -> Result<(), Error> {
|
|
|
|
|
pub fn set_output_module<S: Into<String>>(&self, output_module: S) -> bool {
|
|
|
|
|
let param = CString::new(output_module.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_output_module(*self.0, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_output_module(self.0, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_output_module_all<S: Into<String>>(&self, output_module: S) -> Result<(), Error> {
|
|
|
|
|
pub fn set_output_module_all<S: Into<String>>(&self, output_module: S) -> bool {
|
|
|
|
|
let param = CString::new(output_module.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_output_module_all(*self.0, param.as_ptr()) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_output_module_all(self.0, param.as_ptr()) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_output_module_uid<S: Into<String>>(
|
|
|
|
|
&self,
|
|
|
|
|
output_module: S,
|
|
|
|
|
target_uid: u32,
|
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
) -> bool {
|
|
|
|
|
let param = CString::new(output_module.into()).unwrap();
|
|
|
|
|
let v = unsafe { spd_set_output_module_uid(*self.0, param.as_ptr(), target_uid) };
|
|
|
|
|
c_int_to_result(v)
|
|
|
|
|
let v = unsafe { spd_set_output_module_uid(self.0, param.as_ptr(), target_uid) };
|
|
|
|
|
i32_to_bool(v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn send_data<S: Into<String>>(&self, data: S, wait_for_reply: bool) -> Option<String> {
|
|
|
|
@ -685,7 +605,7 @@ impl Connection {
|
|
|
|
|
SPD_NO_REPLY as i32
|
|
|
|
|
};
|
|
|
|
|
let data = CString::new(data.into()).unwrap();
|
|
|
|
|
let rv = unsafe { spd_send_data(*self.0, data.as_ptr(), wfr) };
|
|
|
|
|
let rv = unsafe { spd_send_data(self.0, data.as_ptr(), wfr) };
|
|
|
|
|
if rv.is_null() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
@ -694,7 +614,7 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn on_begin(&self, f: Option<Box<dyn FnMut(size_t, size_t)>>) {
|
|
|
|
|
pub fn on_begin(&self, f: Option<Box<dyn FnMut(u64, u64)>>) {
|
|
|
|
|
if let Ok(mut cbs) = callbacks.lock() {
|
|
|
|
|
let cb = cbs.get_mut(&self.1);
|
|
|
|
|
if let Some(cb) = cb {
|
|
|
|
@ -703,7 +623,7 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn on_end(&self, f: Option<Box<dyn FnMut(size_t, size_t)>>) {
|
|
|
|
|
pub fn on_end(&self, f: Option<Box<dyn FnMut(u64, u64)>>) {
|
|
|
|
|
if let Ok(mut cbs) = callbacks.lock() {
|
|
|
|
|
let cb = cbs.get_mut(&self.1);
|
|
|
|
|
if let Some(cb) = cb {
|
|
|
|
@ -712,7 +632,7 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn on_cancel(&self, f: Option<Box<dyn FnMut(size_t, size_t)>>) {
|
|
|
|
|
pub fn on_cancel(&self, f: Option<Box<dyn FnMut(u64, u64)>>) {
|
|
|
|
|
if let Ok(mut cbs) = callbacks.lock() {
|
|
|
|
|
let cb = cbs.get_mut(&self.1);
|
|
|
|
|
if let Some(cb) = cb {
|
|
|
|
@ -721,7 +641,7 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn on_pause(&self, f: Option<Box<dyn FnMut(size_t, size_t)>>) {
|
|
|
|
|
pub fn on_pause(&self, f: Option<Box<dyn FnMut(u64, u64)>>) {
|
|
|
|
|
if let Ok(mut cbs) = callbacks.lock() {
|
|
|
|
|
let cb = cbs.get_mut(&self.1);
|
|
|
|
|
if let Some(cb) = cb {
|
|
|
|
@ -730,7 +650,7 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn on_resume(&self, f: Option<Box<dyn FnMut(size_t, size_t)>>) {
|
|
|
|
|
pub fn on_resume(&self, f: Option<Box<dyn FnMut(u64, u64)>>) {
|
|
|
|
|
if let Ok(mut cbs) = callbacks.lock() {
|
|
|
|
|
let cb = cbs.get_mut(&self.1);
|
|
|
|
|
if let Some(cb) = cb {
|
|
|
|
@ -739,7 +659,7 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn on_index_mark(&self, f: Option<Box<dyn FnMut(size_t, size_t, String)>>) {
|
|
|
|
|
pub fn on_index_mark(&self, f: Option<Box<dyn FnMut(u64, u64, String)>>) {
|
|
|
|
|
if let Ok(mut cbs) = callbacks.lock() {
|
|
|
|
|
let cb = cbs.get_mut(&self.1);
|
|
|
|
|
if let Some(cb) = cb {
|
|
|
|
@ -748,72 +668,16 @@ impl Connection {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn list_synthesis_voices(&self) -> Result<Vec<Voice>, Error> {
|
|
|
|
|
let start = unsafe { spd_list_synthesis_voices(*self.0) };
|
|
|
|
|
let slice = unsafe { null_term_array_ptr_to_slice(start) }.ok_or(Error::OperationFailed)?;
|
|
|
|
|
let voices = unsafe {
|
|
|
|
|
slice
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|v| v.read())
|
|
|
|
|
.flat_map(|v| {
|
|
|
|
|
if v.name.is_null() || v.language.is_null() || v.variant.is_null() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
Voice::try_from(&v).ok()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.collect()
|
|
|
|
|
};
|
|
|
|
|
unsafe {
|
|
|
|
|
free_spd_voices(start);
|
|
|
|
|
}
|
|
|
|
|
Ok(voices)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn list_output_modules(&self) -> Result<Vec<String>, Error> {
|
|
|
|
|
let start = unsafe { spd_list_modules(*self.0) };
|
|
|
|
|
let slice = unsafe { null_term_array_ptr_to_slice(start) }.ok_or(Error::OperationFailed)?;
|
|
|
|
|
let modules = unsafe {
|
|
|
|
|
slice
|
|
|
|
|
.iter()
|
|
|
|
|
.flat_map(|v| CStr::from_ptr(*v).to_str().ok().map(String::from))
|
|
|
|
|
.collect()
|
|
|
|
|
};
|
|
|
|
|
unsafe {
|
|
|
|
|
free_spd_modules(start);
|
|
|
|
|
}
|
|
|
|
|
Ok(modules)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn client_id(&self) -> size_t {
|
|
|
|
|
pub fn client_id(&self) -> u64 {
|
|
|
|
|
self.1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Interpret a null-terminated array of pointers as a slice of pointers.
|
|
|
|
|
/// None of the pointers will be null if this returns Some.
|
|
|
|
|
unsafe fn null_term_array_ptr_to_slice<'a, T>(start: *mut *mut T) -> Option<&'a [*mut T]> {
|
|
|
|
|
if start.is_null() {
|
|
|
|
|
return None;
|
|
|
|
|
}
|
|
|
|
|
let mut current = start;
|
|
|
|
|
let mut len = 0;
|
|
|
|
|
|
|
|
|
|
while !current.read().is_null() {
|
|
|
|
|
len += 1;
|
|
|
|
|
current = current.add(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Some(std::slice::from_raw_parts(start, len))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe impl Send for Connection {}
|
|
|
|
|
|
|
|
|
|
impl Drop for Connection {
|
|
|
|
|
fn drop(&mut self) {
|
|
|
|
|
if Arc::strong_count(&self.0) <= 1 {
|
|
|
|
|
self.close();
|
|
|
|
|
callbacks.lock().unwrap().remove(&self.1);
|
|
|
|
|
}
|
|
|
|
|
self.close();
|
|
|
|
|
callbacks.lock().unwrap().remove(&self.1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|