mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-18 05:50:39 -04:00
added trash in msgservice and trash folder in MessagesDialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3020 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
a3a75b7aea
commit
c8a805b8e7
13 changed files with 217 additions and 47 deletions
|
@ -199,6 +199,9 @@ int p3MsgService::checkOutgoingMessages()
|
|||
std::map<uint32_t, RsMsgItem *>::iterator mit;
|
||||
for(mit = msgOutgoing.begin(); mit != msgOutgoing.end(); mit++)
|
||||
{
|
||||
if (mit->second->msgFlags & RS_MSG_FLAGS_TRASH) {
|
||||
continue;
|
||||
}
|
||||
|
||||
/* find the certificate */
|
||||
std::string pid = mit->second->PeerId();
|
||||
|
@ -476,7 +479,7 @@ bool p3MsgService::getMessage(std::string mId, MessageInfo &msg)
|
|||
return true;
|
||||
}
|
||||
|
||||
void p3MsgService::getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxNew, unsigned int *pnOutbox, unsigned int *pnDraftbox, unsigned int *pnSentbox)
|
||||
void p3MsgService::getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxNew, unsigned int *pnOutbox, unsigned int *pnDraftbox, unsigned int *pnSentbox, unsigned int *pnTrashbox)
|
||||
{
|
||||
RsStackMutex stack(mMsgMtx); /********** STACK LOCKED MTX ******/
|
||||
|
||||
|
@ -485,6 +488,7 @@ void p3MsgService::getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxN
|
|||
if (pnOutbox) *pnOutbox = 0;
|
||||
if (pnDraftbox) *pnDraftbox = 0;
|
||||
if (pnSentbox) *pnSentbox = 0;
|
||||
if (pnTrashbox) *pnTrashbox = 0;
|
||||
|
||||
std::map<uint32_t, RsMsgItem *>::iterator mit;
|
||||
std::map<uint32_t, RsMsgItem *> *apMsg [2] = { &imsg, &msgOutgoing };
|
||||
|
@ -494,6 +498,10 @@ void p3MsgService::getMessageCount(unsigned int *pnInbox, unsigned int *pnInboxN
|
|||
MsgInfoSummary mis;
|
||||
initRsMIS(mit->second, mis);
|
||||
|
||||
if (mis.msgflags & RS_MSG_TRASH) {
|
||||
if (pnTrashbox) (*pnTrashbox)++;
|
||||
continue;
|
||||
}
|
||||
switch (mis.msgflags & RS_MSG_BOXMASK) {
|
||||
case RS_MSG_INBOX:
|
||||
if (pnInbox) (*pnInbox)++;
|
||||
|
@ -661,8 +669,7 @@ bool p3MsgService::MessageToDraft(MessageInfo &info)
|
|||
{
|
||||
uint32_t msgId = 0;
|
||||
if (info.msgId.empty() == false) {
|
||||
std::istringstream instream(info.msgId);
|
||||
instream >> msgId;
|
||||
msgId = atoi(info.msgId.c_str());
|
||||
}
|
||||
|
||||
if (msgId) {
|
||||
|
@ -679,11 +686,13 @@ bool p3MsgService::MessageToDraft(MessageInfo &info)
|
|||
|
||||
if (msgId) {
|
||||
// remove existing message
|
||||
RsMsgItem *existingMsg = imsg[msgId];
|
||||
if (existingMsg) {
|
||||
delete (existingMsg);
|
||||
std::map<uint32_t, RsMsgItem *>::iterator mit;
|
||||
mit = imsg.find(msgId);
|
||||
if (mit != imsg.end()) {
|
||||
RsMsgItem *mi = mit->second;
|
||||
imsg.erase(mit);
|
||||
delete mi;
|
||||
}
|
||||
imsg.erase(msgId);
|
||||
}
|
||||
/* STORE MsgID */
|
||||
imsg[msg->msgId] = msg;
|
||||
|
@ -699,6 +708,58 @@ bool p3MsgService::MessageToDraft(MessageInfo &info)
|
|||
return false;
|
||||
}
|
||||
|
||||
/* move message to trash based on the unique mid */
|
||||
bool p3MsgService::MessageToTrash(std::string mid, bool bTrash)
|
||||
{
|
||||
std::map<uint32_t, RsMsgItem *>::iterator mit;
|
||||
uint32_t msgId = atoi(mid.c_str());
|
||||
|
||||
bool bChanged = false;
|
||||
bool bFound = false;
|
||||
|
||||
{
|
||||
RsStackMutex stack(mMsgMtx); /********** STACK LOCKED MTX ******/
|
||||
|
||||
RsMsgItem *mi = NULL;
|
||||
|
||||
mit = imsg.find(msgId);
|
||||
if (mit != imsg.end()) {
|
||||
mi = mit->second;
|
||||
} else {
|
||||
mit = msgOutgoing.find(msgId);
|
||||
if (mit != msgOutgoing.end()) {
|
||||
mi = mit->second;
|
||||
}
|
||||
}
|
||||
|
||||
if (mi) {
|
||||
bFound = true;
|
||||
|
||||
if (bTrash) {
|
||||
if ((mi->msgFlags & RS_MSG_FLAGS_TRASH) == 0) {
|
||||
mi->msgFlags |= RS_MSG_FLAGS_TRASH;
|
||||
bChanged = true;
|
||||
}
|
||||
} else {
|
||||
if (mi->msgFlags & RS_MSG_FLAGS_TRASH) {
|
||||
mi->msgFlags &= ~RS_MSG_FLAGS_TRASH;
|
||||
bChanged = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (bChanged) {
|
||||
IndicateConfigChanged(); /**** INDICATE MSG CONFIG CHANGED! *****/
|
||||
|
||||
checkOutgoingMessages();
|
||||
|
||||
rsicontrol->getNotify().notifyListChange(NOTIFY_LIST_MESSAGELIST,NOTIFY_TYPE_MOD);
|
||||
}
|
||||
|
||||
return bFound;
|
||||
}
|
||||
|
||||
/****************************************/
|
||||
/****************************************/
|
||||
|
||||
|
@ -813,6 +874,10 @@ void p3MsgService::initRsMIS(RsMsgItem *msg, MsgInfoSummary &mis)
|
|||
{
|
||||
mis.msgflags |= RS_MSG_NEW;
|
||||
}
|
||||
if (msg->msgFlags & RS_MSG_FLAGS_TRASH)
|
||||
{
|
||||
mis.msgflags |= RS_MSG_TRASH;
|
||||
}
|
||||
|
||||
mis.srcId = msg->PeerId();
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue