[empathy: 4/53] Add Debug interface.



commit 0cbb9fe558f4652c5a0f70a2864a061665ba605e
Author: Jonny Lamb <jonny lamb collabora co uk>
Date:   Sun Apr 19 19:38:42 2009 +0100

    Add Debug interface.
    
    Signed-off-by: Jonny Lamb <jonny lamb collabora co uk>
---
 extensions/Debug.xml   |  112 ++++++++++++++++++++++++++++++++++++++++++++++++
 extensions/Makefile.am |    3 +-
 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 0000000..96c4cfb
--- /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 e5b1ea1..f179ebc 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 5c89ff0..38e802e 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>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]