Jump to content

Sxmo/How incoming calls work: Difference between revisions

From postmarketOS Wiki
Fraolt (talk | contribs)
Created page with "== Introduction == Caution: This write-up is based on SXMO 0.15.1. 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) [https://man.sr.ht/~anjan/sxmo-docs/USERGUIDE.md#stronghooksstrong hooks] for all kinds of things, like start-up, log-out, picking up, or hanging up calls. When the graphical use..."
 
Fraolt (talk | contribs)
Updated for sxmo 1.17.0: Call audio hook is now empty
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Introduction ==
== Introduction ==
Caution: This write-up is based on SXMO 0.15.1. If you are running a different version, things might work in a completely different way.
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://man.sr.ht/~anjan/sxmo-docs/USERGUIDE.md#stronghooksstrong hooks] for all kinds of things, like start-up, log-out, picking up, or hanging up calls.
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 the magic the SXMO specific magic that make all of it work:
These four lines of code are basically the SXMO specific magic that make all of it work:
  <nowiki>dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" |
  <nowiki># Monitor for incoming calls
dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" |
         while read -r line; do
         while read -r line; do
                 echo "$line" | grep -qE "^signal" && sxmo_modem.sh checkforincomingcalls
                 echo "$line" | grep -qE "^signal" && sxmo_modem.sh checkforincomingcalls
Line 30: 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.)
This hook then calls <code>sxmo_modemaudio.sh</code> again to
# enable the speaker
# disable the speaker
# mute the mic
# unmute the mic
 
By doing so, it avoids situations, where either the speaker is enabled or the mic is muted at the beginning of a call.


== Picking up the call ==
== Picking up the call ==
Line 45: Line 39:
== Ending the call ==
== 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.
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, <code>sxmo_modecall.sh</code> ends the call by hanging up through <code>mmcli</code>.
In either situation (user or other party hangs up) the clean up procedure is started from <code>sxmo_modemmonitor.sh</code>.
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 <code>/usr/bin/sxmo_modem.sh</code> to check for finished calls.
<nowiki># 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 &</nowiki>


=== Hanging up ===
The <code>checkforfinishedcalls</code> function in <code>sxmo_modem.sh</code> then deletes the call via <code>mmcli</code>, closes the in-call menu, and calls <code>sxmo_modemaudio.sh</code> to <code>reset_audio</code>.
If the user selects the hang up option in the in-call menu, <code>sxmo_modecall.sh</code> ends the call by hanging up through <code>mmcli</code>.
 
== Resetting audio pipeline ==
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>. (By default this hook does nothing.)


=== Other party hangs up ===
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.
TODO

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.