Mercurial > emacs
changeset 87584:af7df042c392
* dbusbind.c (Fdbus_method_return): New function.
(xd_read_message): Add the serial number to the event.
(Fdbus_register_method): Activate the function.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Fri, 04 Jan 2008 21:39:47 +0000 |
parents | 892548286484 |
children | 072778cd2f17 |
files | src/ChangeLog src/dbusbind.c |
diffstat | 2 files changed, 106 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Jan 04 16:31:44 2008 +0000 +++ b/src/ChangeLog Fri Jan 04 21:39:47 2008 +0000 @@ -1,3 +1,9 @@ +2008-01-04 Michael Albinus <michael.albinus@gmx.de> + + * dbusbind.c (Fdbus_method_return): New function. + (xd_read_message): Add the serial number to the event. + (Fdbus_register_method): Activate the function. + 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca> * keyboard.c (read_key_sequence): Fix typo.
--- a/src/dbusbind.c Fri Jan 04 16:31:44 2008 +0000 +++ b/src/dbusbind.c Fri Jan 04 21:39:47 2008 +0000 @@ -33,6 +33,7 @@ /* Subroutines. */ Lisp_Object Qdbus_get_unique_name; Lisp_Object Qdbus_call_method; +Lisp_Object Qdbus_method_return; Lisp_Object Qdbus_send_signal; Lisp_Object Qdbus_register_signal; Lisp_Object Qdbus_register_method; @@ -841,7 +842,7 @@ if (XD_DBUS_TYPE_P (args[i])) ++i; - /* Check for valid signature. We use DBUS_TYPE_INVALID is + /* Check for valid signature. We use DBUS_TYPE_INVALID as indication that there is no parent type. */ xd_signature (signature, dtype, DBUS_TYPE_INVALID, args[i]); @@ -894,6 +895,92 @@ RETURN_UNGCPRO (Fnreverse (result)); } +DEFUN ("dbus-method-return", Fdbus_method_return, Sdbus_method_return, + 3, MANY, 0, + doc: /* Return to method SERIAL on the D-Bus BUS. +This is an internal function, it shall not be used outside dbus.el. + +usage: (dbus-method-return BUS SERIAL SERVICE &rest ARGS) */) + (nargs, args) + int nargs; + register Lisp_Object *args; +{ + Lisp_Object bus, serial, service; + struct gcpro gcpro1, gcpro2, gcpro3; + DBusConnection *connection; + DBusMessage *dmessage; + DBusMessageIter iter; + unsigned int dtype; + int i; + char signature[DBUS_MAXIMUM_SIGNATURE_LENGTH]; + + /* Check parameters. */ + bus = args[0]; + serial = args[1]; + service = args[2]; + + CHECK_SYMBOL (bus); + CHECK_NUMBER (serial); + CHECK_STRING (service); + GCPRO3 (bus, serial, service); + + XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service)); + + /* Open a connection to the bus. */ + connection = xd_initialize (bus); + + /* Create the message. */ + dmessage = dbus_message_new (DBUS_MESSAGE_TYPE_METHOD_RETURN); + if ((dmessage == NULL) + || (!dbus_message_set_reply_serial (dmessage, XUINT (serial))) + || (!dbus_message_set_destination (dmessage, SDATA (service)))) + { + UNGCPRO; + xsignal1 (Qdbus_error, + build_string ("Unable to create a return message")); + } + + UNGCPRO; + + /* Initialize parameter list of message. */ + dbus_message_iter_init_append (dmessage, &iter); + + /* Append parameters to the message. */ + for (i = 3; i < nargs; ++i) + { + + XD_DEBUG_VALID_LISP_OBJECT_P (args[i]); + XD_DEBUG_MESSAGE ("Parameter%d %s", + i-2, SDATA (format2 ("%s", args[i], Qnil))); + + dtype = XD_OBJECT_TO_DBUS_TYPE (args[i]); + if (XD_DBUS_TYPE_P (args[i])) + ++i; + + /* Check for valid signature. We use DBUS_TYPE_INVALID as + indication that there is no parent type. */ + xd_signature (signature, dtype, DBUS_TYPE_INVALID, args[i]); + + xd_append_arg (dtype, args[i], &iter); + } + + /* Send the message. The message is just added to the outgoing + message queue. */ + if (!dbus_connection_send (connection, dmessage, NULL)) + xsignal1 (Qdbus_error, build_string ("Cannot send message")); + + /* Flush connection to ensure the message is handled. */ + dbus_connection_flush (connection); + + XD_DEBUG_MESSAGE ("Message sent"); + + /* Cleanup. */ + dbus_message_unref (dmessage); + + /* Return. */ + return Qt; +} + DEFUN ("dbus-send-signal", Fdbus_send_signal, Sdbus_send_signal, 5, MANY, 0, doc: /* Send signal SIGNAL on the D-Bus BUS. @@ -985,7 +1072,7 @@ if (XD_DBUS_TYPE_P (args[i])) ++i; - /* Check for valid signature. We use DBUS_TYPE_INVALID is + /* Check for valid signature. We use DBUS_TYPE_INVALID as indication that there is no parent type. */ xd_signature (signature, dtype, DBUS_TYPE_INVALID, args[i]); @@ -1103,6 +1190,12 @@ event.arg = Fcons ((uname == NULL ? Qnil : build_string (uname)), event.arg); + /* Add the message serial if needed, or nil. */ + event.arg = Fcons ((mtype == DBUS_MESSAGE_TYPE_METHOD_CALL + ? make_number (dbus_message_get_serial (dmessage)) + : Qnil), + event.arg); + /* Add the bus symbol to the event. */ event.arg = Fcons (bus, event.arg); @@ -1255,9 +1348,7 @@ interface offered by SERVICE. It must provide METHOD. HANDLER is a Lisp function to be called when a method call is received. It must accept the input arguments of METHOD. The return value of HANDLER is -used for composing the returning D-Bus message. - -The function is not fully implemented and documented. Don't use it. */) +used for composing the returning D-Bus message. */) (bus, service, path, interface, method, handler) Lisp_Object bus, service, path, interface, method, handler; { @@ -1266,9 +1357,6 @@ int result; DBusError derror; - if (NILP (Vdbus_debug)) - xsignal1 (Qdbus_error, build_string ("Not implemented yet")); - /* Check parameters. */ CHECK_SYMBOL (bus); CHECK_STRING (service); @@ -1367,6 +1455,10 @@ staticpro (&Qdbus_call_method); defsubr (&Sdbus_call_method); + Qdbus_method_return = intern ("dbus-method-return"); + staticpro (&Qdbus_method_return); + defsubr (&Sdbus_method_return); + Qdbus_send_signal = intern ("dbus-send-signal"); staticpro (&Qdbus_send_signal); defsubr (&Sdbus_send_signal);