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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
/**
* This file is part of TelepathyQt
*
* @copyright Copyright (C) 2011 Collabora Ltd. <http://www.collabora.co.uk/>
* @copyright Copyright (C) 2011 Nokia Corporation
* @license LGPL 2.1
*
* 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.
*
* 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.
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <TelepathyQt/SimpleTextObserver>
#include "TelepathyQt/simple-text-observer-internal.h"
#include "TelepathyQt/_gen/simple-text-observer.moc.hpp"
#include "TelepathyQt/_gen/simple-text-observer-internal.moc.hpp"
#include "TelepathyQt/debug-internal.h"
#include <TelepathyQt/ChannelClassSpec>
#include <TelepathyQt/ChannelClassSpecList>
#include <TelepathyQt/Connection>
#include <TelepathyQt/Contact>
#include <TelepathyQt/ContactManager>
#include <TelepathyQt/Message>
#include <TelepathyQt/PendingContacts>
#include <TelepathyQt/PendingComposite>
#include <TelepathyQt/PendingReady>
#include <TelepathyQt/PendingSuccess>
namespace Tp
{
SimpleTextObserver::Private::Private(SimpleTextObserver *parent,
const AccountPtr &account,
const QString &contactIdentifier, bool requiresNormalization)
: parent(parent),
account(account),
contactIdentifier(contactIdentifier)
{
debug() << "Creating a new SimpleTextObserver";
ChannelClassSpec channelFilter = ChannelClassSpec::textChat();
observer = SimpleObserver::create(account, ChannelClassSpecList() << channelFilter,
contactIdentifier, requiresNormalization,
QList<ChannelClassFeatures>() << ChannelClassFeatures(channelFilter,
TextChannel::FeatureMessageQueue | TextChannel::FeatureMessageSentSignal));
parent->connect(observer.data(),
SIGNAL(newChannels(QList<Tp::ChannelPtr>)),
SLOT(onNewChannels(QList<Tp::ChannelPtr>)));
parent->connect(observer.data(),
SIGNAL(channelInvalidated(Tp::ChannelPtr,QString,QString)),
SLOT(onChannelInvalidated(Tp::ChannelPtr)));
}
SimpleTextObserver::Private::~Private()
{
foreach (TextChannelWrapper *wrapper, channels) {
delete wrapper;
}
}
SimpleTextObserver::Private::TextChannelWrapper::TextChannelWrapper(const TextChannelPtr &channel)
: mChannel(channel)
{
connect(mChannel.data(),
SIGNAL(messageSent(Tp::Message,Tp::MessageSendingFlags,QString)),
SLOT(onChannelMessageSent(Tp::Message,Tp::MessageSendingFlags,QString)));
connect(mChannel.data(),
SIGNAL(messageReceived(Tp::ReceivedMessage)),
SLOT(onChannelMessageReceived(Tp::ReceivedMessage)));
}
void SimpleTextObserver::Private::TextChannelWrapper::onChannelMessageSent(
const Tp::Message &message, Tp::MessageSendingFlags flags,
const QString &sentMessageToken)
{
emit channelMessageSent(message, flags, sentMessageToken, mChannel);
}
void SimpleTextObserver::Private::TextChannelWrapper::onChannelMessageReceived(
const Tp::ReceivedMessage &message)
{
emit channelMessageReceived(message, mChannel);
}
/**
* \class SimpleTextObserver
* \ingroup utils
* \headerfile TelepathyQt/simple-text-observer.h <TelepathyQt/SimpleTextObserver>
*
* \brief The SimpleTextObserver class provides an easy way to track sent/received text messages
* in an account and can be optionally filtered by a contact.
*/
/**
* Create a new SimpleTextObserver object.
*
* Events will be signalled for all messages sent/received by all contacts in \a account.
*
* \param account The account used to listen to events.
* \return An SimpleTextObserverPtr object pointing to the newly created SimpleTextObserver object.
*/
SimpleTextObserverPtr SimpleTextObserver::create(const AccountPtr &account)
{
return create(account, QString(), false);
}
/**
* Create a new SimpleTextObserver object.
*
* If \a contact is not null, events will be signalled for all messages sent/received by \a
* contact, otherwise this method works the same as create(const Tp::AccountPtr &).
*
* \param account The account used to listen to events.
* \param contact The contact used to filter events.
* \return An SimpleTextObserverPtr object pointing to the newly created SimpleTextObserver object.
*/
SimpleTextObserverPtr SimpleTextObserver::create(const AccountPtr &account,
const ContactPtr &contact)
{
if (contact) {
return create(account, contact->id(), false);
}
return create(account, QString(), false);
}
/**
* Create a new SimpleTextObserver object.
*
* If \a contactIdentifier is non-empty, events will be signalled for all messages sent/received
* by a contact identified by \a contactIdentifier, otherwise this method works the same as
* create(const Tp::AccountPtr &).
*
* \param account The account used to listen to events.
* \param contactIdentifier The identifier of the contact used to filter events.
* \return An SimpleTextObserverPtr object pointing to the newly created SimpleTextObserver object.
*/
SimpleTextObserverPtr SimpleTextObserver::create(const AccountPtr &account,
const QString &contactIdentifier)
{
return create(account, contactIdentifier, true);
}
SimpleTextObserverPtr SimpleTextObserver::create(const AccountPtr &account,
const QString &contactIdentifier, bool requiresNormalization)
{
return SimpleTextObserverPtr(
new SimpleTextObserver(account, contactIdentifier, requiresNormalization));
}
/**
* Construct a new SimpleTextObserver object.
*
* \param account The account used to listen to events.
* \param contactIdentifier The identifier of the contact used to filter events.
* \param requiresNormalization Whether \a contactIdentifier needs to be normalized.
* \return An SimpleTextObserverPtr object pointing to the newly created SimpleTextObserver object.
*/
SimpleTextObserver::SimpleTextObserver(const AccountPtr &account,
const QString &contactIdentifier, bool requiresNormalization)
: mPriv(new Private(this, account, contactIdentifier, requiresNormalization))
{
if (!mPriv->observer->channels().isEmpty()) {
onNewChannels(mPriv->observer->channels());
}
}
/**
* Class destructor.
*/
SimpleTextObserver::~SimpleTextObserver()
{
delete mPriv;
}
/**
* Return the account used to listen to events.
*
* \return A pointer to the Account object.
*/
AccountPtr SimpleTextObserver::account() const
{
return mPriv->account;
}
/**
* Return the identifier of the contact used to filter events, or an empty string if none was
* provided at construction.
*
* \return The identifier of the contact.
*/
QString SimpleTextObserver::contactIdentifier() const
{
return mPriv->contactIdentifier;
}
/**
* Return the list of text chats currently being observed.
*
* \return A list of pointers to TextChannel objects.
*/
QList<TextChannelPtr> SimpleTextObserver::textChats() const
{
QList<TextChannelPtr> ret;
foreach (const ChannelPtr &channel, mPriv->observer->channels()) {
TextChannelPtr textChannel = TextChannelPtr::qObjectCast(channel);
if (textChannel) {
ret << textChannel;
}
}
return ret;
}
void SimpleTextObserver::onNewChannels(const QList<ChannelPtr> &channels)
{
foreach (const ChannelPtr &channel, channels) {
TextChannelPtr textChannel = TextChannelPtr::qObjectCast(channel);
if (!textChannel) {
if (channel->channelType() != TP_QT_IFACE_CHANNEL_TYPE_TEXT) {
warning() << "Channel received to observe is not of type Text, service confused. "
"Ignoring channel";
} else {
warning() << "Channel received to observe is not a subclass of TextChannel. "
"ChannelFactory set on this observer's account must construct TextChannel "
"subclasses for channels of type Text. Ignoring channel";
}
continue;
}
if (mPriv->channels.contains(channel)) {
// we are already observing this channel
continue;
}
Private::TextChannelWrapper *wrapper = new Private::TextChannelWrapper(textChannel);
mPriv->channels.insert(channel, wrapper);
connect(wrapper,
SIGNAL(channelMessageSent(Tp::Message,Tp::MessageSendingFlags,QString,Tp::TextChannelPtr)),
SIGNAL(messageSent(Tp::Message,Tp::MessageSendingFlags,QString,Tp::TextChannelPtr)));
connect(wrapper,
SIGNAL(channelMessageReceived(Tp::ReceivedMessage,Tp::TextChannelPtr)),
SIGNAL(messageReceived(Tp::ReceivedMessage,Tp::TextChannelPtr)));
foreach (const ReceivedMessage &message, textChannel->messageQueue()) {
emit messageReceived(message, textChannel);
}
}
}
void SimpleTextObserver::onChannelInvalidated(const ChannelPtr &channel)
{
// it may happen that the channel received in onNewChannels is not a text channel somehow, thus
// the channel won't be added to mPriv->channels
if (mPriv->channels.contains(channel)) {
delete mPriv->channels.take(channel);
}
}
/**
* \fn void SimpleTextObserver::messageSent(const Tp::Message &message,
* Tp::MessageSendingFlags flags, const QString &sentMessageToken,
* const Tp::TextChannelPtr &channel);
*
* Emitted whenever a text message on account() is sent.
* If contactIdentifier() is non-empty, only messages sent to the contact identified by it will
* be signalled.
*
* \param message The message sent.
* \param flags The message flags,
* \param sentMessageToken The message token.
* \param channel The channel which received the message.
*/
/**
* \fn void SimpleTextObserver::messageReceived(const Tp::ReceivedMessage &message,
* const Tp::TextChannelPtr &channel);
*
* Emitted whenever a text message on account() is received.
* If contactIdentifier() is non-empty, only messages received by the contact identified by it will
* be signalled.
*
* \param message The message received.
* \param channel The channel which received the message.
*/
} // Tp
|