forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeometryCache.cc
57 lines (49 loc) · 1.61 KB
/
GeometryCache.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "GeometryCache.h"
#include "printutils.h"
#include "Geometry.h"
#include "boost-utils.h"
#ifdef DEBUG
#ifndef ENABLE_CGAL
#define ENABLE_CGAL
#endif
#include "CGAL_Nef_polyhedron.h"
#endif
GeometryCache *GeometryCache::inst = nullptr;
shared_ptr<const Geometry> GeometryCache::get(const std::string &id) const
{
const auto &geom = this->cache[id]->geom;
#ifdef DEBUG
PRINTDB("Geometry Cache hit: %s (%d bytes)", id.substr(0, 40) % (geom ? geom->memsize() : 0));
#endif
return geom;
}
bool GeometryCache::insert(const std::string &id, const shared_ptr<const Geometry> &geom)
{
auto inserted = this->cache.insert(id, new cache_entry(geom), geom ? geom->memsize() : 0);
#ifdef DEBUG
assert(!dynamic_cast<const CGAL_Nef_polyhedron*>(geom.get()));
if (inserted) PRINTDB("Geometry Cache insert: %s (%d bytes)",
id.substr(0, 40) % (geom ? geom->memsize() : 0));
else PRINTDB("Geometry Cache insert failed: %s (%d bytes)",
id.substr(0, 40) % (geom ? geom->memsize() : 0));
#endif
return inserted;
}
size_t GeometryCache::maxSizeMB() const
{
return this->cache.maxCost()/(1024*1024);
}
void GeometryCache::setMaxSizeMB(size_t limit)
{
this->cache.setMaxCost(limit*1024*1024);
}
void GeometryCache::print()
{
LOG(message_group::None,Location::NONE,"","Geometries in cache: %1$d",this->cache.size());
LOG(message_group::None,Location::NONE,"","Geometry cache size in bytes: %1$d",this->cache.totalCost());
}
GeometryCache::cache_entry::cache_entry(const shared_ptr<const Geometry> &geom)
: geom(geom)
{
if (print_messages_stack.size() > 0) this->msg = print_messages_stack.back();
}