BitfieldMan.h 9.0 KB

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