open_toontown_panda3d/panda/src/gobj/geomCacheManager.cxx

123 lines
4.1 KiB
C++

// Filename: geomCacheManager.cxx
// Created by: drose (11Mar05)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
//
// All use of this software is subject to the terms of the Panda 3d
// Software license. You should have received a copy of this license
// along with this source code; you will also find a current copy of
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
//
// To contact the maintainers of this program write to
// panda3d-general@lists.sourceforge.net .
//
////////////////////////////////////////////////////////////////////
#include "geomCacheManager.h"
#include "geomCacheEntry.h"
#include "mutexHolder.h"
GeomCacheManager *GeomCacheManager::_global_ptr = NULL;
PStatCollector GeomCacheManager::_geom_cache_size_pcollector("Geom cache size");
PStatCollector GeomCacheManager::_geom_cache_active_pcollector("Geom cache size:Active");
PStatCollector GeomCacheManager::_geom_cache_record_pcollector("Geom cache operations:record");
PStatCollector GeomCacheManager::_geom_cache_erase_pcollector("Geom cache operations:erase");
PStatCollector GeomCacheManager::_geom_cache_evict_pcollector("Geom cache operations:evict");
////////////////////////////////////////////////////////////////////
// Function: GeomCacheManager::Constructor
// Access: Protected
// Description:
////////////////////////////////////////////////////////////////////
GeomCacheManager::
GeomCacheManager() :
_lock("GeomCacheManager"),
_total_size(0)
{
// We deliberately hang on to this pointer forever.
_list = new GeomCacheEntry;
_list->ref();
_list->_next = _list;
_list->_prev = _list;
}
////////////////////////////////////////////////////////////////////
// Function: GeomCacheManager::Destructor
// Access: Protected
// Description:
////////////////////////////////////////////////////////////////////
GeomCacheManager::
~GeomCacheManager() {
// Shouldn't be deleting this global object.
nassertv(false);
}
////////////////////////////////////////////////////////////////////
// Function: GeomCacheManager::get_global_ptr
// Access: Published, Static
// Description: Returns the global cache manager pointer.
////////////////////////////////////////////////////////////////////
GeomCacheManager *GeomCacheManager::
get_global_ptr() {
if (_global_ptr == (GeomCacheManager *)NULL) {
_global_ptr = new GeomCacheManager;
}
return _global_ptr;
}
////////////////////////////////////////////////////////////////////
// Function: GeomCacheManager::evict_old_entries
// Access: Private
// Description: Trims the cache size down to get_max_size() by
// evicting old cache entries as needed. It is assumed
// that you already hold the lock before calling this
// method.
////////////////////////////////////////////////////////////////////
void GeomCacheManager::
evict_old_entries() {
int current_frame = ClockObject::get_global_clock()->get_frame_count();
int min_frames = geom_cache_min_frames;
int max_size = get_max_size();
while (_total_size > max_size) {
PT(GeomCacheEntry) entry = _list->_next;
nassertv(entry != _list);
if (current_frame - entry->_last_frame_used < min_frames) {
// Never mind, this one is too new.
if (gobj_cat.is_debug()) {
gobj_cat.debug()
<< "Oldest element in cache is "
<< current_frame - entry->_last_frame_used
<< " frames; keeping cache at " << _total_size << " entries.\n";
}
break;
}
entry->unref();
if (gobj_cat.is_debug()) {
gobj_cat.debug()
<< "cache total_size = " << _total_size << " entries, max_size = "
<< max_size << ", removing " << *entry << "\n";
}
entry->evict_callback();
if (PStatClient::is_connected()) {
if (entry->_last_frame_used == current_frame) {
GeomCacheManager::_geom_cache_active_pcollector.sub_level(1);
}
}
--_total_size;
entry->remove_from_list();
_geom_cache_evict_pcollector.add_level(1);
}
_geom_cache_size_pcollector.set_level(_total_size);
}