blob: 04f41272ed65a2679f32c5d57cf03f0937949065 (
plain)
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
|
#include "PolySetCache.h"
#include "printutils.h"
#include "polyset.h"
PolySetCache *PolySetCache::inst = NULL;
void PolySetCache::insert(const std::string &id, const shared_ptr<PolySet> &ps)
{
this->cache.insert(id, new cache_entry(ps), ps ? ps->memsize() : 0);
}
size_t PolySetCache::maxSize() const
{
return this->cache.maxCost();
}
void PolySetCache::setMaxSize(size_t limit)
{
this->cache.setMaxCost(limit);
}
void PolySetCache::print()
{
PRINTB("PolySets in cache: %d", this->cache.size());
PRINTB("PolySet cache size in bytes: %d", this->cache.totalCost());
}
PolySetCache::cache_entry::cache_entry(const shared_ptr<PolySet> &ps) : ps(ps)
{
if (print_messages_stack.size() > 0) this->msg = print_messages_stack.back();
}
|