diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-05-16 16:14:30 -0400 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-06-02 22:28:18 -0700 |
commit | b0f682b1579e520896ccd5492d6666d962a0c226 (patch) | |
tree | 159147561c294cd52de6d6c3b6e81c3186fedef6 /binding/gdbus/api/org.lightmediascanner.xml | |
parent | 535f2d051f965e9ee4a9c1eed13a8d0e997463e8 (diff) |
binding: add initial media binding
Add initial media binding that populates playlist on
media insertion
Bug-AGL: SPEC-610
Change-Id: I24227f7c718606191ae3de72bd692e747353c919
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'binding/gdbus/api/org.lightmediascanner.xml')
-rw-r--r-- | binding/gdbus/api/org.lightmediascanner.xml | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/binding/gdbus/api/org.lightmediascanner.xml b/binding/gdbus/api/org.lightmediascanner.xml new file mode 100644 index 0000000..1651b47 --- /dev/null +++ b/binding/gdbus/api/org.lightmediascanner.xml @@ -0,0 +1,75 @@ +<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" + "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> +<!-- GDBus 2.48.2 --> +<node> + <interface name="org.freedesktop.DBus.Properties"> + <method name="Get"> + <arg type="s" name="interface_name" direction="in"/> + <arg type="s" name="property_name" direction="in"/> + <arg type="v" name="value" direction="out"/> + </method> + <method name="GetAll"> + <arg type="s" name="interface_name" direction="in"/> + <arg type="a{sv}" name="properties" direction="out"/> + </method> + <method name="Set"> + <arg type="s" name="interface_name" direction="in"/> + <arg type="s" name="property_name" direction="in"/> + <arg type="v" name="value" direction="in"/> + </method> + <signal name="PropertiesChanged"> + <arg type="s" name="interface_name"/> + <arg type="a{sv}" name="changed_properties"/> + <arg type="as" name="invalidated_properties"/> + </signal> + </interface> + <interface name="org.freedesktop.DBus.Introspectable"> + <method name="Introspect"> + <arg type="s" name="xml_data" direction="out"/> + </method> + </interface> + <interface name="org.freedesktop.DBus.Peer"> + <method name="Ping"/> + <method name="GetMachineId"> + <arg type="s" name="machine_uuid" direction="out"/> + </method> + </interface> + <interface name="org.lightmediascanner.Scanner1"> + <method name="Scan"> + <arg type="a{sv}" name="specification" direction="in"> + </arg> + </method> + <method name="Stop"> + </method> + <method name="RequestWriteLock"> + </method> + <method name="ReleaseWriteLock"> + </method> + <signal name="ScanProgress"> + <arg type="s" name="Category"> + </arg> + <arg type="s" name="Path"> + </arg> + <arg type="t" name="UpToDate"> + </arg> + <arg type="t" name="Processed"> + </arg> + <arg type="t" name="Deleted"> + </arg> + <arg type="t" name="Skipped"> + </arg> + <arg type="t" name="Errors"> + </arg> + </signal> + <property type="s" name="DataBasePath" access="read"> + </property> + <property type="b" name="IsScanning" access="read"> + </property> + <property type="b" name="WriteLocked" access="read"> + </property> + <property type="t" name="UpdateID" access="read"> + </property> + <property type="a{sv}" name="Categories" access="read"> + </property> + </interface> +</node> |