123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- goog.provide('goog.structs.Pool');
- goog.require('goog.Disposable');
- goog.require('goog.structs.Queue');
- goog.require('goog.structs.Set');
- goog.structs.Pool = function(opt_minCount, opt_maxCount) {
- goog.Disposable.call(this);
-
- this.minCount_ = opt_minCount || 0;
-
- this.maxCount_ = opt_maxCount || 10;
-
- if (this.minCount_ > this.maxCount_) {
- throw Error(goog.structs.Pool.ERROR_MIN_MAX_);
- }
-
- this.freeQueue_ = new goog.structs.Queue();
-
- this.inUseSet_ = new goog.structs.Set();
-
- this.delay = 0;
-
- this.lastAccess = null;
-
- this.adjustForMinMax();
- };
- goog.inherits(goog.structs.Pool, goog.Disposable);
- goog.structs.Pool.ERROR_MIN_MAX_ =
- '[goog.structs.Pool] Min can not be greater than max';
- goog.structs.Pool.ERROR_DISPOSE_UNRELEASED_OBJS_ =
- '[goog.structs.Pool] Objects not released';
- goog.structs.Pool.prototype.setMinimumCount = function(min) {
-
- if (min > this.maxCount_) {
- throw Error(goog.structs.Pool.ERROR_MIN_MAX_);
- }
- this.minCount_ = min;
-
- this.adjustForMinMax();
- };
- goog.structs.Pool.prototype.setMaximumCount = function(max) {
-
- if (max < this.minCount_) {
- throw Error(goog.structs.Pool.ERROR_MIN_MAX_);
- }
- this.maxCount_ = max;
-
- this.adjustForMinMax();
- };
- goog.structs.Pool.prototype.setDelay = function(delay) {
- this.delay = delay;
- };
- goog.structs.Pool.prototype.getObject = function() {
- var time = goog.now();
- if (goog.isDefAndNotNull(this.lastAccess) &&
- time - this.lastAccess < this.delay) {
- return undefined;
- }
- var obj = this.removeFreeObject_();
- if (obj) {
- this.lastAccess = time;
- this.inUseSet_.add(obj);
- }
- return obj;
- };
- goog.structs.Pool.prototype.releaseObject = function(obj) {
- if (this.inUseSet_.remove(obj)) {
- this.addFreeObject(obj);
- return true;
- }
- return false;
- };
- goog.structs.Pool.prototype.removeFreeObject_ = function() {
- var obj;
- while (this.getFreeCount() > 0) {
- obj = this.freeQueue_.dequeue();
- if (!this.objectCanBeReused(obj)) {
- this.adjustForMinMax();
- } else {
- break;
- }
- }
- if (!obj && this.getCount() < this.maxCount_) {
- obj = this.createObject();
- }
- return obj;
- };
- goog.structs.Pool.prototype.addFreeObject = function(obj) {
- this.inUseSet_.remove(obj);
- if (this.objectCanBeReused(obj) && this.getCount() < this.maxCount_) {
- this.freeQueue_.enqueue(obj);
- } else {
- this.disposeObject(obj);
- }
- };
- goog.structs.Pool.prototype.adjustForMinMax = function() {
- var freeQueue = this.freeQueue_;
-
- while (this.getCount() < this.minCount_) {
- freeQueue.enqueue(this.createObject());
- }
-
- while (this.getCount() > this.maxCount_ && this.getFreeCount() > 0) {
- this.disposeObject(freeQueue.dequeue());
- }
- };
- goog.structs.Pool.prototype.createObject = function() {
- return {};
- };
- goog.structs.Pool.prototype.disposeObject = function(obj) {
- if (typeof obj.dispose == 'function') {
- obj.dispose();
- } else {
- for (var i in obj) {
- obj[i] = null;
- }
- }
- };
- goog.structs.Pool.prototype.objectCanBeReused = function(obj) {
- if (typeof obj.canBeReused == 'function') {
- return obj.canBeReused();
- }
- return true;
- };
- goog.structs.Pool.prototype.contains = function(obj) {
- return this.freeQueue_.contains(obj) || this.inUseSet_.contains(obj);
- };
- goog.structs.Pool.prototype.getCount = function() {
- return this.freeQueue_.getCount() + this.inUseSet_.getCount();
- };
- goog.structs.Pool.prototype.getInUseCount = function() {
- return this.inUseSet_.getCount();
- };
- goog.structs.Pool.prototype.getFreeCount = function() {
- return this.freeQueue_.getCount();
- };
- goog.structs.Pool.prototype.isEmpty = function() {
- return this.freeQueue_.isEmpty() && this.inUseSet_.isEmpty();
- };
- goog.structs.Pool.prototype.disposeInternal = function() {
- goog.structs.Pool.superClass_.disposeInternal.call(this);
- if (this.getInUseCount() > 0) {
- throw Error(goog.structs.Pool.ERROR_DISPOSE_UNRELEASED_OBJS_);
- }
- delete this.inUseSet_;
-
- var freeQueue = this.freeQueue_;
- while (!freeQueue.isEmpty()) {
- this.disposeObject(freeQueue.dequeue());
- }
- delete this.freeQueue_;
- };
|