diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-04-20 02:38:42 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-04-24 08:52:47 +0800 |
commit | 0cbb9fe558f4652c5a0f70a2864a061665ba605e (patch) | |
tree | 697385dabe30eb9562c7a79a801752172868783a /extensions | |
parent | 7e1d202225b540ed028343a5f882a2bb9c02f121 (diff) | |
download | gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.tar gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.tar.gz gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.tar.bz2 gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.tar.lz gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.tar.xz gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.tar.zst gsoc2013-empathy-0cbb9fe558f4652c5a0f70a2864a061665ba605e.zip |
Add Debug interface.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Debug.xml | 112 | ||||
-rw-r--r-- | extensions/Makefile.am | 3 | ||||
-rw-r--r-- | extensions/misc.xml | 1 |
3 files changed, 115 insertions, 1 deletions
diff --git a/extensions/Debug.xml b/extensions/Debug.xml new file mode 100644 index 000000000..96c4cfb7d --- /dev/null +++ b/extensions/Debug.xml @@ -0,0 +1,112 @@ +<?xml version="1.0" ?> +<node name="/Debug" + xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"> + <tp:copyright>Copyright (C) 2009 Collabora Ltd.</tp:copyright> + <tp:license xmlns="http://www.w3.org/1999/xhtml"> + <p>This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version.</p> + +<p>This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details.</p> + +<p>You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</p> + </tp:license> + <interface name="org.freedesktop.Telepathy.Debug"> + + <tp:docstring xmlns="http://www.w3.org/1999/xhtml"> + <p>An interface for providing debug messages. + + This interface is primarily provided by one object per + service, at the path <tt>/org/freedesktop/Telepathy/debug</tt>. + </p> + </tp:docstring> + + <property name="Enabled" type="b" access="readwrite"> + <tp:docstring xmlns="http://www.w3.org/1999/xhtml"> + <p>TRUE if the NewDebugMessage signal should be emitted when a new + debug message is generated.</p> + </tp:docstring> + </property> + + <method name="GetMessages"> + <tp:docstring xmlns="http://www.w3.org/1999/xhtml"> + <p>Retrieve buffered debug messages.</p> + </tp:docstring> + + <arg direction="out" name="messages" type="a(dsus)"> + <tp:docstring> + A list of timestamped debug messages. + </tp:docstring> + </arg> + </method> + + <signal name="NewDebugMessage" tp:name-for-bindings="New_Debug_Message"> + <tp:docstring> + Emitted when a debug messages is generated if the Enabled property is + set. + </tp:docstring> + + <arg name="time" type="d"> + <tp:docstring> + Message timestamp + </tp:docstring> + </arg> + <arg name="domain" type="s"> + <tp:docstring> + Message domain + </tp:docstring> + </arg> + <arg name="level" type="u" tp:type="Debug_Level"> + <tp:docstring> + Message level + </tp:docstring> + </arg> + <arg name="message" type="s"> + <tp:docstring> + Message + </tp:docstring> + </arg> + </signal> + + <tp:enum name="Debug_Level" type="u"> + <tp:enumvalue suffix="Error" value="0"> + <tp:docstring> + error + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="Critical" value="1"> + <tp:docstring> + criticla + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="Warning" value="2"> + <tp:docstring> + warning + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="Message" value="3"> + <tp:docstring> + message + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="Info" value="4"> + <tp:docstring> + info + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="Debug" value="5"> + <tp:docstring> + debug + </tp:docstring> + </tp:enumvalue> + </tp:enum> + + </interface> +</node> +<!-- vim:set sw=2 sts=2 et ft=xml: --> diff --git a/extensions/Makefile.am b/extensions/Makefile.am index e5b1ea113..f179ebc19 100644 --- a/extensions/Makefile.am +++ b/extensions/Makefile.am @@ -16,7 +16,8 @@ EXTRA_DIST = \ Tube_Handler.xml \ Channel_Interface_Tube.xml \ Channel_Type_DBus_Tube.xml \ - Channel_Type_Stream_Tube.xml + Channel_Type_Stream_Tube.xml \ + Debug.xml noinst_LTLIBRARIES = libemp-extensions.la diff --git a/extensions/misc.xml b/extensions/misc.xml index 5c89ff0d8..38e802e97 100644 --- a/extensions/misc.xml +++ b/extensions/misc.xml @@ -9,5 +9,6 @@ <xi:include href="Channel_Interface_Tube.xml" /> <xi:include href="Channel_Type_DBus_Tube.xml" /> <xi:include href="Channel_Type_Stream_Tube.xml" /> +<xi:include href="Debug.xml" /> </tp:spec> |