2009-08-15 23:48:58 +02:00
|
|
|
// Copyright (c) 2009, Niels Martin Hansen
|
|
|
|
// 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 Aegisub Group 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.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file block_cache.h
|
|
|
|
/// @ingroup utility
|
|
|
|
/// @brief Template class for creating caches for blocks of data
|
|
|
|
|
2011-07-15 06:04:13 +02:00
|
|
|
#pragma once
|
2009-08-15 23:48:58 +02:00
|
|
|
|
2009-09-11 04:36:34 +02:00
|
|
|
#ifndef AGI_PRE
|
2009-08-16 02:28:26 +02:00
|
|
|
#include <algorithm>
|
2009-09-11 04:36:34 +02:00
|
|
|
#include <vector>
|
|
|
|
#endif
|
2009-08-15 23:48:58 +02:00
|
|
|
|
|
|
|
/// @class BasicDataBlockFactory
|
|
|
|
/// @brief Simple factory for allocating blocks for DataBlockCache
|
|
|
|
/// @tparam BlockT Type of blocks to produce
|
|
|
|
///
|
|
|
|
/// This is the default block factory class used by DataBlockCache if another isn't specified.
|
|
|
|
/// It allocates blocks on the heap using operator new and the default constructor, and does
|
|
|
|
/// nothing special to initialise the blocks.
|
|
|
|
///
|
|
|
|
/// Custom block factories could use a large internally pre-allocated buffer to create the
|
|
|
|
/// requested blocks in to avoid the default allocator.
|
2009-08-16 05:50:41 +02:00
|
|
|
template <typename BlockT>
|
2009-08-15 23:48:58 +02:00
|
|
|
struct BasicDataBlockFactory {
|
|
|
|
/// @brief Allocates a block and returns it
|
|
|
|
/// @param i Index of the block to allocate
|
|
|
|
/// @return A pointer to the allocated block
|
|
|
|
///
|
|
|
|
/// This default implementation does not use the i parameter. Custom implementations
|
|
|
|
/// of block factories should use i to determine what data to fill into the block.
|
|
|
|
BlockT *ProduceBlock(size_t i)
|
|
|
|
{
|
|
|
|
(void)i;
|
|
|
|
return new BlockT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief De-allocate a block
|
|
|
|
/// @param block Pointer to the block to de-allocate
|
|
|
|
///
|
|
|
|
/// It is guaranteed that block was returned by ProduceBlock.
|
|
|
|
void DisposeBlock(BlockT *block)
|
|
|
|
{
|
|
|
|
delete block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Retrieve the amount of memory consumed by a single block
|
|
|
|
/// @return Number of bytes consumed by a block
|
|
|
|
///
|
|
|
|
/// All blocks must consume the same amount of memory. The size of a block
|
|
|
|
/// is used to manage and limit the size of the cache.
|
|
|
|
size_t GetBlockSize() const
|
|
|
|
{
|
|
|
|
return sizeof(BlockT);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// @class DataBlockCache
|
|
|
|
/// @brief Cache for blocks of data in a stream or similar
|
|
|
|
/// @tparam BlockT Type of blocks to store
|
|
|
|
/// @tparam MacroblockExponent Controls the number of blocks per macroblock, for tuning memory usage
|
|
|
|
/// @tparam BlockFactoryT Type of block factory, see BasicDataBlockFactory class for detail on these
|
|
|
|
template <
|
2009-08-16 05:50:41 +02:00
|
|
|
typename BlockT,
|
2009-08-15 23:48:58 +02:00
|
|
|
int MacroblockExponent = 6,
|
2009-08-16 05:50:41 +02:00
|
|
|
typename BlockFactoryT = BasicDataBlockFactory<BlockT>
|
2009-08-15 23:48:58 +02:00
|
|
|
>
|
|
|
|
class DataBlockCache {
|
|
|
|
|
|
|
|
/// Type of an array of blocks
|
|
|
|
typedef std::vector<BlockT*> BlockArray;
|
|
|
|
|
2009-08-16 02:28:26 +02:00
|
|
|
/// DOCME
|
2009-08-15 23:48:58 +02:00
|
|
|
struct MacroBlock {
|
2009-08-16 02:28:26 +02:00
|
|
|
/// How many times data in the macroblock has been accessed
|
2009-08-15 23:48:58 +02:00
|
|
|
int access_count;
|
2009-08-16 02:28:26 +02:00
|
|
|
/// The blocks contained in the macroblock
|
2009-08-15 23:48:58 +02:00
|
|
|
BlockArray blocks;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Type of an array of macro blocks
|
|
|
|
typedef std::vector<MacroBlock> MacroBlockArray;
|
|
|
|
|
|
|
|
/// The data in the cache
|
|
|
|
MacroBlockArray data;
|
|
|
|
|
|
|
|
/// Number of blocks per macroblock
|
|
|
|
size_t macroblock_size;
|
|
|
|
|
|
|
|
/// Bitmask to extract the inside-macroblock index for a block by bitwise and
|
|
|
|
size_t macroblock_index_mask;
|
|
|
|
|
|
|
|
/// Factory object for blocks
|
|
|
|
BlockFactoryT factory;
|
|
|
|
|
2011-08-27 08:52:49 +02:00
|
|
|
/// Used in sorting the macroblocks by accesas count for aging
|
|
|
|
static bool comp_access_count(const MacroBlock *lft, const MacroBlock *rgt) { return lft->access_count > rgt->access_count; }
|
2009-08-16 03:10:20 +02:00
|
|
|
|
2009-08-15 23:48:58 +02:00
|
|
|
/// @brief Dispose of all blocks in a macroblock and mark it empty
|
|
|
|
/// @param mb_index Index of macroblock to clear
|
2009-08-16 03:10:20 +02:00
|
|
|
void KillMacroBlock(MacroBlock &mb)
|
2009-08-15 23:48:58 +02:00
|
|
|
{
|
|
|
|
mb.access_count = 0;
|
|
|
|
|
2009-08-16 02:28:26 +02:00
|
|
|
for (size_t bi = 0; bi < mb.blocks.size(); ++bi)
|
2009-08-15 23:48:58 +02:00
|
|
|
{
|
|
|
|
BlockT *b = mb.blocks[bi];
|
2010-12-08 04:36:10 +01:00
|
|
|
if (b)
|
2009-08-15 23:48:58 +02:00
|
|
|
factory.DisposeBlock(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
mb.blocks.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// @brief Constructor
|
|
|
|
/// @param block_count Total number of blocks the cache will manage
|
|
|
|
/// @param factory Factory object to use for producing blocks
|
|
|
|
///
|
|
|
|
/// Note that the block_count is the maximum block index the cache will ever see,
|
|
|
|
/// it is an error to request a block number greater than block_count.
|
|
|
|
///
|
|
|
|
/// The factory object passed must respond well to copying.
|
|
|
|
DataBlockCache(size_t block_count, BlockFactoryT factory = BlockFactoryT())
|
|
|
|
: factory(factory)
|
|
|
|
{
|
2009-08-16 02:28:26 +02:00
|
|
|
SetBlockCount(block_count);
|
2009-08-15 23:48:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// @brief Destructor
|
|
|
|
///
|
|
|
|
/// Disposes of all cached blocks
|
|
|
|
~DataBlockCache()
|
|
|
|
{
|
|
|
|
// Clear all blocks by aging to zero bytes
|
|
|
|
Age(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-16 02:28:26 +02:00
|
|
|
/// @brief Change the number of blocks in cache
|
|
|
|
/// @param block_count New number of blocks to hold
|
|
|
|
///
|
|
|
|
/// This will completely de-allocate the cache and re-allocate it with the new block count.
|
|
|
|
void SetBlockCount(size_t block_count)
|
|
|
|
{
|
|
|
|
if (data.size() > 0)
|
|
|
|
Age(0);
|
|
|
|
|
|
|
|
macroblock_size = 1 << MacroblockExponent;
|
|
|
|
|
|
|
|
macroblock_index_mask = ~(((~0) >> MacroblockExponent) << MacroblockExponent);
|
|
|
|
|
|
|
|
data.resize( (block_count + macroblock_size - 1) >> MacroblockExponent );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-15 23:48:58 +02:00
|
|
|
/// @brief Clean up the cache
|
|
|
|
/// @param max_size Target maximum size of the cache in bytes
|
|
|
|
///
|
|
|
|
/// Passing a max_size of 0 (zero) causes the cache to be completely flushed
|
|
|
|
/// in a fast manner.
|
|
|
|
///
|
|
|
|
/// The max_size is not a hard limit, the cache size might somewhat exceed the max
|
|
|
|
/// after the aging operation, though it shouldn't be by much.
|
|
|
|
void Age(size_t max_size)
|
|
|
|
{
|
|
|
|
// Quick way out: get rid of everything
|
|
|
|
if (max_size == 0)
|
|
|
|
{
|
|
|
|
for (size_t mbi = 0; mbi < data.size(); ++mbi)
|
|
|
|
{
|
2009-08-16 03:10:20 +02:00
|
|
|
KillMacroBlock(data[mbi]);
|
2009-08-15 23:48:58 +02:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a list of macro blocks sorted by access count
|
2011-08-27 08:52:49 +02:00
|
|
|
std::vector<MacroBlock*> access_data;
|
|
|
|
access_data.resize(data.size());
|
2012-01-08 02:03:40 +01:00
|
|
|
size_t access_data_count = 0;
|
2009-08-16 06:31:29 +02:00
|
|
|
// For whatever reason, G++ pukes if I try using iterators here...
|
|
|
|
for (size_t mbi = 0; mbi != data.size(); ++mbi)
|
2012-01-08 02:03:40 +01:00
|
|
|
{
|
|
|
|
if (data[mbi].blocks.size())
|
|
|
|
access_data[access_data_count++] = &data[mbi];
|
|
|
|
}
|
|
|
|
sort(access_data.begin(), access_data.begin() + access_data_count, comp_access_count);
|
2009-08-15 23:48:58 +02:00
|
|
|
|
|
|
|
// Sum up data size until we hit the max
|
|
|
|
size_t cur_size = 0;
|
|
|
|
size_t block_size = factory.GetBlockSize();
|
|
|
|
size_t mbi = 0;
|
2012-01-08 02:03:40 +01:00
|
|
|
for (; mbi < access_data_count && cur_size < max_size; ++mbi)
|
2009-08-15 23:48:58 +02:00
|
|
|
{
|
2011-08-27 08:52:49 +02:00
|
|
|
BlockArray &ba = access_data[mbi]->blocks;
|
|
|
|
cur_size += (ba.size() - std::count(ba.begin(), ba.end(), (BlockT*)0)) * block_size;
|
|
|
|
|
2009-08-15 23:48:58 +02:00
|
|
|
// Cut access count in half for live blocks, so parts that don't get accessed
|
|
|
|
// a lot will eventually be killed off.
|
2011-08-27 08:52:49 +02:00
|
|
|
access_data[mbi]->access_count /= 2;
|
2009-08-15 23:48:58 +02:00
|
|
|
}
|
|
|
|
// Hit max, clear all remaining blocks
|
2012-01-08 02:03:40 +01:00
|
|
|
for (++mbi; mbi < access_data_count; ++mbi)
|
2009-08-15 23:48:58 +02:00
|
|
|
{
|
2011-08-27 08:52:49 +02:00
|
|
|
KillMacroBlock(*access_data[mbi]);
|
2009-08-15 23:48:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// @brief Obtain a data block from the cache
|
|
|
|
/// @param i Index of the block to retrieve
|
|
|
|
/// @param[out] created On return, tells whether the returned block was created during the operation
|
|
|
|
/// @return A pointer to the block in cache
|
|
|
|
///
|
|
|
|
/// It is legal to pass 0 (null) for created, in this case nothing is returned in it.
|
|
|
|
BlockT *Get(size_t i, bool *created = 0)
|
|
|
|
{
|
|
|
|
size_t mbi = i >> MacroblockExponent;
|
|
|
|
assert(mbi < data.size());
|
|
|
|
|
|
|
|
MacroBlock &mb = data[mbi];
|
|
|
|
mb.access_count += 1;
|
|
|
|
|
|
|
|
if (mb.blocks.size() == 0)
|
|
|
|
{
|
|
|
|
mb.blocks.resize(macroblock_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t block_index = i & macroblock_index_mask;
|
|
|
|
assert(block_index < mb.blocks.size());
|
|
|
|
|
|
|
|
BlockT *b = mb.blocks[block_index];
|
|
|
|
|
|
|
|
if (!b)
|
|
|
|
{
|
|
|
|
b = factory.ProduceBlock(i);
|
|
|
|
assert(b != 0);
|
|
|
|
mb.blocks[block_index] = b;
|
|
|
|
|
|
|
|
if (created) *created = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (created) *created = false;
|
|
|
|
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// @brief Speculatively add blocks not present to the cache
|
|
|
|
/// @param forward Assume forwards linear access is plausible
|
|
|
|
/// @param backward Assume backwards linear access is plausible
|
|
|
|
/// @return Number of blocks added to the cache
|
|
|
|
///
|
|
|
|
/// Assuming forwards and/or backwards linear access causes the macroblock access data to be
|
|
|
|
/// used for speculating in macroblocks that may be accessed soon, and also allocate block
|
|
|
|
/// in macroblocks that may otherwise not have been accessed recently.
|
|
|
|
///
|
|
|
|
/// @todo Implement this.
|
|
|
|
size_t Speculate(bool forward, bool backward)
|
|
|
|
{
|
|
|
|
(void)forward;
|
|
|
|
(void)backward;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|