Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | 728x 728x 728x 728x 728x 728x 728x 728x 728x 728x 728x 19323297x 630816901x 630816901x 22459283x 22459283x 19323297x 19323297x 19323297x 135445542x 256411x 728x 139311747x 139311747x 233x 26454061x 19323297x 19323297x 19323297x 728x 55204x 55204x 54879x 37158x 37158x 37158x 37158x 37158x 12578948x 1903x 12695358x 21121468x 18046x 70849912x 19301123x 19301123x 4776384x 4776384x 14524739x 14524739x 14524739x 66073528x 17469080x 17469080x 728x 728x 4681368x 4681368x 13750136x 4649415x 4649415x 241x 4259988x 4259988x 249x 18158766x 4681368x 25565954x 154x 154x 154x 154x 154x 73855990x 4649202x 4649202x 389218x 4x 4649198x 48290032x 191527x 25973039x 407085x 25565954x 25565954x 25565954x 25565954x 1374x 25564580x 25562290x 154x 25562290x 1611x 728x 8402x 3893x 2748x 3893x 8402x 19923x 8402x 8402x 8402x 728x 4483x 4483x 4483x 4483x 4483x | import { type BSONElement, type BSONSerializeOptions, BSONType, type DeserializeOptions, type Document, Long, parseToElementsToArray, parseUtf8ValidationOption, pluckBSONSerializeOptions, type Timestamp } from '../../bson'; import { MONGODB_ERROR_CODES, MongoUnexpectedServerResponseError } from '../../error'; import { type ClusterTime } from '../../sdam/common'; import { decorateDecryptionResult, ns } from '../../utils'; import { type JSTypeOf, OnDemandDocument, type OnDemandDocumentDeserializeOptions } from './on_demand/document'; // eslint-disable-next-line no-restricted-syntax const enum BSONElementOffset { type = 0, nameOffset = 1, nameLength = 2, offset = 3, length = 4 } /** * Accepts a BSON payload and checks for na "ok: 0" element. * This utility is intended to prevent calling response class constructors * that expect the result to be a success and demand certain properties to exist. * * For example, a cursor response always expects a cursor embedded document. * In order to write the class such that the properties reflect that assertion (non-null) * we cannot invoke the subclass constructor if the BSON represents an error. * * @param bytes - BSON document returned from the server */ export function isErrorResponse(bson: Uint8Array, elements: BSONElement[]): boolean { for (let eIdx = 0; eIdx < elements.length; eIdx++) { const element = elements[eIdx]; if (element[BSONElementOffset.nameLength] === 2) { const nameOffset = element[BSONElementOffset.nameOffset]; // 111 == "o", 107 == "k" if (bson[nameOffset] === 111 && bson[nameOffset + 1] === 107) { const valueOffset = element[BSONElementOffset.offset]; const valueLength = element[BSONElementOffset.length]; // If any byte in the length of the ok number (works for any type) is non zero, // then it is considered "ok: 1" for (let i = valueOffset; i < valueOffset + valueLength; i++) { if (bson[i] !== 0x00) return false; } return true; } } } return true; } /** @internal */ export type MongoDBResponseConstructor = { new (bson: Uint8Array, offset?: number, isArray?: boolean): MongoDBResponse; make(bson: Uint8Array): MongoDBResponse; }; /** @internal */ export class MongoDBResponse extends OnDemandDocument { // Wrap error thrown from BSON public override get<const T extends keyof JSTypeOf>( name: string | number, as: T, required?: false | undefined ): JSTypeOf[T] | null; public override get<const T extends keyof JSTypeOf>( name: string | number, as: T, required: true ): JSTypeOf[T]; public override get<const T extends keyof JSTypeOf>( name: string | number, as: T, required?: boolean | undefined ): JSTypeOf[T] | null { try { return super.get(name, as, required); } catch (cause) { throw new MongoUnexpectedServerResponseError(cause.message, { cause }); } } static is(value: unknown): value is MongoDBResponse { return value instanceof MongoDBResponse; } static make(bson: Uint8Array) { const elements = parseToElementsToArray(bson, 0); const isError = isErrorResponse(bson, elements); return isError ? new MongoDBResponse(bson, 0, false, elements) : new this(bson, 0, false, elements); } // {ok:1} static empty = new MongoDBResponse(new Uint8Array([13, 0, 0, 0, 16, 111, 107, 0, 1, 0, 0, 0, 0])); /** * Returns true iff: * - ok is 0 and the top-level code === 50 * - ok is 1 and the writeErrors array contains a code === 50 * - ok is 1 and the writeConcern object contains a code === 50 */ get isMaxTimeExpiredError() { // {ok: 0, code: 50 ... } const isTopLevel = this.ok === 0 && this.code === MONGODB_ERROR_CODES.MaxTimeMSExpired; if (isTopLevel) return true; if (this.ok === 0) return false; // {ok: 1, writeConcernError: {code: 50 ... }} const isWriteConcern = this.get('writeConcernError', BSONType.object)?.getNumber('code') === MONGODB_ERROR_CODES.MaxTimeMSExpired; Iif (isWriteConcern) return true; const writeErrors = this.get('writeErrors', BSONType.array); Iif (writeErrors?.size()) { for (let i = 0; i < writeErrors.size(); i++) { const isWriteError = writeErrors.get(i, BSONType.object)?.getNumber('code') === MONGODB_ERROR_CODES.MaxTimeMSExpired; // {ok: 1, writeErrors: [{code: 50 ... }]} if (isWriteError) return true; } } return false; } /** * Drivers can safely assume that the `recoveryToken` field is always a BSON document but drivers MUST NOT modify the * contents of the document. */ get recoveryToken(): Document | null { return ( this.get('recoveryToken', BSONType.object)?.toObject({ promoteValues: false, promoteLongs: false, promoteBuffers: false, validation: { utf8: true } }) ?? null ); } /** * The server creates a cursor in response to a snapshot find/aggregate command and reports atClusterTime within the cursor field in the response. * For the distinct command the server adds a top-level atClusterTime field to the response. * The atClusterTime field represents the timestamp of the read and is guaranteed to be majority committed. */ public get atClusterTime(): Timestamp | null { return ( this.get('cursor', BSONType.object)?.get('atClusterTime', BSONType.timestamp) ?? this.get('atClusterTime', BSONType.timestamp) ); } public get operationTime(): Timestamp | null { return this.get('operationTime', BSONType.timestamp); } /** Normalizes whatever BSON value is "ok" to a JS number 1 or 0. */ public get ok(): 0 | 1 { return this.getNumber('ok') ? 1 : 0; } public get $err(): string | null { return this.get('$err', BSONType.string); } public get errmsg(): string | null { return this.get('errmsg', BSONType.string); } public get code(): number | null { return this.getNumber('code'); } private clusterTime?: ClusterTime | null; public get $clusterTime(): ClusterTime | null { if (!('clusterTime' in this)) { const clusterTimeDoc = this.get('$clusterTime', BSONType.object); if (clusterTimeDoc == null) { this.clusterTime = null; return null; } const clusterTime = clusterTimeDoc.get('clusterTime', BSONType.timestamp, true); const signature = clusterTimeDoc.get('signature', BSONType.object)?.toObject(); // @ts-expect-error: `signature` is incorrectly typed. It is public API. this.clusterTime = { clusterTime, signature }; } return this.clusterTime ?? null; } public override toObject(options?: BSONSerializeOptions): Record<string, any> { const exactBSONOptions = { ...pluckBSONSerializeOptions(options ?? {}), validation: parseUtf8ValidationOption(options) }; return super.toObject(exactBSONOptions); } } /** @internal */ export class CursorResponse extends MongoDBResponse { /** * Devtools need to know which keys were encrypted before the driver automatically decrypted them. * If decorating is enabled (`Symbol.for('@@mdb.decorateDecryptionResult')`), this field will be set, * storing the original encrypted response from the server, so that we can build an object that has * the list of BSON keys that were encrypted stored at a well known symbol: `Symbol.for('@@mdb.decryptedKeys')`. */ encryptedResponse?: MongoDBResponse; /** * This supports a feature of the FindCursor. * It is an optimization to avoid an extra getMore when the limit has been reached */ static emptyGetMore: CursorResponse = { id: new Long(0), length: 0, shift: () => null } as unknown as CursorResponse; static override is(value: unknown): value is CursorResponse { return value instanceof CursorResponse || value === CursorResponse.emptyGetMore; } private _batch: OnDemandDocument | null = null; private iterated = 0; get cursor() { return this.get('cursor', BSONType.object, true); } public get id(): Long { try { return Long.fromBigInt(this.cursor.get('id', BSONType.long, true)); } catch (cause) { throw new MongoUnexpectedServerResponseError(cause.message, { cause }); } } public get ns() { const namespace = this.cursor.get('ns', BSONType.string); if (namespace != null) return ns(namespace); return null; } public get length() { return Math.max(this.batchSize - this.iterated, 0); } private _encryptedBatch: OnDemandDocument | null = null; get encryptedBatch() { if (this.encryptedResponse == null) return null; Iif (this._encryptedBatch != null) return this._encryptedBatch; const cursor = this.encryptedResponse?.get('cursor', BSONType.object); Eif (cursor?.has('firstBatch')) this._encryptedBatch = cursor.get('firstBatch', BSONType.array, true); else if (cursor?.has('nextBatch')) this._encryptedBatch = cursor.get('nextBatch', BSONType.array, true); else throw new MongoUnexpectedServerResponseError('Cursor document did not contain a batch'); return this._encryptedBatch; } private get batch() { if (this._batch != null) return this._batch; const cursor = this.cursor; if (cursor.has('firstBatch')) this._batch = cursor.get('firstBatch', BSONType.array, true); else if (cursor.has('nextBatch')) this._batch = cursor.get('nextBatch', BSONType.array, true); else throw new MongoUnexpectedServerResponseError('Cursor document did not contain a batch'); return this._batch; } public get batchSize() { return this.batch?.size(); } public get postBatchResumeToken() { return ( this.cursor.get('postBatchResumeToken', BSONType.object)?.toObject({ promoteValues: false, promoteLongs: false, promoteBuffers: false, validation: { utf8: true } }) ?? null ); } public shift(options: OnDemandDocumentDeserializeOptions): any { if (this.iterated >= this.batchSize) { return null; } const result = this.batch.get(this.iterated, BSONType.object, true) ?? null; const encryptedResult = this.encryptedBatch?.get(this.iterated, BSONType.object, true) ?? null; this.iterated += 1; if (options?.raw) { return result.toBytes(); } else { const object = result.toObject(options); if (encryptedResult) { decorateDecryptionResult(object, encryptedResult.toObject(options), true); } return object; } } public clear() { this.iterated = this.batchSize; } } /** * Explain responses have nothing to do with cursor responses * This class serves to temporarily avoid refactoring how cursors handle * explain responses which is to detect that the response is not cursor-like and return the explain * result as the "first and only" document in the "batch" and end the "cursor" */ export class ExplainedCursorResponse extends CursorResponse { isExplain = true; override get id(): Long { return Long.fromBigInt(0n); } override get batchSize() { return 0; } override get ns() { return null; } _length = 1; override get length(): number { return this._length; } override shift(options?: DeserializeOptions) { Iif (this._length === 0) return null; this._length -= 1; return this.toObject(options); } } /** * Client bulk writes have some extra metadata at the top level that needs to be * included in the result returned to the user. */ export class ClientBulkWriteCursorResponse extends CursorResponse { get insertedCount() { return this.get('nInserted', BSONType.int, true); } get upsertedCount() { return this.get('nUpserted', BSONType.int, true); } get matchedCount() { return this.get('nMatched', BSONType.int, true); } get modifiedCount() { return this.get('nModified', BSONType.int, true); } get deletedCount() { return this.get('nDeleted', BSONType.int, true); } get writeConcernError() { return this.get('writeConcernError', BSONType.object, false); } } |