openscad/src/CGALCache.cc

50 lines
1.1 KiB
C++
Raw Normal View History

2011-09-11 13:07:18 +04:00
#include "CGALCache.h"
#include "printutils.h"
#include "CGAL_Nef_polyhedron.h"
CGALCache *CGALCache::inst = NULL;
2012-01-08 05:45:58 +04:00
CGALCache::CGALCache(size_t limit) : cache(limit)
{
}
const CGAL_Nef_polyhedron &CGALCache::get(const std::string &id) const
2011-09-11 13:07:18 +04:00
{
const CGAL_Nef_polyhedron &N = *this->cache[id];
#ifdef DEBUG
PRINTB("CGAL Cache hit: %s (%d bytes)", id.substr(0, 40) % N.memsize());
#endif
return N;
}
bool CGALCache::insert(const std::string &id, const CGAL_Nef_polyhedron &N)
{
bool inserted = this->cache.insert(id, new CGAL_Nef_polyhedron(N), N.memsize());
#ifdef DEBUG
if (inserted) PRINTB("CGAL Cache insert: %s (%d bytes)", id.substr(0, 40) % N.memsize());
else PRINTB("CGAL Cache insert failed: %s (%d bytes)", id.substr(0, 40) % N.memsize());
#endif
return inserted;
2011-09-11 13:07:18 +04:00
}
size_t CGALCache::maxSize() const
{
return this->cache.maxCost();
}
void CGALCache::setMaxSize(size_t limit)
{
this->cache.setMaxCost(limit);
}
void CGALCache::clear()
{
cache.clear();
}
2011-09-11 13:07:18 +04:00
void CGALCache::print()
{
2012-01-25 06:11:12 +04:00
PRINTB("CGAL Polyhedrons in cache: %d", this->cache.size());
PRINTB("CGAL cache size in bytes: %d", this->cache.totalCost());
2011-09-11 13:07:18 +04:00
}