2011-11-04 22:14:30 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
|
|
|
|
|
|
|
Ox.GarbageCollection = (function() {
|
|
|
|
|
|
|
|
var that = function() {
|
2012-01-21 11:30:16 +00:00
|
|
|
collect();
|
|
|
|
},
|
|
|
|
timeout;
|
2011-11-04 22:14:30 +00:00
|
|
|
|
2012-01-21 11:30:16 +00:00
|
|
|
collect();
|
2011-11-04 22:14:30 +00:00
|
|
|
|
|
|
|
function collect() {
|
|
|
|
var len = Ox.len(Ox.UI.elements);
|
|
|
|
Object.keys(Ox.UI.elements).forEach(function(id) {
|
|
|
|
if (
|
|
|
|
Ox.UI.elements[id]
|
|
|
|
&& Ox.isUndefined(Ox.UI.elements[id].$element.data('oxid'))
|
|
|
|
) {
|
|
|
|
Ox.UI.elements[id].remove();
|
|
|
|
delete Ox.UI.elements[id];
|
|
|
|
}
|
|
|
|
});
|
2012-01-21 11:30:16 +00:00
|
|
|
timeout && clearTimeout(timeout);
|
|
|
|
timeout = setTimeout(collect, 60000);
|
2011-11-04 22:14:30 +00:00
|
|
|
Ox.Log('GC', len, '-->', Ox.len(Ox.UI.elements));
|
|
|
|
}
|
|
|
|
|
|
|
|
that.debug = function() {
|
|
|
|
var classNames = {}, sorted = [];
|
|
|
|
Ox.forEach(Ox.UI.elements, function(element, id) {
|
|
|
|
var className = element.$element[0].className;
|
|
|
|
classNames[className] = (classNames[className] || 0) + 1;
|
|
|
|
});
|
|
|
|
Ox.forEach(classNames, function(count, className) {
|
|
|
|
sorted.push({className: className, count: count});
|
|
|
|
})
|
|
|
|
return sorted.sort(function(a, b) {
|
|
|
|
return a.count - b.count;
|
|
|
|
}).map(function(v) {
|
|
|
|
return v.count + ' ' + v.className
|
|
|
|
}).join('\n');
|
|
|
|
};
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
}());
|