forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCGALCache.cc
55 lines (46 loc) · 1.36 KB
/
CGALCache.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
#include "CGALCache.h"
#include "printutils.h"
#include "CGAL_Nef_polyhedron.h"
CGALCache *CGALCache::inst = NULL;
CGALCache::CGALCache(size_t limit) : cache(limit)
{
}
shared_ptr<const CGAL_Nef_polyhedron> CGALCache::get(const std::string &id) const
{
const shared_ptr<const CGAL_Nef_polyhedron> &N = this->cache[id]->N;
#ifdef DEBUG
PRINTB("CGAL Cache hit: %s (%d bytes)", id.substr(0, 40) % (N ? N->memsize() : 0));
#endif
return N;
}
bool CGALCache::insert(const std::string &id, const shared_ptr<const CGAL_Nef_polyhedron> &N)
{
bool inserted = this->cache.insert(id, new cache_entry(N), N ? N->memsize() : 0);
#ifdef DEBUG
if (inserted) PRINTB("CGAL Cache insert: %s (%d bytes)", id.substr(0, 40) % (N ? N->memsize() : 0));
else PRINTB("CGAL Cache insert failed: %s (%d bytes)", id.substr(0, 40) % (N ? N->memsize() : 0));
#endif
return inserted;
}
size_t CGALCache::maxSize() const
{
return this->cache.maxCost();
}
void CGALCache::setMaxSize(size_t limit)
{
this->cache.setMaxCost(limit);
}
void CGALCache::clear()
{
cache.clear();
}
void CGALCache::print()
{
PRINTB("CGAL Polyhedrons in cache: %d", this->cache.size());
PRINTB("CGAL cache size in bytes: %d", this->cache.totalCost());
}
CGALCache::cache_entry::cache_entry(const shared_ptr<const CGAL_Nef_polyhedron> &N)
: N(N)
{
if (print_messages_stack.size() > 0) this->msg = print_messages_stack.back();
}