mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-24 04:36:31 +00:00
202 lines
5.5 KiB
JavaScript
202 lines
5.5 KiB
JavaScript
|
var __extends = this && this.t || function() {
|
||
|
var extendStatics = function(t, i) {
|
||
|
extendStatics = Object.setPrototypeOf || {
|
||
|
__proto__: []
|
||
|
} instanceof Array && function(t, i) {
|
||
|
t.__proto__ = i;
|
||
|
} || function(t, i) {
|
||
|
for (var r in i) if (Object.prototype.hasOwnProperty.call(i, r)) t[r] = i[r];
|
||
|
};
|
||
|
return extendStatics(t, i);
|
||
|
};
|
||
|
return function(t, i) {
|
||
|
if (typeof i !== "function" && i !== null) throw new TypeError("Class extends value " + String(i) + " is not a constructor or null");
|
||
|
extendStatics(t, i);
|
||
|
function __() {
|
||
|
this.constructor = t;
|
||
|
}
|
||
|
t.prototype = i === null ? Object.create(i) : (__.prototype = i.prototype, new __);
|
||
|
};
|
||
|
}();
|
||
|
|
||
|
import { Container, ContainerIterator } from "../../ContainerBase";
|
||
|
|
||
|
import checkObject from "../../../utils/checkObject";
|
||
|
|
||
|
import { throwIteratorAccessError } from "../../../utils/throwError";
|
||
|
|
||
|
var HashContainerIterator = function(t) {
|
||
|
__extends(HashContainerIterator, t);
|
||
|
function HashContainerIterator(i, r, e) {
|
||
|
var n = t.call(this, e) || this;
|
||
|
n.o = i;
|
||
|
n.h = r;
|
||
|
if (n.iteratorType === 0) {
|
||
|
n.pre = function() {
|
||
|
if (this.o.L === this.h) {
|
||
|
throwIteratorAccessError();
|
||
|
}
|
||
|
this.o = this.o.L;
|
||
|
return this;
|
||
|
};
|
||
|
n.next = function() {
|
||
|
if (this.o === this.h) {
|
||
|
throwIteratorAccessError();
|
||
|
}
|
||
|
this.o = this.o.m;
|
||
|
return this;
|
||
|
};
|
||
|
} else {
|
||
|
n.pre = function() {
|
||
|
if (this.o.m === this.h) {
|
||
|
throwIteratorAccessError();
|
||
|
}
|
||
|
this.o = this.o.m;
|
||
|
return this;
|
||
|
};
|
||
|
n.next = function() {
|
||
|
if (this.o === this.h) {
|
||
|
throwIteratorAccessError();
|
||
|
}
|
||
|
this.o = this.o.L;
|
||
|
return this;
|
||
|
};
|
||
|
}
|
||
|
return n;
|
||
|
}
|
||
|
return HashContainerIterator;
|
||
|
}(ContainerIterator);
|
||
|
|
||
|
export { HashContainerIterator };
|
||
|
|
||
|
var HashContainer = function(t) {
|
||
|
__extends(HashContainer, t);
|
||
|
function HashContainer() {
|
||
|
var i = t.call(this) || this;
|
||
|
i._ = [];
|
||
|
i.I = {};
|
||
|
i.HASH_TAG = Symbol("@@HASH_TAG");
|
||
|
Object.setPrototypeOf(i.I, null);
|
||
|
i.h = {};
|
||
|
i.h.L = i.h.m = i.H = i.l = i.h;
|
||
|
return i;
|
||
|
}
|
||
|
HashContainer.prototype.G = function(t) {
|
||
|
var i = t.L, r = t.m;
|
||
|
i.m = r;
|
||
|
r.L = i;
|
||
|
if (t === this.H) {
|
||
|
this.H = r;
|
||
|
}
|
||
|
if (t === this.l) {
|
||
|
this.l = i;
|
||
|
}
|
||
|
this.M -= 1;
|
||
|
};
|
||
|
HashContainer.prototype.v = function(t, i, r) {
|
||
|
if (r === undefined) r = checkObject(t);
|
||
|
var e;
|
||
|
if (r) {
|
||
|
var n = t[this.HASH_TAG];
|
||
|
if (n !== undefined) {
|
||
|
this._[n].p = i;
|
||
|
return this.M;
|
||
|
}
|
||
|
Object.defineProperty(t, this.HASH_TAG, {
|
||
|
value: this._.length,
|
||
|
configurable: true
|
||
|
});
|
||
|
e = {
|
||
|
u: t,
|
||
|
p: i,
|
||
|
L: this.l,
|
||
|
m: this.h
|
||
|
};
|
||
|
this._.push(e);
|
||
|
} else {
|
||
|
var s = this.I[t];
|
||
|
if (s) {
|
||
|
s.p = i;
|
||
|
return this.M;
|
||
|
}
|
||
|
e = {
|
||
|
u: t,
|
||
|
p: i,
|
||
|
L: this.l,
|
||
|
m: this.h
|
||
|
};
|
||
|
this.I[t] = e;
|
||
|
}
|
||
|
if (this.M === 0) {
|
||
|
this.H = e;
|
||
|
this.h.m = e;
|
||
|
} else {
|
||
|
this.l.m = e;
|
||
|
}
|
||
|
this.l = e;
|
||
|
this.h.L = e;
|
||
|
return ++this.M;
|
||
|
};
|
||
|
HashContainer.prototype.g = function(t, i) {
|
||
|
if (i === undefined) i = checkObject(t);
|
||
|
if (i) {
|
||
|
var r = t[this.HASH_TAG];
|
||
|
if (r === undefined) return this.h;
|
||
|
return this._[r];
|
||
|
} else {
|
||
|
return this.I[t] || this.h;
|
||
|
}
|
||
|
};
|
||
|
HashContainer.prototype.clear = function() {
|
||
|
var t = this.HASH_TAG;
|
||
|
this._.forEach((function(i) {
|
||
|
delete i.u[t];
|
||
|
}));
|
||
|
this._ = [];
|
||
|
this.I = {};
|
||
|
Object.setPrototypeOf(this.I, null);
|
||
|
this.M = 0;
|
||
|
this.H = this.l = this.h.L = this.h.m = this.h;
|
||
|
};
|
||
|
HashContainer.prototype.eraseElementByKey = function(t, i) {
|
||
|
var r;
|
||
|
if (i === undefined) i = checkObject(t);
|
||
|
if (i) {
|
||
|
var e = t[this.HASH_TAG];
|
||
|
if (e === undefined) return false;
|
||
|
delete t[this.HASH_TAG];
|
||
|
r = this._[e];
|
||
|
delete this._[e];
|
||
|
} else {
|
||
|
r = this.I[t];
|
||
|
if (r === undefined) return false;
|
||
|
delete this.I[t];
|
||
|
}
|
||
|
this.G(r);
|
||
|
return true;
|
||
|
};
|
||
|
HashContainer.prototype.eraseElementByIterator = function(t) {
|
||
|
var i = t.o;
|
||
|
if (i === this.h) {
|
||
|
throwIteratorAccessError();
|
||
|
}
|
||
|
this.G(i);
|
||
|
return t.next();
|
||
|
};
|
||
|
HashContainer.prototype.eraseElementByPos = function(t) {
|
||
|
if (t < 0 || t > this.M - 1) {
|
||
|
throw new RangeError;
|
||
|
}
|
||
|
var i = this.H;
|
||
|
while (t--) {
|
||
|
i = i.m;
|
||
|
}
|
||
|
this.G(i);
|
||
|
return this.M;
|
||
|
};
|
||
|
return HashContainer;
|
||
|
}(Container);
|
||
|
|
||
|
export { HashContainer };
|
||
|
//# sourceMappingURL=index.js.map
|