@mongosh/shell-api 2.1.1 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/abstract-cursor.js +176 -132
- package/lib/abstract-cursor.js.map +1 -1
- package/lib/aggregate-or-find-cursor.js +102 -51
- package/lib/aggregate-or-find-cursor.js.map +1 -1
- package/lib/aggregation-cursor.js +59 -13
- package/lib/aggregation-cursor.js.map +1 -1
- package/lib/bulk.js +248 -197
- package/lib/bulk.js.map +1 -1
- package/lib/change-stream-cursor.js +145 -101
- package/lib/change-stream-cursor.js.map +1 -1
- package/lib/collection.d.ts +2 -1
- package/lib/collection.js +1185 -1245
- package/lib/collection.js.map +1 -1
- package/lib/cursor.js +238 -203
- package/lib/cursor.js.map +1 -1
- package/lib/database.js +1180 -1206
- package/lib/database.js.map +1 -1
- package/lib/dbquery.js +68 -22
- package/lib/dbquery.js.map +1 -1
- package/lib/decorators.d.ts +39 -13
- package/lib/decorators.js +34 -34
- package/lib/decorators.js.map +1 -1
- package/lib/explainable-cursor.js +66 -20
- package/lib/explainable-cursor.js.map +1 -1
- package/lib/explainable.js +214 -179
- package/lib/explainable.js.map +1 -1
- package/lib/field-level-encryption.js +286 -235
- package/lib/field-level-encryption.js.map +1 -1
- package/lib/helpers.js.map +1 -1
- package/lib/interruptor.js.map +1 -1
- package/lib/log-entry.js.map +1 -1
- package/lib/mongo-errors.js.map +1 -1
- package/lib/mongo.js +581 -547
- package/lib/mongo.js.map +1 -1
- package/lib/plan-cache.js +108 -64
- package/lib/plan-cache.js.map +1 -1
- package/lib/replica-set.js +290 -277
- package/lib/replica-set.js.map +1 -1
- package/lib/result.js +228 -91
- package/lib/result.js.map +1 -1
- package/lib/run-command-cursor.js +59 -13
- package/lib/run-command-cursor.js.map +1 -1
- package/lib/session.js +123 -76
- package/lib/session.js.map +1 -1
- package/lib/shard.js +507 -514
- package/lib/shard.js.map +1 -1
- package/lib/shell-api.js +313 -268
- package/lib/shell-api.js.map +1 -1
- package/lib/shell-bson.js.map +1 -1
- package/lib/shell-instance-state.js.map +1 -1
- package/lib/stream-processor.js +139 -92
- package/lib/stream-processor.js.map +1 -1
- package/lib/streams.js +158 -110
- package/lib/streams.js.map +1 -1
- package/package.json +8 -8
package/lib/abstract-cursor.js
CHANGED
|
@@ -1,9 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
3
|
+
var useValue = arguments.length > 2;
|
|
4
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
5
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
6
|
+
}
|
|
7
|
+
return useValue ? value : void 0;
|
|
8
|
+
};
|
|
9
|
+
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
10
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
11
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
12
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
13
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
14
|
+
var _, done = false;
|
|
15
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
16
|
+
var context = {};
|
|
17
|
+
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
18
|
+
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
19
|
+
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
20
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
21
|
+
if (kind === "accessor") {
|
|
22
|
+
if (result === void 0) continue;
|
|
23
|
+
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
24
|
+
if (_ = accept(result.get)) descriptor.get = _;
|
|
25
|
+
if (_ = accept(result.set)) descriptor.set = _;
|
|
26
|
+
if (_ = accept(result.init)) initializers.unshift(_);
|
|
27
|
+
}
|
|
28
|
+
else if (_ = accept(result)) {
|
|
29
|
+
if (kind === "field") initializers.unshift(_);
|
|
30
|
+
else descriptor[key] = _;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
34
|
+
done = true;
|
|
35
|
+
};
|
|
36
|
+
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
37
|
+
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
38
|
+
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
7
39
|
};
|
|
8
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
41
|
exports.AbstractCursor = void 0;
|
|
@@ -11,140 +43,152 @@ const decorators_1 = require("./decorators");
|
|
|
11
43
|
const enums_1 = require("./enums");
|
|
12
44
|
const result_1 = require("./result");
|
|
13
45
|
const helpers_1 = require("./helpers");
|
|
14
|
-
let AbstractCursor =
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
46
|
+
let AbstractCursor = (() => {
|
|
47
|
+
let _classDecorators = [decorators_1.shellApiClassNoHelp];
|
|
48
|
+
let _classDescriptor;
|
|
49
|
+
let _classExtraInitializers = [];
|
|
50
|
+
let _classThis;
|
|
51
|
+
let _classSuper = decorators_1.ShellApiWithMongoClass;
|
|
52
|
+
let _instanceExtraInitializers = [];
|
|
53
|
+
let _batchSize_decorators;
|
|
54
|
+
let _close_decorators;
|
|
55
|
+
let _forEach_decorators;
|
|
56
|
+
let _hasNext_decorators;
|
|
57
|
+
let _tryNext_decorators;
|
|
58
|
+
let _itcount_decorators;
|
|
59
|
+
let _toArray_decorators;
|
|
60
|
+
let _pretty_decorators;
|
|
61
|
+
let _map_decorators;
|
|
62
|
+
let _maxTimeMS_decorators;
|
|
63
|
+
let _next_decorators;
|
|
64
|
+
var AbstractCursor = _classThis = class extends _classSuper {
|
|
65
|
+
constructor(mongo, cursor) {
|
|
66
|
+
super();
|
|
67
|
+
this._mongo = (__runInitializers(this, _instanceExtraInitializers), void 0);
|
|
68
|
+
this._currentIterationResult = null;
|
|
69
|
+
this._mongo = mongo;
|
|
70
|
+
this._cursor = cursor;
|
|
71
|
+
this._transform = null;
|
|
72
|
+
}
|
|
73
|
+
async [enums_1.asPrintable]() {
|
|
74
|
+
var _a;
|
|
75
|
+
return (await (0, decorators_1.toShellResult)((_a = this._currentIterationResult) !== null && _a !== void 0 ? _a : (await this._it()))).printable;
|
|
76
|
+
}
|
|
77
|
+
async _it() {
|
|
78
|
+
const results = (this._currentIterationResult =
|
|
79
|
+
new result_1.CursorIterationResult());
|
|
80
|
+
await (0, helpers_1.iterate)(results, this, await this._mongo._displayBatchSize());
|
|
81
|
+
results.cursorHasMore = !this.isExhausted();
|
|
82
|
+
return results;
|
|
83
|
+
}
|
|
84
|
+
batchSize(size) {
|
|
85
|
+
this._cursor.batchSize(size);
|
|
86
|
+
return this;
|
|
87
|
+
}
|
|
88
|
+
async close() {
|
|
89
|
+
await this._cursor.close();
|
|
90
|
+
}
|
|
91
|
+
async forEach(f) {
|
|
92
|
+
for await (const doc of this) {
|
|
93
|
+
if ((await f(doc)) === false) {
|
|
94
|
+
break;
|
|
95
|
+
}
|
|
44
96
|
}
|
|
45
97
|
}
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
return this._cursor.hasNext();
|
|
49
|
-
}
|
|
50
|
-
async tryNext() {
|
|
51
|
-
let result = await this._cursor.tryNext();
|
|
52
|
-
if (result !== null && this._transform !== null) {
|
|
53
|
-
result = await this._transform(result);
|
|
98
|
+
async hasNext() {
|
|
99
|
+
return this._cursor.hasNext();
|
|
54
100
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
let doc;
|
|
62
|
-
while ((doc = await this.tryNext()) != null) {
|
|
63
|
-
yield doc;
|
|
101
|
+
async tryNext() {
|
|
102
|
+
let result = await this._cursor.tryNext();
|
|
103
|
+
if (result !== null && this._transform !== null) {
|
|
104
|
+
result = await this._transform(result);
|
|
105
|
+
}
|
|
106
|
+
return result;
|
|
64
107
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
return this._cursor.closed;
|
|
68
|
-
}
|
|
69
|
-
isExhausted() {
|
|
70
|
-
return this.isClosed() && this.objsLeftInBatch() === 0;
|
|
71
|
-
}
|
|
72
|
-
async itcount() {
|
|
73
|
-
let count = 0;
|
|
74
|
-
while (await this.tryNext()) {
|
|
75
|
-
count++;
|
|
108
|
+
get [(_batchSize_decorators = [(0, decorators_1.returnType)('this')], _close_decorators = [decorators_1.returnsPromise], _forEach_decorators = [decorators_1.returnsPromise], _hasNext_decorators = [decorators_1.returnsPromise], _tryNext_decorators = [decorators_1.returnsPromise], Symbol.for('@@mongosh.syntheticAsyncIterable'))]() {
|
|
109
|
+
return true;
|
|
76
110
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
result.push(doc);
|
|
111
|
+
async *[Symbol.asyncIterator]() {
|
|
112
|
+
let doc;
|
|
113
|
+
while ((doc = await this.tryNext()) != null) {
|
|
114
|
+
yield doc;
|
|
115
|
+
}
|
|
83
116
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
pretty() {
|
|
87
|
-
return this;
|
|
88
|
-
}
|
|
89
|
-
map(f) {
|
|
90
|
-
if (this._transform === null) {
|
|
91
|
-
this._transform = f;
|
|
117
|
+
isClosed() {
|
|
118
|
+
return this._cursor.closed;
|
|
92
119
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
this._transform = (doc) => f(g(doc));
|
|
120
|
+
isExhausted() {
|
|
121
|
+
return this.isClosed() && this.objsLeftInBatch() === 0;
|
|
96
122
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
async next() {
|
|
104
|
-
let result = await this._cursor.next();
|
|
105
|
-
if (result !== null && this._transform !== null) {
|
|
106
|
-
result = await this._transform(result);
|
|
123
|
+
async itcount() {
|
|
124
|
+
let count = 0;
|
|
125
|
+
while (await this.tryNext()) {
|
|
126
|
+
count++;
|
|
127
|
+
}
|
|
128
|
+
return count;
|
|
107
129
|
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
130
|
+
async toArray() {
|
|
131
|
+
const result = [];
|
|
132
|
+
for await (const doc of this) {
|
|
133
|
+
result.push(doc);
|
|
134
|
+
}
|
|
135
|
+
return result;
|
|
136
|
+
}
|
|
137
|
+
pretty() {
|
|
138
|
+
return this;
|
|
139
|
+
}
|
|
140
|
+
map(f) {
|
|
141
|
+
if (this._transform === null) {
|
|
142
|
+
this._transform = f;
|
|
143
|
+
}
|
|
144
|
+
else {
|
|
145
|
+
const g = this._transform;
|
|
146
|
+
this._transform = (doc) => f(g(doc));
|
|
147
|
+
}
|
|
148
|
+
return this;
|
|
149
|
+
}
|
|
150
|
+
maxTimeMS(value) {
|
|
151
|
+
this._cursor.maxTimeMS(value);
|
|
152
|
+
return this;
|
|
153
|
+
}
|
|
154
|
+
async next() {
|
|
155
|
+
let result = await this._cursor.next();
|
|
156
|
+
if (result !== null && this._transform !== null) {
|
|
157
|
+
result = await this._transform(result);
|
|
158
|
+
}
|
|
159
|
+
return result;
|
|
160
|
+
}
|
|
161
|
+
objsLeftInBatch() {
|
|
162
|
+
return this._cursor.bufferedCount();
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
__setFunctionName(_classThis, "AbstractCursor");
|
|
166
|
+
(() => {
|
|
167
|
+
var _a;
|
|
168
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create((_a = _classSuper[Symbol.metadata]) !== null && _a !== void 0 ? _a : null) : void 0;
|
|
169
|
+
_itcount_decorators = [decorators_1.returnsPromise];
|
|
170
|
+
_toArray_decorators = [decorators_1.returnsPromise];
|
|
171
|
+
_pretty_decorators = [(0, decorators_1.returnType)('this')];
|
|
172
|
+
_map_decorators = [(0, decorators_1.returnType)('this')];
|
|
173
|
+
_maxTimeMS_decorators = [(0, decorators_1.returnType)('this')];
|
|
174
|
+
_next_decorators = [decorators_1.returnsPromise];
|
|
175
|
+
__esDecorate(_classThis, null, _batchSize_decorators, { kind: "method", name: "batchSize", static: false, private: false, access: { has: obj => "batchSize" in obj, get: obj => obj.batchSize }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
176
|
+
__esDecorate(_classThis, null, _close_decorators, { kind: "method", name: "close", static: false, private: false, access: { has: obj => "close" in obj, get: obj => obj.close }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
177
|
+
__esDecorate(_classThis, null, _forEach_decorators, { kind: "method", name: "forEach", static: false, private: false, access: { has: obj => "forEach" in obj, get: obj => obj.forEach }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
178
|
+
__esDecorate(_classThis, null, _hasNext_decorators, { kind: "method", name: "hasNext", static: false, private: false, access: { has: obj => "hasNext" in obj, get: obj => obj.hasNext }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
179
|
+
__esDecorate(_classThis, null, _tryNext_decorators, { kind: "method", name: "tryNext", static: false, private: false, access: { has: obj => "tryNext" in obj, get: obj => obj.tryNext }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
180
|
+
__esDecorate(_classThis, null, _itcount_decorators, { kind: "method", name: "itcount", static: false, private: false, access: { has: obj => "itcount" in obj, get: obj => obj.itcount }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
181
|
+
__esDecorate(_classThis, null, _toArray_decorators, { kind: "method", name: "toArray", static: false, private: false, access: { has: obj => "toArray" in obj, get: obj => obj.toArray }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
182
|
+
__esDecorate(_classThis, null, _pretty_decorators, { kind: "method", name: "pretty", static: false, private: false, access: { has: obj => "pretty" in obj, get: obj => obj.pretty }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
183
|
+
__esDecorate(_classThis, null, _map_decorators, { kind: "method", name: "map", static: false, private: false, access: { has: obj => "map" in obj, get: obj => obj.map }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
184
|
+
__esDecorate(_classThis, null, _maxTimeMS_decorators, { kind: "method", name: "maxTimeMS", static: false, private: false, access: { has: obj => "maxTimeMS" in obj, get: obj => obj.maxTimeMS }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
185
|
+
__esDecorate(_classThis, null, _next_decorators, { kind: "method", name: "next", static: false, private: false, access: { has: obj => "next" in obj, get: obj => obj.next }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
186
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
187
|
+
AbstractCursor = _classThis = _classDescriptor.value;
|
|
188
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
189
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
190
|
+
})();
|
|
191
|
+
return AbstractCursor = _classThis;
|
|
192
|
+
})();
|
|
193
|
+
exports.AbstractCursor = AbstractCursor;
|
|
150
194
|
//# sourceMappingURL=abstract-cursor.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"abstract-cursor.js","sourceRoot":"","sources":["../src/abstract-cursor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"abstract-cursor.js","sourceRoot":"","sources":["../src/abstract-cursor.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,61 +1,112 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
3
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
4
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
5
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
6
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
7
|
+
var _, done = false;
|
|
8
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
9
|
+
var context = {};
|
|
10
|
+
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
11
|
+
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
12
|
+
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
13
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
14
|
+
if (kind === "accessor") {
|
|
15
|
+
if (result === void 0) continue;
|
|
16
|
+
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
17
|
+
if (_ = accept(result.get)) descriptor.get = _;
|
|
18
|
+
if (_ = accept(result.set)) descriptor.set = _;
|
|
19
|
+
if (_ = accept(result.init)) initializers.unshift(_);
|
|
20
|
+
}
|
|
21
|
+
else if (_ = accept(result)) {
|
|
22
|
+
if (kind === "field") initializers.unshift(_);
|
|
23
|
+
else descriptor[key] = _;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
27
|
+
done = true;
|
|
28
|
+
};
|
|
29
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
30
|
+
var useValue = arguments.length > 2;
|
|
31
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
32
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
33
|
+
}
|
|
34
|
+
return useValue ? value : void 0;
|
|
35
|
+
};
|
|
36
|
+
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
37
|
+
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
38
|
+
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
7
39
|
};
|
|
8
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
41
|
exports.AggregateOrFindCursor = void 0;
|
|
10
42
|
const decorators_1 = require("./decorators");
|
|
11
43
|
const helpers_1 = require("./helpers");
|
|
12
44
|
const abstract_cursor_1 = require("./abstract-cursor");
|
|
13
|
-
let AggregateOrFindCursor =
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const fullExplain = await this._cursor.explain(verbosity);
|
|
29
|
-
const explain = {
|
|
30
|
-
...fullExplain,
|
|
31
|
-
};
|
|
32
|
-
if (verbosity !== 'executionStats' &&
|
|
33
|
-
verbosity !== 'allPlansExecution' &&
|
|
34
|
-
explain.executionStats) {
|
|
35
|
-
delete explain.executionStats;
|
|
45
|
+
let AggregateOrFindCursor = (() => {
|
|
46
|
+
let _classDecorators = [decorators_1.shellApiClassNoHelp];
|
|
47
|
+
let _classDescriptor;
|
|
48
|
+
let _classExtraInitializers = [];
|
|
49
|
+
let _classThis;
|
|
50
|
+
let _classSuper = abstract_cursor_1.AbstractCursor;
|
|
51
|
+
let _instanceExtraInitializers = [];
|
|
52
|
+
let _projection_decorators;
|
|
53
|
+
let _skip_decorators;
|
|
54
|
+
let _sort_decorators;
|
|
55
|
+
let _explain_decorators;
|
|
56
|
+
var AggregateOrFindCursor = _classThis = class extends _classSuper {
|
|
57
|
+
projection(spec) {
|
|
58
|
+
this._cursor.project(spec);
|
|
59
|
+
return this;
|
|
36
60
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
delete explain.executionStats.allPlansExecution;
|
|
61
|
+
skip(value) {
|
|
62
|
+
this._cursor.skip(value);
|
|
63
|
+
return this;
|
|
41
64
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
65
|
+
sort(spec) {
|
|
66
|
+
this._cursor.sort(spec);
|
|
67
|
+
return this;
|
|
68
|
+
}
|
|
69
|
+
async explain(verbosity) {
|
|
70
|
+
verbosity = (0, helpers_1.validateExplainableVerbosity)(verbosity);
|
|
71
|
+
const fullExplain = await this._cursor.explain(verbosity);
|
|
72
|
+
const explain = {
|
|
73
|
+
...fullExplain,
|
|
74
|
+
};
|
|
75
|
+
if (verbosity !== 'executionStats' &&
|
|
76
|
+
verbosity !== 'allPlansExecution' &&
|
|
77
|
+
explain.executionStats) {
|
|
78
|
+
delete explain.executionStats;
|
|
79
|
+
}
|
|
80
|
+
if (verbosity === 'executionStats' &&
|
|
81
|
+
explain.executionStats &&
|
|
82
|
+
explain.executionStats.allPlansExecution) {
|
|
83
|
+
delete explain.executionStats.allPlansExecution;
|
|
84
|
+
}
|
|
85
|
+
return (0, helpers_1.markAsExplainOutput)(explain);
|
|
86
|
+
}
|
|
87
|
+
constructor() {
|
|
88
|
+
super(...arguments);
|
|
89
|
+
__runInitializers(this, _instanceExtraInitializers);
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
__setFunctionName(_classThis, "AggregateOrFindCursor");
|
|
93
|
+
(() => {
|
|
94
|
+
var _a;
|
|
95
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create((_a = _classSuper[Symbol.metadata]) !== null && _a !== void 0 ? _a : null) : void 0;
|
|
96
|
+
_projection_decorators = [(0, decorators_1.returnType)('this')];
|
|
97
|
+
_skip_decorators = [(0, decorators_1.returnType)('this')];
|
|
98
|
+
_sort_decorators = [(0, decorators_1.returnType)('this')];
|
|
99
|
+
_explain_decorators = [decorators_1.returnsPromise, (0, decorators_1.apiVersions)([1])];
|
|
100
|
+
__esDecorate(_classThis, null, _projection_decorators, { kind: "method", name: "projection", static: false, private: false, access: { has: obj => "projection" in obj, get: obj => obj.projection }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
101
|
+
__esDecorate(_classThis, null, _skip_decorators, { kind: "method", name: "skip", static: false, private: false, access: { has: obj => "skip" in obj, get: obj => obj.skip }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
102
|
+
__esDecorate(_classThis, null, _sort_decorators, { kind: "method", name: "sort", static: false, private: false, access: { has: obj => "sort" in obj, get: obj => obj.sort }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
103
|
+
__esDecorate(_classThis, null, _explain_decorators, { kind: "method", name: "explain", static: false, private: false, access: { has: obj => "explain" in obj, get: obj => obj.explain }, metadata: _metadata }, null, _instanceExtraInitializers);
|
|
104
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
105
|
+
AggregateOrFindCursor = _classThis = _classDescriptor.value;
|
|
106
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
107
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
108
|
+
})();
|
|
109
|
+
return AggregateOrFindCursor = _classThis;
|
|
110
|
+
})();
|
|
111
|
+
exports.AggregateOrFindCursor = AggregateOrFindCursor;
|
|
61
112
|
//# sourceMappingURL=aggregate-or-find-cursor.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aggregate-or-find-cursor.js","sourceRoot":"","sources":["../src/aggregate-or-find-cursor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aggregate-or-find-cursor.js","sourceRoot":"","sources":["../src/aggregate-or-find-cursor.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAKsB;AAOtB,uCAA8E;AAC9E,uDAAmD;IAG7B,qBAAqB;4BAD1C,gCAAmB;;;;sBAGV,gCAAc;;;;;;kDAAtB,SAAQ,WAA0B;QAElC,UAAU,CAAC,IAAc;YACvB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YAC3B,OAAO,IAAI,CAAC;QACd,CAAC;QAGD,IAAI,CAAC,KAAa;YAChB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACzB,OAAO,IAAI,CAAC;QACd,CAAC;QAGD,IAAI,CAAC,IAAc;YACjB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACxB,OAAO,IAAI,CAAC;QACd,CAAC;QAID,KAAK,CAAC,OAAO,CAAC,SAAgC;YAI5C,SAAS,GAAG,IAAA,sCAA4B,EAAC,SAAS,CAAC,CAAC;YACpD,MAAM,WAAW,GAAQ,MAAM,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;YAE/D,MAAM,OAAO,GAAQ;gBACnB,GAAG,WAAW;aACf,CAAC;YAEF,IACE,SAAS,KAAK,gBAAgB;gBAC9B,SAAS,KAAK,mBAAmB;gBACjC,OAAO,CAAC,cAAc,EACtB,CAAC;gBACD,OAAO,OAAO,CAAC,cAAc,CAAC;YAChC,CAAC;YAED,IACE,SAAS,KAAK,gBAAgB;gBAC9B,OAAO,CAAC,cAAc;gBACtB,OAAO,CAAC,cAAc,CAAC,iBAAiB,EACxC,CAAC;gBACD,OAAO,OAAO,CAAC,cAAc,CAAC,iBAAiB,CAAC;YAClD,CAAC;YAED,OAAO,IAAA,6BAAmB,EAAC,OAAO,CAAC,CAAC;QACtC,CAAC;;;;;;;;;;kCAhDA,IAAA,uBAAU,EAAC,MAAM,CAAC;4BAMlB,IAAA,uBAAU,EAAC,MAAM,CAAC;4BAMlB,IAAA,uBAAU,EAAC,MAAM,CAAC;+BAMlB,2BAAc,EACd,IAAA,wBAAW,EAAC,CAAC,CAAC,CAAC,CAAC;QAlBjB,uLAAA,UAAU,6DAGT;QAGD,qKAAA,IAAI,6DAGH;QAGD,qKAAA,IAAI,6DAGH;QAID,8KAAM,OAAO,6DA4BZ;QAnDH,6KAoDC;;;QApDqB,uDAAqB;;;;AAArB,sDAAqB"}
|
|
@@ -1,20 +1,66 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
3
|
+
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
4
|
+
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
5
|
+
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
6
|
+
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
7
|
+
var _, done = false;
|
|
8
|
+
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
9
|
+
var context = {};
|
|
10
|
+
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
11
|
+
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
12
|
+
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
13
|
+
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
14
|
+
if (kind === "accessor") {
|
|
15
|
+
if (result === void 0) continue;
|
|
16
|
+
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
17
|
+
if (_ = accept(result.get)) descriptor.get = _;
|
|
18
|
+
if (_ = accept(result.set)) descriptor.set = _;
|
|
19
|
+
if (_ = accept(result.init)) initializers.unshift(_);
|
|
20
|
+
}
|
|
21
|
+
else if (_ = accept(result)) {
|
|
22
|
+
if (kind === "field") initializers.unshift(_);
|
|
23
|
+
else descriptor[key] = _;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
27
|
+
done = true;
|
|
28
|
+
};
|
|
29
|
+
var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) {
|
|
30
|
+
var useValue = arguments.length > 2;
|
|
31
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
32
|
+
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
33
|
+
}
|
|
34
|
+
return useValue ? value : void 0;
|
|
35
|
+
};
|
|
36
|
+
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
37
|
+
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
38
|
+
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
7
39
|
};
|
|
8
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
41
|
const decorators_1 = require("./decorators");
|
|
10
42
|
const aggregate_or_find_cursor_1 = require("./aggregate-or-find-cursor");
|
|
11
|
-
let AggregationCursor =
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
43
|
+
let AggregationCursor = (() => {
|
|
44
|
+
let _classDecorators = [decorators_1.shellApiClassDefault];
|
|
45
|
+
let _classDescriptor;
|
|
46
|
+
let _classExtraInitializers = [];
|
|
47
|
+
let _classThis;
|
|
48
|
+
let _classSuper = aggregate_or_find_cursor_1.AggregateOrFindCursor;
|
|
49
|
+
var AggregationCursor = _classThis = class extends _classSuper {
|
|
50
|
+
constructor(mongo, cursor) {
|
|
51
|
+
super(mongo, cursor);
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
__setFunctionName(_classThis, "AggregationCursor");
|
|
55
|
+
(() => {
|
|
56
|
+
var _a;
|
|
57
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create((_a = _classSuper[Symbol.metadata]) !== null && _a !== void 0 ? _a : null) : void 0;
|
|
58
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
59
|
+
AggregationCursor = _classThis = _classDescriptor.value;
|
|
60
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
61
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
62
|
+
})();
|
|
63
|
+
return AggregationCursor = _classThis;
|
|
64
|
+
})();
|
|
19
65
|
exports.default = AggregationCursor;
|
|
20
66
|
//# sourceMappingURL=aggregation-cursor.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aggregation-cursor.js","sourceRoot":"","sources":["../src/aggregation-cursor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aggregation-cursor.js","sourceRoot":"","sources":["../src/aggregation-cursor.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6CAAoD;AAEpD,yEAAmE;;4BAElE,iCAAoB;;;;sBAC0B,gDAAqB;8CAA7B,SAAQ,WAAuD;QACpG,YAAY,KAAY,EAAE,MAAwC;YAChE,KAAK,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;QACvB,CAAC;;;;;;QAHH,6KAIC;;;QAJoB,uDAAiB"}
|