You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
670 B

'use strict';
// This is a free list to avoid creating so many of the same object.
exports.FreeList = function(name, max, constructor) {
this.name = name;
this.constructor = constructor;
this.max = max;
this.list = [];
};
14 years ago
exports.FreeList.prototype.alloc = function() {
//debug("alloc " + this.name + " " + this.list.length);
14 years ago
return this.list.length ? this.list.shift() :
this.constructor.apply(this, arguments);
};
14 years ago
exports.FreeList.prototype.free = function(obj) {
//debug("free " + this.name + " " + this.list.length);
if (this.list.length < this.max) {
this.list.push(obj);
return true;
}
return false;
};