premiere-libtorrent/src/file_pool.cpp

350 lines
9.8 KiB
C++
Raw Normal View History

/*
2015-06-03 07:18:48 +02:00
Copyright (c) 2006-2015, 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.
*/
2015-08-20 01:33:20 +02:00
#include "libtorrent/config.hpp"
#include "libtorrent/aux_/disable_warnings_push.hpp"
#include <boost/version.hpp>
2009-05-14 22:31:44 +02:00
#include <boost/bind.hpp>
2015-08-20 01:33:20 +02:00
#include "libtorrent/aux_/disable_warnings_pop.hpp"
2009-11-25 07:55:34 +01:00
#include "libtorrent/assert.hpp"
#include "libtorrent/file_pool.hpp"
#include "libtorrent/error_code.hpp"
#include "libtorrent/file_storage.hpp" // for file_entry
#include "libtorrent/aux_/time.hpp"
namespace libtorrent
{
file_pool::file_pool(int size)
: m_size(size)
, m_low_prio_io(true)
{
}
file_pool::~file_pool()
{
}
#ifdef TORRENT_WINDOWS
2014-07-06 21:18:00 +02:00
void set_low_priority(file_handle const& f)
{
// file prio is only supported on vista and up
// so load the functions dynamically
typedef enum _FILE_INFO_BY_HANDLE_CLASS {
FileBasicInfo,
FileStandardInfo,
FileNameInfo,
FileRenameInfo,
FileDispositionInfo,
FileAllocationInfo,
FileEndOfFileInfo,
FileStreamInfo,
FileCompressionInfo,
FileAttributeTagInfo,
FileIdBothDirectoryInfo,
FileIdBothDirectoryRestartInfo,
FileIoPriorityHintInfo,
2015-08-18 16:42:03 +02:00
FileRemoteProtocolInfo,
MaximumFileInfoByHandleClass
} FILE_INFO_BY_HANDLE_CLASS, *PFILE_INFO_BY_HANDLE_CLASS;
typedef enum _PRIORITY_HINT {
IoPriorityHintVeryLow = 0,
IoPriorityHintLow,
IoPriorityHintNormal,
MaximumIoPriorityHintType
} PRIORITY_HINT;
typedef struct _FILE_IO_PRIORITY_HINT_INFO {
PRIORITY_HINT PriorityHint;
} FILE_IO_PRIORITY_HINT_INFO, *PFILE_IO_PRIORITY_HINT_INFO;
typedef BOOL (WINAPI *SetFileInformationByHandle_t)(HANDLE hFile, FILE_INFO_BY_HANDLE_CLASS FileInformationClass, LPVOID lpFileInformation, DWORD dwBufferSize);
static SetFileInformationByHandle_t SetFileInformationByHandle = NULL;
static bool failed_kernel_load = false;
if (failed_kernel_load) return;
if (SetFileInformationByHandle == NULL)
{
HMODULE kernel32 = LoadLibraryA("kernel32.dll");
if (kernel32 == NULL)
{
failed_kernel_load = true;
return;
}
SetFileInformationByHandle = (SetFileInformationByHandle_t)GetProcAddress(kernel32, "SetFileInformationByHandle");
if (SetFileInformationByHandle == NULL)
2015-08-18 16:42:03 +02:00
{
failed_kernel_load = true;
return;
}
}
TORRENT_ASSERT(SetFileInformationByHandle);
FILE_IO_PRIORITY_HINT_INFO io_hint;
io_hint.PriorityHint = IoPriorityHintLow;
SetFileInformationByHandle(f->native_handle(),
FileIoPriorityHintInfo, &io_hint, sizeof(io_hint));
}
#endif // TORRENT_WINDOWS
2014-07-06 21:18:00 +02:00
file_handle file_pool::open_file(void* st, std::string const& p
, int file_index, file_storage const& fs, int m, error_code& ec)
{
// potentially used to hold a reference to a file object that's
// about to be destructed. If we have such object we assign it to
// this member to be destructed after we release the mutex. On some
// operating systems (such as OSX) closing a file may take a long
// time. We don't want to hold the mutex for that.
file_handle defer_destruction;
2014-07-06 21:18:00 +02:00
mutex::scoped_lock l(m_mutex);
#if TORRENT_USE_ASSERTS
// we're not allowed to open a file
// from a deleted storage!
2015-08-18 16:42:03 +02:00
TORRENT_ASSERT(std::find(m_deleted_storages.begin(), m_deleted_storages.end()
, std::make_pair(fs.name(), static_cast<void const*>(&fs)))
2014-07-06 21:18:00 +02:00
== m_deleted_storages.end());
#endif
TORRENT_ASSERT(st != 0);
TORRENT_ASSERT(is_complete(p));
TORRENT_ASSERT((m & file::rw_mask) == file::read_only
|| (m & file::rw_mask) == file::read_write);
file_set::iterator i = m_files.find(std::make_pair(st, file_index));
if (i != m_files.end())
{
lru_file_entry& e = i->second;
e.last_use = aux::time_now();
if (e.key != st && ((e.mode & file::rw_mask) != file::read_only
|| (m & file::rw_mask) != file::read_only))
{
// this means that another instance of the storage
// is using the exact same file.
ec = errors::file_collision;
2014-07-06 21:18:00 +02:00
return file_handle();
}
e.key = st;
2008-10-19 07:03:17 +02:00
// if we asked for a file in write mode,
// and the cached file is is not opened in
// write mode, re-open it
2010-01-31 21:44:05 +01:00
if ((((e.mode & file::rw_mask) != file::read_write)
&& ((m & file::rw_mask) == file::read_write))
|| (e.mode & file::random_access) != (m & file::random_access))
{
// close the file before we open it with
2014-07-06 21:18:00 +02:00
// the new read/write privilages, since windows may
// file opening a file twice. However, since there may
// be outstanding operations on it, we can't close the
// file, we can only delete our reference to it.
// if this is the only reference to the file, it will be closed
defer_destruction = e.file_ptr;
e.file_ptr = boost::make_shared<file>();
2014-07-06 21:18:00 +02:00
std::string full_path = fs.file_path(file_index, p);
if (!e.file_ptr->open(full_path, m, ec))
{
m_files.erase(i);
2014-07-06 21:18:00 +02:00
return file_handle();
}
2010-01-23 04:02:32 +01:00
#ifdef TORRENT_WINDOWS
if (m_low_prio_io)
set_low_priority(e.file_ptr);
2010-01-23 04:02:32 +01:00
#endif
2014-07-06 21:18:00 +02:00
2008-07-20 18:34:01 +02:00
TORRENT_ASSERT(e.file_ptr->is_open());
e.mode = m;
}
return e.file_ptr;
}
2014-07-06 21:18:00 +02:00
lru_file_entry e;
e.file_ptr = boost::make_shared<file>();
if (!e.file_ptr)
{
ec = error_code(ENOMEM, get_posix_category());
return e.file_ptr;
}
std::string full_path = fs.file_path(file_index, p);
if (!e.file_ptr->open(full_path, m, ec))
2014-07-06 21:18:00 +02:00
return file_handle();
#ifdef TORRENT_WINDOWS
if (m_low_prio_io)
set_low_priority(e.file_ptr);
#endif
e.mode = m;
e.key = st;
m_files.insert(std::make_pair(std::make_pair(st, file_index), e));
2008-07-20 18:34:01 +02:00
TORRENT_ASSERT(e.file_ptr->is_open());
2014-07-06 21:18:00 +02:00
file_handle file_ptr = e.file_ptr;
// the file is not in our cache
2015-08-18 16:42:03 +02:00
if (int(m_files.size()) >= m_size)
2014-07-06 21:18:00 +02:00
{
// the file cache is at its maximum size, close
// the least recently used (lru) file from it
remove_oldest(l);
}
return file_ptr;
}
2014-07-06 21:18:00 +02:00
void file_pool::get_status(std::vector<pool_file_status>* files, void* st) const
{
mutex::scoped_lock l(m_mutex);
file_set::const_iterator start = m_files.lower_bound(std::make_pair(st, 0));
file_set::const_iterator end = m_files.upper_bound(std::make_pair(st, INT_MAX));
2015-08-18 16:42:03 +02:00
2014-07-06 21:18:00 +02:00
for (file_set::const_iterator i = start; i != end; ++i)
{
pool_file_status s;
s.file_index = i->first.second;
s.open_mode = i->second.mode;
s.last_use = i->second.last_use;
files->push_back(s);
}
}
void file_pool::remove_oldest(mutex::scoped_lock& l)
{
file_set::iterator i = std::min_element(m_files.begin(), m_files.end()
, boost::bind(&lru_file_entry::last_use, boost::bind(&file_set::value_type::second, _1))
< boost::bind(&lru_file_entry::last_use, boost::bind(&file_set::value_type::second, _2)));
if (i == m_files.end()) return;
2014-07-06 21:18:00 +02:00
file_handle file_ptr = i->second.file_ptr;
m_files.erase(i);
2014-07-06 21:18:00 +02:00
// closing a file may be long running operation (mac os x)
l.unlock();
file_ptr.reset();
l.lock();
}
void file_pool::release(void* st, int file_index)
{
mutex::scoped_lock l(m_mutex);
2014-07-06 21:18:00 +02:00
file_set::iterator i = m_files.find(std::make_pair(st, file_index));
if (i == m_files.end()) return;
2014-07-06 21:18:00 +02:00
file_handle file_ptr = i->second.file_ptr;
m_files.erase(i);
2014-07-06 21:18:00 +02:00
// closing a file may be long running operation (mac os x)
l.unlock();
file_ptr.reset();
}
2010-01-23 04:02:32 +01:00
// closes files belonging to the specified
// storage. If 0 is passed, all files are closed
void file_pool::release(void* st)
{
mutex::scoped_lock l(m_mutex);
2014-07-06 21:18:00 +02:00
2010-01-23 04:02:32 +01:00
if (st == 0)
{
2014-07-06 21:18:00 +02:00
file_set tmp;
tmp.swap(m_files);
l.unlock();
2010-01-23 04:02:32 +01:00
return;
}
2014-07-06 21:18:00 +02:00
std::vector<file_handle> to_close;
for (file_set::iterator i = m_files.begin();
i != m_files.end();)
{
if (i->second.key == st)
2014-07-06 21:18:00 +02:00
{
to_close.push_back(i->second.file_ptr);
m_files.erase(i++);
2014-07-06 21:18:00 +02:00
}
else
++i;
}
2014-07-06 21:18:00 +02:00
l.unlock();
// the files are closed here
}
#if TORRENT_USE_ASSERTS
void file_pool::mark_deleted(file_storage const& fs)
{
mutex::scoped_lock l(m_mutex);
2015-08-19 01:39:01 +02:00
m_deleted_storages.push_back(std::make_pair(fs.name()
, static_cast<void const*>(&fs)));
2014-07-06 21:18:00 +02:00
if(m_deleted_storages.size() > 100)
m_deleted_storages.erase(m_deleted_storages.begin());
}
2014-07-06 21:18:00 +02:00
bool file_pool::assert_idle_files(void* st) const
{
mutex::scoped_lock l(m_mutex);
for (file_set::const_iterator i = m_files.begin();
i != m_files.end(); ++i)
{
if (i->second.key == st && !i->second.file_ptr.unique())
2014-07-06 21:18:00 +02:00
return false;
}
return true;
}
#endif
void file_pool::resize(int size)
{
2014-07-06 21:18:00 +02:00
mutex::scoped_lock l(m_mutex);
TORRENT_ASSERT(size > 0);
if (size == m_size) return;
m_size = size;
if (int(m_files.size()) <= m_size) return;
// close the least recently used files
while (int(m_files.size()) > m_size)
2014-07-06 21:18:00 +02:00
remove_oldest(l);
}
}