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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
// SPDX-FileCopyrightText: 2010 David Sansome <me@davidsansome.com>
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include "NhekoDBusApi.h"
#include <QDBusMetaType>
namespace nheko::dbus {
void
init()
{
qDBusRegisterMetaType<RoomInfoItem>();
qDBusRegisterMetaType<QVector<RoomInfoItem>>();
qDBusRegisterMetaType<QImage>();
qDBusRegisterMetaType<QVersionNumber>();
}
bool
apiVersionIsCompatible(const QVersionNumber &clientAppVersion)
{
if (clientAppVersion.majorVersion() != nheko::dbus::apiVersion.majorVersion())
return false;
if (clientAppVersion.minorVersion() > nheko::dbus::apiVersion.minorVersion())
return false;
if (clientAppVersion.minorVersion() == nheko::dbus::apiVersion.minorVersion() &&
clientAppVersion.microVersion() < nheko::dbus::apiVersion.microVersion())
return false;
return true;
}
RoomInfoItem::RoomInfoItem(const QString &roomId,
const QString &alias,
const QString &title,
const QImage &image,
const int unreadNotifications,
QObject *parent)
: QObject{parent}
, roomId_{roomId}
, alias_{alias}
, roomName_{title}
, image_{image}
, unreadNotifications_{unreadNotifications}
{}
RoomInfoItem::RoomInfoItem(const RoomInfoItem &other)
: QObject{other.parent()}
, roomId_{other.roomId_}
, alias_{other.alias_}
, roomName_{other.roomName_}
, image_{other.image_}
, unreadNotifications_{other.unreadNotifications_}
{}
RoomInfoItem &
RoomInfoItem::operator=(const RoomInfoItem &other)
{
roomId_ = other.roomId_;
alias_ = other.alias_;
roomName_ = other.roomName_;
image_ = other.image_;
unreadNotifications_ = other.unreadNotifications_;
return *this;
}
QDBusArgument &
operator<<(QDBusArgument &arg, const RoomInfoItem &item)
{
arg.beginStructure();
arg << item.roomId_ << item.alias_ << item.roomName_ << item.image_
<< item.unreadNotifications_;
arg.endStructure();
return arg;
}
const QDBusArgument &
operator>>(const QDBusArgument &arg, RoomInfoItem &item)
{
arg.beginStructure();
arg >> item.roomId_ >> item.alias_ >> item.roomName_ >> item.image_ >>
item.unreadNotifications_;
if (item.image_.isNull())
item.image_ = QImage{QStringLiteral(":/icons/ui/speech-bubbles.svg")};
arg.endStructure();
return arg;
}
} // nheko::dbus
/**
* Automatic marshaling of a QImage for org.freedesktop.Notifications.Notify
*
* This function is heavily based on a function from the Clementine project (see
* http://www.clementine-player.org) and licensed under the GNU General Public
* License, version 3 or later.
*
* SPDX-FileCopyrightText: 2010 David Sansome <me@davidsansome.com>
*/
QDBusArgument &
operator<<(QDBusArgument &arg, const QImage &image)
{
if (image.isNull()) {
arg.beginStructure();
arg << 0 << 0 << 0 << false << 0 << 0 << QByteArray();
arg.endStructure();
return arg;
}
QImage i = image.height() > 100 || image.width() > 100
? image.scaledToHeight(100, Qt::SmoothTransformation)
: image;
i = std::move(i).convertToFormat(QImage::Format_RGBA8888);
arg.beginStructure();
arg << i.width();
arg << i.height();
arg << i.bytesPerLine();
arg << i.hasAlphaChannel();
int channels = i.isGrayscale() ? 1 : (i.hasAlphaChannel() ? 4 : 3);
arg << i.depth() / channels;
arg << channels;
arg << QByteArray(reinterpret_cast<const char *>(i.bits()), i.sizeInBytes());
arg.endStructure();
return arg;
}
// This function, however, was merely reverse-engineered from the above function
// and is not from the Clementine project.
const QDBusArgument &
operator>>(const QDBusArgument &arg, QImage &image)
{
// garbage is used as a sort of /dev/null
int width, height, garbage;
QByteArray bits;
arg.beginStructure();
arg >> width >> height >> garbage >> garbage >> garbage >> garbage >> bits;
arg.endStructure();
image = QImage(reinterpret_cast<uchar *>(bits.data()), width, height, QImage::Format_RGBA8888);
return arg;
}
QDBusArgument &
operator<<(QDBusArgument &arg, const QVersionNumber &v)
{
arg.beginStructure();
arg << v.toString();
arg.endStructure();
return arg;
}
const QDBusArgument &
operator>>(const QDBusArgument &arg, QVersionNumber &v)
{
arg.beginStructure();
QString temp;
arg >> temp;
v = QVersionNumber::fromString(temp);
arg.endStructure();
return arg;
}
|