2008-05-28 10:44:40 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003-2008, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
|
|
|
#include "libtorrent/file_storage.hpp"
|
2008-11-30 09:12:26 +01:00
|
|
|
#include "libtorrent/utf8.hpp"
|
2009-01-11 11:32:57 +01:00
|
|
|
#include <boost/bind.hpp>
|
2008-05-28 10:44:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
file_storage::file_storage()
|
|
|
|
: m_piece_length(0)
|
|
|
|
, m_total_size(0)
|
|
|
|
, m_num_pieces(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
int file_storage::piece_size(int index) const
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(index >= 0 && index < num_pieces());
|
|
|
|
if (index == num_pieces()-1)
|
|
|
|
{
|
|
|
|
int size = int(total_size()
|
|
|
|
- size_type(num_pieces() - 1) * piece_length());
|
|
|
|
TORRENT_ASSERT(size > 0);
|
|
|
|
TORRENT_ASSERT(size <= piece_length());
|
|
|
|
return int(size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return piece_length();
|
|
|
|
}
|
|
|
|
|
2008-11-30 09:12:26 +01:00
|
|
|
void file_storage::set_name(std::wstring const& n)
|
|
|
|
{
|
|
|
|
std::string utf8;
|
|
|
|
wchar_utf8(n, utf8);
|
|
|
|
m_name = utf8;
|
|
|
|
}
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
void file_storage::rename_file(int index, std::string const& new_filename)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(index >= 0 && index < int(m_files.size()));
|
|
|
|
m_files[index].path = new_filename;
|
|
|
|
}
|
|
|
|
|
2008-11-30 09:12:26 +01:00
|
|
|
void file_storage::rename_file(int index, std::wstring const& new_filename)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(index >= 0 && index < int(m_files.size()));
|
|
|
|
std::string utf8;
|
|
|
|
wchar_utf8(new_filename, utf8);
|
|
|
|
m_files[index].path = utf8;
|
|
|
|
}
|
|
|
|
|
2008-07-09 12:45:07 +02:00
|
|
|
file_storage::iterator file_storage::file_at_offset(size_type offset) const
|
|
|
|
{
|
|
|
|
// TODO: do a binary search
|
|
|
|
std::vector<file_entry>::const_iterator i;
|
|
|
|
for (i = begin(); i != end(); ++i)
|
|
|
|
{
|
2008-07-09 17:23:42 +02:00
|
|
|
if (i->offset <= offset && i->offset + i->size > offset)
|
2008-07-09 12:45:07 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2009-01-14 02:12:36 +01:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
bool compare_file_offset(file_entry const& lhs, file_entry const& rhs)
|
|
|
|
{
|
2009-01-14 07:55:28 +01:00
|
|
|
return lhs.offset < rhs.offset;
|
2009-01-14 02:12:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
std::vector<file_slice> file_storage::map_block(int piece, size_type offset
|
2009-01-14 02:12:36 +01:00
|
|
|
, int size) const
|
2008-05-28 10:44:40 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(num_files() > 0);
|
|
|
|
std::vector<file_slice> ret;
|
|
|
|
|
2009-01-14 07:55:28 +01:00
|
|
|
if (m_files.empty()) return ret;
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
// find the file iterator and file offset
|
2009-01-14 02:12:36 +01:00
|
|
|
file_entry target;
|
|
|
|
target.offset = piece * (size_type)m_piece_length + offset;
|
|
|
|
TORRENT_ASSERT(target.offset + size <= m_total_size);
|
2009-01-14 07:55:28 +01:00
|
|
|
TORRENT_ASSERT(!compare_file_offset(target, m_files.front()));
|
2009-01-14 02:12:36 +01:00
|
|
|
|
|
|
|
std::vector<file_entry>::const_iterator file_iter = std::upper_bound(
|
|
|
|
begin(), end(), target, compare_file_offset);
|
2008-05-28 10:44:40 +02:00
|
|
|
|
2009-01-14 07:55:28 +01:00
|
|
|
TORRENT_ASSERT(file_iter != begin());
|
|
|
|
--file_iter;
|
2009-01-14 02:12:36 +01:00
|
|
|
|
2009-01-14 07:55:28 +01:00
|
|
|
size_type file_offset = offset - file_iter->offset;
|
2009-01-14 02:12:36 +01:00
|
|
|
for (; size > 0; file_offset -= file_iter->size, ++file_iter)
|
2008-05-28 10:44:40 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(file_iter != end());
|
|
|
|
if (file_offset < file_iter->size)
|
|
|
|
{
|
|
|
|
file_slice f;
|
2009-01-14 02:12:36 +01:00
|
|
|
f.file_index = file_iter - begin();
|
2008-05-28 10:44:40 +02:00
|
|
|
f.offset = file_offset + file_iter->file_base;
|
|
|
|
f.size = (std::min)(file_iter->size - file_offset, (size_type)size);
|
|
|
|
size -= f.size;
|
|
|
|
file_offset += f.size;
|
|
|
|
ret.push_back(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
TORRENT_ASSERT(size >= 0);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
peer_request file_storage::map_file(int file_index, size_type file_offset
|
|
|
|
, int size) const
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(file_index < num_files());
|
|
|
|
TORRENT_ASSERT(file_index >= 0);
|
|
|
|
size_type offset = file_offset + at(file_index).offset;
|
|
|
|
|
|
|
|
peer_request ret;
|
|
|
|
ret.piece = int(offset / piece_length());
|
|
|
|
ret.start = int(offset - ret.piece * piece_length());
|
|
|
|
ret.length = size;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-01-11 23:27:43 +01:00
|
|
|
void file_storage::add_file(fs::wpath const& file, size_type size, int flags)
|
2008-11-30 09:12:26 +01:00
|
|
|
{
|
|
|
|
std::string utf8;
|
|
|
|
wchar_utf8(file.string(), utf8);
|
2009-01-11 23:27:43 +01:00
|
|
|
add_file(utf8, size, flags);
|
2008-11-30 09:12:26 +01:00
|
|
|
}
|
|
|
|
|
2009-01-11 23:27:43 +01:00
|
|
|
void file_storage::add_file(fs::path const& file, size_type size, int flags)
|
2008-05-28 10:44:40 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(size >= 0);
|
2008-08-16 23:11:27 +02:00
|
|
|
#if BOOST_VERSION < 103600
|
2008-05-28 10:44:40 +02:00
|
|
|
if (!file.has_branch_path())
|
2008-08-16 23:11:27 +02:00
|
|
|
#else
|
|
|
|
if (!file.has_parent_path())
|
|
|
|
#endif
|
2008-05-28 10:44:40 +02:00
|
|
|
{
|
|
|
|
// you have already added at least one file with a
|
|
|
|
// path to the file (branch_path), which means that
|
|
|
|
// all the other files need to be in the same top
|
|
|
|
// directory as the first file.
|
|
|
|
TORRENT_ASSERT(m_files.empty());
|
|
|
|
m_name = file.string();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_files.empty())
|
|
|
|
m_name = *file.begin();
|
|
|
|
}
|
|
|
|
TORRENT_ASSERT(m_name == *file.begin());
|
2009-01-11 23:27:43 +01:00
|
|
|
m_files.push_back(file_entry());
|
|
|
|
file_entry& e = m_files.back();
|
|
|
|
e.size = size;
|
|
|
|
e.path = file;
|
|
|
|
e.offset = m_total_size;
|
|
|
|
e.pad_file = bool(flags & pad_file);
|
|
|
|
e.hidden_attribute = bool(flags & attribute_hidden);
|
|
|
|
e.executable_attribute = bool(flags & attribute_executable);
|
2008-05-28 10:44:40 +02:00
|
|
|
m_total_size += size;
|
|
|
|
}
|
|
|
|
|
2009-01-11 23:27:43 +01:00
|
|
|
void file_storage::add_file(file_entry const& ent)
|
2008-05-28 10:44:40 +02:00
|
|
|
{
|
2009-01-11 23:27:43 +01:00
|
|
|
#if BOOST_VERSION < 103600
|
|
|
|
if (!ent.path.has_branch_path())
|
|
|
|
#else
|
|
|
|
if (!ent.path.has_parent_path())
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
// you have already added at least one file with a
|
|
|
|
// path to the file (branch_path), which means that
|
|
|
|
// all the other files need to be in the same top
|
|
|
|
// directory as the first file.
|
|
|
|
TORRENT_ASSERT(m_files.empty());
|
|
|
|
m_name = ent.path.string();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_files.empty())
|
|
|
|
m_name = *ent.path.begin();
|
|
|
|
}
|
|
|
|
m_files.push_back(ent);
|
|
|
|
file_entry& e = m_files.back();
|
|
|
|
e.offset = m_total_size;
|
|
|
|
m_total_size += ent.size;
|
2008-05-28 10:44:40 +02:00
|
|
|
}
|
2009-01-11 11:32:57 +01:00
|
|
|
|
|
|
|
void file_storage::optimize(int pad_file_limit)
|
|
|
|
{
|
|
|
|
// the main purpuse of padding is to optimize disk
|
|
|
|
// I/O. This is a conservative memory page size assumption
|
|
|
|
int alignment = 8*1024;
|
|
|
|
|
|
|
|
// it doesn't make any sense to pad files that
|
|
|
|
// are smaller than one piece
|
|
|
|
if (pad_file_limit >= 0 && pad_file_limit < alignment)
|
|
|
|
pad_file_limit = alignment;
|
|
|
|
|
|
|
|
// put the largest file at the front, to make sure
|
|
|
|
// it's aligned
|
|
|
|
std::vector<file_entry>::iterator i = std::max_element(m_files.begin(), m_files.end()
|
|
|
|
, boost::bind(&file_entry::size, _1) < boost::bind(&file_entry::size, _2));
|
|
|
|
|
|
|
|
using std::iter_swap;
|
|
|
|
iter_swap(i, m_files.begin());
|
|
|
|
|
|
|
|
size_type off = 0;
|
|
|
|
int padding_file = 0;
|
|
|
|
for (std::vector<file_entry>::iterator i = m_files.begin();
|
|
|
|
i != m_files.end(); ++i)
|
|
|
|
{
|
|
|
|
if (pad_file_limit >= 0
|
|
|
|
&& (off & (alignment-1)) != 0
|
2009-01-11 23:27:43 +01:00
|
|
|
&& i->size > pad_file_limit
|
|
|
|
&& i->pad_file == false)
|
2009-01-11 11:32:57 +01:00
|
|
|
{
|
|
|
|
// if we have pad files enabled, and this file is
|
|
|
|
// not piece-aligned and the file size exceeds the
|
2009-01-11 23:27:43 +01:00
|
|
|
// limit, and it's not a padding file itself.
|
|
|
|
// so add a padding file in front of it
|
2009-01-11 11:32:57 +01:00
|
|
|
int pad_size = alignment - (off & (alignment-1));
|
|
|
|
|
|
|
|
// find the largest file that fits in pad_size
|
|
|
|
std::vector<file_entry>::iterator best_match = m_files.end();
|
|
|
|
for (std::vector<file_entry>::iterator j = i+1; j < m_files.end(); ++j)
|
|
|
|
{
|
|
|
|
if (j->size > pad_size) continue;
|
|
|
|
if (best_match == m_files.end() || j->size > best_match->size)
|
|
|
|
best_match = j;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (best_match != m_files.end())
|
|
|
|
{
|
|
|
|
// we found one
|
|
|
|
file_entry e = *best_match;
|
|
|
|
m_files.erase(best_match);
|
|
|
|
i = m_files.insert(i, e);
|
|
|
|
i->offset = off;
|
|
|
|
off += i->size;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we could not find a file that fits in pad_size
|
|
|
|
// add a padding file
|
|
|
|
|
|
|
|
file_entry e;
|
|
|
|
i = m_files.insert(i, e);
|
|
|
|
i->size = pad_size;
|
|
|
|
i->offset = off;
|
|
|
|
i->file_base = 0;
|
|
|
|
char name[10];
|
|
|
|
sprintf(name, "%d", padding_file);
|
|
|
|
i->path = *(i+1)->path.begin();
|
|
|
|
i->path /= "_____padding_file_";
|
|
|
|
i->path /= name;
|
2009-01-11 23:27:43 +01:00
|
|
|
i->pad_file = true;
|
2009-01-11 11:32:57 +01:00
|
|
|
off += pad_size;
|
|
|
|
++padding_file;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
i->offset = off;
|
|
|
|
off += i->size;
|
|
|
|
}
|
|
|
|
m_total_size = off;
|
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
}
|
|
|
|
|