diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-09-28 18:49:08 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-09-29 15:43:05 +0200 |
commit | c4a584416ab4af81b6cae653625c78f9158de1e6 (patch) | |
tree | b76526a1b1eed1abc11a4a740b4e7c55261be54d /introspection | |
parent | aa4577dfb9b5a7863a4939ec2409eae392e2fc0c (diff) |
core: allow disabling auto-scan and notifying ports one by one via API
This commit enables a new core ModemManager daemon option, so that automatic
detection of available modems is totally disabled: '--no-auto-scan'. Note that
this option also replaces the previously used '--test-no-auto-scan' option,
which was only used during tests.
Along with the new ModemManager option, a new ReportKernelEvent() method in
the API is defined, which allows notifying the daemon of which interfaces it
should be accessing, as well as the main details of each interface. The only
mandatory parameters in the new method are 'action' (add/remove), 'name' (the
name of the interface) and 'subsystem' (the subsystem of the interface).
The mmcli tool has support for using the new api method via several new options:
* The '--report-kernel-event' option allows specifying device ports one by
one, and is a direct mapping of the ReportKernelEvent() method:
$ sudo mmcli --report-kernel-event="action=add,name=wwan0,subsystem=net"
$ sudo mmcli --report-kernel-event="action=add,name=cdc-wdm0,subsystem=usbmisc"
* The '--report-kernel-event-auto-scan' option uses udev monitoring to notify
events automatically to the daemon. This allows to operate in a way
equivalent to the default daemon operation (with implicit auto-scan).
Worth noting that the ReportKernelEvent() method is only usable when
'--no-auto-scan' is explicitly used in the daemon. An error will be reported if
the method is tried while standard udev monitoring is enabled (implicit if
auto scan isn't explicitly disabled in the daemon).
If mmcli is going to be used only to report 'real time' events, an optional
'--initial-kernel-events=[PATH]' may be given in the ModemManager call to
automatically process a set of port kernel events one by one on boot. The file
may e.g. contain:
action=add,name=wwan0,subsystem=net
action=add,name=cdc-wdm0,subsystem=usbmisc
Diffstat (limited to 'introspection')
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.xml | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/introspection/org.freedesktop.ModemManager1.xml b/introspection/org.freedesktop.ModemManager1.xml index 2ecd026e..4eccbc97 100644 --- a/introspection/org.freedesktop.ModemManager1.xml +++ b/introspection/org.freedesktop.ModemManager1.xml @@ -37,5 +37,79 @@ <arg name="level" type="s" direction="in" /> </method> + <!-- + ReportKernelEvent: + @properties: event properties. + + Reports a kernel event to ModemManager. + + This method is only available if udev is not being used to report kernel + events. + + The @properties dictionary is composed of key/value string pairs. The + possible keys are: + + <variablelist> + + <varlistentry><term><literal>action</literal></term> + <listitem> + <para> + The type of action, given as a string value (signature + <literal>"s"</literal>). + This parameter is MANDATORY. + </para> + <variablelist> + <varlistentry><term><literal>add</literal></term> + <listitem> + A new kernel device has been added. + </listitem> + </varlistentry> + <varlistentry><term><literal>remove</literal></term> + <listitem> + An existing kernel device has been removed. + </listitem> + </varlistentry> + </variablelist> + </listitem> + </varlistentry> + + <varlistentry><term><literal>name</literal></term> + <listitem> + <para> + The device name, given as a string value (signature + <literal>"s"</literal>). + This parameter is MANDATORY. + </para> + </listitem> + </varlistentry> + + <varlistentry><term><literal>subsystem</literal></term> + <listitem> + <para> + The device subsystem, given as a string value (signature + <literal>"s"</literal>). + This parameter is MANDATORY. + </para> + </listitem> + </varlistentry> + + <varlistentry><term><literal>uid</literal></term> + <listitem> + <para> + The unique ID of the physical device, given as a string value + (signature <literal>"s"</literal>). + This parameter is OPTIONAL, if not given the sysfs path of the + physical device will be used. This parameter must be the same + for all devices exposed by the same physical device. + </para> + </listitem> + </varlistentry> + + </variablelist> + --> + <method name="ReportKernelEvent"> + <arg name="properties" type="a{sv}" direction="in" /> + </method> + </interface> </node> |