oxjs/source/Ox.UI/js/Core/GarbageCollection.js

58 lines
1.6 KiB
JavaScript
Raw Normal View History

'use strict';
2012-05-21 10:38:18 +00:00
/*@
2012-05-22 13:14:40 +00:00
Ox.GarbageCollection <f> GarbageCollection
2012-05-21 10:38:18 +00:00
() -> <o> run garbage collection
debug() -> {} output debug information
@*/
Ox.GarbageCollection = (function() {
var that = function() {
collect();
},
timeout;
collect();
function collect() {
var len = Ox.len(Ox.UI.elements);
Object.keys(Ox.UI.elements).forEach(function(id) {
var $element = Ox.UI.elements[id];
2012-06-23 18:23:19 +00:00
if ($element && Ox.isUndefined($element.$element.data('oxid'))) {
//Chrome does not properly release resources, reset manually
//http://code.google.com/p/chromium/issues/detail?id=31014
2013-05-30 21:02:03 +00:00
$element.find('video').attr({src: ''});
2012-06-23 18:23:19 +00:00
$element.remove();
delete Ox.UI.elements[id];
}
});
timeout && clearTimeout(timeout);
timeout = setTimeout(collect, 60000);
Ox.Log('GC', len, '-->', Ox.len(Ox.UI.elements));
}
2012-05-21 10:38:18 +00:00
/*@
debug <f> debug info
() -> <s>
@*/
that.debug = function() {
var classNames = {}, sorted = [];
2012-06-26 16:01:47 +00:00
Ox.forEach(Ox.UI.elements, function($element, id) {
var className = $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;
}());