mirror of
https://github.com/ndarilek/tts-rs.git
synced 2024-11-17 13:49:36 +00:00
Exit Android initialization loop with error when stuck
500ms is fairly arbitrary; my emulator took 35 to run that loop.
This commit is contained in:
parent
d24d1a6a15
commit
bed6cfa206
|
@ -4,7 +4,7 @@ use std::ffi::{CStr, CString};
|
|||
use std::os::raw::c_void;
|
||||
use std::sync::{Mutex, RwLock};
|
||||
use std::thread;
|
||||
use std::time::Duration;
|
||||
use std::time::{Duration, Instant};
|
||||
|
||||
use jni::objects::{GlobalRef, JObject, JString};
|
||||
use jni::sys::{jfloat, jint, JNI_VERSION_1_6};
|
||||
|
@ -198,12 +198,18 @@ impl Android {
|
|||
}
|
||||
let tts = env.new_global_ref(tts)?;
|
||||
// This hack makes my brain bleed.
|
||||
const MAX_WAIT_TIME: Duration = Duration::from_millis(500);
|
||||
let start = Instant::now();
|
||||
// Wait a max of 500ms for initialization, then return an error to avoid hanging.
|
||||
loop {
|
||||
{
|
||||
let pending = PENDING_INITIALIZATIONS.read().unwrap();
|
||||
if !(*pending).contains(&bid) {
|
||||
break;
|
||||
}
|
||||
if start.elapsed() > MAX_WAIT_TIME {
|
||||
return Err(Error::OperationFailed);
|
||||
}
|
||||
}
|
||||
thread::sleep(Duration::from_millis(5));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user