api: add Modem.Time introspection XML
Signed-off-by: Thomas Tuttle <ttuttle@chromium.org>
This commit is contained in:

committed by
Dan Williams

parent
7f12201494
commit
accb3f0a58
@@ -17,4 +17,5 @@ EXTRA_DIST = \
|
|||||||
org.freedesktop.ModemManager.Modem.Gsm.SMS.xml \
|
org.freedesktop.ModemManager.Modem.Gsm.SMS.xml \
|
||||||
org.freedesktop.ModemManager.Modem.Gsm.Ussd.xml \
|
org.freedesktop.ModemManager.Modem.Gsm.Ussd.xml \
|
||||||
org.freedesktop.ModemManager.Modem.Location.xml \
|
org.freedesktop.ModemManager.Modem.Location.xml \
|
||||||
org.freedesktop.ModemManager.Modem.Simple.xml
|
org.freedesktop.ModemManager.Modem.Simple.xml \
|
||||||
|
org.freedesktop.ModemManager.Modem.Time.xml
|
||||||
|
@@ -37,6 +37,7 @@
|
|||||||
<xi:include href="org.freedesktop.ModemManager.Modem.Gsm.Ussd.xml"/>
|
<xi:include href="org.freedesktop.ModemManager.Modem.Gsm.Ussd.xml"/>
|
||||||
<xi:include href="org.freedesktop.ModemManager.Modem.Firmware.xml"/>
|
<xi:include href="org.freedesktop.ModemManager.Modem.Firmware.xml"/>
|
||||||
<xi:include href="org.freedesktop.ModemManager.Modem.Location.xml"/>
|
<xi:include href="org.freedesktop.ModemManager.Modem.Location.xml"/>
|
||||||
|
<xi:include href="org.freedesktop.ModemManager.Modem.Time.xml"/>
|
||||||
<xi:include href="org.freedesktop.DBus.Properties.xml"/>
|
<xi:include href="org.freedesktop.DBus.Properties.xml"/>
|
||||||
|
|
||||||
<xi:include href="mm-serial-error.xml"/>
|
<xi:include href="mm-serial-error.xml"/>
|
||||||
|
56
introspection/org.freedesktop.ModemManager.Modem.Time.xml
Normal file
56
introspection/org.freedesktop.ModemManager.Modem.Time.xml
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
|
||||||
|
<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
|
||||||
|
<interface name="org.freedesktop.ModemManager.Modem.Time">
|
||||||
|
<tp:docstring>
|
||||||
|
This interface allows clients to receive network time and timezone
|
||||||
|
updates broadcast by mobile networks.
|
||||||
|
</tp:docstring>
|
||||||
|
|
||||||
|
<property name="NetworkTimezone" type="a{sv}" access="read">
|
||||||
|
<tp:docstring>
|
||||||
|
The timezone data provided by the network. It may include one of more
|
||||||
|
of the following fields:
|
||||||
|
|
||||||
|
'offset': offset of the timezone from UTC, in minutes (including DST,
|
||||||
|
if applicable).
|
||||||
|
'dst_offset': amount of 'offset' that is due to DST, in minutes.
|
||||||
|
'leap_seconds': number of leap seconds included in the network time.
|
||||||
|
</tp:docstring>
|
||||||
|
</property>
|
||||||
|
|
||||||
|
<method name="GetNetworkTime">
|
||||||
|
<tp:docstring>
|
||||||
|
Gets the current network time.
|
||||||
|
|
||||||
|
This method will only work if the modem tracks, or can request, the
|
||||||
|
current network time; it will not attempt to use previously-received
|
||||||
|
network time updates on the host to guess the current network time.
|
||||||
|
</tp:docstring>
|
||||||
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol"
|
||||||
|
value="impl_modem_time_get_network_time" />
|
||||||
|
<arg name="time" type="s" direction="out">
|
||||||
|
<tp:docstring>
|
||||||
|
If the network time is known, a string containing a date and time in
|
||||||
|
ISO 8601 format.
|
||||||
|
|
||||||
|
If the network time is unknown, the empty string.
|
||||||
|
</tp:docstring>
|
||||||
|
</arg>
|
||||||
|
</method>
|
||||||
|
|
||||||
|
<signal name="NetworkTimeChanged">
|
||||||
|
<tp:docstring>
|
||||||
|
Sent when the network time is updated.
|
||||||
|
</tp:docstring>
|
||||||
|
<arg name="time" type="s">
|
||||||
|
<tp:docstring>
|
||||||
|
If the network time is known, a string containing a date and time in
|
||||||
|
ISO 8601 format.
|
||||||
|
|
||||||
|
If the network time is unknown, the empty string.
|
||||||
|
</tp:docstring>
|
||||||
|
</arg>
|
||||||
|
</signal>
|
||||||
|
</interface>
|
||||||
|
</node>
|
Reference in New Issue
Block a user