mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-23 13:54:27 -04:00
added msg ids to GxsTransport statistics.
This commit is contained in:
parent
0868b64436
commit
2e3f62a4bb
2 changed files with 52 additions and 0 deletions
|
@ -67,6 +67,7 @@ static const int GXSTRANS_STATISTICS_DELAY_BETWEEN_GROUP_REQ = 30 ; // never req
|
||||||
#define GXSTRANS_GROUP_META 0x01
|
#define GXSTRANS_GROUP_META 0x01
|
||||||
#define GXSTRANS_GROUP_DATA 0x02
|
#define GXSTRANS_GROUP_DATA 0x02
|
||||||
#define GXSTRANS_GROUP_STAT 0x03
|
#define GXSTRANS_GROUP_STAT 0x03
|
||||||
|
#define GXSTRANS_MSG_META 0x04
|
||||||
|
|
||||||
GxsTransportStatistics::GxsTransportStatistics(QWidget *parent)
|
GxsTransportStatistics::GxsTransportStatistics(QWidget *parent)
|
||||||
: RsAutoUpdatePage(2000,parent)
|
: RsAutoUpdatePage(2000,parent)
|
||||||
|
@ -242,6 +243,14 @@ void GxsTransportStatistics::updateContent()
|
||||||
item->setData(COL_GROUP_SIZE_MSGS,Qt::DisplayRole, QString::number(stat.mTotalSizeOfMsgs)) ;
|
item->setData(COL_GROUP_SIZE_MSGS,Qt::DisplayRole, QString::number(stat.mTotalSizeOfMsgs)) ;
|
||||||
item->setData(COL_GROUP_SUBSCRIBED,Qt::DisplayRole, stat.subscribed?tr("Yes"):tr("No")) ;
|
item->setData(COL_GROUP_SUBSCRIBED,Qt::DisplayRole, stat.subscribed?tr("Yes"):tr("No")) ;
|
||||||
item->setData(COL_GROUP_POPULARITY,Qt::DisplayRole, QString::number(stat.popularity)) ;
|
item->setData(COL_GROUP_POPULARITY,Qt::DisplayRole, QString::number(stat.popularity)) ;
|
||||||
|
|
||||||
|
for(uint32_t i=0;i<it->second.messages_metas.size();++i)
|
||||||
|
{
|
||||||
|
QTreeWidgetItem *sitem = new QTreeWidgetItem(item);
|
||||||
|
const RsMsgMetaData& meta(it->second.messages_metas[i]) ;
|
||||||
|
|
||||||
|
sitem->setData(COL_GROUP_GRP_ID,Qt::DisplayRole, QString::fromStdString(meta.mMsgId.toStdString()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -279,6 +288,9 @@ void GxsTransportStatistics::loadRequest(const TokenQueue *queue, const TokenReq
|
||||||
case GXSTRANS_GROUP_STAT: loadGroupStat(req.mToken);
|
case GXSTRANS_GROUP_STAT: loadGroupStat(req.mToken);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GXSTRANS_MSG_META: loadMsgMeta(req.mToken);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
std::cerr << "GxsTransportStatistics::loadRequest() ERROR: INVALID TYPE";
|
std::cerr << "GxsTransportStatistics::loadRequest() ERROR: INVALID TYPE";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
|
@ -310,6 +322,27 @@ void GxsTransportStatistics::requestGroupStat(const RsGxsGroupId &groupId)
|
||||||
rsGxsTrans->getTokenService()->requestGroupStatistic(token, groupId);
|
rsGxsTrans->getTokenService()->requestGroupStatistic(token, groupId);
|
||||||
mTransQueue->queueRequest(token, 0, RS_TOKREQ_ANSTYPE_ACK, GXSTRANS_GROUP_STAT);
|
mTransQueue->queueRequest(token, 0, RS_TOKREQ_ANSTYPE_ACK, GXSTRANS_GROUP_STAT);
|
||||||
}
|
}
|
||||||
|
void GxsTransportStatistics::requestMsgMeta(const RsGxsGroupId& grpId)
|
||||||
|
{
|
||||||
|
mStateHelper->setLoading(GXSTRANS_MSG_META, true);
|
||||||
|
|
||||||
|
#ifdef DEBUG_GXSTRANS_STATS
|
||||||
|
std::cerr << "GxsTransportStatisticsWidget::requestGroupMeta()";
|
||||||
|
std::cerr << std::endl;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
mTransQueue->cancelActiveRequestTokens(GXSTRANS_MSG_META);
|
||||||
|
|
||||||
|
RsTokReqOptions opts;
|
||||||
|
opts.mReqType = GXS_REQUEST_TYPE_MSG_META;
|
||||||
|
|
||||||
|
std::list<RsGxsGroupId> grouplist ;
|
||||||
|
grouplist.push_back(grpId) ;
|
||||||
|
|
||||||
|
uint32_t token;
|
||||||
|
rsGxsTrans->getTokenService()->requestMsgInfo(token, RS_TOKREQ_ANSTYPE_SUMMARY, opts, grouplist);
|
||||||
|
mTransQueue->queueRequest(token, 0, RS_TOKREQ_ANSTYPE_ACK, GXSTRANS_MSG_META);
|
||||||
|
}
|
||||||
|
|
||||||
void GxsTransportStatistics::loadGroupStat(const uint32_t &token)
|
void GxsTransportStatistics::loadGroupStat(const uint32_t &token)
|
||||||
{
|
{
|
||||||
|
@ -356,6 +389,7 @@ void GxsTransportStatistics::loadGroupMeta(const uint32_t& token)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
requestGroupStat(vit->mGroupId) ;
|
requestGroupStat(vit->mGroupId) ;
|
||||||
|
requestMsgMeta(vit->mGroupId) ;
|
||||||
|
|
||||||
RsGxsTransGroupStatistics& s(mGroupStats[vit->mGroupId]);
|
RsGxsTransGroupStatistics& s(mGroupStats[vit->mGroupId]);
|
||||||
s.popularity = vit->mPop ;
|
s.popularity = vit->mPop ;
|
||||||
|
@ -370,3 +404,17 @@ void GxsTransportStatistics::loadGroupMeta(const uint32_t& token)
|
||||||
else
|
else
|
||||||
++it;
|
++it;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GxsTransportStatistics::loadMsgMeta(const uint32_t& token)
|
||||||
|
{
|
||||||
|
mStateHelper->setLoading(GXSTRANS_MSG_META, false);
|
||||||
|
|
||||||
|
GxsMsgMetaMap m ;
|
||||||
|
|
||||||
|
if (!rsGxsTrans->getMsgSummary(token,m))
|
||||||
|
return ;
|
||||||
|
|
||||||
|
for(GxsMsgMetaMap::const_iterator it(m.begin());it!=m.end();++it)
|
||||||
|
mGroupStats[it->first].messages_metas = it->second ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,8 @@ public:
|
||||||
|
|
||||||
bool subscribed ;
|
bool subscribed ;
|
||||||
int popularity ;
|
int popularity ;
|
||||||
|
|
||||||
|
std::vector<RsMsgMetaData> messages_metas ;
|
||||||
};
|
};
|
||||||
|
|
||||||
class GxsTransportStatistics: public RsAutoUpdatePage, public TokenResponse, public Ui::GxsTransportStatistics
|
class GxsTransportStatistics: public RsAutoUpdatePage, public TokenResponse, public Ui::GxsTransportStatistics
|
||||||
|
@ -66,8 +68,10 @@ private slots:
|
||||||
private:
|
private:
|
||||||
void loadGroupMeta(const uint32_t& token);
|
void loadGroupMeta(const uint32_t& token);
|
||||||
void loadGroupStat(const uint32_t& token);
|
void loadGroupStat(const uint32_t& token);
|
||||||
|
void loadMsgMeta(const uint32_t& token);
|
||||||
|
|
||||||
void requestGroupMeta();
|
void requestGroupMeta();
|
||||||
|
void requestMsgMeta(const RsGxsGroupId& groupId);
|
||||||
void requestGroupStat(const RsGxsGroupId &groupId);
|
void requestGroupStat(const RsGxsGroupId &groupId);
|
||||||
|
|
||||||
void processSettings(bool bLoad);
|
void processSettings(bool bLoad);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue