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
|
/*
* This file is part of buteo-syncfw package
*
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
*
* Contact: Sateesh Kavuri <sateesh.kavuri@nokia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* 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 "ClientPluginRunner.h"
#include "ClientThread.h"
#include "ClientPlugin.h"
#include "LogMacros.h"
#include "PluginManager.h"
using namespace Buteo;
// Maximum time in milliseconds for a plugin to finish sync
static const unsigned long long MAX_PLUGIN_SYNC_TIME = 1800000; //30 mins
ClientPluginRunner::ClientPluginRunner(const QString &aPluginName,
SyncProfile *aProfile, PluginManager *aPluginMgr,
PluginCbInterface *aPluginCbIf, QObject *aParent)
: PluginRunner(PLUGIN_CLIENT, aPluginName, aPluginMgr, aPluginCbIf, aParent),
iProfile(aProfile),
iPlugin(0),
iThread(0)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
}
ClientPluginRunner::~ClientPluginRunner()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
stop();
disconnect();
if (iPlugin != 0 && iPluginMgr != 0) {
iPluginMgr->destroyClient(iPlugin);
iPlugin = 0;
}
delete iThread;
iThread = 0;
}
bool ClientPluginRunner::init()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
if (iInitialized)
return true;
if (iPluginMgr == 0 || iPluginCbIf == 0 || iProfile == 0) {
qCWarning(lcButeoMsyncd) << "Invalid members, failed to initialize";
return false;
}
iPlugin = iPluginMgr->createClient(iPluginName, *iProfile, iPluginCbIf);
if (iPlugin == 0) {
qCWarning(lcButeoMsyncd) << "Failed to create client plug-in:" << iPluginName;
return false;
}
iThread = new ClientThread();
// Pass connectivity state change signal to the plug-in.
connect(this, SIGNAL(connectivityStateChanged(Sync::ConnectivityType, bool)),
iPlugin, SLOT(connectivityStateChanged(Sync::ConnectivityType, bool)));
// Connect signals from the plug-in.
connect(iPlugin, SIGNAL(transferProgress(const QString &, Sync::TransferDatabase, Sync::TransferType, const QString &,
int)),
this, SLOT(onTransferProgress(const QString &, Sync::TransferDatabase, Sync::TransferType, const QString &, int)));
connect(iPlugin, &ClientPlugin::error, this, &ClientPluginRunner::onError);
connect(iPlugin, SIGNAL(success(const QString &, const QString &)),
this, SLOT(onSuccess(const QString &, const QString &)));
connect(iPlugin, SIGNAL(accquiredStorage(const QString &)),
this, SLOT(onStorageAccquired(const QString &)));
connect(iPlugin, SIGNAL(syncProgressDetail(const QString &, int)),
this, SLOT(onSyncProgressDetail(const QString &, int)));
// Connect signals from the thread.
connect(iThread, &ClientThread::initError, this, &ClientPluginRunner::onError);
connect(iThread, SIGNAL(finished()), this, SLOT(onThreadExit()));
iInitialized = true;
return true;
}
bool ClientPluginRunner::start()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
bool rv = false;
if (iInitialized && iThread != 0) {
// Set a timer after which the sync session should stop
QTimer::singleShot(MAX_PLUGIN_SYNC_TIME, this, SLOT(pluginTimeout()));
rv = iThread->startThread(iPlugin);
qCDebug(lcButeoMsyncd) << "ClientPluginRunner started thread for plugin:" << iPlugin->getProfileName() << ", returning:" << rv;
}
return rv;
}
void ClientPluginRunner::stop()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
if (iThread != 0) {
iThread->stopThread();
iThread->wait();
}
}
void ClientPluginRunner::abort(Sync::SyncStatus aStatus)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
if (iPlugin != 0) {
iPlugin->abortSync(aStatus);
}
}
SyncPluginBase *ClientPluginRunner::plugin()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
return iPlugin;
}
SyncResults ClientPluginRunner::syncResults()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
if (iPlugin != 0) {
return iPlugin->getSyncResults();
} else {
return SyncResults();
}
}
bool ClientPluginRunner::cleanUp()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
bool retval = false;
if (iPlugin != 0) {
retval = iPlugin->cleanUp();
}
return retval;
}
void ClientPluginRunner::onTransferProgress(const QString &aProfileName,
Sync::TransferDatabase aDatabase, Sync::TransferType aType,
const QString &aMimeType, int aCommittedItems)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit transferProgress(aProfileName, aDatabase, aType, aMimeType, aCommittedItems);
}
void ClientPluginRunner::onError(const QString &aProfileName,
const QString &aMessage, SyncResults::MinorCode aErrorCode)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit error(aProfileName, aMessage, aErrorCode);
stop();
}
void ClientPluginRunner::onSuccess(const QString &aProfileName,
const QString &aMessage)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit success(aProfileName, aMessage);
stop();
}
void ClientPluginRunner::onStorageAccquired(const QString &aMimeType)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit storageAccquired(aMimeType);
}
void ClientPluginRunner::onSyncProgressDetail(const QString &aProfileName, int aProgressDetail)
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit syncProgressDetail(aProfileName, aProgressDetail);
}
void ClientPluginRunner::onThreadExit()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit done();
}
void ClientPluginRunner::pluginTimeout()
{
FUNCTION_CALL_TRACE(lcButeoTrace);
emit error(iProfile->name(), "Plugin timeout occurred", SyncResults::PLUGIN_TIMEOUT);
stop();
}
|