2017-05-21 09:57:10 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 20011, 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-05-27 08:23:16 -04:00
|
|
|
#include <map>
|
|
|
|
|
2017-05-21 09:57:10 -04:00
|
|
|
#include <QPoint>
|
|
|
|
#include <retroshare/rsgrouter.h>
|
|
|
|
#include <retroshare/rstypes.h>
|
|
|
|
|
2017-05-25 10:56:29 -04:00
|
|
|
#include "util/TokenQueue.h"
|
2017-05-21 09:57:10 -04:00
|
|
|
#include "RsAutoUpdatePage.h"
|
|
|
|
#include "ui_GxsTransportStatistics.h"
|
2017-06-07 17:10:59 -04:00
|
|
|
#include "gui/gxs/RsGxsUpdateBroadcastPage.h"
|
2018-10-07 08:34:28 -04:00
|
|
|
#include "util/rstime.h"
|
2017-05-21 09:57:10 -04:00
|
|
|
|
|
|
|
class GxsTransportStatisticsWidget ;
|
2017-05-25 10:56:29 -04:00
|
|
|
class UIStateHelper;
|
2017-05-21 09:57:10 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
class RsGxsTransGroupStatistics: public GxsGroupStatistic
|
|
|
|
{
|
|
|
|
public:
|
2017-06-27 13:56:21 -04:00
|
|
|
RsGxsTransGroupStatistics()
|
|
|
|
{
|
|
|
|
last_publish_TS = 0;
|
|
|
|
popularity = 0;
|
|
|
|
subscribed = false;
|
|
|
|
}
|
|
|
|
|
2017-07-01 09:29:48 -04:00
|
|
|
void addMessageMeta(const RsGxsGroupId& grp,const RsMsgMetaData& meta)
|
2017-06-27 13:56:21 -04:00
|
|
|
{
|
2017-06-29 15:12:02 -04:00
|
|
|
messages_metas[meta.mMsgId] = meta ;
|
2017-06-27 13:56:21 -04:00
|
|
|
last_publish_TS = std::max(last_publish_TS,meta.mPublishTs) ;
|
2017-07-01 09:29:48 -04:00
|
|
|
mGrpId = grp ;
|
2017-06-27 13:56:21 -04:00
|
|
|
}
|
2017-05-27 16:19:52 -04:00
|
|
|
|
|
|
|
bool subscribed ;
|
|
|
|
int popularity ;
|
2017-05-29 17:06:31 -04:00
|
|
|
|
2018-10-07 08:34:28 -04:00
|
|
|
rstime_t last_publish_TS;
|
2017-06-27 13:56:21 -04:00
|
|
|
|
2017-06-29 15:12:02 -04:00
|
|
|
std::map<RsGxsMessageId,RsMsgMetaData> messages_metas ;
|
2017-05-27 16:19:52 -04:00
|
|
|
};
|
|
|
|
|
2017-06-07 17:10:59 -04:00
|
|
|
class GxsTransportStatistics: public RsGxsUpdateBroadcastPage, public TokenResponse, public Ui::GxsTransportStatistics
|
2017-05-21 09:57:10 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
public:
|
|
|
|
GxsTransportStatistics(QWidget *parent = NULL) ;
|
|
|
|
~GxsTransportStatistics();
|
|
|
|
|
|
|
|
// Cache for peer names.
|
|
|
|
static QString getPeerName(const RsPeerId& peer_id) ;
|
|
|
|
|
|
|
|
virtual void loadRequest(const TokenQueue *queue, const TokenRequest &req) ;
|
|
|
|
|
|
|
|
void updateContent() ;
|
|
|
|
|
2017-05-21 09:57:10 -04:00
|
|
|
private slots:
|
|
|
|
/** Create the context popup menu and it's submenus */
|
|
|
|
void CustomPopupMenu( QPoint point );
|
|
|
|
void personDetails();
|
2017-05-27 08:23:16 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
private:
|
2017-06-07 17:10:59 -04:00
|
|
|
void updateDisplay(bool complete) ;
|
2017-05-27 16:19:52 -04:00
|
|
|
void loadGroupMeta(const uint32_t& token);
|
|
|
|
void loadGroupStat(const uint32_t& token);
|
2017-05-29 17:06:31 -04:00
|
|
|
void loadMsgMeta(const uint32_t& token);
|
2017-05-25 10:56:29 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
void requestGroupMeta();
|
2017-05-29 17:06:31 -04:00
|
|
|
void requestMsgMeta(const RsGxsGroupId& groupId);
|
2017-05-27 16:19:52 -04:00
|
|
|
void requestGroupStat(const RsGxsGroupId &groupId);
|
2017-05-21 09:57:10 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
void processSettings(bool bLoad);
|
|
|
|
bool m_bProcessSettings;
|
2017-05-21 09:57:10 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
GxsTransportStatisticsWidget *_tst_CW ;
|
|
|
|
TokenQueue *mTransQueue ;
|
|
|
|
UIStateHelper *mStateHelper;
|
|
|
|
uint32_t mLastGroupReqTS ;
|
2017-05-21 09:57:10 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
// temporary storage of retrieved data, for display (useful because this is obtained from the async token system)
|
2017-05-21 09:57:10 -04:00
|
|
|
|
2017-05-27 16:19:52 -04:00
|
|
|
std::map<RsGxsGroupId,RsGxsTransGroupStatistics> mGroupStats ; // stores the list of active groups and statistics about each of them.
|
|
|
|
} ;
|