Sxmo/How incoming calls work: Difference between revisions
Add description for ending calls |
Updated for sxmo 1.17.0: Call audio hook is now empty |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Introduction == | == Introduction == | ||
Caution: This write-up is based on SXMO | Caution: This write-up is based on SXMO 1.17.0. If you are running a different version, things might work in a completely different way. | ||
Since SXMO is mostly shell scripts, it's quite easy to follow, if you are familiar with reading and writing those. | Since SXMO is mostly shell scripts, it's quite easy to follow, if you are familiar with reading and writing those. | ||
SXMO uses (customizable) [https:// | SXMO uses (customizable) [https://sxmo.org/docs/user/sxmo.7.html#HOOKS hooks] for all kinds of things, like start-up, log-out, picking up, or hanging up calls. | ||
When the graphical user interface starts it (by default) runs <code>/usr/share/sxmo/default_hooks/sxmo_hook_start.sh</code>. | When the graphical user interface starts it (by default) runs <code>/usr/share/sxmo/default_hooks/sxmo_hook_start.sh</code>. | ||
This is done either via <code>~/.config/sxmo/sway</code> (wayland) or <code>~/.config/sxmo/xinit</code> (X11). | This is done either via <code>~/.config/sxmo/sway</code> (wayland) or <code>~/.config/sxmo/xinit</code> (X11). | ||
Line 12: | Line 12: | ||
One of the loops is watching the DBUS for messages from ModemManager for incoming calls. | One of the loops is watching the DBUS for messages from ModemManager for incoming calls. | ||
If it gets an appropriate trigger (a line that starts with "signal") it starts yet another script (<code>/usr/bin/sxmo_modem.sh</code>) to check for incoming calls. | If it gets an appropriate trigger (a line that starts with "signal") it starts yet another script (<code>/usr/bin/sxmo_modem.sh</code>) to check for incoming calls. | ||
These four lines of code are basically | These four lines of code are basically the SXMO specific magic that make all of it work: | ||
<nowiki># Monitor for incoming calls | <nowiki># Monitor for incoming calls | ||
dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" | | dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" | | ||
Line 31: | Line 31: | ||
The tool <code>callaudio</code> performs the heavy lifting for us. | The tool <code>callaudio</code> performs the heavy lifting for us. | ||
<code>sxmo_modemaudio.sh</code> just sends a message via DBUS to tell it to enable the setup for voice calls. | <code>sxmo_modemaudio.sh</code> just sends a message via DBUS to tell it to enable the setup for voice calls. | ||
It then calls the hook <code>sxmo_hook_call_audio.sh</code> with the parameter <code>"enable"</code>. | It then calls the hook <code>sxmo_hook_call_audio.sh</code> with the parameter <code>"enable"</code>. (By default this hook does nothing.) | ||
== Picking up the call == | == Picking up the call == | ||
Line 60: | Line 53: | ||
== Resetting audio pipeline == | == Resetting audio pipeline == | ||
The order is in reverse to the setup. | The order is in reverse to the setup. | ||
First the <code>reset_audio</code> method in <code>sxmo_modemaudio.sh</code> calls the hook <code>sxmo_hook_call_audio.sh</code> with the parameter <code>"disable"</code>. | First the <code>reset_audio</code> method in <code>sxmo_modemaudio.sh</code> calls the hook <code>sxmo_hook_call_audio.sh</code> with the parameter <code>"disable"</code>. (By default this hook does nothing.) | ||
Finally, the <code>reset_audio</code> method in <code>sxmo_modemaudio.sh</code> sends a message via DBUS to tell <code>callaudio</code> to disable the setup for voice calls. | Finally, the <code>reset_audio</code> method in <code>sxmo_modemaudio.sh</code> sends a message via DBUS to tell <code>callaudio</code> to disable the setup for voice calls. |
Latest revision as of 10:04, 1 December 2024
Introduction
Caution: This write-up is based on SXMO 1.17.0. If you are running a different version, things might work in a completely different way.
Since SXMO is mostly shell scripts, it's quite easy to follow, if you are familiar with reading and writing those.
SXMO uses (customizable) hooks for all kinds of things, like start-up, log-out, picking up, or hanging up calls.
When the graphical user interface starts it (by default) runs /usr/share/sxmo/default_hooks/sxmo_hook_start.sh
.
This is done either via ~/.config/sxmo/sway
(wayland) or ~/.config/sxmo/xinit
(X11).
Monitoring for incoming calls
The start hook mentioned in the introduction starts a user service (via superd) called sxmo_modemmonitor
which then runs the script /usr/bin/sxmo_modemmonitor.sh
.
The script starts a bunch of infinite loop in the background.
One of the loops is watching the DBUS for messages from ModemManager for incoming calls.
If it gets an appropriate trigger (a line that starts with "signal") it starts yet another script (/usr/bin/sxmo_modem.sh
) to check for incoming calls.
These four lines of code are basically the SXMO specific magic that make all of it work:
# Monitor for incoming calls dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" | while read -r line; do echo "$line" | grep -qE "^signal" && sxmo_modem.sh checkforincomingcalls done &
The checkforincomingcalls
function in sxmo_modem.sh
then extracts the caller ID and forwards it to /usr/bin/sxmo_modemcall.sh
.
(checkforincomingcalls
actually does quite a bit more but that is not in the scope of this write-up.)
Picking up the call
Now we finally come to the part where the user can pick up the call. sxmo_modemcall.sh
shows a menu that lets the user decide if they want to pick up, hang up, or ignore the call.
In this write-up we're only interested in the part where the user picks up.
When picking up the call the first thing that happens is that /usr/bin/sxmo_modemaudio.sh
sets up the audio pipeline for calls before accepting the call.
Setting up the audio pipeline for calls
Voice calls via the modem work differently then, e.g. recording and playing back "normal" audio.
The tool callaudio
performs the heavy lifting for us.
sxmo_modemaudio.sh
just sends a message via DBUS to tell it to enable the setup for voice calls.
It then calls the hook sxmo_hook_call_audio.sh
with the parameter "enable"
. (By default this hook does nothing.)
Picking up the call
After the audio pipeline is setup for calls, it is finally time for sxmo_modemcall.sh
to pick up by accepting the call through mmcli
.
Then sxmo_modemcall.sh
shows a menu that lets the user interact with the call (change audio settings, send DTMF tones, hang up...).
Ending the call
There are two situations how a call ends. Either the user on our end decides to hang up or the other party hangs up.
If the user selects the hang up option in the in-call menu, sxmo_modecall.sh
ends the call by hanging up through mmcli
.
In either situation (user or other party hangs up) the clean up procedure is started from sxmo_modemmonitor.sh
.
It not only watches the DBUS for messages from ModemManager for incoming calls (see above) but also for finished calls.
If it gets an appropriate trigger (a line that starts with "signal") it starts /usr/bin/sxmo_modem.sh
to check for finished calls.
# Monitor for finished calls dbus-monitor --system "interface='org.freedesktop.DBus.Properties',member='PropertiesChanged',arg0='org.freedesktop.ModemManager1.Call'" | while read -r line; do echo "$line" | grep -qE "^signal" && sxmo_modem.sh checkforfinishedcalls done &
The checkforfinishedcalls
function in sxmo_modem.sh
then deletes the call via mmcli
, closes the in-call menu, and calls sxmo_modemaudio.sh
to reset_audio
.
Resetting audio pipeline
The order is in reverse to the setup.
First the reset_audio
method in sxmo_modemaudio.sh
calls the hook sxmo_hook_call_audio.sh
with the parameter "disable"
. (By default this hook does nothing.)
Finally, the reset_audio
method in sxmo_modemaudio.sh
sends a message via DBUS to tell callaudio
to disable the setup for voice calls.