File: ServerPluginRunner.cpp

package info (click to toggle)
buteo-syncfw 0.11.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,704 kB
  • sloc: cpp: 18,406; xml: 396; sh: 34; makefile: 20
file content (270 lines) | stat: -rw-r--r-- 7,327 bytes parent folder | download
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
/*
 * 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 "ServerPluginRunner.h"
#include "ServerThread.h"
#include "ServerActivator.h"
#include "ServerPlugin.h"
#include "LogMacros.h"
#include "PluginManager.h"

using namespace Buteo;

ServerPluginRunner::ServerPluginRunner(const QString &aPluginName,
                                       Profile *aProfile, PluginManager *aPluginMgr, PluginCbInterface *aPluginCbIf,
                                       ServerActivator *aServerActivator, QObject *aParent)
    : PluginRunner(PLUGIN_SERVER, aPluginName, aPluginMgr, aPluginCbIf, aParent)
    , iProfile(aProfile)
    , iPlugin(0)
    , iThread(0)
    , iServerActivator(aServerActivator)
{
    FUNCTION_CALL_TRACE(lcButeoTrace);
}

ServerPluginRunner::~ServerPluginRunner()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    stop();
    disconnect();

    if (iPlugin != 0 && iPluginMgr != 0) {
        iPluginMgr->destroyServer(iPlugin);
        iPlugin = 0;
    }

    delete iThread;
    iThread = 0;

    delete iProfile;
    iProfile = 0;
}

bool ServerPluginRunner::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->createServer(iPluginName, *iProfile, iPluginCbIf);
    if (iPlugin == 0) {
        qCWarning(lcButeoMsyncd) << "Failed to create server plug-in:" << iPluginName;
        return false;
    }

    iThread = new ServerThread();

    // Pass connectivity state change signal to the plug-in.
    connect(this, SIGNAL(connectivityStateChanged(Sync::ConnectivityType, bool)),
            iPlugin, SLOT(connectivityStateChanged(Sync::ConnectivityType, bool)));

    connect(iPlugin, SIGNAL(newSession(const QString &)),
            this, SLOT(onNewSession(const QString &)));

    // 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, &ServerPlugin::error, this, &ServerPluginRunner::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, SIGNAL(syncProgressDetail(const QString &, int)));

    // Connect signals from the thread.

    connect(iThread, &ServerThread::initError, this, &ServerPluginRunner::onError);

    connect(iThread, SIGNAL(finished()), this, SLOT(onThreadExit()));

    iInitialized = true;

    return true;
}

bool ServerPluginRunner::start()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    bool rv = false;
    if (iInitialized && iThread != 0) {
        rv = iThread->startThread(iPlugin);
        qCDebug(lcButeoMsyncd) << "ServerPluginRunner started thread for plugin:" << iPlugin->getProfileName() << ", returning:" << rv;
    }

    return rv;
}

void ServerPluginRunner::stop()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    // Disconnect all signals from this object to the plug-in.
    disconnect(this, 0, iPlugin, 0);

    if (iThread != 0) {
        iThread->stopThread();
        iThread->wait();
    }
}

void ServerPluginRunner::abort(Sync::SyncStatus aStatus)
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    if (iPlugin != 0) {
        iPlugin->abortSync(aStatus);
    }
}

void ServerPluginRunner::suspend()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    if (iPlugin != 0) {
        iPlugin->suspend();
    }
}

void ServerPluginRunner::resume()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    if (iPlugin != 0) {
        iPlugin->resume();
    }
}

SyncPluginBase *ServerPluginRunner::plugin()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    return iPlugin;
}

SyncResults ServerPluginRunner::syncResults()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    if (iPlugin != 0) {
        return iPlugin->getSyncResults();
    } else {
        return SyncResults();
    }
}

bool ServerPluginRunner::cleanUp()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    bool retval = false ;
    if (iPlugin != 0) {
        retval = iPlugin->cleanUp();
    }
    return retval;
}

void ServerPluginRunner::onNewSession(const QString &aDestination)
{
    // Add reference to the server plug-in, so that the plug-in
    // will not be stopped when there is a session running.
    if (iServerActivator != 0) {
        iServerActivator->addRef(plugin()->getProfileName());
    }

    emit newSession(aDestination);
}

void ServerPluginRunner::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 ServerPluginRunner::onError(const QString &aProfileName,
                                 const QString &aMessage, SyncResults::MinorCode aErrorCode)
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    emit error(aProfileName, aMessage, aErrorCode);

    onSessionDone();
}

void ServerPluginRunner::onSuccess(const QString &aProfileName,
                                   const QString &aMessage)
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    emit success(aProfileName, aMessage);

    onSessionDone();
}

void ServerPluginRunner::onStorageAccquired(const QString &aMimeType)
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    emit storageAccquired(aMimeType);
}

void ServerPluginRunner::onThreadExit()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    emit done();
}

void ServerPluginRunner::onSessionDone()
{
    FUNCTION_CALL_TRACE(lcButeoTrace);

    // Remove reference to the server plug-in. This may result in stopping
    // the server plug-in, if it doesn't need to be active any more.

#if 0
    // SyncML Server plugin should not die after one single session
    // Don't think removing the server reference is useful
    if (iServerActivator != 0) {
        iServerActivator->removeRef(plugin()->getProfileName());
    }
#endif
}