Skip to content

Commit c18ba71

Browse files
author
Thomas Reggi
authored
fix: type issues with SerializeOptions and Long methods accepting Timestamp
NODE-2724
1 parent ae9ae2d commit c18ba71

File tree

5 files changed

+36
-44
lines changed

5 files changed

+36
-44
lines changed

src/bson.ts

+10-7
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ import { MinKey } from './min_key';
1919
import { ObjectId } from './objectid';
2020
import { calculateObjectSize as internalCalculateObjectSize } from './parser/calculate_size';
2121
// Parts of the parser
22-
import { DeserializationOptions, deserialize as internalDeserialize } from './parser/deserializer';
23-
import { SerializationOptions, serializeInto as internalSerialize } from './parser/serializer';
22+
import { DeserializeOptions, deserialize as internalDeserialize } from './parser/deserializer';
23+
import { SerializeOptions, serializeInto as internalSerialize } from './parser/serializer';
2424
import { BSONRegExp } from './regexp';
2525
import { BSONSymbol } from './symbol';
2626
import { Timestamp } from './timestamp';
27+
28+
export { SerializeOptions, DeserializeOptions };
29+
2730
export {
2831
BSON_BINARY_SUBTYPE_BYTE_ARRAY,
2932
BSON_BINARY_SUBTYPE_DEFAULT,
@@ -118,7 +121,7 @@ export function setInternalBufferSize(size: number): void {
118121
* @param object - the Javascript object to serialize.
119122
* @returns Buffer object containing the serialized object.
120123
*/
121-
export function serialize(object: Document, options: SerializationOptions = {}): Buffer {
124+
export function serialize(object: Document, options: SerializeOptions = {}): Buffer {
122125
// Unpack the options
123126
const checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false;
124127
const serializeFunctions =
@@ -166,7 +169,7 @@ export function serialize(object: Document, options: SerializationOptions = {}):
166169
export function serializeWithBufferAndIndex(
167170
object: Document,
168171
finalBuffer: Buffer,
169-
options: SerializationOptions = {}
172+
options: SerializeOptions = {}
170173
): number {
171174
// Unpack the options
172175
const checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false;
@@ -198,13 +201,13 @@ export function serializeWithBufferAndIndex(
198201
* @param buffer - the buffer containing the serialized set of BSON documents.
199202
* @returns returns the deserialized Javascript Object.
200203
*/
201-
export function deserialize(buffer: Buffer, options: DeserializationOptions = {}): Document {
204+
export function deserialize(buffer: Buffer, options: DeserializeOptions = {}): Document {
202205
buffer = ensureBuffer(buffer);
203206
return internalDeserialize(buffer, options);
204207
}
205208

206209
export type CalculateObjectSizeOptions = Pick<
207-
SerializationOptions,
210+
SerializeOptions,
208211
'serializeFunctions' | 'ignoreUndefined'
209212
>;
210213

@@ -245,7 +248,7 @@ export function deserializeStream(
245248
numberOfDocuments: number,
246249
documents: Document[],
247250
docStartIndex: number,
248-
options: DeserializationOptions
251+
options: DeserializeOptions
249252
): number {
250253
const internalOptions = Object.assign(
251254
{ allowObjectSmallerThanBufferSize: true, index: 0 },

src/long.ts

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Timestamp } from './timestamp';
12
import type { EJSONOptions } from './extended_json';
23
import { isObjectLike } from './parser/utils';
34

@@ -297,7 +298,7 @@ export class Long {
297298
}
298299

299300
/** Returns the sum of this and the specified Long. */
300-
add(addend: string | number | Long): Long {
301+
add(addend: string | number | Long | Timestamp): Long {
301302
if (!Long.isLong(addend)) addend = Long.fromValue(addend);
302303

303304
// Divide each number into 4 chunks of 16 bits, and then sum the chunks.
@@ -334,7 +335,7 @@ export class Long {
334335
* Returns the sum of this and the specified Long.
335336
* @returns Sum
336337
*/
337-
and(other: string | number | Long): Long {
338+
and(other: string | number | Long | Timestamp): Long {
338339
if (!Long.isLong(other)) other = Long.fromValue(other);
339340
return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned);
340341
}
@@ -343,7 +344,7 @@ export class Long {
343344
* Compares this Long's value with the specified's.
344345
* @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater
345346
*/
346-
compare(other: string | number | Long): 0 | 1 | -1 {
347+
compare(other: string | number | Long | Timestamp): 0 | 1 | -1 {
347348
if (!Long.isLong(other)) other = Long.fromValue(other);
348349
if (this.eq(other)) return 0;
349350
const thisNeg = this.isNegative(),
@@ -366,7 +367,7 @@ export class Long {
366367
* Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned.
367368
* @returns Quotient
368369
*/
369-
divide(divisor: string | number | Long): Long {
370+
divide(divisor: string | number | Long | Timestamp): Long {
370371
if (!Long.isLong(divisor)) divisor = Long.fromValue(divisor);
371372
if (divisor.isZero()) throw Error('division by zero');
372373

@@ -473,7 +474,7 @@ export class Long {
473474
* Tests if this Long's value equals the specified's.
474475
* @param other - Other value
475476
*/
476-
equals(other: string | number | Long): boolean {
477+
equals(other: string | number | Long | Timestamp): boolean {
477478
if (!Long.isLong(other)) other = Long.fromValue(other);
478479
if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1)
479480
return false;
@@ -516,15 +517,15 @@ export class Long {
516517
}
517518

518519
/** Tests if this Long's value is greater than the specified's. */
519-
greaterThan(other: string | number | Long): boolean {
520+
greaterThan(other: string | number | Long | Timestamp): boolean {
520521
return this.comp(other) > 0;
521522
}
522523

523524
/** This is an alias of {@link Long.greaterThan} */
524525
gt = Long.prototype.greaterThan;
525526

526527
/** Tests if this Long's value is greater than or equal the specified's. */
527-
greaterThanOrEqual(other: string | number | Long): boolean {
528+
greaterThanOrEqual(other: string | number | Long | Timestamp): boolean {
528529
return this.comp(other) >= 0;
529530
}
530531

@@ -559,23 +560,23 @@ export class Long {
559560
}
560561

561562
/** Tests if this Long's value is less than the specified's. */
562-
lessThan(other: string | number | Long): boolean {
563+
lessThan(other: string | number | Long | Timestamp): boolean {
563564
return this.comp(other) < 0;
564565
}
565566

566567
/** This is an alias of {@link Long#lessThan}. */
567568
lt = Long.prototype.lessThan;
568569

569570
/** Tests if this Long's value is less than or equal the specified's. */
570-
lessThanOrEqual(other: string | number | Long): boolean {
571+
lessThanOrEqual(other: string | number | Long | Timestamp): boolean {
571572
return this.comp(other) <= 0;
572573
}
573574

574575
/** This is an alias of {@link Long.lessThanOrEqual} */
575576
lte = Long.prototype.lessThanOrEqual;
576577

577578
/** Returns this Long modulo the specified. */
578-
modulo(divisor: string | number | Long): Long {
579+
modulo(divisor: string | number | Long | Timestamp): Long {
579580
if (!Long.isLong(divisor)) divisor = Long.fromValue(divisor);
580581

581582
// use wasm support if present
@@ -602,7 +603,7 @@ export class Long {
602603
* @param multiplier - Multiplier
603604
* @returns Product
604605
*/
605-
multiply(multiplier: string | number | Long): Long {
606+
multiply(multiplier: string | number | Long | Timestamp): Long {
606607
if (this.isZero()) return Long.ZERO;
607608
if (!Long.isLong(multiplier)) multiplier = Long.fromValue(multiplier);
608609

@@ -683,7 +684,7 @@ export class Long {
683684
}
684685

685686
/** Tests if this Long's value differs from the specified's. */
686-
notEquals(other: string | number | Long): boolean {
687+
notEquals(other: string | number | Long | Timestamp): boolean {
687688
return !this.equals(other);
688689
}
689690

@@ -773,7 +774,7 @@ export class Long {
773774
* @param subtrahend - Subtrahend
774775
* @returns Difference
775776
*/
776-
subtract(subtrahend: string | number | Long): Long {
777+
subtract(subtrahend: string | number | Long | Timestamp): Long {
777778
if (!Long.isLong(subtrahend)) subtrahend = Long.fromValue(subtrahend);
778779
return this.add(subtrahend.neg());
779780
}

src/parser/deserializer.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { BSONSymbol } from '../symbol';
1616
import { Timestamp } from '../timestamp';
1717
import { validateUtf8 } from '../validate_utf8';
1818

19-
export interface DeserializationOptions {
19+
export interface DeserializeOptions {
2020
/** evaluate functions in the BSON document scoped to the object deserialized. */
2121
evalFunctions?: boolean;
2222
/** cache evaluated functions for reuse. */
@@ -49,7 +49,7 @@ const functionCache: { [hash: string]: Function } = {};
4949

5050
export function deserialize(
5151
buffer: Buffer,
52-
options: DeserializationOptions,
52+
options: DeserializeOptions,
5353
isArray?: boolean
5454
): Document {
5555
options = options == null ? {} : options;
@@ -93,7 +93,7 @@ export function deserialize(
9393
function deserializeObject(
9494
buffer: Buffer,
9595
index: number,
96-
options: DeserializationOptions,
96+
options: DeserializeOptions,
9797
isArray = false
9898
) {
9999
const evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions'];
@@ -253,8 +253,8 @@ function deserializeObject(
253253
arrayOptions = {};
254254
for (const n in options) {
255255
(arrayOptions as {
256-
[key: string]: DeserializationOptions[keyof DeserializationOptions];
257-
})[n] = options[n as keyof DeserializationOptions];
256+
[key: string]: DeserializeOptions[keyof DeserializeOptions];
257+
})[n] = options[n as keyof DeserializeOptions];
258258
}
259259
arrayOptions['raw'] = true;
260260
}

src/parser/serializer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import type { ObjectId } from '../objectid';
1616
import type { BSONRegExp } from '../regexp';
1717
import { isDate, normalizedFunctionString } from './utils';
1818

19-
export interface SerializationOptions {
19+
export interface SerializeOptions {
2020
/** the serializer will check if keys are valid. */
2121
checkKeys?: boolean;
2222
/** serialize the javascript functions **(default:false)**. */

test/node/extended_json_tests.js

+6-18
Original file line numberDiff line numberDiff line change
@@ -427,16 +427,10 @@ describe('Extended JSON', function () {
427427
// symbol: { $symbol: 'symbol' }, // removed because this type is deprecated. See comment above.
428428
timestamp: { $timestamp: { t: 0, i: 0 } }
429429
};
430-
const ejsonSerializationOptions = { relaxed: false };
431-
const resultOld = EJSON.serialize(
432-
deserialized.usingOldDeserializer,
433-
ejsonSerializationOptions
434-
);
430+
const ejsonSerializeOptions = { relaxed: false };
431+
const resultOld = EJSON.serialize(deserialized.usingOldDeserializer, ejsonSerializeOptions);
435432
expect(resultOld).to.deep.equal(ejsonExpected);
436-
const resultNew = EJSON.serialize(
437-
deserialized.usingNewDeserializer,
438-
ejsonSerializationOptions
439-
);
433+
const resultNew = EJSON.serialize(deserialized.usingNewDeserializer, ejsonSerializeOptions);
440434
expect(resultNew).to.deep.equal(ejsonExpected);
441435
});
442436

@@ -482,16 +476,10 @@ describe('Extended JSON', function () {
482476
usingOldDeserializer: OldBSON.deserialize(expectedBufferMinKey, deserializationOptions),
483477
usingNewDeserializer: BSON.deserialize(expectedBufferMinKey, deserializationOptions)
484478
};
485-
const ejsonSerializationOptions = { relaxed: false };
486-
const resultOld = EJSON.serialize(
487-
deserialized.usingOldDeserializer,
488-
ejsonSerializationOptions
489-
);
479+
const ejsonSerializeOptions = { relaxed: false };
480+
const resultOld = EJSON.serialize(deserialized.usingOldDeserializer, ejsonSerializeOptions);
490481
expect(resultOld).to.deep.equal(ejsonExpected);
491-
const resultNew = EJSON.serialize(
492-
deserialized.usingNewDeserializer,
493-
ejsonSerializationOptions
494-
);
482+
const resultNew = EJSON.serialize(deserialized.usingNewDeserializer, ejsonSerializeOptions);
495483
expect(resultNew).to.deep.equal(ejsonExpected);
496484
});
497485
}

0 commit comments

Comments
 (0)