MsgMgr.cpp
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:4k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #include "stdafx.h"
  20. #include "MsgMgr.h"
  21. CMsgMgr::CMsgMgr(void)
  22. : m_uMsgCounter(0)
  23. {
  24. }
  25. CMsgMgr::~CMsgMgr(void)
  26. {
  27. }
  28. MSGID CMsgMgr::CreateMsgID(UINT MsgFlags)
  29. {
  30. CAutoLock Lock(&m_CritSec);
  31.     m_uMsgCounter++;
  32. //MSGDATA *pMSGDATA = new MSGDATA;
  33. //pMSGDATA->MsgType = MsgType;
  34. //pMSGDATA->strMsg = _TEXT("");
  35. MSGDATA msg;
  36. msg.MsgFlags = MsgFlags;
  37. msg.strMsg = _TEXT("");
  38. msg.b_visited = FALSE;
  39. msg.m_updated_tickcount = 0;
  40. m_MsgMap.insert(MsgMap::value_type(m_uMsgCounter, msg));
  41. return m_uMsgCounter;
  42. }
  43. void CMsgMgr::DeleteMsgID(MSGID MsgID)
  44. {
  45. CAutoLock Lock(&m_CritSec);
  46. m_MsgMap.erase(MsgID);
  47. }
  48. void CMsgMgr::UpdateMessage(MSGID MsgID, const CString &strNewMsg, UINT msgFlags, MESSAGELEVEL msglv)
  49. {
  50. CAutoLock Lock(&m_CritSec);
  51. MsgMap::iterator itr = m_MsgMap.find(MsgID);
  52. if(itr != m_MsgMap.end())
  53. {
  54. //不能更新为较低等级的消息
  55. if(!IsMsgExpired(itr->second) && itr->second.m_msgLevel > msglv)
  56. return;
  57. itr->second.strMsg = strNewMsg;
  58. if(msgFlags != NOUPDATE)
  59. {
  60. itr->second.MsgFlags = msgFlags;
  61. itr->second.m_msgLevel = msglv;
  62. }
  63. itr->second.m_updated_tickcount = GetTickCount();
  64. }
  65. }
  66. void CMsgMgr::ClearMessage(MSGID MsgID)
  67. {
  68. CAutoLock Lock(&m_CritSec);
  69. MsgMap::iterator itr = m_MsgMap.find(MsgID);
  70. if(itr != m_MsgMap.end())
  71. {
  72. itr->second.strMsg.Empty();
  73. }
  74. }
  75. const CString CMsgMgr::PeerMessage(MSGID MsgID)
  76. {
  77. CString tmpstr;
  78. if(DispatchMessage(MsgID, tmpstr, GMF_NOVISITEDFLAG | GMF_NOCLEANFORCEFLAG))
  79. return tmpstr;
  80. else
  81. return _T("");
  82. }
  83. BOOL  CMsgMgr::IsMsgExpired(MSGDATA& msg)
  84. {
  85. if((msg.MsgFlags & TIMELESS) != TIMELESS)
  86. {
  87. int lifetime = msg.MsgFlags & (TIMELESS - 1);
  88. if(msg.m_updated_tickcount + lifetime*1000 < GetTickCount())
  89. return TRUE;
  90. }
  91. return FALSE;
  92. }
  93. BOOL  CMsgMgr::DispatchMessage(const MSGID MsgID, CString& strMsg, 
  94. const UINT getflags, UINT* p_bMsgFlags)
  95. {
  96. CAutoLock Lock(&m_CritSec);
  97. MsgMap::iterator itr = m_MsgMap.find(MsgID);
  98. if(itr != m_MsgMap.end())
  99. {
  100. if(IsMsgExpired(itr->second))
  101. {
  102. return FALSE;
  103. }
  104. if((getflags & GMF_NOOLDMSG) && (itr->second.b_visited == TRUE))
  105. return FALSE;
  106. //获得消息信息,包括消息的文本串和消息类型
  107. strMsg = itr->second.strMsg;
  108. if(p_bMsgFlags != NULL)
  109. *p_bMsgFlags = itr->second.MsgFlags;
  110. if(!(getflags & GMF_NOVISITEDFLAG))
  111. itr->second.b_visited = TRUE;
  112. if(!(getflags & GMF_NOCLEANFORCEFLAG))
  113. itr->second.MsgFlags &= (~(FORCESHOW | FORCEHIDE));
  114. return TRUE;
  115. }
  116. return FALSE;
  117. }
  118. UINT CMsgMgr::GetMsgNum()
  119. {
  120. CAutoLock Lock(&m_CritSec);
  121. UINT uMsgNum = (UINT) m_MsgMap.size();
  122. return uMsgNum;
  123. }
  124. void CMsgMgr::GetMsgIDArray(MSGID *pMsgIDArray)
  125. {
  126. CAutoLock Lock(&m_CritSec);
  127. int i = 0;
  128. MsgMap::iterator itr = NULL;
  129. for(itr=m_MsgMap.begin(); itr!=m_MsgMap.end(); itr++)
  130. {
  131. *(pMsgIDArray+i) = itr->first;
  132. i++;
  133. }
  134. }