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
|
/**
* 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/simple-stream-tube-handler.h"
#include "TelepathyQt/_gen/simple-stream-tube-handler.moc.hpp"
#include "TelepathyQt/debug-internal.h"
#include <TelepathyQt/Account>
#include <TelepathyQt/ChannelClassSpec>
#include <TelepathyQt/PendingComposite>
#include <TelepathyQt/PendingReady>
#include <TelepathyQt/StreamTubeChannel>
namespace Tp
{
namespace
{
ChannelClassSpecList buildFilter(const QStringList &p2pServices,
const QStringList &roomServices, bool requested)
{
ChannelClassSpecList filter;
// Convert to QSet to weed out duplicates
foreach (const QString &service, p2pServices.toSet())
{
filter.append(requested ?
ChannelClassSpec::outgoingStreamTube(service) :
ChannelClassSpec::incomingStreamTube(service));
}
// Convert to QSet to weed out duplicates
foreach (const QString &service, roomServices.toSet())
{
filter.append(requested ?
ChannelClassSpec::outgoingRoomStreamTube(service) :
ChannelClassSpec::incomingRoomStreamTube(service));
}
return filter;
}
}
SharedPtr<SimpleStreamTubeHandler> SimpleStreamTubeHandler::create(
const QStringList &p2pServices,
const QStringList &roomServices,
bool requested,
bool monitorConnections,
bool bypassApproval)
{
return SharedPtr<SimpleStreamTubeHandler>(
new SimpleStreamTubeHandler(
p2pServices,
roomServices,
requested,
monitorConnections,
bypassApproval));
}
SimpleStreamTubeHandler::SimpleStreamTubeHandler(
const QStringList &p2pServices,
const QStringList &roomServices,
bool requested,
bool monitorConnections,
bool bypassApproval)
: AbstractClient(),
AbstractClientHandler(buildFilter(p2pServices, roomServices, requested)),
mMonitorConnections(monitorConnections),
mBypassApproval(bypassApproval)
{
}
SimpleStreamTubeHandler::~SimpleStreamTubeHandler()
{
if (!mTubes.empty()) {
debug() << "~SSTubeHandler(): Closing" << mTubes.size() << "leftover tubes";
foreach (const StreamTubeChannelPtr &tube, mTubes.keys()) {
tube->requestClose();
}
}
}
void SimpleStreamTubeHandler::handleChannels(
const MethodInvocationContextPtr<> &context,
const AccountPtr &account,
const ConnectionPtr &connection,
const QList<ChannelPtr> &channels,
const QList<ChannelRequestPtr> &requestsSatisfied,
const QDateTime &userActionTime,
const HandlerInfo &handlerInfo)
{
debug() << "SimpleStreamTubeHandler::handleChannels() invoked for " <<
channels.size() << "channels on account" << account->objectPath();
SharedPtr<InvocationData> invocation(new InvocationData());
QList<PendingOperation *> readyOps;
foreach (const ChannelPtr &chan, channels) {
StreamTubeChannelPtr tube = StreamTubeChannelPtr::qObjectCast(chan);
if (!tube) {
// TODO: if Channel ever starts utilizing its immutable props for the immutable
// accessors, use Channel::channelType() here
const QString channelType =
chan->immutableProperties()[TP_QT_IFACE_CHANNEL + QLatin1String(".ChannelType")].toString();
if (channelType != TP_QT_IFACE_CHANNEL_TYPE_STREAM_TUBE) {
debug() << "We got a non-StreamTube channel" << chan->objectPath() <<
"of type" << channelType << ", ignoring";
} else {
warning() << "The channel factory used for a simple StreamTube handler must" <<
"construct StreamTubeChannel subclasses for stream tubes";
}
continue;
}
Features features = StreamTubeChannel::FeatureCore;
if (mMonitorConnections) {
features.insert(StreamTubeChannel::FeatureConnectionMonitoring);
}
readyOps.append(tube->becomeReady(features));
invocation->tubes.append(tube);
}
invocation->ctx = context;
invocation->acc = account;
invocation->time = userActionTime;
if (!requestsSatisfied.isEmpty()) {
invocation->hints = requestsSatisfied.first()->hints();
}
mInvocations.append(invocation);
if (invocation->tubes.isEmpty()) {
warning() << "SSTH::HandleChannels got no suitable channels, admitting we're Confused";
invocation->readyOp = 0;
invocation->error = TP_QT_ERROR_CONFUSED;
invocation->message = QLatin1String("Got no suitable channels");
onReadyOpFinished(0);
} else {
invocation->readyOp = new PendingComposite(readyOps, SharedPtr<SimpleStreamTubeHandler>(this));
connect(invocation->readyOp,
SIGNAL(finished(Tp::PendingOperation*)),
SLOT(onReadyOpFinished(Tp::PendingOperation*)));
}
}
void SimpleStreamTubeHandler::onReadyOpFinished(Tp::PendingOperation *op)
{
Q_ASSERT(!mInvocations.isEmpty());
Q_ASSERT(!op || op->isFinished());
for (QLinkedList<SharedPtr<InvocationData> >::iterator i = mInvocations.begin();
op != 0 && i != mInvocations.end(); ++i) {
if ((*i)->readyOp != op) {
continue;
}
(*i)->readyOp = 0;
if (op->isError()) {
warning() << "Preparing proxies for SSTubeHandler failed with" << op->errorName()
<< op->errorMessage();
(*i)->error = op->errorName();
(*i)->message = op->errorMessage();
}
break;
}
while (!mInvocations.isEmpty() && !mInvocations.first()->readyOp) {
SharedPtr<InvocationData> invocation = mInvocations.takeFirst();
if (!invocation->error.isEmpty()) {
// We guarantee that the proxies were ready - so we can't invoke the client if they
// weren't made ready successfully. Fix the introspection code if this happens :)
invocation->ctx->setFinishedWithError(invocation->error, invocation->message);
continue;
}
debug() << "Emitting SSTubeHandler::invokedForTube for" << invocation->tubes.size()
<< "tubes";
foreach (const StreamTubeChannelPtr &tube, invocation->tubes) {
if (!tube->isValid()) {
debug() << "Skipping already invalidated tube" << tube->objectPath();
continue;
}
if (!mTubes.contains(tube)) {
connect(tube.data(),
SIGNAL(invalidated(Tp::DBusProxy*,QString,QString)),
SLOT(onTubeInvalidated(Tp::DBusProxy*,QString,QString)));
mTubes.insert(tube, invocation->acc);
}
emit invokedForTube(
invocation->acc,
tube,
invocation->time,
invocation->hints);
}
invocation->ctx->setFinished();
}
}
void SimpleStreamTubeHandler::onTubeInvalidated(DBusProxy *proxy,
const QString &errorName, const QString &errorMessage)
{
StreamTubeChannelPtr tube(qobject_cast<StreamTubeChannel *>(proxy));
Q_ASSERT(!tube.isNull());
Q_ASSERT(mTubes.contains(tube));
debug() << "Tube" << tube->objectPath() << "invalidated - " << errorName << ':' << errorMessage;
AccountPtr acc = mTubes.value(tube);
mTubes.remove(tube);
emit tubeInvalidated(
acc,
tube,
errorName,
errorMessage);
}
} // Tp
|