Skip to content

Commit 1b4055a

Browse files
committed
Return error instead of panicking on missing JACK
Before this trying to initialize a client when JACK was not available would result in an unrecoverable panic because of an unwrap on `jack_sys::library()`. Fixes RustAudio#176
1 parent 6133ac4 commit 1b4055a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/client/client_impl.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,21 @@ unsafe impl Sync for Client {}
4141

4242
impl Client {
4343
/// Opens a JACK client with the given name and options. If the client is successfully opened,
44-
/// then `Ok(client)` is returned. If there is a failure, then `Err(Error::ClientError(status))`
45-
/// will be returned.
44+
/// then `Ok(client)` is returned. If the JACK server returned an error, then
45+
/// `Err(Error::ClientError(status))` will be returned. And if the JACK library could not be
46+
/// loaded, an `Err(Error::LibraryError(message))` is returned.
4647
///
4748
/// Although the client may be successful in opening, there still may be some errors minor
4849
/// errors when attempting to opening. To access these, check the returned `ClientStatus`.
4950
pub fn new(client_name: &str, options: ClientOptions) -> Result<(Self, ClientStatus), Error> {
5051
let _m = CREATE_OR_DESTROY_CLIENT_MUTEX.lock().unwrap();
52+
53+
// All of the jack_sys functions below assume the client library is loaded and will panic if
54+
// it is not
55+
if let Err(err) = jack_sys::library() {
56+
return Err(Error::LibraryError(err.to_string()));
57+
}
58+
5159
unsafe {
5260
jack_sys::jack_set_error_function(Some(error_handler));
5361
jack_sys::jack_set_info_function(Some(info_handler));

src/jack_enums.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use crate::ClientStatus;
33
/// An error that can occur in JACK.
44
#[derive(Clone, Debug, Eq, PartialEq)]
55
pub enum Error {
6+
LibraryError(String),
67
CallbackDeregistrationError,
78
CallbackRegistrationError,
89
ClientActivationError,

0 commit comments

Comments
 (0)