forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeometryCache.h
33 lines (26 loc) · 849 Bytes
/
GeometryCache.h
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
#pragma once
#include "cache.h"
#include "memory.h"
#include "Geometry.h"
class GeometryCache
{
public:
GeometryCache(size_t memorylimit = 100*1024*1024) : cache(memorylimit) {}
static GeometryCache *instance() { if (!inst) inst = new GeometryCache; return inst; }
bool contains(const std::string &id) const { return this->cache.contains(id); }
shared_ptr<const class Geometry> get(const std::string &id) const;
bool insert(const std::string &id, const shared_ptr<const Geometry> &geom);
size_t maxSize() const;
void setMaxSize(size_t limit);
void clear() { cache.clear(); }
void print();
private:
static GeometryCache *inst;
struct cache_entry {
shared_ptr<const class Geometry> geom;
std::string msg;
cache_entry(const shared_ptr<const Geometry> &geom);
~cache_entry() { }
};
Cache<std::string, cache_entry> cache;
};