Piece.cc 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "Piece.h"
  36. #include "Util.h"
  37. #include "BitfieldManFactory.h"
  38. #include "BitfieldMan.h"
  39. #include "A2STR.h"
  40. #include "Util.h"
  41. #ifdef ENABLE_MESSAGE_DIGEST
  42. # include "messageDigest.h"
  43. #endif // ENABLE_MESSAGE_DIGEST
  44. namespace aria2 {
  45. Piece::Piece():index(0), length(0), _blockLength(BLOCK_LENGTH), bitfield(0)
  46. #ifdef ENABLE_MESSAGE_DIGEST
  47. , _nextBegin(0)
  48. #endif // ENABLE_MESSAGE_DIGEST
  49. {}
  50. Piece::Piece(size_t index, size_t length, size_t blockLength):index(index), length(length), _blockLength(blockLength)
  51. #ifdef ENABLE_MESSAGE_DIGEST
  52. , _nextBegin(0)
  53. #endif // ENABLE_MESSAGE_DIGEST
  54. {
  55. bitfield =
  56. BitfieldManFactory::getFactoryInstance()->createBitfieldMan(_blockLength, length);
  57. }
  58. Piece::Piece(const Piece& piece) {
  59. index = piece.index;
  60. length = piece.length;
  61. _blockLength = piece._blockLength;
  62. if(piece.bitfield == 0) {
  63. bitfield = 0;
  64. } else {
  65. bitfield = new BitfieldMan(*piece.bitfield);
  66. }
  67. #ifdef ENABLE_MESSAGE_DIGEST
  68. _nextBegin = piece._nextBegin;
  69. // TODO Is this OK?
  70. _mdctx = piece._mdctx;
  71. #endif // ENABLE_MESSAGE_DIGEST
  72. }
  73. Piece::~Piece()
  74. {
  75. delete bitfield;
  76. }
  77. Piece& Piece::operator=(const Piece& piece)
  78. {
  79. if(this != &piece) {
  80. index = piece.index;
  81. length = piece.length;
  82. delete bitfield;
  83. if(piece.bitfield) {
  84. bitfield = new BitfieldMan(*piece.bitfield);
  85. } else {
  86. bitfield = 0;
  87. }
  88. }
  89. return *this;
  90. }
  91. bool Piece::operator==(const Piece& piece) const
  92. {
  93. return index == piece.index;
  94. }
  95. bool Piece::operator<(const Piece& piece) const
  96. {
  97. return index < piece.index;
  98. }
  99. void Piece::completeBlock(size_t blockIndex) {
  100. bitfield->setBit(blockIndex);
  101. bitfield->unsetUseBit(blockIndex);
  102. }
  103. void Piece::clearAllBlock() {
  104. bitfield->clearAllBit();
  105. bitfield->clearAllUseBit();
  106. }
  107. void Piece::setAllBlock() {
  108. bitfield->setAllBit();
  109. }
  110. bool Piece::pieceComplete() const {
  111. return bitfield->isAllBitSet();
  112. }
  113. size_t Piece::countBlock() const
  114. {
  115. return bitfield->countBlock();
  116. }
  117. size_t Piece::getBlockLength(size_t index) const
  118. {
  119. return bitfield->getBlockLength(index);
  120. }
  121. size_t Piece::getBlockLength() const
  122. {
  123. return bitfield->getBlockLength();
  124. }
  125. const unsigned char* Piece::getBitfield() const
  126. {
  127. return bitfield->getBitfield();
  128. }
  129. size_t Piece::getBitfieldLength() const
  130. {
  131. return bitfield->getBitfieldLength();
  132. }
  133. bool Piece::isBlockUsed(size_t index) const
  134. {
  135. return bitfield->isUseBitSet(index);
  136. }
  137. void Piece::cancelBlock(size_t blockIndex) {
  138. bitfield->unsetUseBit(blockIndex);
  139. }
  140. size_t Piece::countCompleteBlock() const
  141. {
  142. return bitfield->countBlock()-bitfield->countMissingBlock();
  143. }
  144. bool Piece::hasBlock(size_t blockIndex) const
  145. {
  146. return bitfield->isBitSet(blockIndex);
  147. }
  148. bool Piece::getMissingUnusedBlockIndex(size_t& index) const
  149. {
  150. if(bitfield->getFirstMissingUnusedIndex(index)) {
  151. bitfield->setUseBit(index);
  152. return true;
  153. } else {
  154. return false;
  155. }
  156. }
  157. bool Piece::getMissingBlockIndex(size_t& index) const
  158. {
  159. if(bitfield->getMissingIndex(index)) {
  160. bitfield->setUseBit(index);
  161. return true;
  162. } else {
  163. return false;
  164. }
  165. }
  166. bool Piece::getFirstMissingBlockIndexWithoutLock(size_t& index) const
  167. {
  168. return bitfield->getFirstMissingIndex(index);
  169. }
  170. bool Piece::getAllMissingBlockIndexes(std::deque<size_t>& indexes) const {
  171. return bitfield->getAllMissingIndexes(indexes);
  172. }
  173. std::string Piece::toString() const {
  174. return "piece: index="+Util::itos(index)+", length="+Util::itos(length);
  175. }
  176. void Piece::reconfigure(size_t length)
  177. {
  178. delete bitfield;
  179. this->length = length;
  180. bitfield =
  181. BitfieldManFactory::getFactoryInstance()->createBitfieldMan(_blockLength, length);
  182. }
  183. void Piece::setBitfield(const unsigned char* bitfield, size_t len)
  184. {
  185. this->bitfield->setBitfield(bitfield, len);
  186. }
  187. size_t Piece::getCompletedLength()
  188. {
  189. return bitfield->getCompletedLength();
  190. }
  191. #ifdef ENABLE_MESSAGE_DIGEST
  192. void Piece::setHashAlgo(const std::string& algo)
  193. {
  194. _hashAlgo = algo;
  195. }
  196. bool Piece::updateHash(uint32_t begin, const unsigned char* data, size_t dataLength)
  197. {
  198. if(_hashAlgo.empty()) {
  199. return false;
  200. }
  201. if(begin == _nextBegin && _nextBegin+dataLength <= length) {
  202. if(_mdctx.isNull()) {
  203. _mdctx.reset(new MessageDigestContext());
  204. _mdctx->trySetAlgo(_hashAlgo);
  205. _mdctx->digestInit();
  206. }
  207. _mdctx->digestUpdate(data, dataLength);
  208. _nextBegin += dataLength;
  209. return true;
  210. } else {
  211. return false;
  212. }
  213. }
  214. bool Piece::isHashCalculated() const
  215. {
  216. return !_mdctx.isNull() && _nextBegin == length;
  217. }
  218. // TODO should be getHashString()
  219. std::string Piece::getHashString()
  220. {
  221. if(_mdctx.isNull()) {
  222. return A2STR::NIL;
  223. } else {
  224. return Util::toHex(_mdctx->digestFinal());
  225. }
  226. }
  227. void Piece::destroyHashContext()
  228. {
  229. _mdctx.reset();
  230. _nextBegin = 0;
  231. }
  232. #endif // ENABLE_MESSAGE_DIGEST
  233. } // namespace aria2