2010-10-10 04:22:57 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2012-2016, Arvid Norberg, Daniel Wallin
|
2010-10-10 04:22:57 +02:00
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/stat_cache.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
2015-12-11 07:08:57 +01:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2017-04-11 06:52:46 +02:00
|
|
|
#include "libtorrent/aux_/path.hpp"
|
2015-12-11 07:08:57 +01:00
|
|
|
|
2010-10-10 04:22:57 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
stat_cache::stat_cache() {}
|
2016-07-10 13:34:45 +02:00
|
|
|
stat_cache::~stat_cache() = default;
|
2010-10-10 04:22:57 +02:00
|
|
|
|
2016-12-22 16:42:33 +01:00
|
|
|
void stat_cache::set_cache(file_index_t const i, std::int64_t size)
|
2013-11-29 06:29:39 +01:00
|
|
|
{
|
2016-12-22 16:42:33 +01:00
|
|
|
if (i >= m_stat_cache.end_index())
|
|
|
|
m_stat_cache.resize(static_cast<int>(i) + 1, not_in_cache);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_stat_cache[i].file_size = size;
|
|
|
|
}
|
2010-10-10 04:22:57 +02:00
|
|
|
|
2016-12-22 16:42:33 +01:00
|
|
|
void stat_cache::set_error(file_index_t const i, error_code const& ec)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2016-12-22 16:42:33 +01:00
|
|
|
if (i >= m_stat_cache.end_index())
|
|
|
|
m_stat_cache.resize(static_cast<int>(i) + 1, not_in_cache);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2017-02-07 06:22:30 +01:00
|
|
|
int const error_index = add_error(ec);
|
2015-12-11 07:08:57 +01:00
|
|
|
m_stat_cache[i].file_size = file_error - error_index;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2016-12-22 16:42:33 +01:00
|
|
|
void stat_cache::set_dirty(file_index_t const i)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2016-12-22 16:42:33 +01:00
|
|
|
if (i >= m_stat_cache.end_index()) return;
|
2015-12-11 07:08:57 +01:00
|
|
|
m_stat_cache[i].file_size = not_in_cache;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2010-10-10 04:22:57 +02:00
|
|
|
|
2016-12-22 16:42:33 +01:00
|
|
|
std::int64_t stat_cache::get_filesize(file_index_t const i, file_storage const& fs
|
2015-12-11 07:08:57 +01:00
|
|
|
, std::string const& save_path, error_code& ec)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2016-12-22 16:42:33 +01:00
|
|
|
TORRENT_ASSERT(i < fs.end_file());
|
|
|
|
if (i >= m_stat_cache.end_index()) m_stat_cache.resize(static_cast<int>(i) + 1, not_in_cache);
|
2016-06-18 20:01:38 +02:00
|
|
|
std::int64_t sz = m_stat_cache[i].file_size;
|
2015-12-11 07:08:57 +01:00
|
|
|
if (sz < not_in_cache)
|
|
|
|
{
|
2016-12-13 16:30:36 +01:00
|
|
|
ec = m_errors[std::size_t(-sz + file_error)];
|
2015-12-11 07:08:57 +01:00
|
|
|
return file_error;
|
|
|
|
}
|
|
|
|
else if (sz == not_in_cache)
|
|
|
|
{
|
|
|
|
// query the filesystem
|
|
|
|
file_status s;
|
2016-09-23 22:51:20 +02:00
|
|
|
std::string const file_path = fs.file_path(i, save_path);
|
2015-12-11 07:08:57 +01:00
|
|
|
stat_file(file_path, &s, ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
set_error(i, ec);
|
|
|
|
sz = file_error;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_cache(i, s.file_size);
|
|
|
|
sz = s.file_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sz;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2015-12-11 07:08:57 +01:00
|
|
|
void stat_cache::reserve(int num_files)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
m_stat_cache.resize(num_files, not_in_cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
void stat_cache::clear()
|
|
|
|
{
|
2016-12-22 16:42:33 +01:00
|
|
|
m_stat_cache.clear();
|
|
|
|
m_stat_cache.shrink_to_fit();
|
|
|
|
m_errors.clear();
|
|
|
|
m_errors.shrink_to_fit();
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2015-12-11 07:08:57 +01:00
|
|
|
int stat_cache::add_error(error_code const& ec)
|
|
|
|
{
|
2016-12-12 02:50:30 +01:00
|
|
|
auto const i = std::find(m_errors.begin(), m_errors.end(), ec);
|
2016-12-06 14:24:01 +01:00
|
|
|
if (i != m_errors.end()) return int(i - m_errors.begin());
|
2015-12-11 07:08:57 +01:00
|
|
|
m_errors.push_back(ec);
|
2016-04-25 23:22:09 +02:00
|
|
|
return int(m_errors.size()) - 1;
|
2015-12-11 07:08:57 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|