mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
37ddbf63cc
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7561 b45a01b8-16f6-495d-af2f-9b41ad6348cc
83 lines
2.4 KiB
C++
83 lines
2.4 KiB
C++
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2014 RetroShare Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#include "GxsUserNotify.h"
|
|
#include "gui/gxs/RsGxsUpdateBroadcastBase.h"
|
|
|
|
#include "retroshare/rsgxsifacehelper.h"
|
|
|
|
#define TOKEN_TYPE_STATISTICS 1
|
|
|
|
GxsUserNotify::GxsUserNotify(RsGxsIfaceHelper *ifaceImpl, QObject *parent) :
|
|
UserNotify(parent), TokenResponse()
|
|
{
|
|
mNewThreadMessageCount = 0;
|
|
mNewChildMessageCount = 0;
|
|
mCountChildMsgs = false;
|
|
|
|
mInterface = ifaceImpl;
|
|
mTokenService = mInterface->getTokenService();
|
|
mTokenQueue = new TokenQueue(mInterface->getTokenService(), this);
|
|
|
|
mBase = new RsGxsUpdateBroadcastBase(ifaceImpl);
|
|
connect(mBase, SIGNAL(fillDisplay(bool)), this, SLOT(updateIcon()));
|
|
}
|
|
|
|
GxsUserNotify::~GxsUserNotify()
|
|
{
|
|
if (mTokenQueue) {
|
|
delete(mTokenQueue);
|
|
}
|
|
if (mBase) {
|
|
delete(mBase);
|
|
}
|
|
}
|
|
|
|
void GxsUserNotify::startUpdate()
|
|
{
|
|
mNewThreadMessageCount = 0;
|
|
mNewChildMessageCount = 0;
|
|
|
|
uint32_t token;
|
|
mTokenService->requestServiceStatistic(token);
|
|
mTokenQueue->queueRequest(token, 0, RS_TOKREQ_ANSTYPE_ACK, TOKEN_TYPE_STATISTICS);
|
|
}
|
|
|
|
void GxsUserNotify::loadRequest(const TokenQueue *queue, const TokenRequest &req)
|
|
{
|
|
if (queue == mTokenQueue) {
|
|
/* now switch on req */
|
|
switch(req.mUserType) {
|
|
case TOKEN_TYPE_STATISTICS:
|
|
{
|
|
GxsServiceStatistic stats;
|
|
mInterface->getServiceStatistic(req.mToken, stats);
|
|
|
|
mNewThreadMessageCount = stats.mNumThreadMsgsNew;
|
|
mNewChildMessageCount = stats.mNumChildMsgsNew;
|
|
|
|
update();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|