~ubuntu-branches/debian/wheezy/libtorrent/wheezy

« back to all changes in this revision

Viewing changes to src/data/hash_chunk.cc

  • Committer: Bazaar Package Importer
  • Author(s): Rogério Brito
  • Date: 2011-03-09 20:04:41 UTC
  • mfrom: (1.3.4 upstream) (7.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110309200441-ffi9aaqdyd72d8xl
Tags: 0.12.7-4
* Steal patch from upstream's bug tracking system to enable IPv6.
* Refresh patches to apply cleanly.
* This should, hopefully, be a good step towards addressing #490277.

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
#include "config.h"
 
38
 
 
39
#include "torrent/exceptions.h"
 
40
#include "hash_chunk.h"
 
41
#include "chunk.h"
 
42
#include "chunk_list_node.h"
 
43
 
 
44
namespace torrent {
 
45
 
 
46
bool
 
47
HashChunk::perform(uint32_t length, bool force) {
 
48
  length = std::min(length, remaining());
 
49
 
 
50
  if (m_position + length > m_chunk.chunk()->chunk_size())
 
51
    throw internal_error("HashChunk::perform(...) received length out of range");
 
52
  
 
53
  uint32_t l = force ? length : m_chunk.chunk()->incore_length(m_position);
 
54
 
 
55
  bool complete = l == length;
 
56
 
 
57
  while (l) {
 
58
    Chunk::iterator node = m_chunk.chunk()->at_position(m_position);
 
59
 
 
60
    l -= perform_part(node, l);
 
61
  }
 
62
 
 
63
  return complete;
 
64
}
 
65
 
 
66
void
 
67
HashChunk::advise_willneed(uint32_t length) {
 
68
  if (!m_chunk.is_valid())
 
69
    throw internal_error("HashChunk::willneed(...) called on an invalid chunk");
 
70
 
 
71
  if (m_position + length > m_chunk.chunk()->chunk_size())
 
72
    throw internal_error("HashChunk::willneed(...) received length out of range");
 
73
 
 
74
  uint32_t pos = m_position;
 
75
 
 
76
  while (length) {
 
77
    Chunk::iterator itr = m_chunk.chunk()->at_position(pos);
 
78
 
 
79
    uint32_t l = std::min(length, remaining_part(itr, pos));
 
80
 
 
81
    itr->chunk().advise(pos - itr->position(), l, MemoryChunk::advice_willneed);
 
82
 
 
83
    pos    += l;
 
84
    length -= l;
 
85
    ++itr;
 
86
  }
 
87
}
 
88
 
 
89
uint32_t
 
90
HashChunk::remaining() {
 
91
  if (!m_chunk.is_valid())
 
92
    throw internal_error("HashChunk::remaining(...) called on an invalid chunk");
 
93
 
 
94
  return m_chunk.chunk()->chunk_size() - m_position;
 
95
}
 
96
 
 
97
uint32_t
 
98
HashChunk::perform_part(Chunk::iterator itr, uint32_t length) {
 
99
  length = std::min(length, remaining_part(itr, m_position));
 
100
  
 
101
  m_hash.update(itr->chunk().begin() + m_position - itr->position(), length);
 
102
  m_position += length;
 
103
 
 
104
  return length;
 
105
}
 
106
 
 
107
}