mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-11 16:59:25 -04:00
421 lines
11 KiB
C++
421 lines
11 KiB
C++
/*******************************************************************************
|
|
* retroshare-gui/src/gui/gxs/GxsMessageFramePostWidget.cpp *
|
|
* *
|
|
* Copyright 2014 Retroshare Team <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#include <algorithm>
|
|
#include <QApplication>
|
|
|
|
#include "GxsMessageFramePostWidget.h"
|
|
#include "gui/common/UIStateHelper.h"
|
|
|
|
#include "retroshare/rsgxsifacehelper.h"
|
|
#include "util/qtthreadsutils.h"
|
|
|
|
//#define ENABLE_DEBUG 1
|
|
|
|
GxsMessageFramePostWidget::GxsMessageFramePostWidget(RsGxsIfaceHelper *ifaceImpl, QWidget *parent)
|
|
: GxsMessageFrameWidget(ifaceImpl, parent)
|
|
{
|
|
mSubscribeFlags = 0;
|
|
mFillThread = NULL;
|
|
|
|
mTokenTypeGroupData = nextTokenType();
|
|
mTokenTypeAllPosts = nextTokenType();
|
|
mTokenTypePosts = nextTokenType();
|
|
}
|
|
|
|
GxsMessageFramePostWidget::~GxsMessageFramePostWidget()
|
|
{
|
|
if (mFillThread) {
|
|
mFillThread->stop(true);
|
|
delete(mFillThread);
|
|
mFillThread = NULL;
|
|
}
|
|
}
|
|
|
|
void GxsMessageFramePostWidget::groupIdChanged()
|
|
{
|
|
mGroupName = groupId().isNull () ? "" : tr("Loading...");
|
|
groupNameChanged(mGroupName);
|
|
|
|
emit groupChanged(this);
|
|
|
|
updateDisplay(true);
|
|
}
|
|
|
|
QString GxsMessageFramePostWidget::groupName(bool /*withUnreadCount*/)
|
|
{
|
|
QString name = groupId().isNull () ? tr("No name") : mGroupName;
|
|
|
|
// if (withUnreadCount && mUnreadCount) {
|
|
// name += QString(" (%1)").arg(mUnreadCount);
|
|
// }
|
|
|
|
return name;
|
|
}
|
|
|
|
bool GxsMessageFramePostWidget::navigate(const RsGxsMessageId &msgId)
|
|
{
|
|
if (msgId.isNull()) {
|
|
return false;
|
|
}
|
|
|
|
if (mStateHelper->isLoading(mTokenTypeAllPosts) || mStateHelper->isLoading(mTokenTypePosts)) {
|
|
mNavigatePendingMsgId = msgId;
|
|
|
|
/* No information if group is available */
|
|
return true;
|
|
}
|
|
|
|
return navigatePostItem(msgId);
|
|
}
|
|
|
|
bool GxsMessageFramePostWidget::isLoading()
|
|
{
|
|
if (mStateHelper->isLoading(mTokenTypeAllPosts) || mStateHelper->isLoading(mTokenTypePosts)) {
|
|
return true;
|
|
}
|
|
|
|
return GxsMessageFrameWidget::isLoading();
|
|
}
|
|
|
|
void GxsMessageFramePostWidget::updateDisplay(bool complete)
|
|
{
|
|
if (complete) {
|
|
/* Fill complete */
|
|
loadGroupData();
|
|
loadAllPosts();
|
|
return;
|
|
}
|
|
|
|
if (groupId().isNull()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
void GxsMessageFramePostWidget::fillThreadAddPost(const QVariant &post, bool related, int current, int count)
|
|
{
|
|
if (sender() == mFillThread) {
|
|
fillThreadCreatePost(post, related, current, count);
|
|
}
|
|
}
|
|
|
|
void GxsMessageFramePostWidget::fillThreadFinished()
|
|
{
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostWidget::fillThreadFinished()" << std::endl;
|
|
#endif
|
|
|
|
/* Thread has finished */
|
|
GxsMessageFramePostThread *thread = dynamic_cast<GxsMessageFramePostThread*>(sender());
|
|
if (thread) {
|
|
if (thread == mFillThread) {
|
|
/* Current thread has finished */
|
|
mFillThread = NULL;
|
|
|
|
mStateHelper->setLoading(mTokenTypeAllPosts, false);
|
|
emit groupChanged(this);
|
|
|
|
if (!mNavigatePendingMsgId.isNull()) {
|
|
navigate(mNavigatePendingMsgId);
|
|
|
|
mNavigatePendingMsgId.clear();
|
|
}
|
|
}
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
if (thread->stopped()) {
|
|
// thread was stopped
|
|
std::cerr << "GxsMessageFramePostWidget::fillThreadFinished() Thread was stopped" << std::endl;
|
|
}
|
|
#endif
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostWidget::fillThreadFinished() Delete thread" << std::endl;
|
|
#endif
|
|
|
|
thread->deleteLater();
|
|
thread = NULL;
|
|
}
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostWidget::fillThreadFinished done()" << std::endl;
|
|
#endif
|
|
}
|
|
|
|
/**************************************************************/
|
|
/** Request / Response of Data ********************************/
|
|
/**************************************************************/
|
|
|
|
void GxsMessageFramePostWidget::loadGroupData()
|
|
{
|
|
mSubscribeFlags = 0;
|
|
|
|
if (groupId().isNull()) {
|
|
mStateHelper->setActive(mTokenTypeGroupData, false);
|
|
mStateHelper->setLoading(mTokenTypeGroupData, false);
|
|
mStateHelper->clear(mTokenTypeGroupData);
|
|
|
|
mGroupName.clear();
|
|
groupNameChanged(mGroupName);
|
|
|
|
emit groupChanged(this);
|
|
|
|
return;
|
|
}
|
|
|
|
mStateHelper->setLoading(mTokenTypeGroupData, true);
|
|
emit groupChanged(this);
|
|
|
|
RsThread::async([this]()
|
|
{
|
|
RsGxsGenericGroupData *data = nullptr;
|
|
getGroupData(data);
|
|
|
|
if(!data)
|
|
{
|
|
std::cerr << "Cannot get group data for group " << groupId() << ". Maybe database is busy" << std::endl;
|
|
return;
|
|
}
|
|
|
|
RsQThreadUtils::postToObject( [data,this]()
|
|
{
|
|
/* Here it goes any code you want to be executed on the Qt Gui
|
|
* thread, for example to update the data model with new information
|
|
* after a blocking call to RetroShare API complete */
|
|
|
|
bool ok = insertGroupData(data);
|
|
|
|
mStateHelper->setLoading(mTokenTypeGroupData, false);
|
|
|
|
if (ok) {
|
|
mSubscribeFlags = data->mMeta.mSubscribeFlags;
|
|
|
|
mGroupName = QString::fromUtf8(data->mMeta.mGroupName.c_str());
|
|
groupNameChanged(mGroupName);
|
|
} else {
|
|
std::cerr << "GxsMessageFramePostWidget::loadGroupData() ERROR Not just one Group";
|
|
std::cerr << std::endl;
|
|
|
|
mStateHelper->clear(mTokenTypeGroupData);
|
|
|
|
mGroupName.clear();
|
|
groupNameChanged(mGroupName);
|
|
}
|
|
|
|
mStateHelper->setActive(mTokenTypeGroupData, ok);
|
|
|
|
emit groupChanged(this);
|
|
|
|
delete data;
|
|
|
|
}, this );
|
|
});
|
|
|
|
}
|
|
|
|
void GxsMessageFramePostWidget::loadAllPosts()
|
|
{
|
|
mNavigatePendingMsgId.clear();
|
|
|
|
/* Request all posts */
|
|
|
|
if (mFillThread) {
|
|
/* Stop current fill thread */
|
|
GxsMessageFramePostThread *thread = mFillThread;
|
|
mFillThread = NULL;
|
|
thread->stop(false);
|
|
|
|
mStateHelper->setLoading(mTokenTypeAllPosts, false);
|
|
}
|
|
|
|
clearPosts();
|
|
|
|
if (groupId().isNull()) {
|
|
mStateHelper->setActive(mTokenTypeAllPosts, false);
|
|
mStateHelper->setLoading(mTokenTypeAllPosts, false);
|
|
mStateHelper->clear(mTokenTypeAllPosts);
|
|
emit groupChanged(this);
|
|
return;
|
|
}
|
|
|
|
mStateHelper->setLoading(mTokenTypeAllPosts, true);
|
|
emit groupChanged(this);
|
|
|
|
RsThread::async([this]()
|
|
{
|
|
std::vector<RsGxsGenericMsgData*> posts;
|
|
getAllMsgData(posts);
|
|
|
|
RsQThreadUtils::postToObject( [posts,this]()
|
|
{
|
|
/* Here it goes any code you want to be executed on the Qt Gui
|
|
* thread, for example to update the data model with new information
|
|
* after a blocking call to RetroShare API complete */
|
|
|
|
mStateHelper->setActive(mTokenTypeAllPosts, true);
|
|
|
|
if (useThread()) {
|
|
/* Create fill thread */
|
|
mFillThread = new GxsMessageFramePostThread(posts,this);
|
|
|
|
// connect thread
|
|
connect(mFillThread, SIGNAL(finished()), this, SLOT(fillThreadFinished()), Qt::BlockingQueuedConnection);
|
|
connect(mFillThread, SIGNAL(addPost(QVariant,bool,int,int)), this, SLOT(fillThreadAddPost(QVariant,bool,int,int)), Qt::BlockingQueuedConnection);
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostWidget::loadAllPosts() Start fill thread" << std::endl;
|
|
#endif
|
|
|
|
/* Start thread */
|
|
mFillThread->start();
|
|
}
|
|
else
|
|
{
|
|
insertAllPosts(posts, NULL);
|
|
|
|
mStateHelper->setLoading(mTokenTypeAllPosts, false);
|
|
|
|
if (!mNavigatePendingMsgId.isNull())
|
|
{
|
|
navigate(mNavigatePendingMsgId);
|
|
|
|
mNavigatePendingMsgId.clear();
|
|
}
|
|
|
|
// don't forget to delete the posts
|
|
|
|
for(auto& ppost:posts)
|
|
delete ppost;
|
|
}
|
|
|
|
emit groupChanged(this);
|
|
|
|
}, this );
|
|
});
|
|
|
|
}
|
|
|
|
void GxsMessageFramePostWidget::loadPosts(const std::set<RsGxsMessageId>& msgIds)
|
|
{
|
|
mNavigatePendingMsgId.clear();
|
|
|
|
if (groupId().isNull())
|
|
{
|
|
mStateHelper->setActive(mTokenTypePosts, false);
|
|
mStateHelper->setLoading(mTokenTypePosts, false);
|
|
mStateHelper->clear(mTokenTypePosts);
|
|
emit groupChanged(this);
|
|
return;
|
|
}
|
|
|
|
if (msgIds.empty())
|
|
return;
|
|
|
|
mStateHelper->setLoading(mTokenTypePosts, true);
|
|
emit groupChanged(this);
|
|
|
|
RsThread::async([this,msgIds]()
|
|
{
|
|
std::vector<RsGxsGenericMsgData*> posts;
|
|
|
|
getMsgData(msgIds,posts);
|
|
|
|
RsQThreadUtils::postToObject( [posts,this]()
|
|
{
|
|
/* Here it goes any code you want to be executed on the Qt Gui
|
|
* thread, for example to update the data model with new information
|
|
* after a blocking call to RetroShare API complete */
|
|
|
|
mStateHelper->setActive(mTokenTypePosts, true);
|
|
|
|
insertPosts(posts);
|
|
|
|
mStateHelper->setLoading(mTokenTypePosts, false);
|
|
emit groupChanged(this);
|
|
|
|
if (!mNavigatePendingMsgId.isNull())
|
|
{
|
|
navigate(mNavigatePendingMsgId);
|
|
|
|
mNavigatePendingMsgId.clear();
|
|
}
|
|
|
|
// don't forget to delete posts.
|
|
|
|
for(auto& post:posts)
|
|
delete post;
|
|
|
|
}, this );
|
|
});
|
|
}
|
|
|
|
/**************************************************************/
|
|
/** GxsMessageFramePostThread *********************************/
|
|
/**************************************************************/
|
|
|
|
GxsMessageFramePostThread::GxsMessageFramePostThread(const std::vector<RsGxsGenericMsgData*>& posts,GxsMessageFramePostWidget *parent)
|
|
: QThread(parent), mPosts(posts), mParent(parent)
|
|
{
|
|
mStopped = false;
|
|
}
|
|
|
|
GxsMessageFramePostThread::~GxsMessageFramePostThread()
|
|
{
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostThread::~GxsMessageFramePostThread" << std::endl;
|
|
#endif
|
|
}
|
|
|
|
void GxsMessageFramePostThread::stop(bool waitForStop)
|
|
{
|
|
if (waitForStop)
|
|
disconnect();
|
|
|
|
|
|
mStopped = true;
|
|
QApplication::processEvents();
|
|
|
|
if (waitForStop) {
|
|
wait();
|
|
}
|
|
}
|
|
|
|
void GxsMessageFramePostThread::run()
|
|
{
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostThread::run()" << std::endl;
|
|
#endif
|
|
|
|
mParent->insertAllPosts(mPosts,this);
|
|
|
|
for(auto& ppost:mPosts)
|
|
delete ppost;
|
|
|
|
mPosts.clear(); // dont keep deleted pointers
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
std::cerr << "GxsMessageFramePostThread::run() stopped: " << (stopped() ? "yes" : "no") << std::endl;
|
|
#endif
|
|
}
|
|
|
|
void GxsMessageFramePostThread::emitAddPost(const QVariant &post, bool related, int current, int count)
|
|
{
|
|
emit addPost(post, related, current, count);
|
|
}
|