BitfieldMan.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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. size_t blockLength_;
  44. uint64_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. uint64_t cachedCompletedLength_;
  55. uint64_t cachedFilteredCompletedLength_;
  56. uint64_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. uint64_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(size_t blockLength, uint64_t totalLength);
  78. BitfieldMan(const BitfieldMan& bitfieldMan);
  79. ~BitfieldMan();
  80. BitfieldMan& operator=(const BitfieldMan& bitfieldMan);
  81. size_t getBlockLength() const
  82. {
  83. return blockLength_;
  84. }
  85. size_t getLastBlockLength() const;
  86. size_t getBlockLength(size_t index) const;
  87. uint64_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. size_t minSplitSize,
  115. const unsigned char* ignoreBitfield,
  116. size_t ignoreBitfieldLength) const;
  117. // affected by filter
  118. bool getAllMissingIndexes(unsigned char* misbitfield, size_t mislen) const;
  119. // affected by filter
  120. bool getAllMissingIndexes(unsigned char* misbitfield, size_t mislen,
  121. const unsigned char* bitfield, size_t len) const;
  122. // affected by filter
  123. bool getAllMissingUnusedIndexes(unsigned char* misbitfield, size_t mislen,
  124. const unsigned char* bitfield,
  125. size_t len) const;
  126. // affected by filter
  127. size_t countMissingBlock() const;
  128. // affected by filter
  129. size_t countMissingBlockNow() const;
  130. bool setUseBit(size_t index);
  131. bool unsetUseBit(size_t index);
  132. bool setBit(size_t index);
  133. bool unsetBit(size_t index);
  134. bool isBitSet(size_t index) const;
  135. bool isUseBitSet(size_t index) const;
  136. // affected by filter
  137. bool isFilteredAllBitSet() const;
  138. bool isAllBitSet() const;
  139. bool isAllFilterBitSet() const;
  140. const unsigned char* getBitfield() const
  141. {
  142. return bitfield_;
  143. }
  144. size_t getBitfieldLength() const
  145. {
  146. return bitfieldLength_;
  147. }
  148. // affected by filter
  149. size_t countFilteredBlock() const
  150. {
  151. return cachedNumFilteredBlock_;
  152. }
  153. size_t countBlock() const
  154. {
  155. return blocks_;
  156. }
  157. // affected by filter
  158. size_t countFilteredBlockNow() const;
  159. size_t getMaxIndex() const
  160. {
  161. return blocks_-1;
  162. }
  163. void setBitfield(const unsigned char* bitfield, size_t bitfieldLength);
  164. void clearAllBit();
  165. void setAllBit();
  166. void clearAllUseBit();
  167. void setAllUseBit();
  168. void addFilter(uint64_t offset, uint64_t length);
  169. void removeFilter(uint64_t offset, uint64_t length);
  170. // Add filter not in the range of [offset, offset+length) bytes
  171. void addNotFilter(uint64_t offset, uint64_t length);
  172. // Clears filter and disables filter
  173. void clearFilter();
  174. void enableFilter();
  175. void disableFilter();
  176. bool isFilterEnabled() const
  177. {
  178. return filterEnabled_;
  179. }
  180. // affected by filter
  181. uint64_t getFilteredTotalLength() const
  182. {
  183. return cachedFilteredTotalLength_;
  184. }
  185. // affected by filter
  186. uint64_t getFilteredTotalLengthNow() const;
  187. uint64_t getCompletedLength() const
  188. {
  189. return cachedCompletedLength_;
  190. }
  191. uint64_t getCompletedLengthNow() const;
  192. // affected by filter
  193. uint64_t getFilteredCompletedLength() const
  194. {
  195. return cachedFilteredCompletedLength_;
  196. }
  197. // affected by filter
  198. uint64_t getFilteredCompletedLengthNow() const;
  199. void updateCache();
  200. bool isBitRangeSet(size_t startIndex, size_t endIndex) const;
  201. void unsetBitRange(size_t startIndex, size_t endIndex);
  202. void setBitRange(size_t startIndex, size_t endIndex);
  203. bool isBitSetOffsetRange(uint64_t offset, uint64_t length) const;
  204. uint64_t getMissingUnusedLength(size_t startingIndex) const;
  205. const unsigned char* getFilterBitfield() const
  206. {
  207. return filterBitfield_;
  208. }
  209. };
  210. } // namespace aria2
  211. #endif // D_BITFIELD_MAN_H