-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathcount_documents.ts
57 lines (48 loc) · 1.69 KB
/
count_documents.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import type { Document } from '../bson';
import type { Collection } from '../collection';
import type { Server } from '../sdam/server';
import type { ClientSession } from '../sessions';
import type { Callback } from '../utils';
import { AggregateOperation, type AggregateOptions } from './aggregate';
/** @public */
export interface CountDocumentsOptions extends AggregateOptions {
/** The number of documents to skip. */
skip?: number;
/** The maximum amounts to count before aborting. */
limit?: number;
}
/** @internal */
export class CountDocumentsOperation extends AggregateOperation<number> {
constructor(collection: Collection, query: Document, options: CountDocumentsOptions) {
const pipeline = [];
pipeline.push({ $match: query });
if (typeof options.skip === 'number') {
pipeline.push({ $skip: options.skip });
}
if (typeof options.limit === 'number') {
pipeline.push({ $limit: options.limit });
}
pipeline.push({ $group: { _id: 1, n: { $sum: 1 } } });
super(collection.s.namespace, pipeline, options);
}
override executeCallback(
server: Server,
session: ClientSession | undefined,
callback: Callback<number>
): void {
super.executeCallback(server, session, (err, result) => {
if (err || !result) {
callback(err);
return;
}
// NOTE: We're avoiding creating a cursor here to reduce the callstack.
const response = result as unknown as Document;
if (response.cursor == null || response.cursor.firstBatch == null) {
callback(undefined, 0);
return;
}
const docs = response.cursor.firstBatch;
callback(undefined, docs.length ? docs[0].n : 0);
});
}
}