~ubuntu-branches/debian/experimental/libtorrent/experimental

« back to all changes in this revision

Viewing changes to src/utils/bitfield.h

  • Committer: Bazaar Package Importer
  • Author(s): Qingning Huo
  • Date: 2006-05-10 21:43:03 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20060510214303-ufl3iim4lr93uv1j
Tags: 0.9.1-1
* New upstream release.
- Added views of the downloads that can be sorted and filtered.
  The keys '1' to '6' are bound to a set which can be modified with
  the 'view_*' options.  (See man page)
- Disconnect incoming connections early if the download is full.
  (Patch by Josef Drexler)
- Made IPv6 and ncursesw configurable, neither of which are actually
  used yet.
- Added a "session_save" option which is scheduled by default every
  30 minutes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// libTorrent - BitTorrent library
2
 
// Copyright (C) 2005, Jari Sundell
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
 
// In addition, as a special exception, the copyright holders give
19
 
// permission to link the code of portions of this program with the
20
 
// OpenSSL library under certain conditions as described in each
21
 
// individual source file, and distribute linked combinations
22
 
// including the two.
23
 
//
24
 
// You must obey the GNU General Public License in all respects for
25
 
// all of the code used other than OpenSSL.  If you modify file(s)
26
 
// with this exception, you may extend this exception to your version
27
 
// of the file(s), but you are not obligated to do so.  If you do not
28
 
// wish to do so, delete this exception statement from your version.
29
 
// If you delete this exception statement from all source files in the
30
 
// program, then also delete it here.
31
 
//
32
 
// Contact:  Jari Sundell <jaris@ifi.uio.no>
33
 
//
34
 
//           Skomakerveien 33
35
 
//           3185 Skoppum, NORWAY
36
 
 
37
 
#ifndef LIBTORRENT_UTILS_BITFIELD_H
38
 
#define LIBTORRENT_UTILS_BITFIELD_H
39
 
 
40
 
#include <cstring>
41
 
#include <inttypes.h>
42
 
 
43
 
namespace torrent {
44
 
 
45
 
class BitField {
46
 
public:
47
 
  typedef uint32_t       size_t;
48
 
  typedef uint8_t        data_t;
49
 
  typedef const uint8_t  c_data_t;
50
 
  typedef data_t*        iterator;
51
 
  typedef const data_t*  const_iterator;
52
 
 
53
 
  BitField() :
54
 
    m_size(0),
55
 
    m_start(NULL),
56
 
    m_end(NULL) {}
57
 
 
58
 
  BitField(size_t s);
59
 
  BitField(const BitField& bf);
60
 
 
61
 
  ~BitField()                             { delete [] m_start; m_start = NULL; }
62
 
 
63
 
  void      clear()                       { if (m_start) std::memset(m_start, 0, size_bytes()); }
64
 
 
65
 
  size_t    size_bits() const             { return m_size; }
66
 
  size_t    size_bytes() const            { return m_end - m_start; }
67
 
 
68
 
  size_t    position(const_iterator itr) const { return (itr - m_start) * 8; }
69
 
 
70
 
  // Allow this?
71
 
  size_t    count() const;
72
 
 
73
 
  // Clear the last byte's padding.
74
 
  void      cleanup() {
75
 
    if (m_start && m_size % 8)
76
 
      *(m_end - 1) &= ~(data_t)0 << 8 - m_size % 8;
77
 
  }
78
 
 
79
 
  void      set(size_t i, bool s) {
80
 
    if (s)
81
 
      m_start[i / 8] |= 1 << 7 - i % 8;
82
 
    else
83
 
      m_start[i / 8] &= ~(1 << 7 - i % 8);
84
 
  }
85
 
 
86
 
  void      set(size_t begin, size_t end, bool s);
87
 
 
88
 
  bool      get(size_t i) const           { return m_start[i / 8] & (1 << 7 - i % 8); }    
89
 
 
90
 
  // Mark all in this not in b2.
91
 
  BitField& not_in(const BitField& bf);
92
 
 
93
 
  bool      all_zero() const;
94
 
  bool      all_set() const;
95
 
 
96
 
  data_t*   begin()                       { return m_start; }
97
 
  c_data_t* begin() const                 { return m_start; }
98
 
  data_t*   end()                         { return m_end; }
99
 
  c_data_t* end() const                   { return m_end; }
100
 
 
101
 
  bool      operator [] (size_t i) const  { return get(i); }
102
 
  
103
 
  BitField& operator = (const BitField& bf);
104
 
 
105
 
private:
106
 
  size_t    m_size;
107
 
 
108
 
  data_t*   m_start;
109
 
  data_t*   m_end;
110
 
};
111
 
 
112
 
}
113
 
 
114
 
#endif // LIBTORRENT_BITFIELD_H