2019-08-25 09:39:20 +03:00
|
|
|
"use strict";
|
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
|
|
var extendStatics = function (d, b) {
|
|
|
|
extendStatics = Object.setPrototypeOf ||
|
|
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
2021-03-08 02:24:04 +03:00
|
|
|
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
2019-08-25 09:39:20 +03:00
|
|
|
return extendStatics(d, b);
|
|
|
|
};
|
|
|
|
return function (d, b) {
|
2021-03-08 02:24:04 +03:00
|
|
|
if (typeof b !== "function" && b !== null)
|
|
|
|
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
2019-08-25 09:39:20 +03:00
|
|
|
extendStatics(d, b);
|
|
|
|
function __() { this.constructor = d; }
|
|
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2021-03-08 02:24:04 +03:00
|
|
|
exports.TupleCoder = void 0;
|
2019-08-25 09:39:20 +03:00
|
|
|
var abstract_coder_1 = require("./abstract-coder");
|
|
|
|
var array_1 = require("./array");
|
|
|
|
var TupleCoder = /** @class */ (function (_super) {
|
|
|
|
__extends(TupleCoder, _super);
|
|
|
|
function TupleCoder(coders, localName) {
|
|
|
|
var _this = this;
|
|
|
|
var dynamic = false;
|
|
|
|
var types = [];
|
|
|
|
coders.forEach(function (coder) {
|
|
|
|
if (coder.dynamic) {
|
|
|
|
dynamic = true;
|
|
|
|
}
|
|
|
|
types.push(coder.type);
|
|
|
|
});
|
|
|
|
var type = ("tuple(" + types.join(",") + ")");
|
|
|
|
_this = _super.call(this, "tuple", type, localName, dynamic) || this;
|
|
|
|
_this.coders = coders;
|
|
|
|
return _this;
|
|
|
|
}
|
2020-11-23 11:43:28 +03:00
|
|
|
TupleCoder.prototype.defaultValue = function () {
|
|
|
|
var values = [];
|
|
|
|
this.coders.forEach(function (coder) {
|
|
|
|
values.push(coder.defaultValue());
|
|
|
|
});
|
|
|
|
// We only output named properties for uniquely named coders
|
|
|
|
var uniqueNames = this.coders.reduce(function (accum, coder) {
|
|
|
|
var name = coder.localName;
|
|
|
|
if (name) {
|
|
|
|
if (!accum[name]) {
|
|
|
|
accum[name] = 0;
|
|
|
|
}
|
|
|
|
accum[name]++;
|
|
|
|
}
|
|
|
|
return accum;
|
|
|
|
}, {});
|
|
|
|
// Add named values
|
|
|
|
this.coders.forEach(function (coder, index) {
|
|
|
|
var name = coder.localName;
|
|
|
|
if (!name || uniqueNames[name] !== 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (name === "length") {
|
|
|
|
name = "_length";
|
|
|
|
}
|
|
|
|
if (values[name] != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
values[name] = values[index];
|
|
|
|
});
|
|
|
|
return Object.freeze(values);
|
|
|
|
};
|
2019-08-25 09:39:20 +03:00
|
|
|
TupleCoder.prototype.encode = function (writer, value) {
|
2021-10-16 09:29:27 +03:00
|
|
|
return (0, array_1.pack)(writer, this.coders, value);
|
2019-08-25 09:39:20 +03:00
|
|
|
};
|
|
|
|
TupleCoder.prototype.decode = function (reader) {
|
2021-10-16 09:29:27 +03:00
|
|
|
return reader.coerce(this.name, (0, array_1.unpack)(reader, this.coders));
|
2019-08-25 09:39:20 +03:00
|
|
|
};
|
|
|
|
return TupleCoder;
|
|
|
|
}(abstract_coder_1.Coder));
|
|
|
|
exports.TupleCoder = TupleCoder;
|
2020-07-13 15:03:56 +03:00
|
|
|
//# sourceMappingURL=tuple.js.map
|