summaryrefslogtreecommitdiffstats
path: root/src/DBus.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-22 03:26:33 +0000
committerDavid Robillard <d@drobilla.net>2008-08-22 03:26:33 +0000
commit4637ceb876904731d2628563e96a89961f9b7781 (patch)
treeb20bd41c8fcdee1b8a5e76a0aa4a3ca213f82473 /src/DBus.cpp
parent503944e72ce146e5bed2556e7b2caa5a41edd7ea (diff)
downloadpatchage-4637ceb876904731d2628563e96a89961f9b7781.tar.gz
patchage-4637ceb876904731d2628563e96a89961f9b7781.tar.bz2
patchage-4637ceb876904731d2628563e96a89961f9b7781.zip
Lash D-Bus support and projects list from LADI Patchage, with improvements/cleanup/sanification/etc.
Remove liblash stuff (meh, what the hell... here's to new beginnings). Enable/disable/hide/etc patchage widgets better based on available (compiled in) functionality. git-svn-id: http://svn.drobilla.net/lad/patchage@1462 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/DBus.cpp')
-rw-r--r--src/DBus.cpp121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/DBus.cpp b/src/DBus.cpp
new file mode 100644
index 0000000..5bd648b
--- /dev/null
+++ b/src/DBus.cpp
@@ -0,0 +1,121 @@
+/* This file is part of Patchage.
+ * Copyright (C) 2008 Dave Robillard <dave@drobilla.net>
+ * Copyright (C) 2008 Nedko Arnaudov <nedko@arnaudov.name>
+ *
+ * Patchage is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * Patchage 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 General Public License for details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include "DBus.hpp"
+#include <stdexcept>
+#include <boost/format.hpp>
+#include "Patchage.hpp"
+
+#define DBUS_CALL_DEFAULT_TIMEOUT 1000 // in milliseconds
+
+
+DBus::DBus(Patchage* app)
+ : _app(app)
+ , _connection(NULL)
+{
+ dbus_error_init(&_error);
+
+ // Connect to the bus
+ _connection = dbus_bus_get(DBUS_BUS_SESSION, &_error);
+ if (dbus_error_is_set(&_error)) {
+ app->error_msg("dbus_bus_get() failed");
+ app->error_msg(_error.message);
+ dbus_error_free(&_error);
+ }
+
+ dbus_connection_setup_with_g_main(_connection, NULL);
+}
+
+
+bool
+DBus::call(
+ bool response_expected,
+ const char * service,
+ const char * object,
+ const char * iface,
+ const char * method,
+ DBusMessage ** reply_ptr_ptr,
+ int in_type,
+ va_list ap)
+{
+ DBusMessage* request_ptr;
+ DBusMessage* reply_ptr;
+
+ request_ptr = dbus_message_new_method_call(
+ service,
+ object,
+ iface,
+ method);
+ if (!request_ptr) {
+ throw std::runtime_error("dbus_message_new_method_call() returned 0");
+ }
+
+ dbus_message_append_args_valist(request_ptr, in_type, ap);
+
+ // send message and get a handle for a reply
+ reply_ptr = dbus_connection_send_with_reply_and_block(
+ _connection,
+ request_ptr,
+ DBUS_CALL_DEFAULT_TIMEOUT,
+ &_error);
+
+ dbus_message_unref(request_ptr);
+
+ if (!reply_ptr) {
+ if (response_expected) {
+ _app->error_msg(str(boost::format("no reply from server when calling method '%s'"
+ ", error is '%s'") % method % _error.message));
+ }
+ dbus_error_free(&_error);
+ } else {
+ *reply_ptr_ptr = reply_ptr;
+ }
+
+ return reply_ptr;
+}
+
+bool
+DBus::call(
+ bool response_expected,
+ const char * serivce,
+ const char * object,
+ const char * iface,
+ const char * method,
+ DBusMessage ** reply_ptr_ptr,
+ int in_type,
+ ...)
+{
+ bool ret;
+ va_list ap;
+
+ va_start(ap, in_type);
+
+ ret = _app->dbus()->call(
+ response_expected,
+ serivce,
+ object,
+ iface,
+ method,
+ reply_ptr_ptr,
+ in_type,
+ ap);
+
+ va_end(ap);
+
+ return (ap != NULL);
+}