Code Monkey home page Code Monkey logo

Comments (7)

wmedrano avatar wmedrano commented on May 26, 2024

Thanks for filing the issue. I observed this on my system using libjack2.
I'm not sure what happens for libjack.

The crate's documentation says it should be called only once, but this was just copied from the JACK API Docs: http://jackaudio.org/files/docs/html/group__ClientCallbacks.html#gad5a6904292f5c9790223c18aeab202bf

I'm not sure what the proper behavior is, but the issue should be reported to the JACK developers.

from rust-jack.

HadrienG2 avatar HadrienG2 commented on May 26, 2024

Oh, wait, I think I got it.

One headliner feature of jack2, which I also use, is that it supports multiple audio processing threads. What I did not realize is that for process isolation reasons, it may actually need to spawn multiple audio threads per client in order to achieve this result.

If that is the issue, then it's just a matter of clarifying the thread_init_callback documentation.

EDIT: And indeed, on my machine, printing std::thread::current().id() in the thread_init callback yields

Audio thread ThreadId(2) is ready.
Audio thread ThreadId(3) is ready.
Audio thread ThreadId(4) is ready.

from rust-jack.

HadrienG2 avatar HadrienG2 commented on May 26, 2024

Note that if there are multiple audio threads and they can work concurrently, some aspects of the jack-rs API may need to change towards multi-thread-safety. For example, NotificationHandler and ProcessHandler would likely need to become Sync.

from rust-jack.

wmedrano avatar wmedrano commented on May 26, 2024

Since JACK can have many implementations (and has 2) we should follow the spec. Since the spec is not specific on this, we can't make guarantees about future implementations so its safer to require Sync.

We should also update the example to use crossbeam::channel for communication since std channels are not Sync on the receiver side.

from rust-jack.

piegamesde avatar piegamesde commented on May 26, 2024

Requiring Sync is pretty bad, since it breaks all stateful process handlers (using Arc is not an option because its spinlocks are not thread safe). Is it really possible to call the processing callback not only from different threads, but concurrently? If I understand https://github.com/jackaudio/jackaudio.github.com/wiki/WalkThrough_User_ClientThreads correctly, there are only 2 threads, one for notifications and one for processing (btw the link to the documentation above is broken)

from rust-jack.

HadrienG2 avatar HadrienG2 commented on May 26, 2024

using Arc is not an option because its spinlocks are not thread safe

Can you clarify what you mean by that ?

If I understand https://github.com/jackaudio/jackaudio.github.com/wiki/WalkThrough_User_ClientThreads correctly, there are only 2 threads, one for notifications and one for processing (btw the link to the documentation above is broken)

This is indeed consistent with one of the last footnotes at the end of this jack1 vs jack2 comparison, but not with the fact that my thread_init_callback was called from three different threads above. Not sure what to make of all this honestly, it would be great if a jack2 dev could clarify the situation here.

from rust-jack.

piegamesde avatar piegamesde commented on May 26, 2024

* using Arc is not an option because its blocking wait is not realtime thread safe

But never mind that, I just found out that Mutex has a non-blocking try_lock which works in a RT context.

from rust-jack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.