~ubuntu-branches/ubuntu/wily/libtorrent/wily-proposed

« back to all changes in this revision

Viewing changes to src/torrent/data/transfer_list.h

  • Committer: Bazaar Package Importer
  • Author(s): Rogério Brito
  • Date: 2011-03-20 01:06:18 UTC
  • mfrom: (1.1.13 upstream) (4.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110320010618-g3wyylccqzqko73c
Tags: 0.12.7-5
* Use Steinar's "real" patch for IPv6. Addresses #490277, #618275,
  and Closes: #617791.
* Adapt libtorrent-0.12.6-ipv6-07.patch. It FTBFS otherwise.
* Add proper attibution to the IPv6 patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// libTorrent - BitTorrent library
 
2
// Copyright (C) 2005-2007, 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_TRANSFER_LIST_H
 
38
#define LIBTORRENT_TRANSFER_LIST_H
 
39
 
 
40
#include <functional>
 
41
#include <vector>
 
42
#include <torrent/common.h>
 
43
 
 
44
namespace torrent {
 
45
 
 
46
class TransferList : public std::vector<BlockList*> {
 
47
public:
 
48
  typedef std::vector<BlockList*>                    base_type;
 
49
  typedef std::vector<std::pair<int64_t, uint32_t> > completed_list_type;
 
50
 
 
51
  using base_type::value_type;
 
52
  using base_type::reference;
 
53
  using base_type::difference_type;
 
54
 
 
55
  using base_type::iterator;
 
56
  using base_type::const_iterator;
 
57
  using base_type::reverse_iterator;
 
58
  using base_type::const_reverse_iterator;
 
59
  using base_type::size;
 
60
  using base_type::empty;
 
61
 
 
62
  using base_type::begin;
 
63
  using base_type::end;
 
64
  using base_type::rbegin;
 
65
  using base_type::rend;
 
66
 
 
67
  TransferList();
 
68
 
 
69
  iterator            find(uint32_t index);
 
70
  const_iterator      find(uint32_t index) const;
 
71
 
 
72
  const completed_list_type& completed_list() const { return m_completedList; }
 
73
 
 
74
  uint32_t            succeeded_count() const { return m_succeededCount; }
 
75
  uint32_t            failed_count() const { return m_failedCount; }
 
76
 
 
77
  //
 
78
  // Internal to libTorrent:
 
79
  //
 
80
 
 
81
  void                clear();
 
82
 
 
83
  iterator            insert(const Piece& piece, uint32_t blockSize);
 
84
  iterator            erase(iterator itr);
 
85
 
 
86
  void                finished(BlockTransfer* transfer);
 
87
 
 
88
  void                hash_succeeded(uint32_t index, Chunk* chunk);
 
89
  void                hash_failed(uint32_t index, Chunk* chunk);
 
90
 
 
91
  typedef std::mem_fun1_t<void, ChunkSelector, uint32_t> slot_canceled_op;
 
92
  typedef std::binder1st<slot_canceled_op>               slot_canceled_type;
 
93
 
 
94
  typedef std::mem_fun1_t<void, DownloadMain, uint32_t>  slot_completed_op;
 
95
  typedef std::binder1st<slot_completed_op>              slot_completed_type;
 
96
 
 
97
  typedef std::mem_fun1_t<void, ChunkSelector, uint32_t> slot_queued_op;
 
98
  typedef std::binder1st<slot_queued_op>                 slot_queued_type;
 
99
 
 
100
  typedef std::mem_fun1_t<void, DownloadMain, PeerInfo*> slot_corrupt_op;
 
101
  typedef std::binder1st<slot_corrupt_op>                slot_corrupt_type;
 
102
 
 
103
  void                slot_canceled(slot_canceled_type s)   { m_slotCanceled = s; }
 
104
  void                slot_completed(slot_completed_type s) { m_slotCompleted = s; }
 
105
  void                slot_queued(slot_queued_type s)       { m_slotQueued = s; }
 
106
 
 
107
  void                slot_corrupt(slot_corrupt_type s)     { m_slotCorrupt = s; }
 
108
 
 
109
private:
 
110
  TransferList(const TransferList&);
 
111
  void operator = (const TransferList&);
 
112
 
 
113
  unsigned int        update_failed(BlockList* blockList, Chunk* chunk);
 
114
  void                mark_failed_peers(BlockList* blockList, Chunk* chunk);
 
115
 
 
116
  void                retry_most_popular(BlockList* blockList, Chunk* chunk);
 
117
 
 
118
  slot_canceled_type  m_slotCanceled;
 
119
  slot_completed_type m_slotCompleted;
 
120
  slot_queued_type    m_slotQueued;
 
121
  slot_corrupt_type   m_slotCorrupt;
 
122
 
 
123
  completed_list_type m_completedList;
 
124
 
 
125
  uint32_t            m_succeededCount;
 
126
  uint32_t            m_failedCount;
 
127
};
 
128
 
 
129
}
 
130
 
 
131
#endif