mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
moved update of comment count to libretroshare
This commit is contained in:
parent
e25d8e50fc
commit
c970e94221
@ -66,40 +66,6 @@ void RsGxsChannelPostsModel::setMode(TreeMode mode)
|
|||||||
triggerViewUpdate(true,true);
|
triggerViewUpdate(true,true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RsGxsChannelPostsModel::computeCommentCounts( std::vector<RsGxsChannelPost>& posts, std::vector<RsGxsComment>& comments)
|
|
||||||
{
|
|
||||||
// Store posts IDs in a std::map to avoid a quadratic cost
|
|
||||||
|
|
||||||
std::map<RsGxsMessageId,uint32_t> post_indices;
|
|
||||||
|
|
||||||
for(uint32_t i=0;i<posts.size();++i)
|
|
||||||
{
|
|
||||||
post_indices[posts[i].mMeta.mMsgId] = i;
|
|
||||||
posts[i].mCommentCount = 0; // should be 0 already, but we secure that value.
|
|
||||||
posts[i].mUnreadCommentCount = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// now look into comments and increase the count
|
|
||||||
|
|
||||||
for(uint32_t i=0;i<comments.size();++i)
|
|
||||||
{
|
|
||||||
auto it = post_indices.find(comments[i].mMeta.mThreadId);
|
|
||||||
|
|
||||||
// This happens when because of sync periods, we receive
|
|
||||||
// the comments for a post, but not the post itself.
|
|
||||||
// In this case, the post the comment refers to is just not here.
|
|
||||||
// it->second>=posts.size() is impossible by construction, since post_indices
|
|
||||||
// is previously filled using posts ids.
|
|
||||||
|
|
||||||
if(it == post_indices.end())
|
|
||||||
continue;
|
|
||||||
|
|
||||||
++posts[it->second].mCommentCount;
|
|
||||||
|
|
||||||
if(IS_MSG_NEW(comments[i].mMeta.mMsgStatus))
|
|
||||||
++posts[it->second].mUnreadCommentCount;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void RsGxsChannelPostsModel::initEmptyHierarchy()
|
void RsGxsChannelPostsModel::initEmptyHierarchy()
|
||||||
@ -598,30 +564,23 @@ void RsGxsChannelPostsModel::update_posts(const RsGxsGroupId& group_id)
|
|||||||
|
|
||||||
RsGxsChannelGroup group = groups[0];
|
RsGxsChannelGroup group = groups[0];
|
||||||
|
|
||||||
// We use the heap because the arrays need to be stored accross async
|
std::vector<RsGxsChannelPost> *posts = new std::vector<RsGxsChannelPost>(); // We use the heap because the arrays need to be stored accross async
|
||||||
|
std::vector<RsGxsComment> comments ;
|
||||||
|
std::vector<RsGxsVote> votes ;
|
||||||
|
|
||||||
std::vector<RsGxsChannelPost> *posts = new std::vector<RsGxsChannelPost>();
|
if(!rsGxsChannels->getChannelAllContent(group_id, *posts,comments,votes))
|
||||||
std::vector<RsGxsComment> *comments = new std::vector<RsGxsComment>();
|
|
||||||
std::vector<RsGxsVote> *votes = new std::vector<RsGxsVote>();
|
|
||||||
|
|
||||||
if(!rsGxsChannels->getChannelAllContent(group_id, *posts,*comments,*votes))
|
|
||||||
{
|
{
|
||||||
std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve channel messages for channel " << group_id << std::endl;
|
std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve channel messages for channel " << group_id << std::endl;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
std::cerr << "Got channel all content for channel " << group_id << std::endl;
|
std::cerr << "Got channel all content for channel " << group_id << std::endl;
|
||||||
std::cerr << " posts : " << posts->size() << std::endl;
|
std::cerr << " posts : " << posts->size() << std::endl;
|
||||||
std::cerr << " comments: " << comments->size() << std::endl;
|
std::cerr << " comments: " << comments.size() << std::endl;
|
||||||
std::cerr << " votes : " << votes->size() << std::endl;
|
std::cerr << " votes : " << votes.size() << std::endl;
|
||||||
|
|
||||||
// This shouldn't be needed normally. We need it until a background process computes the number of comments per
|
|
||||||
// post and stores it in the service string. Since we request all data, this process isn't costing much anyway.
|
|
||||||
|
|
||||||
computeCommentCounts(*posts,*comments);
|
|
||||||
|
|
||||||
// 2 - update the model in the UI thread.
|
// 2 - update the model in the UI thread.
|
||||||
|
|
||||||
RsQThreadUtils::postToObject( [group,posts,comments,votes,this]()
|
RsQThreadUtils::postToObject( [group,posts,this]()
|
||||||
{
|
{
|
||||||
/* Here it goes any code you want to be executed on the Qt Gui
|
/* 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
|
* thread, for example to update the data model with new information
|
||||||
@ -632,8 +591,6 @@ void RsGxsChannelPostsModel::update_posts(const RsGxsGroupId& group_id)
|
|||||||
setPosts(group,*posts) ;
|
setPosts(group,*posts) ;
|
||||||
|
|
||||||
delete posts;
|
delete posts;
|
||||||
delete comments;
|
|
||||||
delete votes;
|
|
||||||
|
|
||||||
MainWindow::getPage(MainWindow::Channels)->setCursor(Qt::ArrowCursor) ;
|
MainWindow::getPage(MainWindow::Channels)->setCursor(Qt::ArrowCursor) ;
|
||||||
|
|
||||||
|
@ -821,19 +821,6 @@ void GxsChannelPostsWidgetWithModel::handleEvent_main_thread(std::shared_ptr<con
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Need to call this in order to get the actual comment count. The previous call only retrieves the message, since we supplied the message ID.
|
|
||||||
// another way to go would be to save the comment ids of the existing message and re-insert them before calling getChannelContent.
|
|
||||||
|
|
||||||
if(!rsGxsChannels->getChannelComments(grp_id,{ msg_id },comments))
|
|
||||||
{
|
|
||||||
RsErr() << " failed to retrieve message comment data for channel/msg " << grp_id << "/" << msg_id ;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Normally, there's a single post in the "post" array. The function below takes a full array of posts however.
|
|
||||||
|
|
||||||
RsGxsChannelPostsModel::computeCommentCounts(posts,comments);
|
|
||||||
|
|
||||||
// 2 - update the model in the UI thread.
|
// 2 - update the model in the UI thread.
|
||||||
|
|
||||||
RsQThreadUtils::postToObject( [post=posts[0],this]()
|
RsQThreadUtils::postToObject( [post=posts[0],this]()
|
||||||
|
Loading…
Reference in New Issue
Block a user