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

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 ".baseresource.h"
  21. #include "Communicator.h"
  22. #include "BufferMgr.h"
  23. namespace NPLayer1 {
  24. BaseResource::BaseResource(Communicator* c) : 
  25. comm(c), bInited(FALSE), spIPList(NULL), spIPListSize(0), 
  26. blockIDArray(NULL), blockMapArray(NULL), blockMapSize(0), 
  27. blocks4Play(1), bufferMgr(NULL)
  28. {
  29. }
  30. BaseResource::~BaseResource(void) {
  31. // 此处不能调用纯虚函数
  32. }
  33. void BaseResource::UninitEx() {
  34. delete [] blockMapArray;
  35. delete [] blockIDArray;
  36. delete [] spIPList;
  37. blockMapArray = blockIDArray = NULL;
  38. spIPList = NULL;
  39. }
  40. // 复制全部区间列表
  41. void BaseResource::GetAllIntervals(BlockInterval* targetArray, UINT8& size) {
  42. allIntervals.CopyIntervalArray(targetArray, size);
  43. };
  44. // 发送给TS/NP的区间列表
  45. void BaseResource::GetDiffIntervals(BlockInterval* targetArray, UINT8& size, bool forTS, bool getInc) {
  46. if(forTS) {
  47. if(getInc)
  48. csIncIntervals.CopyIntervalArray(targetArray, size);
  49. else
  50. csDecIntervals.CopyIntervalArray(targetArray, size);
  51. }
  52. else {
  53. if(getInc)
  54. p2pIncIntervals.CopyIntervalArray(targetArray, size);
  55. else
  56. p2pDecIntervals.CopyIntervalArray(targetArray, size);
  57. }
  58. };
  59. // 清空发送给TS/NP的增量区间列表
  60. void BaseResource::ClearDiffIntervals(bool forTS) {
  61. if(forTS) {
  62. csIncIntervals.Clear();
  63. csDecIntervals.Clear();
  64. }
  65. else {
  66. p2pIncIntervals.Clear();
  67. p2pDecIntervals.Clear();
  68. }
  69. };
  70. P2P_RETURN_TYPE BaseResource::GetBlock(UINT blockID, UINT& blockSize, LPVOID data) {
  71. blockSize = 0;
  72. if(!bInited)
  73. return PRT_NOT_INIT;
  74. if(!data)
  75. return PRT_WRONG_ARG;
  76. if(blockID == UINT_MAX)
  77. return PRT_BLOCK_NOTFOUND;
  78. CriticalSection::Owner lock(dataLocker);
  79. // 查找此块在虚拟缓冲区中的编号
  80. UINT blockIndex = FindBlockIndex(blockID);
  81. // 如果找到了,相应的根据此编号得知此块的大小
  82. // 然后根据虚拟缓冲区与实际缓冲区的对应表,查找它在实际缓冲区的位置,并读取数据
  83. if(blockIndex != UINT_MAX) {
  84. // 此块的大小,如果是最后一块,则大小不是BLOCK_SIZE
  85. blockSize = BLOCK_SIZE;
  86. P2P_RETURN_TYPE ret = bufferMgr->GetIndexData(blockMapArray[blockIndex], 0, data, blockSize);
  87. if(ret < PRT_OK)
  88. return ret;
  89. return PRT_OK;
  90. }
  91. return PRT_BLOCK_NOTFOUND;
  92. }
  93. P2P_RETURN_TYPE BaseResource::PutBlock(UINT blockID, UINT blockSize, PBYTE data) {
  94. if(!data || !bInited)
  95. return PRT_WRONG_ARG;
  96. CriticalSection::Owner lock(dataLocker);
  97. assert(blockID != UINT_MAX);
  98. // 已经有此块,呵呵
  99. if(allIntervals.FindBlock(blockID)) {
  100. comm->logFile.StatusOut("Duplicate Block!");
  101. return PRT_OK;
  102. }
  103.     // 检查虚拟缓冲区里是否还有空位置,如果没有就执行强制替换
  104.     UINT32 emptyIndex = bufferMgr->GetEmptyIndex(rand(&comm->ctx));
  105. assert(emptyIndex != UINT_MAX);
  106. comm->logFile.StatusOut("empty space in buffermgr %d.", emptyIndex);
  107.     // 查找一个可用的位置(空的,或者可以替换的)
  108.     UINT replacedBlockID = UINT_MAX;
  109.     UINT replacableIndex = GetReplacableBlock(blockID, replacedBlockID);
  110. if(replacableIndex == UINT_MAX) {
  111. bufferMgr->EraseIndex(emptyIndex);
  112. //assert(0);
  113. return PRT_BUFFER_FULL;
  114. }
  115. // 找到可以替换的块, 先删除掉
  116.     comm->logFile.StatusOut("%d replaced %d.", blockID, replacedBlockID);
  117.     DelBlock(replacedBlockID);
  118. // 将数据存储到实际的缓冲区
  119. P2P_RETURN_TYPE ret = bufferMgr->PutIndexData(emptyIndex, data, blockSize);
  120. if(ret < PRT_OK) {
  121. comm->logFile.StatusErr("Save data", GetLastError());
  122. // 如果存储失败,当然要释放空间
  123. bufferMgr->EraseIndex(emptyIndex);
  124. assert(0);
  125. return ret;
  126. }
  127. // 数据成功保存, 更新虚拟缓冲区管理数组
  128. blockIDArray[replacableIndex] = blockID;
  129.     // 设置实际缓冲区的位置
  130.     blockMapArray[replacableIndex] = emptyIndex;
  131. // 在区间列表中添加此块
  132. allIntervals.AddInterval(blockID, 1);
  133. csIncIntervals.AddInterval(blockID, 1);
  134. p2pIncIntervals.AddInterval(blockID, 1);
  135. // 区间发生变化
  136. comm->p2pMgr.m_bBlockIntervalHasChanged = true;
  137. return PRT_OK;
  138. }
  139. void BaseResource::DelBlock(UINT blockID) {
  140. CriticalSection::Owner lock(dataLocker);
  141.     if(blockID == UINT_MAX)
  142.         return;
  143. // 查找此块在虚拟缓冲区中的编号
  144. UINT blockIndex = FindBlockIndex(blockID);
  145.     if(blockIndex != UINT_MAX) {
  146. comm->logFile.StatusOut("Delete Block %d", blockID);
  147.     // 在实际缓冲区中删除此块
  148.     bufferMgr->EraseIndex(blockMapArray[blockIndex]);
  149. // 在区间列表中删除要替换的块
  150. allIntervals.DelInterval(blockIDArray[blockIndex], 1);
  151. csDecIntervals.AddInterval(blockIDArray[blockIndex], 1);
  152. p2pDecIntervals.AddInterval(blockIDArray[blockIndex], 1);
  153.     // 在虚拟缓冲区中删除此块
  154.         blockMapArray[blockIndex] = UINT_MAX;
  155.     blockIDArray[blockIndex] = UINT_MAX;
  156.     }
  157. }
  158. // 在虚拟缓冲区寻找空块或者可以替换的块,返回其在虚拟缓冲区的位置
  159. UINT BaseResource::GetReplacableBlock(const UINT newBlockID, UINT& replacedBlockID) {
  160.     replacedBlockID = UINT_MAX;
  161. // 1. 查找一个未使用的位置,如果找到了,就直接使用
  162. UINT replacableIndex = FindBlockIndex(UINT_MAX);
  163. comm->logFile.StatusOut("find empty space in virtual buffer %d", replacableIndex);
  164. if(replacableIndex != UINT_MAX) {
  165. replacedBlockID = blockIDArray[replacableIndex];
  166. return replacableIndex;
  167. }
  168. // 2. 没找到未使用的, 先后尝试替换minBlockID和maxBlockID
  169. UINT minBlockID = GetMinBlockID();
  170. if(GetPlayingBlock(false) > minBlockID) {
  171. // 由于现在只有直播,而直播必定是顺序播放的,那么min只要存在,就可以替换
  172.         replacedBlockID = minBlockID;
  173. }
  174. else {
  175. // 因为是半闭半开区间,所以maxBlockID要减去1才是最后一块的ID
  176. UINT maxBlockID = GetMaxBlockID();
  177. maxBlockID--;
  178. if(maxBlockID > newBlockID && maxBlockID > GetPlayingBlock(true))
  179. replacedBlockID = maxBlockID;
  180. }
  181. // 3. 如果找到了可以替换的min/max,查找其在虚拟缓冲区中的位置
  182. if(replacedBlockID != UINT_MAX) {
  183. replacableIndex = FindBlockIndex(replacedBlockID);
  184. if(replacableIndex == UINT_MAX) {
  185. // 如果没找到对应的index,说明区间列表出现问题!!!!
  186. // 只能重新生成区间列表了
  187. comm->logFile.StatusOut("no max block, rebuild interval array.");
  188. assert(0);
  189. allIntervals.Clear();
  190. for(UINT i = 0; i < blockMapSize; ++i)
  191. allIntervals.AddInterval(blockIDArray[i], 1);
  192. // 下次再重试吧
  193. replacedBlockID = UINT_MAX;
  194. return UINT_MAX;
  195. }
  196. }
  197. return replacableIndex;
  198. }
  199. // 针对某个NP的区间列表,获取可以下载的区间列表
  200. void BaseResource::GetDownloadableArray(const IntervalArray& anotherNP, IntervalArray& result) {
  201. result.Clear();
  202. // 从当前播放的块到可以暂停下载的块是允许下载的最大区间
  203. IntervalArray downloadable;
  204. // 允许下载区间大小不能超过虚拟缓冲区的大小
  205. downloadable.AddInterval(GetPlayingBlock(), DEFAULT_SPACE/BLOCK_SIZE);
  206. // 允许下载的区间和现有块的区间之差就是本机需要下载但是却没有的块
  207. downloadable.DeleteArray(allIntervals);
  208. // 本机需要的块和对方拥有的块做&运算,结果就是对方拥有而本机需要的块
  209. downloadable.AndOperator(anotherNP, result);
  210. }
  211. P2P_RETURN_TYPE BaseResource::ParseSPList(string strSPList) {
  212. // 不能为空
  213. if(strSPList.empty())
  214. return PRT_WRONG_ARG;
  215. // 临时中转的列表
  216. list<NormalAddress> spList;
  217. istrstream is(strSPList.data());
  218. string line;
  219. string ip;
  220. string port;
  221. NormalAddress tmpAddr;
  222. while(getline(is,line, '/')) {
  223. if(!line.length())
  224. continue;
  225. int index = line.find(':');
  226. if(index == -1)
  227. continue;
  228. ip = line.substr(0, index);
  229. port = line.substr(index+1, line.length()-index-1);
  230. tmpAddr.sin_addr.s_addr = TE_GetIP(ip.data(), TRUE);
  231. if(tmpAddr.sin_addr.s_addr == INADDR_NONE)
  232. continue;
  233. tmpAddr.sin_port = htons(static_cast<USHORT>(atoi(port.data())));
  234. spList.push_back(tmpAddr);
  235. }
  236. spIPListSize = min(0xff, spList.size());
  237. // 必须至少包含一个SP的地址
  238. if(spIPListSize == 0)
  239. return PRT_WRONG_ARG;
  240. spIPList = new NormalAddress[spList.size()];
  241. if(!spIPList)
  242. return PRT_ALLOC;
  243. // 复制到实际使用的列表
  244. copy(spList.begin(), spList.end(), spIPList);
  245. return PRT_OK;
  246. }
  247. // 查找一个未使用的块ID,并返回此块在虚拟缓冲区中的Index
  248. UINT BaseResource::FindBlockIndex(UINT blockID) {
  249. // 首先在区间表中查询,速度非常快!
  250. // 如果BlockID等于UINT_MAX说明是要寻找空位,则交给后面的find进行查找
  251. if(blockID != UINT_MAX && !allIntervals.FindBlock(blockID)) {
  252. #ifdef _DEBUG
  253. UINT* index = find(blockIDArray, blockIDArray+blockMapSize, blockID);
  254. assert(index == blockIDArray+blockMapSize);
  255. #endif
  256. return UINT_MAX;
  257. }
  258. // 如果确认存在,再查询此块的Index
  259. UINT* index = find(blockIDArray, blockIDArray+blockMapSize, blockID);
  260. if(index == blockIDArray+blockMapSize)
  261. return UINT_MAX;
  262. return index-blockIDArray;
  263. }
  264. }