1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*
* Copyright (C) 2005-2009 Team XBMC
* http://www.xbmc.org
*
* This Program 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, or (at your option)
* any later version.
*
* This Program 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 more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#include "DBusMessage.h"
#include "log.h"
#ifdef HAS_DBUS
CDBusMessage::CDBusMessage(const char *destination, const char *object, const char *interface, const char *method)
{
m_reply = NULL;
m_message = dbus_message_new_method_call (destination, object, interface, method);
CLog::Log(LOGDEBUG, "DBus: Creating message to %s on %s with interface %s and method %s\n", destination, object, interface, method);
}
CDBusMessage::~CDBusMessage()
{
Close();
}
bool CDBusMessage::AppendObjectPath(const char *object)
{
return dbus_message_append_args(m_message, DBUS_TYPE_OBJECT_PATH, &object, DBUS_TYPE_INVALID);
}
bool CDBusMessage::AppendArgument(const char *string)
{
return dbus_message_append_args(m_message, DBUS_TYPE_STRING, &string, DBUS_TYPE_INVALID);
}
bool CDBusMessage::AppendArgument(const char **arrayString, int length)
{
return dbus_message_append_args(m_message, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING, &arrayString, length, DBUS_TYPE_INVALID);
}
DBusMessage *CDBusMessage::SendSystem()
{
return Send(DBUS_BUS_SYSTEM);
}
DBusMessage *CDBusMessage::SendSession()
{
return Send(DBUS_BUS_SESSION);
}
DBusMessage *CDBusMessage::Send(DBusBusType type)
{
DBusError error;
dbus_error_init (&error);
DBusConnection *con = dbus_bus_get(type, &error);
DBusMessage *returnMessage = Send(con, &error);
if (dbus_error_is_set(&error))
CLog::Log(LOGERROR, "DBus: Error %s - %s", error.name, error.message);
dbus_error_free (&error);
dbus_connection_unref(con);
return returnMessage;
}
DBusMessage *CDBusMessage::Send(DBusConnection *con, DBusError *error)
{
if (con && m_message)
{
if (m_reply)
dbus_message_unref(m_reply);
m_reply = dbus_connection_send_with_reply_and_block(con, m_message, -1, error);
}
return m_reply;
}
void CDBusMessage::Close()
{
if (m_message)
dbus_message_unref(m_message);
if (m_reply)
dbus_message_unref(m_reply);
}
#endif
|