blob: 07712f3091c97f9cc529cb0a2048974c874805d5 (
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
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
58
59
60
61
|
/*
py/pyext - python script object for PD and Max/MSP
Copyright (c)2002-2005 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "pyatom.h"
#include <map>
#define INTV 0.01
typedef std::map<size_t,PyObject *> ObjMap;
static ObjMap objmap;
static size_t collix = 0,curix = 0;
static double last = 0;
size_t PyAtom::Register(PyObject *obj)
{
Collect();
Py_INCREF(obj);
objmap[++curix] = obj;
#ifdef _DEBUG
// post("REG %p (%i)\n",obj,objmap.size());
#endif
return curix;
}
PyObject *PyAtom::Retrieve(size_t id)
{
ObjMap::iterator it = objmap.find(id);
PyObject *ret = it == objmap.end()?NULL:it->second;
Collect();
return ret;
}
void PyAtom::Collect()
{
for(;;) {
ObjMap::iterator it = objmap.begin();
if(it == objmap.end() || it->first > collix) break;
PyObject *obj = it->second;
Py_DECREF(obj);
objmap.erase(it);
#ifdef _DEBUG
// post("DEL %p\n",obj);
#endif
}
// schedule next collect time
double tm = flext::GetTime();
if(tm > last+INTV) last = tm,collix = curix;
}
|