📄 randomevictionsbuffer.cc
字号:
// Spatial Index Library//// Copyright (C) 2002 Navel Ltd.//// This library is free software; you can redistribute it and/or// modify it under the terms of the GNU Lesser General Public// License as published by the Free Software Foundation; either// version 2.1 of the License, or (at your option) any later version.//// This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU// Lesser General Public License for more details.//// You should have received a copy of the GNU Lesser General Public// License along with this library; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA//// Email:// mhadji@gmail.com#include <time.h>#include <stdlib.h>#include "../spatialindex/SpatialIndexImpl.h"#include "RandomEvictionsBuffer.h"#ifdef WIN32// following two functions don't exist natively on windows so we'll emulate them// drand48() returns real number x where 0 <= x < 1// srand48() initializes generatordouble drand48(void) { return (double) rand() / (double) (RAND_MAX+1); }void srand48(long seed) { srand(seed); }#endifusing namespace SpatialIndex;using namespace SpatialIndex::StorageManager;using std::map;IBuffer* SpatialIndex::StorageManager::returnRandomEvictionsBuffer(IStorageManager& sm, Tools::PropertySet& ps){ IBuffer* b = new RandomEvictionsBuffer(sm, ps); return b;}IBuffer* SpatialIndex::StorageManager::createNewRandomEvictionsBuffer(IStorageManager& sm, unsigned int capacity, bool bWriteThrough){ Tools::Variant var; Tools::PropertySet ps; var.m_varType = Tools::VT_ULONG; var.m_val.ulVal = capacity; ps.setProperty("Capacity", var); var.m_varType = Tools::VT_BOOL; var.m_val.blVal = bWriteThrough; ps.setProperty("WriteThrough", var); return returnRandomEvictionsBuffer(sm, ps);}RandomEvictionsBuffer::RandomEvictionsBuffer(IStorageManager& sm, Tools::PropertySet& ps) : Buffer(sm, ps){ srand48(time(NULL));}RandomEvictionsBuffer::~RandomEvictionsBuffer(){}void RandomEvictionsBuffer::addEntry(long id, Entry* e){ assert(m_buffer.size() <= m_capacity); if (m_buffer.size() == m_capacity) removeEntry(); assert(m_buffer.find(id) == m_buffer.end()); m_buffer.insert(std::pair<long, Entry*>(id, e));}void RandomEvictionsBuffer::removeEntry(){ if (m_buffer.size() == 0) return; unsigned int entry = (unsigned int) floor(((double) m_buffer.size()) * drand48()); map<long, Entry*>::iterator it = m_buffer.begin(); for (unsigned int cIndex = 0; cIndex < entry; cIndex++) it++; if ((*it).second->m_bDirty) { long id = (*it).first; m_pStorageManager->storeByteArray(id, ((*it).second)->m_length, (const byte *) ((*it).second)->m_pData); } delete (*it).second; m_buffer.erase(it);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -