Editing System-wide speakup

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 26: Line 26:
# Linux boots  
# Linux boots  
# systemd gives root the current audio device
# systemd gives root the current audio device
# systemd starts espeakup as root
# systemd starts starts espeakup as root
# You can read the login prompt or login as root
# You can read the login prompt or login as root
# You log in as your own user
# You log in as your own user
Line 147: Line 147:
In practice I'm not sure how easy this would be to implement. You would need to replace the logind hardware management for sound with something else that allows finer grained management of hardware.
In practice I'm not sure how easy this would be to implement. You would need to replace the logind hardware management for sound with something else that allows finer grained management of hardware.
=== Sharing Speakup between multiple users ===
=== Sharing Speakup between multiple users ===
Things would be a lot easier if we could run one espeakup instance per user. This is tricky because the Speakup kernel modules don't have concepts of users or sessions.
Things would be a lot easier if we could run one speakup instance per user. This is tricky because the Speakup kernel modules don't have concepts of users or sessions.


There's a wide list of engineering problems to solve with this:
- speakup fakekey


* Saving and restoring per-user Speakup settings
- logind can proxy/share fds
* Saving and restoring the softsynth state between users
* Proxying /dev/softsynth so users can't read other's data
* Restricting access to the fakekey input device
* Handling graceful handovers from ALSA to PulseAudio
* Handling forceful handovers from PulseAudio to ALSA
* Shim PulseAudio so it waits for hardware access before running
* Flow control to indicate when the proxy is ready to send
* Flow control to indicate when espeakup is ready to talk
* Buffering data when espeakup isn't ready
* Discarding buffered data when speakup signals espeakup to shut up
* Handling messages sent back from espeakup to speakup and flow control for that


There's a lot to untangle here since we're touching multiple levels of abstraction.
- have a proxy that sits between speakup and espeak


=== Sharing espeakup output between multiple users ===
- send messages to espeakup instances based on current active UID
A more practical solution might be to run a root espeakup instance and proxy its PCM output to users.


This would cut down the engineering problems to:
- during a switch between instances, wait for the current instance to finish talking OR the stop talking control is sent. then start feeding the new instance data


* Assigning /sys/accessibility/speakup to the current seat
- have a shim that blocks pulseaudio from starting until it has permission, but also don't consume the buffer
* Proxying PCM data to stub programs users run
* Handling graceful handovers from ALSA to PulseAudio
* Shim PulseAudio so it waits for hardware access before running
* Flow control to indicate when a proxy is ready to send
* Buffering data when a stub isn't playing audio
* Discarding buffered data when espeakup wants to shut up


This gives most the benefits of sharing speakup but without saving or restoring state.
i do not like how i'm basically reinventing flow control but poorly
 
ok so it turns out i was WRONG: you can't share speakup protocol between multiple synths! the protocol is stateful! ie if you tell it to change voice and switch synth the voice change won't be applied. YAY
=== Sharing espeakup output ===
An easier solution might be
 
so this makes the only viable solution to send PCM data from a root espeakup instance.
 
on top of that this also means i have to modify espeakup to handle some flow control AND output to a buffer instead of the sound card
[[Category:Research]]
[[Category:Research]]
Please note that all contributions to JookWiki are considered to be released under the Creative Commons Zero (Public Domain) (see JookWiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)