bson 4.7.0 → 5.0.0-alpha.1
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/bson.d.ts +207 -259
- package/lib/bson.bundle.js +4034 -0
- package/lib/bson.bundle.js.map +1 -0
- package/lib/bson.cjs +4029 -0
- package/lib/bson.cjs.map +1 -0
- package/lib/bson.mjs +4003 -0
- package/lib/bson.mjs.map +1 -0
- package/package.json +49 -62
- package/src/binary.ts +64 -53
- package/src/bson.ts +27 -108
- package/src/code.ts +25 -14
- package/src/constants.ts +33 -0
- package/src/db_ref.ts +14 -8
- package/src/decimal128.ts +32 -25
- package/src/double.ts +8 -5
- package/src/error.ts +0 -2
- package/src/extended_json.ts +148 -148
- package/src/index.ts +19 -0
- package/src/int_32.ts +8 -5
- package/src/long.ts +17 -16
- package/src/max_key.ts +8 -6
- package/src/min_key.ts +8 -6
- package/src/objectid.ts +42 -74
- package/src/parser/calculate_size.ts +39 -63
- package/src/parser/deserializer.ts +41 -112
- package/src/parser/serializer.ts +234 -341
- package/src/parser/utils.ts +1 -99
- package/src/regexp.ts +17 -5
- package/src/symbol.ts +9 -5
- package/src/timestamp.ts +63 -27
- package/src/utils/byte_utils.ts +61 -0
- package/src/utils/node_byte_utils.ts +141 -0
- package/src/utils/web_byte_utils.ts +190 -0
- package/src/uuid_utils.ts +15 -15
- package/bower.json +0 -26
- package/dist/bson.browser.esm.js +0 -7470
- package/dist/bson.browser.esm.js.map +0 -1
- package/dist/bson.browser.umd.js +0 -7537
- package/dist/bson.browser.umd.js.map +0 -1
- package/dist/bson.bundle.js +0 -7536
- package/dist/bson.bundle.js.map +0 -1
- package/dist/bson.esm.js +0 -5436
- package/dist/bson.esm.js.map +0 -1
- package/lib/binary.js +0 -426
- package/lib/binary.js.map +0 -1
- package/lib/bson.js +0 -251
- package/lib/bson.js.map +0 -1
- package/lib/code.js +0 -46
- package/lib/code.js.map +0 -1
- package/lib/constants.js +0 -82
- package/lib/constants.js.map +0 -1
- package/lib/db_ref.js +0 -97
- package/lib/db_ref.js.map +0 -1
- package/lib/decimal128.js +0 -669
- package/lib/decimal128.js.map +0 -1
- package/lib/double.js +0 -76
- package/lib/double.js.map +0 -1
- package/lib/ensure_buffer.js +0 -25
- package/lib/ensure_buffer.js.map +0 -1
- package/lib/error.js +0 -55
- package/lib/error.js.map +0 -1
- package/lib/extended_json.js +0 -390
- package/lib/extended_json.js.map +0 -1
- package/lib/int_32.js +0 -58
- package/lib/int_32.js.map +0 -1
- package/lib/long.js +0 -900
- package/lib/long.js.map +0 -1
- package/lib/map.js +0 -123
- package/lib/map.js.map +0 -1
- package/lib/max_key.js +0 -33
- package/lib/max_key.js.map +0 -1
- package/lib/min_key.js +0 -33
- package/lib/min_key.js.map +0 -1
- package/lib/objectid.js +0 -299
- package/lib/objectid.js.map +0 -1
- package/lib/parser/calculate_size.js +0 -194
- package/lib/parser/calculate_size.js.map +0 -1
- package/lib/parser/deserializer.js +0 -665
- package/lib/parser/deserializer.js.map +0 -1
- package/lib/parser/serializer.js +0 -867
- package/lib/parser/serializer.js.map +0 -1
- package/lib/parser/utils.js +0 -115
- package/lib/parser/utils.js.map +0 -1
- package/lib/regexp.js +0 -74
- package/lib/regexp.js.map +0 -1
- package/lib/symbol.js +0 -48
- package/lib/symbol.js.map +0 -1
- package/lib/timestamp.js +0 -102
- package/lib/timestamp.js.map +0 -1
- package/lib/utils/global.js +0 -18
- package/lib/utils/global.js.map +0 -1
- package/lib/uuid_utils.js +0 -35
- package/lib/uuid_utils.js.map +0 -1
- package/lib/validate_utf8.js +0 -47
- package/lib/validate_utf8.js.map +0 -1
- package/src/ensure_buffer.ts +0 -27
- package/src/map.ts +0 -119
- package/src/utils/global.ts +0 -22
package/lib/binary.js
DELETED
|
@@ -1,426 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __extends = (this && this.__extends) || (function () {
|
|
3
|
-
var extendStatics = function (d, b) {
|
|
4
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
-
return extendStatics(d, b);
|
|
8
|
-
};
|
|
9
|
-
return function (d, b) {
|
|
10
|
-
if (typeof b !== "function" && b !== null)
|
|
11
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.UUID = exports.Binary = void 0;
|
|
19
|
-
var buffer_1 = require("buffer");
|
|
20
|
-
var ensure_buffer_1 = require("./ensure_buffer");
|
|
21
|
-
var uuid_utils_1 = require("./uuid_utils");
|
|
22
|
-
var utils_1 = require("./parser/utils");
|
|
23
|
-
var error_1 = require("./error");
|
|
24
|
-
var constants_1 = require("./constants");
|
|
25
|
-
/**
|
|
26
|
-
* A class representation of the BSON Binary type.
|
|
27
|
-
* @public
|
|
28
|
-
* @category BSONType
|
|
29
|
-
*/
|
|
30
|
-
var Binary = /** @class */ (function () {
|
|
31
|
-
/**
|
|
32
|
-
* Create a new Binary instance.
|
|
33
|
-
*
|
|
34
|
-
* This constructor can accept a string as its first argument. In this case,
|
|
35
|
-
* this string will be encoded using ISO-8859-1, **not** using UTF-8.
|
|
36
|
-
* This is almost certainly not what you want. Use `new Binary(Buffer.from(string))`
|
|
37
|
-
* instead to convert the string to a Buffer using UTF-8 first.
|
|
38
|
-
*
|
|
39
|
-
* @param buffer - a buffer object containing the binary data.
|
|
40
|
-
* @param subType - the option binary type.
|
|
41
|
-
*/
|
|
42
|
-
function Binary(buffer, subType) {
|
|
43
|
-
if (!(this instanceof Binary))
|
|
44
|
-
return new Binary(buffer, subType);
|
|
45
|
-
if (!(buffer == null) &&
|
|
46
|
-
!(typeof buffer === 'string') &&
|
|
47
|
-
!ArrayBuffer.isView(buffer) &&
|
|
48
|
-
!(buffer instanceof ArrayBuffer) &&
|
|
49
|
-
!Array.isArray(buffer)) {
|
|
50
|
-
throw new error_1.BSONTypeError('Binary can only be constructed from string, Buffer, TypedArray, or Array<number>');
|
|
51
|
-
}
|
|
52
|
-
this.sub_type = subType !== null && subType !== void 0 ? subType : Binary.BSON_BINARY_SUBTYPE_DEFAULT;
|
|
53
|
-
if (buffer == null) {
|
|
54
|
-
// create an empty binary buffer
|
|
55
|
-
this.buffer = buffer_1.Buffer.alloc(Binary.BUFFER_SIZE);
|
|
56
|
-
this.position = 0;
|
|
57
|
-
}
|
|
58
|
-
else {
|
|
59
|
-
if (typeof buffer === 'string') {
|
|
60
|
-
// string
|
|
61
|
-
this.buffer = buffer_1.Buffer.from(buffer, 'binary');
|
|
62
|
-
}
|
|
63
|
-
else if (Array.isArray(buffer)) {
|
|
64
|
-
// number[]
|
|
65
|
-
this.buffer = buffer_1.Buffer.from(buffer);
|
|
66
|
-
}
|
|
67
|
-
else {
|
|
68
|
-
// Buffer | TypedArray | ArrayBuffer
|
|
69
|
-
this.buffer = (0, ensure_buffer_1.ensureBuffer)(buffer);
|
|
70
|
-
}
|
|
71
|
-
this.position = this.buffer.byteLength;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* Updates this binary with byte_value.
|
|
76
|
-
*
|
|
77
|
-
* @param byteValue - a single byte we wish to write.
|
|
78
|
-
*/
|
|
79
|
-
Binary.prototype.put = function (byteValue) {
|
|
80
|
-
// If it's a string and a has more than one character throw an error
|
|
81
|
-
if (typeof byteValue === 'string' && byteValue.length !== 1) {
|
|
82
|
-
throw new error_1.BSONTypeError('only accepts single character String');
|
|
83
|
-
}
|
|
84
|
-
else if (typeof byteValue !== 'number' && byteValue.length !== 1)
|
|
85
|
-
throw new error_1.BSONTypeError('only accepts single character Uint8Array or Array');
|
|
86
|
-
// Decode the byte value once
|
|
87
|
-
var decodedByte;
|
|
88
|
-
if (typeof byteValue === 'string') {
|
|
89
|
-
decodedByte = byteValue.charCodeAt(0);
|
|
90
|
-
}
|
|
91
|
-
else if (typeof byteValue === 'number') {
|
|
92
|
-
decodedByte = byteValue;
|
|
93
|
-
}
|
|
94
|
-
else {
|
|
95
|
-
decodedByte = byteValue[0];
|
|
96
|
-
}
|
|
97
|
-
if (decodedByte < 0 || decodedByte > 255) {
|
|
98
|
-
throw new error_1.BSONTypeError('only accepts number in a valid unsigned byte range 0-255');
|
|
99
|
-
}
|
|
100
|
-
if (this.buffer.length > this.position) {
|
|
101
|
-
this.buffer[this.position++] = decodedByte;
|
|
102
|
-
}
|
|
103
|
-
else {
|
|
104
|
-
var buffer = buffer_1.Buffer.alloc(Binary.BUFFER_SIZE + this.buffer.length);
|
|
105
|
-
// Combine the two buffers together
|
|
106
|
-
this.buffer.copy(buffer, 0, 0, this.buffer.length);
|
|
107
|
-
this.buffer = buffer;
|
|
108
|
-
this.buffer[this.position++] = decodedByte;
|
|
109
|
-
}
|
|
110
|
-
};
|
|
111
|
-
/**
|
|
112
|
-
* Writes a buffer or string to the binary.
|
|
113
|
-
*
|
|
114
|
-
* @param sequence - a string or buffer to be written to the Binary BSON object.
|
|
115
|
-
* @param offset - specify the binary of where to write the content.
|
|
116
|
-
*/
|
|
117
|
-
Binary.prototype.write = function (sequence, offset) {
|
|
118
|
-
offset = typeof offset === 'number' ? offset : this.position;
|
|
119
|
-
// If the buffer is to small let's extend the buffer
|
|
120
|
-
if (this.buffer.length < offset + sequence.length) {
|
|
121
|
-
var buffer = buffer_1.Buffer.alloc(this.buffer.length + sequence.length);
|
|
122
|
-
this.buffer.copy(buffer, 0, 0, this.buffer.length);
|
|
123
|
-
// Assign the new buffer
|
|
124
|
-
this.buffer = buffer;
|
|
125
|
-
}
|
|
126
|
-
if (ArrayBuffer.isView(sequence)) {
|
|
127
|
-
this.buffer.set((0, ensure_buffer_1.ensureBuffer)(sequence), offset);
|
|
128
|
-
this.position =
|
|
129
|
-
offset + sequence.byteLength > this.position ? offset + sequence.length : this.position;
|
|
130
|
-
}
|
|
131
|
-
else if (typeof sequence === 'string') {
|
|
132
|
-
this.buffer.write(sequence, offset, sequence.length, 'binary');
|
|
133
|
-
this.position =
|
|
134
|
-
offset + sequence.length > this.position ? offset + sequence.length : this.position;
|
|
135
|
-
}
|
|
136
|
-
};
|
|
137
|
-
/**
|
|
138
|
-
* Reads **length** bytes starting at **position**.
|
|
139
|
-
*
|
|
140
|
-
* @param position - read from the given position in the Binary.
|
|
141
|
-
* @param length - the number of bytes to read.
|
|
142
|
-
*/
|
|
143
|
-
Binary.prototype.read = function (position, length) {
|
|
144
|
-
length = length && length > 0 ? length : this.position;
|
|
145
|
-
// Let's return the data based on the type we have
|
|
146
|
-
return this.buffer.slice(position, position + length);
|
|
147
|
-
};
|
|
148
|
-
/**
|
|
149
|
-
* Returns the value of this binary as a string.
|
|
150
|
-
* @param asRaw - Will skip converting to a string
|
|
151
|
-
* @remarks
|
|
152
|
-
* This is handy when calling this function conditionally for some key value pairs and not others
|
|
153
|
-
*/
|
|
154
|
-
Binary.prototype.value = function (asRaw) {
|
|
155
|
-
asRaw = !!asRaw;
|
|
156
|
-
// Optimize to serialize for the situation where the data == size of buffer
|
|
157
|
-
if (asRaw && this.buffer.length === this.position) {
|
|
158
|
-
return this.buffer;
|
|
159
|
-
}
|
|
160
|
-
// If it's a node.js buffer object
|
|
161
|
-
if (asRaw) {
|
|
162
|
-
return this.buffer.slice(0, this.position);
|
|
163
|
-
}
|
|
164
|
-
return this.buffer.toString('binary', 0, this.position);
|
|
165
|
-
};
|
|
166
|
-
/** the length of the binary sequence */
|
|
167
|
-
Binary.prototype.length = function () {
|
|
168
|
-
return this.position;
|
|
169
|
-
};
|
|
170
|
-
Binary.prototype.toJSON = function () {
|
|
171
|
-
return this.buffer.toString('base64');
|
|
172
|
-
};
|
|
173
|
-
Binary.prototype.toString = function (format) {
|
|
174
|
-
return this.buffer.toString(format);
|
|
175
|
-
};
|
|
176
|
-
/** @internal */
|
|
177
|
-
Binary.prototype.toExtendedJSON = function (options) {
|
|
178
|
-
options = options || {};
|
|
179
|
-
var base64String = this.buffer.toString('base64');
|
|
180
|
-
var subType = Number(this.sub_type).toString(16);
|
|
181
|
-
if (options.legacy) {
|
|
182
|
-
return {
|
|
183
|
-
$binary: base64String,
|
|
184
|
-
$type: subType.length === 1 ? '0' + subType : subType
|
|
185
|
-
};
|
|
186
|
-
}
|
|
187
|
-
return {
|
|
188
|
-
$binary: {
|
|
189
|
-
base64: base64String,
|
|
190
|
-
subType: subType.length === 1 ? '0' + subType : subType
|
|
191
|
-
}
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
Binary.prototype.toUUID = function () {
|
|
195
|
-
if (this.sub_type === Binary.SUBTYPE_UUID) {
|
|
196
|
-
return new UUID(this.buffer.slice(0, this.position));
|
|
197
|
-
}
|
|
198
|
-
throw new error_1.BSONError("Binary sub_type \"".concat(this.sub_type, "\" is not supported for converting to UUID. Only \"").concat(Binary.SUBTYPE_UUID, "\" is currently supported."));
|
|
199
|
-
};
|
|
200
|
-
/** @internal */
|
|
201
|
-
Binary.fromExtendedJSON = function (doc, options) {
|
|
202
|
-
options = options || {};
|
|
203
|
-
var data;
|
|
204
|
-
var type;
|
|
205
|
-
if ('$binary' in doc) {
|
|
206
|
-
if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) {
|
|
207
|
-
type = doc.$type ? parseInt(doc.$type, 16) : 0;
|
|
208
|
-
data = buffer_1.Buffer.from(doc.$binary, 'base64');
|
|
209
|
-
}
|
|
210
|
-
else {
|
|
211
|
-
if (typeof doc.$binary !== 'string') {
|
|
212
|
-
type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0;
|
|
213
|
-
data = buffer_1.Buffer.from(doc.$binary.base64, 'base64');
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
else if ('$uuid' in doc) {
|
|
218
|
-
type = 4;
|
|
219
|
-
data = (0, uuid_utils_1.uuidHexStringToBuffer)(doc.$uuid);
|
|
220
|
-
}
|
|
221
|
-
if (!data) {
|
|
222
|
-
throw new error_1.BSONTypeError("Unexpected Binary Extended JSON format ".concat(JSON.stringify(doc)));
|
|
223
|
-
}
|
|
224
|
-
return type === constants_1.BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type);
|
|
225
|
-
};
|
|
226
|
-
/** @internal */
|
|
227
|
-
Binary.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () {
|
|
228
|
-
return this.inspect();
|
|
229
|
-
};
|
|
230
|
-
Binary.prototype.inspect = function () {
|
|
231
|
-
var asBuffer = this.value(true);
|
|
232
|
-
return "new Binary(Buffer.from(\"".concat(asBuffer.toString('hex'), "\", \"hex\"), ").concat(this.sub_type, ")");
|
|
233
|
-
};
|
|
234
|
-
/**
|
|
235
|
-
* Binary default subtype
|
|
236
|
-
* @internal
|
|
237
|
-
*/
|
|
238
|
-
Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0;
|
|
239
|
-
/** Initial buffer default size */
|
|
240
|
-
Binary.BUFFER_SIZE = 256;
|
|
241
|
-
/** Default BSON type */
|
|
242
|
-
Binary.SUBTYPE_DEFAULT = 0;
|
|
243
|
-
/** Function BSON type */
|
|
244
|
-
Binary.SUBTYPE_FUNCTION = 1;
|
|
245
|
-
/** Byte Array BSON type */
|
|
246
|
-
Binary.SUBTYPE_BYTE_ARRAY = 2;
|
|
247
|
-
/** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */
|
|
248
|
-
Binary.SUBTYPE_UUID_OLD = 3;
|
|
249
|
-
/** UUID BSON type */
|
|
250
|
-
Binary.SUBTYPE_UUID = 4;
|
|
251
|
-
/** MD5 BSON type */
|
|
252
|
-
Binary.SUBTYPE_MD5 = 5;
|
|
253
|
-
/** Encrypted BSON type */
|
|
254
|
-
Binary.SUBTYPE_ENCRYPTED = 6;
|
|
255
|
-
/** Column BSON type */
|
|
256
|
-
Binary.SUBTYPE_COLUMN = 7;
|
|
257
|
-
/** User BSON type */
|
|
258
|
-
Binary.SUBTYPE_USER_DEFINED = 128;
|
|
259
|
-
return Binary;
|
|
260
|
-
}());
|
|
261
|
-
exports.Binary = Binary;
|
|
262
|
-
Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' });
|
|
263
|
-
var UUID_BYTE_LENGTH = 16;
|
|
264
|
-
/**
|
|
265
|
-
* A class representation of the BSON UUID type.
|
|
266
|
-
* @public
|
|
267
|
-
*/
|
|
268
|
-
var UUID = /** @class */ (function (_super) {
|
|
269
|
-
__extends(UUID, _super);
|
|
270
|
-
/**
|
|
271
|
-
* Create an UUID type
|
|
272
|
-
*
|
|
273
|
-
* @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer.
|
|
274
|
-
*/
|
|
275
|
-
function UUID(input) {
|
|
276
|
-
var _this = this;
|
|
277
|
-
var bytes;
|
|
278
|
-
var hexStr;
|
|
279
|
-
if (input == null) {
|
|
280
|
-
bytes = UUID.generate();
|
|
281
|
-
}
|
|
282
|
-
else if (input instanceof UUID) {
|
|
283
|
-
bytes = buffer_1.Buffer.from(input.buffer);
|
|
284
|
-
hexStr = input.__id;
|
|
285
|
-
}
|
|
286
|
-
else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) {
|
|
287
|
-
bytes = (0, ensure_buffer_1.ensureBuffer)(input);
|
|
288
|
-
}
|
|
289
|
-
else if (typeof input === 'string') {
|
|
290
|
-
bytes = (0, uuid_utils_1.uuidHexStringToBuffer)(input);
|
|
291
|
-
}
|
|
292
|
-
else {
|
|
293
|
-
throw new error_1.BSONTypeError('Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).');
|
|
294
|
-
}
|
|
295
|
-
_this = _super.call(this, bytes, constants_1.BSON_BINARY_SUBTYPE_UUID_NEW) || this;
|
|
296
|
-
_this.__id = hexStr;
|
|
297
|
-
return _this;
|
|
298
|
-
}
|
|
299
|
-
Object.defineProperty(UUID.prototype, "id", {
|
|
300
|
-
/**
|
|
301
|
-
* The UUID bytes
|
|
302
|
-
* @readonly
|
|
303
|
-
*/
|
|
304
|
-
get: function () {
|
|
305
|
-
return this.buffer;
|
|
306
|
-
},
|
|
307
|
-
set: function (value) {
|
|
308
|
-
this.buffer = value;
|
|
309
|
-
if (UUID.cacheHexString) {
|
|
310
|
-
this.__id = (0, uuid_utils_1.bufferToUuidHexString)(value);
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
enumerable: false,
|
|
314
|
-
configurable: true
|
|
315
|
-
});
|
|
316
|
-
/**
|
|
317
|
-
* Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated)
|
|
318
|
-
* @param includeDashes - should the string exclude dash-separators.
|
|
319
|
-
* */
|
|
320
|
-
UUID.prototype.toHexString = function (includeDashes) {
|
|
321
|
-
if (includeDashes === void 0) { includeDashes = true; }
|
|
322
|
-
if (UUID.cacheHexString && this.__id) {
|
|
323
|
-
return this.__id;
|
|
324
|
-
}
|
|
325
|
-
var uuidHexString = (0, uuid_utils_1.bufferToUuidHexString)(this.id, includeDashes);
|
|
326
|
-
if (UUID.cacheHexString) {
|
|
327
|
-
this.__id = uuidHexString;
|
|
328
|
-
}
|
|
329
|
-
return uuidHexString;
|
|
330
|
-
};
|
|
331
|
-
/**
|
|
332
|
-
* Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified.
|
|
333
|
-
*/
|
|
334
|
-
UUID.prototype.toString = function (encoding) {
|
|
335
|
-
return encoding ? this.id.toString(encoding) : this.toHexString();
|
|
336
|
-
};
|
|
337
|
-
/**
|
|
338
|
-
* Converts the id into its JSON string representation.
|
|
339
|
-
* A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
340
|
-
*/
|
|
341
|
-
UUID.prototype.toJSON = function () {
|
|
342
|
-
return this.toHexString();
|
|
343
|
-
};
|
|
344
|
-
/**
|
|
345
|
-
* Compares the equality of this UUID with `otherID`.
|
|
346
|
-
*
|
|
347
|
-
* @param otherId - UUID instance to compare against.
|
|
348
|
-
*/
|
|
349
|
-
UUID.prototype.equals = function (otherId) {
|
|
350
|
-
if (!otherId) {
|
|
351
|
-
return false;
|
|
352
|
-
}
|
|
353
|
-
if (otherId instanceof UUID) {
|
|
354
|
-
return otherId.id.equals(this.id);
|
|
355
|
-
}
|
|
356
|
-
try {
|
|
357
|
-
return new UUID(otherId).id.equals(this.id);
|
|
358
|
-
}
|
|
359
|
-
catch (_a) {
|
|
360
|
-
return false;
|
|
361
|
-
}
|
|
362
|
-
};
|
|
363
|
-
/**
|
|
364
|
-
* Creates a Binary instance from the current UUID.
|
|
365
|
-
*/
|
|
366
|
-
UUID.prototype.toBinary = function () {
|
|
367
|
-
return new Binary(this.id, Binary.SUBTYPE_UUID);
|
|
368
|
-
};
|
|
369
|
-
/**
|
|
370
|
-
* Generates a populated buffer containing a v4 uuid
|
|
371
|
-
*/
|
|
372
|
-
UUID.generate = function () {
|
|
373
|
-
var bytes = (0, utils_1.randomBytes)(UUID_BYTE_LENGTH);
|
|
374
|
-
// Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
|
375
|
-
// Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js
|
|
376
|
-
bytes[6] = (bytes[6] & 0x0f) | 0x40;
|
|
377
|
-
bytes[8] = (bytes[8] & 0x3f) | 0x80;
|
|
378
|
-
return buffer_1.Buffer.from(bytes);
|
|
379
|
-
};
|
|
380
|
-
/**
|
|
381
|
-
* Checks if a value is a valid bson UUID
|
|
382
|
-
* @param input - UUID, string or Buffer to validate.
|
|
383
|
-
*/
|
|
384
|
-
UUID.isValid = function (input) {
|
|
385
|
-
if (!input) {
|
|
386
|
-
return false;
|
|
387
|
-
}
|
|
388
|
-
if (input instanceof UUID) {
|
|
389
|
-
return true;
|
|
390
|
-
}
|
|
391
|
-
if (typeof input === 'string') {
|
|
392
|
-
return (0, uuid_utils_1.uuidValidateString)(input);
|
|
393
|
-
}
|
|
394
|
-
if ((0, utils_1.isUint8Array)(input)) {
|
|
395
|
-
// check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3)
|
|
396
|
-
if (input.length !== UUID_BYTE_LENGTH) {
|
|
397
|
-
return false;
|
|
398
|
-
}
|
|
399
|
-
return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80;
|
|
400
|
-
}
|
|
401
|
-
return false;
|
|
402
|
-
};
|
|
403
|
-
/**
|
|
404
|
-
* Creates an UUID from a hex string representation of an UUID.
|
|
405
|
-
* @param hexString - 32 or 36 character hex string (dashes excluded/included).
|
|
406
|
-
*/
|
|
407
|
-
UUID.createFromHexString = function (hexString) {
|
|
408
|
-
var buffer = (0, uuid_utils_1.uuidHexStringToBuffer)(hexString);
|
|
409
|
-
return new UUID(buffer);
|
|
410
|
-
};
|
|
411
|
-
/**
|
|
412
|
-
* Converts to a string representation of this Id.
|
|
413
|
-
*
|
|
414
|
-
* @returns return the 36 character hex string representation.
|
|
415
|
-
* @internal
|
|
416
|
-
*/
|
|
417
|
-
UUID.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () {
|
|
418
|
-
return this.inspect();
|
|
419
|
-
};
|
|
420
|
-
UUID.prototype.inspect = function () {
|
|
421
|
-
return "new UUID(\"".concat(this.toHexString(), "\")");
|
|
422
|
-
};
|
|
423
|
-
return UUID;
|
|
424
|
-
}(Binary));
|
|
425
|
-
exports.UUID = UUID;
|
|
426
|
-
//# sourceMappingURL=binary.js.map
|
package/lib/binary.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"binary.js","sourceRoot":"","sources":["../src/binary.ts"],"names":[],"mappings":"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"}
|