BitfieldMan.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. #ifndef D_BITFIELD_MAN_H
  36. #define D_BITFIELD_MAN_H
  37. #include "common.h"
  38. #include <vector>
  39. #include "SharedHandle.h"
  40. namespace aria2 {
  41. class BitfieldMan {
  42. private:
  43. int32_t blockLength_;
  44. int64_t totalLength_;
  45. size_t bitfieldLength_;
  46. size_t blocks_;
  47. bool filterEnabled_;
  48. unsigned char* bitfield_;
  49. unsigned char* useBitfield_;
  50. unsigned char* filterBitfield_;
  51. // for caching
  52. size_t cachedNumMissingBlock_;
  53. size_t cachedNumFilteredBlock_;
  54. int64_t cachedCompletedLength_;
  55. int64_t cachedFilteredCompletedLength_;
  56. int64_t cachedFilteredTotalLength_;
  57. bool setBitInternal(unsigned char* bitfield, size_t index, bool on);
  58. bool setFilterBit(size_t index);
  59. size_t getStartIndex(size_t index) const;
  60. size_t getEndIndex(size_t index) const;
  61. int64_t getCompletedLength(bool useFilter) const;
  62. // If filterBitfield_ is 0, allocate bitfieldLength_ bytes to it and
  63. // set 0 to all bytes.
  64. void ensureFilterBitfield();
  65. public:
  66. // [startIndex, endIndex)
  67. struct Range {
  68. size_t startIndex;
  69. size_t endIndex;
  70. Range(size_t startIndex = 0, size_t endIndex = 0);
  71. size_t getSize() const;
  72. size_t getMidIndex() const;
  73. bool operator<(const Range& range) const;
  74. bool operator==(const Range& range) const;
  75. };
  76. public:
  77. BitfieldMan(int32_t blockLength, int64_t totalLength);
  78. BitfieldMan(const BitfieldMan& bitfieldMan);
  79. ~BitfieldMan();
  80. BitfieldMan& operator=(const BitfieldMan& bitfieldMan);
  81. int32_t getBlockLength() const
  82. {
  83. return blockLength_;
  84. }
  85. int32_t getLastBlockLength() const;
  86. int32_t getBlockLength(size_t index) const;
  87. int64_t getTotalLength() const { return totalLength_; }
  88. // Returns true iff there is a bit index which is set in bitfield_,
  89. // but not set in this object.
  90. //
  91. // affected by filter
  92. bool hasMissingPiece(const unsigned char* bitfield, size_t len) const;
  93. // affected by filter
  94. bool getFirstMissingUnusedIndex(size_t& index) const;
  95. // Appends at most n missing unused index to out. This function
  96. // doesn't delete existing elements in out. Returns the number of
  97. // appended elements.
  98. //
  99. // affected by filter
  100. size_t getFirstNMissingUnusedIndex(std::vector<size_t>& out, size_t n) const;
  101. // Stores first missing bit index to index. Returns true if such bit
  102. // index is found. Otherwise returns false.
  103. //
  104. // affected by filter
  105. bool getFirstMissingIndex(size_t& index) const;
  106. // Stores missing bit index to index. index is selected so that it
  107. // divides longest missing bit subarray into 2 equally sized
  108. // subarray. Set bits in ignoreBitfield are excluded. Returns true
  109. // if such bit index is found. Otherwise returns false.
  110. //
  111. // affected by filter
  112. bool getSparseMissingUnusedIndex
  113. (size_t& index,
  114. int32_t minSplitSize,
  115. const unsigned char* ignoreBitfield,
  116. size_t ignoreBitfieldLength) const;
  117. // Stores missing bit index to index. This function first try to
  118. // select smallest index starting offsetIndex in the order:
  119. // offsetIndex, offsetIndex+base**1, offsetIndex+base**2, ... For
  120. // each sequence [offsetIndex+base**i, offsetIndex+base**(i+1))
  121. // (first sequence is special case and it is [offsetIndex,
  122. // offsetIndex+base)) test isBitSet() and isUseBitSet() from the
  123. // beginning of the sequence. If isBitSet(x) == false is found
  124. // first, select x as index. If isUseBit(x) == true is found first
  125. // or isBitSet(x) == false is not found, then quit search and go to
  126. // the next sequence(increment i). If no index found in the above
  127. // algorithm, call getSparseMissingUnusedIndex() and return its
  128. // result.
  129. //
  130. // affected by filter
  131. bool getGeomMissingUnusedIndex
  132. (size_t& index,
  133. int32_t minSplitSize,
  134. const unsigned char* ignoreBitfield,
  135. size_t ignoreBitfieldLength,
  136. double base,
  137. size_t offsetIndex) const;
  138. // Stores missing bit index to index. This function selects smallest
  139. // index of missing piece, considering minSplitSize. Set bits in
  140. // ignoreBitfield are excluded. Returns true if such bit index is
  141. // found. Otherwise returns false.
  142. //
  143. // affected by filter
  144. bool getInorderMissingUnusedIndex
  145. (size_t& index,
  146. int32_t minSplitSize,
  147. const unsigned char* ignoreBitfield,
  148. size_t ignoreBitfieldLength) const;
  149. // affected by filter
  150. bool getAllMissingIndexes(unsigned char* misbitfield, size_t mislen) const;
  151. // affected by filter
  152. bool getAllMissingIndexes(unsigned char* misbitfield, size_t mislen,
  153. const unsigned char* bitfield, size_t len) const;
  154. // affected by filter
  155. bool getAllMissingUnusedIndexes(unsigned char* misbitfield, size_t mislen,
  156. const unsigned char* bitfield,
  157. size_t len) const;
  158. // affected by filter
  159. size_t countMissingBlock() const;
  160. // affected by filter
  161. size_t countMissingBlockNow() const;
  162. bool setUseBit(size_t index);
  163. bool unsetUseBit(size_t index);
  164. bool setBit(size_t index);
  165. bool unsetBit(size_t index);
  166. bool isBitSet(size_t index) const;
  167. bool isUseBitSet(size_t index) const;
  168. // affected by filter
  169. bool isFilteredAllBitSet() const;
  170. bool isAllBitSet() const;
  171. bool isAllFilterBitSet() const;
  172. // Returns true if index bit is set in filterBitfield_. If
  173. // filterBitfield_ is NULL, returns false.
  174. bool isFilterBitSet(size_t index) const;
  175. const unsigned char* getBitfield() const
  176. {
  177. return bitfield_;
  178. }
  179. size_t getBitfieldLength() const
  180. {
  181. return bitfieldLength_;
  182. }
  183. // affected by filter
  184. size_t countFilteredBlock() const
  185. {
  186. return cachedNumFilteredBlock_;
  187. }
  188. size_t countBlock() const
  189. {
  190. return blocks_;
  191. }
  192. // affected by filter
  193. size_t countFilteredBlockNow() const;
  194. size_t getMaxIndex() const
  195. {
  196. return blocks_-1;
  197. }
  198. void setBitfield(const unsigned char* bitfield, size_t bitfieldLength);
  199. void clearAllBit();
  200. void setAllBit();
  201. void clearAllUseBit();
  202. void setAllUseBit();
  203. void addFilter(int64_t offset, int64_t length);
  204. void removeFilter(int64_t offset, int64_t length);
  205. // Add filter not in the range of [offset, offset+length) bytes
  206. void addNotFilter(int64_t offset, int64_t length);
  207. // Clears filter and disables filter
  208. void clearFilter();
  209. void enableFilter();
  210. void disableFilter();
  211. bool isFilterEnabled() const
  212. {
  213. return filterEnabled_;
  214. }
  215. // affected by filter
  216. int64_t getFilteredTotalLength() const
  217. {
  218. return cachedFilteredTotalLength_;
  219. }
  220. // affected by filter
  221. int64_t getFilteredTotalLengthNow() const;
  222. int64_t getCompletedLength() const
  223. {
  224. return cachedCompletedLength_;
  225. }
  226. int64_t getCompletedLengthNow() const;
  227. // affected by filter
  228. int64_t getFilteredCompletedLength() const
  229. {
  230. return cachedFilteredCompletedLength_;
  231. }
  232. // affected by filter
  233. int64_t getFilteredCompletedLengthNow() const;
  234. void updateCache();
  235. bool isBitRangeSet(size_t startIndex, size_t endIndex) const;
  236. void unsetBitRange(size_t startIndex, size_t endIndex);
  237. void setBitRange(size_t startIndex, size_t endIndex);
  238. bool isBitSetOffsetRange(int64_t offset, int64_t length) const;
  239. // Returns completed length in bytes in range [offset,
  240. // offset+length). This function will not affected by filter.
  241. int64_t getOffsetCompletedLength(int64_t offset, int64_t length) const;
  242. int64_t getMissingUnusedLength(size_t startingIndex) const;
  243. const unsigned char* getFilterBitfield() const
  244. {
  245. return filterBitfield_;
  246. }
  247. };
  248. } // namespace aria2
  249. #endif // D_BITFIELD_MAN_H