-
Notifications
You must be signed in to change notification settings - Fork 0
/
poller.cpp
47 lines (40 loc) · 1.09 KB
/
poller.cpp
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
#include "poller.h"
#include "connectioninitiator.h"
#include "controlplane/controlplaneconnection.h"
#include <QMutex>
Poller::Poller(QObject *parent) :
QObject(parent)
{
this->qSql = DatabaseHandler::getInstance();
server = new XmlRPCTextServer(this);
server->addMethod("setUid", this, "setUid");
server->addMethod("emitBonjourChanged", this, "emitBonjourChanged");
}
Poller* Poller::instance = NULL;
Poller* Poller::getInstance() {
static QMutex mutex;
mutex.lock();
if (!instance)
instance = new Poller();
mutex.unlock();
return instance;
}
void Poller::run() {
QTimer::singleShot(2000, this, SLOT(fetchXmlRPC()));
}
void Poller::fetchXmlRPC() {
//qDebug() << "Fetching XML RPC";
QString fetched = qSql->fetchXmlRpc();
if (fetched != NULL)
server->newConnection(fetched);
this->run(); // call has returned, call run again !
}
bool Poller::setUid(QString uid) {
qSql->uid = uid;
return true;
}
bool Poller::emitBonjourChanged(QString) {
qDebug() << "Emitting bonjour changed";
emit bonjourChanged();
return true;
}