forked from premiere/premiere-libtorrent
196 lines
6.0 KiB
C++
196 lines
6.0 KiB
C++
/*
|
|
|
|
Copyright (c) 2007-2016, 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.
|
|
|
|
*/
|
|
|
|
#ifndef TORRENT_DISK_BUFFER_POOL_HPP
|
|
#define TORRENT_DISK_BUFFER_POOL_HPP
|
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
|
|
|
#include <vector>
|
|
#include <mutex>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/function.hpp>
|
|
#include <boost/utility.hpp>
|
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
#include "libtorrent/allocator.hpp" // for page_aligned_allocator
|
|
#include <boost/pool/pool.hpp>
|
|
#endif
|
|
|
|
#if defined TORRENT_DEBUG
|
|
#include <set>
|
|
#endif
|
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
|
|
|
#include "libtorrent/io_service_fwd.hpp"
|
|
#include "libtorrent/file.hpp" // for iovec_t
|
|
|
|
namespace libtorrent
|
|
{
|
|
namespace aux { struct session_settings; }
|
|
class alert;
|
|
struct disk_observer;
|
|
|
|
struct TORRENT_EXTRA_EXPORT disk_buffer_pool : boost::noncopyable
|
|
{
|
|
disk_buffer_pool(int block_size, io_service& ios
|
|
, boost::function<void()> const& trigger_trim);
|
|
~disk_buffer_pool();
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
bool is_disk_buffer(char* buffer
|
|
, std::unique_lock<std::mutex>& l) const;
|
|
bool is_disk_buffer(char* buffer) const;
|
|
#endif
|
|
|
|
char* allocate_buffer(char const* category);
|
|
char* allocate_buffer(bool& exceeded, boost::shared_ptr<disk_observer> o
|
|
, char const* category);
|
|
void free_buffer(char* buf);
|
|
void free_multiple_buffers(char** bufvec, int numbufs);
|
|
|
|
int allocate_iovec(file::iovec_t* iov, int iov_len);
|
|
void free_iovec(file::iovec_t* iov, int iov_len);
|
|
|
|
int block_size() const { return m_block_size; }
|
|
|
|
void release_memory();
|
|
|
|
std::uint32_t in_use() const
|
|
{
|
|
std::unique_lock<std::mutex> l(m_pool_mutex);
|
|
return m_in_use;
|
|
}
|
|
std::uint32_t num_to_evict(int num_needed = 0);
|
|
bool exceeded_max_size() const { return m_exceeded_max_size; }
|
|
|
|
void set_settings(aux::session_settings const& sett, error_code& ec);
|
|
|
|
protected:
|
|
|
|
void free_buffer_impl(char* buf, std::unique_lock<std::mutex>& l);
|
|
char* allocate_buffer_impl(std::unique_lock<std::mutex>& l, char const* category);
|
|
|
|
// number of bytes per block. The BitTorrent
|
|
// protocol defines the block size to 16 KiB.
|
|
const int m_block_size;
|
|
|
|
// number of disk buffers currently allocated
|
|
int m_in_use;
|
|
|
|
// cache size limit
|
|
int m_max_use;
|
|
|
|
// if we have exceeded the limit, we won't start
|
|
// allowing allocations again until we drop below
|
|
// this low watermark
|
|
int m_low_watermark;
|
|
|
|
// if we exceed the max number of buffers, we start
|
|
// adding up callbacks to this queue. Once the number
|
|
// of buffers in use drops below the low watermark,
|
|
// we start calling these functions back
|
|
std::vector<boost::weak_ptr<disk_observer> > m_observers;
|
|
|
|
// callback used to tell the cache it needs to free up some blocks
|
|
boost::function<void()> m_trigger_cache_trim;
|
|
|
|
// set to true to throttle more allocations
|
|
bool m_exceeded_max_size;
|
|
|
|
// this is the main thread io_service. Callbacks are
|
|
// posted on this in order to have them execute in
|
|
// the main thread.
|
|
io_service& m_ios;
|
|
|
|
private:
|
|
|
|
void check_buffer_level(std::unique_lock<std::mutex>& l);
|
|
|
|
mutable std::mutex m_pool_mutex;
|
|
|
|
int m_cache_buffer_chunk_size;
|
|
|
|
#if TORRENT_HAVE_MMAP
|
|
// the file descriptor of the cache mmap file
|
|
int m_cache_fd;
|
|
// the pointer to the block of virtual address space
|
|
// making up the mmapped cache space
|
|
char* m_cache_pool;
|
|
// list of block indices that are not in use. block_index
|
|
// times 0x4000 + m_cache_pool is the address where the
|
|
// corresponding memory lives
|
|
std::vector<int> m_free_list;
|
|
#endif
|
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
// if this is true, all buffers are allocated
|
|
// from m_pool. If this is false, all buffers
|
|
// are allocated using page_aligned_allocator.
|
|
// if the settings change to prefer the other
|
|
// allocator, this bool will not switch over
|
|
// to match the settings until all buffers have
|
|
// been freed. That way, we never have a mixture
|
|
// of buffers allocated from different sources.
|
|
// in essence, this make the setting only take
|
|
// effect after a restart (which seems fine).
|
|
// or once the client goes idle for a while.
|
|
bool m_using_pool_allocator;
|
|
|
|
// this is the actual user setting
|
|
bool m_want_pool_allocator;
|
|
|
|
// memory pool for read and write operations
|
|
// and disk cache
|
|
boost::pool<page_aligned_allocator> m_pool;
|
|
#endif
|
|
|
|
// this is specifically exempt from release_asserts
|
|
// since it's a quite costly check. Only for debug
|
|
// builds.
|
|
#if defined TORRENT_DEBUG
|
|
std::set<char*> m_buffers_in_use;
|
|
#endif
|
|
#if TORRENT_USE_ASSERTS
|
|
int m_magic;
|
|
bool m_settings_set;
|
|
#endif
|
|
};
|
|
|
|
}
|
|
|
|
#endif // TORRENT_DISK_BUFFER_POOL_HPP
|
|
|