bson.bundle.js 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149
  1. var BSON = (function (exports) {
  2. 'use strict';
  3. function isAnyArrayBuffer(value) {
  4. return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes(Object.prototype.toString.call(value));
  5. }
  6. function isUint8Array(value) {
  7. return Object.prototype.toString.call(value) === '[object Uint8Array]';
  8. }
  9. function isRegExp(d) {
  10. return Object.prototype.toString.call(d) === '[object RegExp]';
  11. }
  12. function isMap(d) {
  13. return Object.prototype.toString.call(d) === '[object Map]';
  14. }
  15. function isDate(d) {
  16. return Object.prototype.toString.call(d) === '[object Date]';
  17. }
  18. const BSON_MAJOR_VERSION = 5;
  19. const BSON_INT32_MAX = 0x7fffffff;
  20. const BSON_INT32_MIN = -0x80000000;
  21. const BSON_INT64_MAX = Math.pow(2, 63) - 1;
  22. const BSON_INT64_MIN = -Math.pow(2, 63);
  23. const JS_INT_MAX = Math.pow(2, 53);
  24. const JS_INT_MIN = -Math.pow(2, 53);
  25. const BSON_DATA_NUMBER = 1;
  26. const BSON_DATA_STRING = 2;
  27. const BSON_DATA_OBJECT = 3;
  28. const BSON_DATA_ARRAY = 4;
  29. const BSON_DATA_BINARY = 5;
  30. const BSON_DATA_UNDEFINED = 6;
  31. const BSON_DATA_OID = 7;
  32. const BSON_DATA_BOOLEAN = 8;
  33. const BSON_DATA_DATE = 9;
  34. const BSON_DATA_NULL = 10;
  35. const BSON_DATA_REGEXP = 11;
  36. const BSON_DATA_DBPOINTER = 12;
  37. const BSON_DATA_CODE = 13;
  38. const BSON_DATA_SYMBOL = 14;
  39. const BSON_DATA_CODE_W_SCOPE = 15;
  40. const BSON_DATA_INT = 16;
  41. const BSON_DATA_TIMESTAMP = 17;
  42. const BSON_DATA_LONG = 18;
  43. const BSON_DATA_DECIMAL128 = 19;
  44. const BSON_DATA_MIN_KEY = 0xff;
  45. const BSON_DATA_MAX_KEY = 0x7f;
  46. const BSON_BINARY_SUBTYPE_DEFAULT = 0;
  47. const BSON_BINARY_SUBTYPE_UUID_NEW = 4;
  48. const BSONType = Object.freeze({
  49. double: 1,
  50. string: 2,
  51. object: 3,
  52. array: 4,
  53. binData: 5,
  54. undefined: 6,
  55. objectId: 7,
  56. bool: 8,
  57. date: 9,
  58. null: 10,
  59. regex: 11,
  60. dbPointer: 12,
  61. javascript: 13,
  62. symbol: 14,
  63. javascriptWithScope: 15,
  64. int: 16,
  65. timestamp: 17,
  66. long: 18,
  67. decimal: 19,
  68. minKey: -1,
  69. maxKey: 127
  70. });
  71. class BSONError extends Error {
  72. get bsonError() {
  73. return true;
  74. }
  75. get name() {
  76. return 'BSONError';
  77. }
  78. constructor(message) {
  79. super(message);
  80. }
  81. static isBSONError(value) {
  82. return (value != null &&
  83. typeof value === 'object' &&
  84. 'bsonError' in value &&
  85. value.bsonError === true &&
  86. 'name' in value &&
  87. 'message' in value &&
  88. 'stack' in value);
  89. }
  90. }
  91. class BSONVersionError extends BSONError {
  92. get name() {
  93. return 'BSONVersionError';
  94. }
  95. constructor() {
  96. super(`Unsupported BSON version, bson types must be from bson ${BSON_MAJOR_VERSION}.x.x`);
  97. }
  98. }
  99. class BSONRuntimeError extends BSONError {
  100. get name() {
  101. return 'BSONRuntimeError';
  102. }
  103. constructor(message) {
  104. super(message);
  105. }
  106. }
  107. function nodejsMathRandomBytes(byteLength) {
  108. return nodeJsByteUtils.fromNumberArray(Array.from({ length: byteLength }, () => Math.floor(Math.random() * 256)));
  109. }
  110. const nodejsRandomBytes = (() => {
  111. try {
  112. return require('crypto').randomBytes;
  113. }
  114. catch {
  115. return nodejsMathRandomBytes;
  116. }
  117. })();
  118. const nodeJsByteUtils = {
  119. toLocalBufferType(potentialBuffer) {
  120. if (Buffer.isBuffer(potentialBuffer)) {
  121. return potentialBuffer;
  122. }
  123. if (ArrayBuffer.isView(potentialBuffer)) {
  124. return Buffer.from(potentialBuffer.buffer, potentialBuffer.byteOffset, potentialBuffer.byteLength);
  125. }
  126. const stringTag = potentialBuffer?.[Symbol.toStringTag] ?? Object.prototype.toString.call(potentialBuffer);
  127. if (stringTag === 'ArrayBuffer' ||
  128. stringTag === 'SharedArrayBuffer' ||
  129. stringTag === '[object ArrayBuffer]' ||
  130. stringTag === '[object SharedArrayBuffer]') {
  131. return Buffer.from(potentialBuffer);
  132. }
  133. throw new BSONError(`Cannot create Buffer from ${String(potentialBuffer)}`);
  134. },
  135. allocate(size) {
  136. return Buffer.alloc(size);
  137. },
  138. equals(a, b) {
  139. return nodeJsByteUtils.toLocalBufferType(a).equals(b);
  140. },
  141. fromNumberArray(array) {
  142. return Buffer.from(array);
  143. },
  144. fromBase64(base64) {
  145. return Buffer.from(base64, 'base64');
  146. },
  147. toBase64(buffer) {
  148. return nodeJsByteUtils.toLocalBufferType(buffer).toString('base64');
  149. },
  150. fromISO88591(codePoints) {
  151. return Buffer.from(codePoints, 'binary');
  152. },
  153. toISO88591(buffer) {
  154. return nodeJsByteUtils.toLocalBufferType(buffer).toString('binary');
  155. },
  156. fromHex(hex) {
  157. return Buffer.from(hex, 'hex');
  158. },
  159. toHex(buffer) {
  160. return nodeJsByteUtils.toLocalBufferType(buffer).toString('hex');
  161. },
  162. fromUTF8(text) {
  163. return Buffer.from(text, 'utf8');
  164. },
  165. toUTF8(buffer, start, end) {
  166. return nodeJsByteUtils.toLocalBufferType(buffer).toString('utf8', start, end);
  167. },
  168. utf8ByteLength(input) {
  169. return Buffer.byteLength(input, 'utf8');
  170. },
  171. encodeUTF8Into(buffer, source, byteOffset) {
  172. return nodeJsByteUtils.toLocalBufferType(buffer).write(source, byteOffset, undefined, 'utf8');
  173. },
  174. randomBytes: nodejsRandomBytes
  175. };
  176. function isReactNative() {
  177. const { navigator } = globalThis;
  178. return typeof navigator === 'object' && navigator.product === 'ReactNative';
  179. }
  180. function webMathRandomBytes(byteLength) {
  181. if (byteLength < 0) {
  182. throw new RangeError(`The argument 'byteLength' is invalid. Received ${byteLength}`);
  183. }
  184. return webByteUtils.fromNumberArray(Array.from({ length: byteLength }, () => Math.floor(Math.random() * 256)));
  185. }
  186. const webRandomBytes = (() => {
  187. const { crypto } = globalThis;
  188. if (crypto != null && typeof crypto.getRandomValues === 'function') {
  189. return (byteLength) => {
  190. return crypto.getRandomValues(webByteUtils.allocate(byteLength));
  191. };
  192. }
  193. else {
  194. if (isReactNative()) {
  195. const { console } = globalThis;
  196. console?.warn?.('BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.');
  197. }
  198. return webMathRandomBytes;
  199. }
  200. })();
  201. const HEX_DIGIT = /(\d|[a-f])/i;
  202. const webByteUtils = {
  203. toLocalBufferType(potentialUint8array) {
  204. const stringTag = potentialUint8array?.[Symbol.toStringTag] ??
  205. Object.prototype.toString.call(potentialUint8array);
  206. if (stringTag === 'Uint8Array') {
  207. return potentialUint8array;
  208. }
  209. if (ArrayBuffer.isView(potentialUint8array)) {
  210. return new Uint8Array(potentialUint8array.buffer.slice(potentialUint8array.byteOffset, potentialUint8array.byteOffset + potentialUint8array.byteLength));
  211. }
  212. if (stringTag === 'ArrayBuffer' ||
  213. stringTag === 'SharedArrayBuffer' ||
  214. stringTag === '[object ArrayBuffer]' ||
  215. stringTag === '[object SharedArrayBuffer]') {
  216. return new Uint8Array(potentialUint8array);
  217. }
  218. throw new BSONError(`Cannot make a Uint8Array from ${String(potentialUint8array)}`);
  219. },
  220. allocate(size) {
  221. if (typeof size !== 'number') {
  222. throw new TypeError(`The "size" argument must be of type number. Received ${String(size)}`);
  223. }
  224. return new Uint8Array(size);
  225. },
  226. equals(a, b) {
  227. if (a.byteLength !== b.byteLength) {
  228. return false;
  229. }
  230. for (let i = 0; i < a.byteLength; i++) {
  231. if (a[i] !== b[i]) {
  232. return false;
  233. }
  234. }
  235. return true;
  236. },
  237. fromNumberArray(array) {
  238. return Uint8Array.from(array);
  239. },
  240. fromBase64(base64) {
  241. return Uint8Array.from(atob(base64), c => c.charCodeAt(0));
  242. },
  243. toBase64(uint8array) {
  244. return btoa(webByteUtils.toISO88591(uint8array));
  245. },
  246. fromISO88591(codePoints) {
  247. return Uint8Array.from(codePoints, c => c.charCodeAt(0) & 0xff);
  248. },
  249. toISO88591(uint8array) {
  250. return Array.from(Uint16Array.from(uint8array), b => String.fromCharCode(b)).join('');
  251. },
  252. fromHex(hex) {
  253. const evenLengthHex = hex.length % 2 === 0 ? hex : hex.slice(0, hex.length - 1);
  254. const buffer = [];
  255. for (let i = 0; i < evenLengthHex.length; i += 2) {
  256. const firstDigit = evenLengthHex[i];
  257. const secondDigit = evenLengthHex[i + 1];
  258. if (!HEX_DIGIT.test(firstDigit)) {
  259. break;
  260. }
  261. if (!HEX_DIGIT.test(secondDigit)) {
  262. break;
  263. }
  264. const hexDigit = Number.parseInt(`${firstDigit}${secondDigit}`, 16);
  265. buffer.push(hexDigit);
  266. }
  267. return Uint8Array.from(buffer);
  268. },
  269. toHex(uint8array) {
  270. return Array.from(uint8array, byte => byte.toString(16).padStart(2, '0')).join('');
  271. },
  272. fromUTF8(text) {
  273. return new TextEncoder().encode(text);
  274. },
  275. toUTF8(uint8array, start, end) {
  276. return new TextDecoder('utf8', { fatal: false }).decode(uint8array.slice(start, end));
  277. },
  278. utf8ByteLength(input) {
  279. return webByteUtils.fromUTF8(input).byteLength;
  280. },
  281. encodeUTF8Into(buffer, source, byteOffset) {
  282. const bytes = webByteUtils.fromUTF8(source);
  283. buffer.set(bytes, byteOffset);
  284. return bytes.byteLength;
  285. },
  286. randomBytes: webRandomBytes
  287. };
  288. const hasGlobalBuffer = typeof Buffer === 'function' && Buffer.prototype?._isBuffer !== true;
  289. const ByteUtils = hasGlobalBuffer ? nodeJsByteUtils : webByteUtils;
  290. class BSONDataView extends DataView {
  291. static fromUint8Array(input) {
  292. return new DataView(input.buffer, input.byteOffset, input.byteLength);
  293. }
  294. }
  295. class BSONValue {
  296. get [Symbol.for('@@mdb.bson.version')]() {
  297. return BSON_MAJOR_VERSION;
  298. }
  299. }
  300. class Binary extends BSONValue {
  301. get _bsontype() {
  302. return 'Binary';
  303. }
  304. constructor(buffer, subType) {
  305. super();
  306. if (!(buffer == null) &&
  307. !(typeof buffer === 'string') &&
  308. !ArrayBuffer.isView(buffer) &&
  309. !(buffer instanceof ArrayBuffer) &&
  310. !Array.isArray(buffer)) {
  311. throw new BSONError('Binary can only be constructed from string, Buffer, TypedArray, or Array<number>');
  312. }
  313. this.sub_type = subType ?? Binary.BSON_BINARY_SUBTYPE_DEFAULT;
  314. if (buffer == null) {
  315. this.buffer = ByteUtils.allocate(Binary.BUFFER_SIZE);
  316. this.position = 0;
  317. }
  318. else {
  319. if (typeof buffer === 'string') {
  320. this.buffer = ByteUtils.fromISO88591(buffer);
  321. }
  322. else if (Array.isArray(buffer)) {
  323. this.buffer = ByteUtils.fromNumberArray(buffer);
  324. }
  325. else {
  326. this.buffer = ByteUtils.toLocalBufferType(buffer);
  327. }
  328. this.position = this.buffer.byteLength;
  329. }
  330. }
  331. put(byteValue) {
  332. if (typeof byteValue === 'string' && byteValue.length !== 1) {
  333. throw new BSONError('only accepts single character String');
  334. }
  335. else if (typeof byteValue !== 'number' && byteValue.length !== 1)
  336. throw new BSONError('only accepts single character Uint8Array or Array');
  337. let decodedByte;
  338. if (typeof byteValue === 'string') {
  339. decodedByte = byteValue.charCodeAt(0);
  340. }
  341. else if (typeof byteValue === 'number') {
  342. decodedByte = byteValue;
  343. }
  344. else {
  345. decodedByte = byteValue[0];
  346. }
  347. if (decodedByte < 0 || decodedByte > 255) {
  348. throw new BSONError('only accepts number in a valid unsigned byte range 0-255');
  349. }
  350. if (this.buffer.byteLength > this.position) {
  351. this.buffer[this.position++] = decodedByte;
  352. }
  353. else {
  354. const newSpace = ByteUtils.allocate(Binary.BUFFER_SIZE + this.buffer.length);
  355. newSpace.set(this.buffer, 0);
  356. this.buffer = newSpace;
  357. this.buffer[this.position++] = decodedByte;
  358. }
  359. }
  360. write(sequence, offset) {
  361. offset = typeof offset === 'number' ? offset : this.position;
  362. if (this.buffer.byteLength < offset + sequence.length) {
  363. const newSpace = ByteUtils.allocate(this.buffer.byteLength + sequence.length);
  364. newSpace.set(this.buffer, 0);
  365. this.buffer = newSpace;
  366. }
  367. if (ArrayBuffer.isView(sequence)) {
  368. this.buffer.set(ByteUtils.toLocalBufferType(sequence), offset);
  369. this.position =
  370. offset + sequence.byteLength > this.position ? offset + sequence.length : this.position;
  371. }
  372. else if (typeof sequence === 'string') {
  373. const bytes = ByteUtils.fromISO88591(sequence);
  374. this.buffer.set(bytes, offset);
  375. this.position =
  376. offset + sequence.length > this.position ? offset + sequence.length : this.position;
  377. }
  378. }
  379. read(position, length) {
  380. length = length && length > 0 ? length : this.position;
  381. return this.buffer.slice(position, position + length);
  382. }
  383. value(asRaw) {
  384. asRaw = !!asRaw;
  385. if (asRaw && this.buffer.length === this.position) {
  386. return this.buffer;
  387. }
  388. if (asRaw) {
  389. return this.buffer.slice(0, this.position);
  390. }
  391. return ByteUtils.toISO88591(this.buffer.subarray(0, this.position));
  392. }
  393. length() {
  394. return this.position;
  395. }
  396. toJSON() {
  397. return ByteUtils.toBase64(this.buffer);
  398. }
  399. toString(encoding) {
  400. if (encoding === 'hex')
  401. return ByteUtils.toHex(this.buffer);
  402. if (encoding === 'base64')
  403. return ByteUtils.toBase64(this.buffer);
  404. if (encoding === 'utf8' || encoding === 'utf-8')
  405. return ByteUtils.toUTF8(this.buffer, 0, this.buffer.byteLength);
  406. return ByteUtils.toUTF8(this.buffer, 0, this.buffer.byteLength);
  407. }
  408. toExtendedJSON(options) {
  409. options = options || {};
  410. const base64String = ByteUtils.toBase64(this.buffer);
  411. const subType = Number(this.sub_type).toString(16);
  412. if (options.legacy) {
  413. return {
  414. $binary: base64String,
  415. $type: subType.length === 1 ? '0' + subType : subType
  416. };
  417. }
  418. return {
  419. $binary: {
  420. base64: base64String,
  421. subType: subType.length === 1 ? '0' + subType : subType
  422. }
  423. };
  424. }
  425. toUUID() {
  426. if (this.sub_type === Binary.SUBTYPE_UUID) {
  427. return new UUID(this.buffer.slice(0, this.position));
  428. }
  429. throw new BSONError(`Binary sub_type "${this.sub_type}" is not supported for converting to UUID. Only "${Binary.SUBTYPE_UUID}" is currently supported.`);
  430. }
  431. static createFromHexString(hex, subType) {
  432. return new Binary(ByteUtils.fromHex(hex), subType);
  433. }
  434. static createFromBase64(base64, subType) {
  435. return new Binary(ByteUtils.fromBase64(base64), subType);
  436. }
  437. static fromExtendedJSON(doc, options) {
  438. options = options || {};
  439. let data;
  440. let type;
  441. if ('$binary' in doc) {
  442. if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) {
  443. type = doc.$type ? parseInt(doc.$type, 16) : 0;
  444. data = ByteUtils.fromBase64(doc.$binary);
  445. }
  446. else {
  447. if (typeof doc.$binary !== 'string') {
  448. type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0;
  449. data = ByteUtils.fromBase64(doc.$binary.base64);
  450. }
  451. }
  452. }
  453. else if ('$uuid' in doc) {
  454. type = 4;
  455. data = UUID.bytesFromString(doc.$uuid);
  456. }
  457. if (!data) {
  458. throw new BSONError(`Unexpected Binary Extended JSON format ${JSON.stringify(doc)}`);
  459. }
  460. return type === BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type);
  461. }
  462. [Symbol.for('nodejs.util.inspect.custom')]() {
  463. return this.inspect();
  464. }
  465. inspect() {
  466. const base64 = ByteUtils.toBase64(this.buffer.subarray(0, this.position));
  467. return `Binary.createFromBase64("${base64}", ${this.sub_type})`;
  468. }
  469. }
  470. Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0;
  471. Binary.BUFFER_SIZE = 256;
  472. Binary.SUBTYPE_DEFAULT = 0;
  473. Binary.SUBTYPE_FUNCTION = 1;
  474. Binary.SUBTYPE_BYTE_ARRAY = 2;
  475. Binary.SUBTYPE_UUID_OLD = 3;
  476. Binary.SUBTYPE_UUID = 4;
  477. Binary.SUBTYPE_MD5 = 5;
  478. Binary.SUBTYPE_ENCRYPTED = 6;
  479. Binary.SUBTYPE_COLUMN = 7;
  480. Binary.SUBTYPE_USER_DEFINED = 128;
  481. const UUID_BYTE_LENGTH = 16;
  482. const UUID_WITHOUT_DASHES = /^[0-9A-F]{32}$/i;
  483. const UUID_WITH_DASHES = /^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i;
  484. class UUID extends Binary {
  485. constructor(input) {
  486. let bytes;
  487. if (input == null) {
  488. bytes = UUID.generate();
  489. }
  490. else if (input instanceof UUID) {
  491. bytes = ByteUtils.toLocalBufferType(new Uint8Array(input.buffer));
  492. }
  493. else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) {
  494. bytes = ByteUtils.toLocalBufferType(input);
  495. }
  496. else if (typeof input === 'string') {
  497. bytes = UUID.bytesFromString(input);
  498. }
  499. else {
  500. throw new BSONError('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).');
  501. }
  502. super(bytes, BSON_BINARY_SUBTYPE_UUID_NEW);
  503. }
  504. get id() {
  505. return this.buffer;
  506. }
  507. set id(value) {
  508. this.buffer = value;
  509. }
  510. toHexString(includeDashes = true) {
  511. if (includeDashes) {
  512. return [
  513. ByteUtils.toHex(this.buffer.subarray(0, 4)),
  514. ByteUtils.toHex(this.buffer.subarray(4, 6)),
  515. ByteUtils.toHex(this.buffer.subarray(6, 8)),
  516. ByteUtils.toHex(this.buffer.subarray(8, 10)),
  517. ByteUtils.toHex(this.buffer.subarray(10, 16))
  518. ].join('-');
  519. }
  520. return ByteUtils.toHex(this.buffer);
  521. }
  522. toString(encoding) {
  523. if (encoding === 'hex')
  524. return ByteUtils.toHex(this.id);
  525. if (encoding === 'base64')
  526. return ByteUtils.toBase64(this.id);
  527. return this.toHexString();
  528. }
  529. toJSON() {
  530. return this.toHexString();
  531. }
  532. equals(otherId) {
  533. if (!otherId) {
  534. return false;
  535. }
  536. if (otherId instanceof UUID) {
  537. return ByteUtils.equals(otherId.id, this.id);
  538. }
  539. try {
  540. return ByteUtils.equals(new UUID(otherId).id, this.id);
  541. }
  542. catch {
  543. return false;
  544. }
  545. }
  546. toBinary() {
  547. return new Binary(this.id, Binary.SUBTYPE_UUID);
  548. }
  549. static generate() {
  550. const bytes = ByteUtils.randomBytes(UUID_BYTE_LENGTH);
  551. bytes[6] = (bytes[6] & 0x0f) | 0x40;
  552. bytes[8] = (bytes[8] & 0x3f) | 0x80;
  553. return bytes;
  554. }
  555. static isValid(input) {
  556. if (!input) {
  557. return false;
  558. }
  559. if (typeof input === 'string') {
  560. return UUID.isValidUUIDString(input);
  561. }
  562. if (isUint8Array(input)) {
  563. return input.byteLength === UUID_BYTE_LENGTH;
  564. }
  565. return (input._bsontype === 'Binary' &&
  566. input.sub_type === this.SUBTYPE_UUID &&
  567. input.buffer.byteLength === 16);
  568. }
  569. static createFromHexString(hexString) {
  570. const buffer = UUID.bytesFromString(hexString);
  571. return new UUID(buffer);
  572. }
  573. static createFromBase64(base64) {
  574. return new UUID(ByteUtils.fromBase64(base64));
  575. }
  576. static bytesFromString(representation) {
  577. if (!UUID.isValidUUIDString(representation)) {
  578. throw new BSONError('UUID string representation must be 32 hex digits or canonical hyphenated representation');
  579. }
  580. return ByteUtils.fromHex(representation.replace(/-/g, ''));
  581. }
  582. static isValidUUIDString(representation) {
  583. return UUID_WITHOUT_DASHES.test(representation) || UUID_WITH_DASHES.test(representation);
  584. }
  585. [Symbol.for('nodejs.util.inspect.custom')]() {
  586. return this.inspect();
  587. }
  588. inspect() {
  589. return `new UUID("${this.toHexString()}")`;
  590. }
  591. }
  592. UUID.cacheHexString = false;
  593. class Code extends BSONValue {
  594. get _bsontype() {
  595. return 'Code';
  596. }
  597. constructor(code, scope) {
  598. super();
  599. this.code = code.toString();
  600. this.scope = scope ?? null;
  601. }
  602. toJSON() {
  603. if (this.scope != null) {
  604. return { code: this.code, scope: this.scope };
  605. }
  606. return { code: this.code };
  607. }
  608. toExtendedJSON() {
  609. if (this.scope) {
  610. return { $code: this.code, $scope: this.scope };
  611. }
  612. return { $code: this.code };
  613. }
  614. static fromExtendedJSON(doc) {
  615. return new Code(doc.$code, doc.$scope);
  616. }
  617. [Symbol.for('nodejs.util.inspect.custom')]() {
  618. return this.inspect();
  619. }
  620. inspect() {
  621. const codeJson = this.toJSON();
  622. return `new Code("${String(codeJson.code)}"${codeJson.scope != null ? `, ${JSON.stringify(codeJson.scope)}` : ''})`;
  623. }
  624. }
  625. function isDBRefLike(value) {
  626. return (value != null &&
  627. typeof value === 'object' &&
  628. '$id' in value &&
  629. value.$id != null &&
  630. '$ref' in value &&
  631. typeof value.$ref === 'string' &&
  632. (!('$db' in value) || ('$db' in value && typeof value.$db === 'string')));
  633. }
  634. class DBRef extends BSONValue {
  635. get _bsontype() {
  636. return 'DBRef';
  637. }
  638. constructor(collection, oid, db, fields) {
  639. super();
  640. const parts = collection.split('.');
  641. if (parts.length === 2) {
  642. db = parts.shift();
  643. collection = parts.shift();
  644. }
  645. this.collection = collection;
  646. this.oid = oid;
  647. this.db = db;
  648. this.fields = fields || {};
  649. }
  650. get namespace() {
  651. return this.collection;
  652. }
  653. set namespace(value) {
  654. this.collection = value;
  655. }
  656. toJSON() {
  657. const o = Object.assign({
  658. $ref: this.collection,
  659. $id: this.oid
  660. }, this.fields);
  661. if (this.db != null)
  662. o.$db = this.db;
  663. return o;
  664. }
  665. toExtendedJSON(options) {
  666. options = options || {};
  667. let o = {
  668. $ref: this.collection,
  669. $id: this.oid
  670. };
  671. if (options.legacy) {
  672. return o;
  673. }
  674. if (this.db)
  675. o.$db = this.db;
  676. o = Object.assign(o, this.fields);
  677. return o;
  678. }
  679. static fromExtendedJSON(doc) {
  680. const copy = Object.assign({}, doc);
  681. delete copy.$ref;
  682. delete copy.$id;
  683. delete copy.$db;
  684. return new DBRef(doc.$ref, doc.$id, doc.$db, copy);
  685. }
  686. [Symbol.for('nodejs.util.inspect.custom')]() {
  687. return this.inspect();
  688. }
  689. inspect() {
  690. const oid = this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString();
  691. return `new DBRef("${this.namespace}", new ObjectId("${String(oid)}")${this.db ? `, "${this.db}"` : ''})`;
  692. }
  693. }
  694. let wasm = undefined;
  695. try {
  696. wasm = new WebAssembly.Instance(new WebAssembly.Module(new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11])), {}).exports;
  697. }
  698. catch {
  699. }
  700. const TWO_PWR_16_DBL = 1 << 16;
  701. const TWO_PWR_24_DBL = 1 << 24;
  702. const TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL;
  703. const TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL;
  704. const TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2;
  705. const INT_CACHE = {};
  706. const UINT_CACHE = {};
  707. const MAX_INT64_STRING_LENGTH = 20;
  708. const DECIMAL_REG_EX = /^(\+?0|(\+|-)?[1-9][0-9]*)$/;
  709. class Long extends BSONValue {
  710. get _bsontype() {
  711. return 'Long';
  712. }
  713. get __isLong__() {
  714. return true;
  715. }
  716. constructor(low = 0, high, unsigned) {
  717. super();
  718. if (typeof low === 'bigint') {
  719. Object.assign(this, Long.fromBigInt(low, !!high));
  720. }
  721. else if (typeof low === 'string') {
  722. Object.assign(this, Long.fromString(low, !!high));
  723. }
  724. else {
  725. this.low = low | 0;
  726. this.high = high | 0;
  727. this.unsigned = !!unsigned;
  728. }
  729. }
  730. static fromBits(lowBits, highBits, unsigned) {
  731. return new Long(lowBits, highBits, unsigned);
  732. }
  733. static fromInt(value, unsigned) {
  734. let obj, cachedObj, cache;
  735. if (unsigned) {
  736. value >>>= 0;
  737. if ((cache = 0 <= value && value < 256)) {
  738. cachedObj = UINT_CACHE[value];
  739. if (cachedObj)
  740. return cachedObj;
  741. }
  742. obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true);
  743. if (cache)
  744. UINT_CACHE[value] = obj;
  745. return obj;
  746. }
  747. else {
  748. value |= 0;
  749. if ((cache = -128 <= value && value < 128)) {
  750. cachedObj = INT_CACHE[value];
  751. if (cachedObj)
  752. return cachedObj;
  753. }
  754. obj = Long.fromBits(value, value < 0 ? -1 : 0, false);
  755. if (cache)
  756. INT_CACHE[value] = obj;
  757. return obj;
  758. }
  759. }
  760. static fromNumber(value, unsigned) {
  761. if (isNaN(value))
  762. return unsigned ? Long.UZERO : Long.ZERO;
  763. if (unsigned) {
  764. if (value < 0)
  765. return Long.UZERO;
  766. if (value >= TWO_PWR_64_DBL)
  767. return Long.MAX_UNSIGNED_VALUE;
  768. }
  769. else {
  770. if (value <= -TWO_PWR_63_DBL)
  771. return Long.MIN_VALUE;
  772. if (value + 1 >= TWO_PWR_63_DBL)
  773. return Long.MAX_VALUE;
  774. }
  775. if (value < 0)
  776. return Long.fromNumber(-value, unsigned).neg();
  777. return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned);
  778. }
  779. static fromBigInt(value, unsigned) {
  780. return Long.fromString(value.toString(), unsigned);
  781. }
  782. static fromString(str, unsigned, radix) {
  783. if (str.length === 0)
  784. throw new BSONError('empty string');
  785. if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity')
  786. return Long.ZERO;
  787. if (typeof unsigned === 'number') {
  788. (radix = unsigned), (unsigned = false);
  789. }
  790. else {
  791. unsigned = !!unsigned;
  792. }
  793. radix = radix || 10;
  794. if (radix < 2 || 36 < radix)
  795. throw new BSONError('radix');
  796. let p;
  797. if ((p = str.indexOf('-')) > 0)
  798. throw new BSONError('interior hyphen');
  799. else if (p === 0) {
  800. return Long.fromString(str.substring(1), unsigned, radix).neg();
  801. }
  802. const radixToPower = Long.fromNumber(Math.pow(radix, 8));
  803. let result = Long.ZERO;
  804. for (let i = 0; i < str.length; i += 8) {
  805. const size = Math.min(8, str.length - i), value = parseInt(str.substring(i, i + size), radix);
  806. if (size < 8) {
  807. const power = Long.fromNumber(Math.pow(radix, size));
  808. result = result.mul(power).add(Long.fromNumber(value));
  809. }
  810. else {
  811. result = result.mul(radixToPower);
  812. result = result.add(Long.fromNumber(value));
  813. }
  814. }
  815. result.unsigned = unsigned;
  816. return result;
  817. }
  818. static fromBytes(bytes, unsigned, le) {
  819. return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned);
  820. }
  821. static fromBytesLE(bytes, unsigned) {
  822. return new Long(bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), unsigned);
  823. }
  824. static fromBytesBE(bytes, unsigned) {
  825. return new Long((bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], unsigned);
  826. }
  827. static isLong(value) {
  828. return (value != null &&
  829. typeof value === 'object' &&
  830. '__isLong__' in value &&
  831. value.__isLong__ === true);
  832. }
  833. static fromValue(val, unsigned) {
  834. if (typeof val === 'number')
  835. return Long.fromNumber(val, unsigned);
  836. if (typeof val === 'string')
  837. return Long.fromString(val, unsigned);
  838. return Long.fromBits(val.low, val.high, typeof unsigned === 'boolean' ? unsigned : val.unsigned);
  839. }
  840. add(addend) {
  841. if (!Long.isLong(addend))
  842. addend = Long.fromValue(addend);
  843. const a48 = this.high >>> 16;
  844. const a32 = this.high & 0xffff;
  845. const a16 = this.low >>> 16;
  846. const a00 = this.low & 0xffff;
  847. const b48 = addend.high >>> 16;
  848. const b32 = addend.high & 0xffff;
  849. const b16 = addend.low >>> 16;
  850. const b00 = addend.low & 0xffff;
  851. let c48 = 0, c32 = 0, c16 = 0, c00 = 0;
  852. c00 += a00 + b00;
  853. c16 += c00 >>> 16;
  854. c00 &= 0xffff;
  855. c16 += a16 + b16;
  856. c32 += c16 >>> 16;
  857. c16 &= 0xffff;
  858. c32 += a32 + b32;
  859. c48 += c32 >>> 16;
  860. c32 &= 0xffff;
  861. c48 += a48 + b48;
  862. c48 &= 0xffff;
  863. return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned);
  864. }
  865. and(other) {
  866. if (!Long.isLong(other))
  867. other = Long.fromValue(other);
  868. return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned);
  869. }
  870. compare(other) {
  871. if (!Long.isLong(other))
  872. other = Long.fromValue(other);
  873. if (this.eq(other))
  874. return 0;
  875. const thisNeg = this.isNegative(), otherNeg = other.isNegative();
  876. if (thisNeg && !otherNeg)
  877. return -1;
  878. if (!thisNeg && otherNeg)
  879. return 1;
  880. if (!this.unsigned)
  881. return this.sub(other).isNegative() ? -1 : 1;
  882. return other.high >>> 0 > this.high >>> 0 ||
  883. (other.high === this.high && other.low >>> 0 > this.low >>> 0)
  884. ? -1
  885. : 1;
  886. }
  887. comp(other) {
  888. return this.compare(other);
  889. }
  890. divide(divisor) {
  891. if (!Long.isLong(divisor))
  892. divisor = Long.fromValue(divisor);
  893. if (divisor.isZero())
  894. throw new BSONError('division by zero');
  895. if (wasm) {
  896. if (!this.unsigned &&
  897. this.high === -0x80000000 &&
  898. divisor.low === -1 &&
  899. divisor.high === -1) {
  900. return this;
  901. }
  902. const low = (this.unsigned ? wasm.div_u : wasm.div_s)(this.low, this.high, divisor.low, divisor.high);
  903. return Long.fromBits(low, wasm.get_high(), this.unsigned);
  904. }
  905. if (this.isZero())
  906. return this.unsigned ? Long.UZERO : Long.ZERO;
  907. let approx, rem, res;
  908. if (!this.unsigned) {
  909. if (this.eq(Long.MIN_VALUE)) {
  910. if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE))
  911. return Long.MIN_VALUE;
  912. else if (divisor.eq(Long.MIN_VALUE))
  913. return Long.ONE;
  914. else {
  915. const halfThis = this.shr(1);
  916. approx = halfThis.div(divisor).shl(1);
  917. if (approx.eq(Long.ZERO)) {
  918. return divisor.isNegative() ? Long.ONE : Long.NEG_ONE;
  919. }
  920. else {
  921. rem = this.sub(divisor.mul(approx));
  922. res = approx.add(rem.div(divisor));
  923. return res;
  924. }
  925. }
  926. }
  927. else if (divisor.eq(Long.MIN_VALUE))
  928. return this.unsigned ? Long.UZERO : Long.ZERO;
  929. if (this.isNegative()) {
  930. if (divisor.isNegative())
  931. return this.neg().div(divisor.neg());
  932. return this.neg().div(divisor).neg();
  933. }
  934. else if (divisor.isNegative())
  935. return this.div(divisor.neg()).neg();
  936. res = Long.ZERO;
  937. }
  938. else {
  939. if (!divisor.unsigned)
  940. divisor = divisor.toUnsigned();
  941. if (divisor.gt(this))
  942. return Long.UZERO;
  943. if (divisor.gt(this.shru(1)))
  944. return Long.UONE;
  945. res = Long.UZERO;
  946. }
  947. rem = this;
  948. while (rem.gte(divisor)) {
  949. approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber()));
  950. const log2 = Math.ceil(Math.log(approx) / Math.LN2);
  951. const delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48);
  952. let approxRes = Long.fromNumber(approx);
  953. let approxRem = approxRes.mul(divisor);
  954. while (approxRem.isNegative() || approxRem.gt(rem)) {
  955. approx -= delta;
  956. approxRes = Long.fromNumber(approx, this.unsigned);
  957. approxRem = approxRes.mul(divisor);
  958. }
  959. if (approxRes.isZero())
  960. approxRes = Long.ONE;
  961. res = res.add(approxRes);
  962. rem = rem.sub(approxRem);
  963. }
  964. return res;
  965. }
  966. div(divisor) {
  967. return this.divide(divisor);
  968. }
  969. equals(other) {
  970. if (!Long.isLong(other))
  971. other = Long.fromValue(other);
  972. if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1)
  973. return false;
  974. return this.high === other.high && this.low === other.low;
  975. }
  976. eq(other) {
  977. return this.equals(other);
  978. }
  979. getHighBits() {
  980. return this.high;
  981. }
  982. getHighBitsUnsigned() {
  983. return this.high >>> 0;
  984. }
  985. getLowBits() {
  986. return this.low;
  987. }
  988. getLowBitsUnsigned() {
  989. return this.low >>> 0;
  990. }
  991. getNumBitsAbs() {
  992. if (this.isNegative()) {
  993. return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs();
  994. }
  995. const val = this.high !== 0 ? this.high : this.low;
  996. let bit;
  997. for (bit = 31; bit > 0; bit--)
  998. if ((val & (1 << bit)) !== 0)
  999. break;
  1000. return this.high !== 0 ? bit + 33 : bit + 1;
  1001. }
  1002. greaterThan(other) {
  1003. return this.comp(other) > 0;
  1004. }
  1005. gt(other) {
  1006. return this.greaterThan(other);
  1007. }
  1008. greaterThanOrEqual(other) {
  1009. return this.comp(other) >= 0;
  1010. }
  1011. gte(other) {
  1012. return this.greaterThanOrEqual(other);
  1013. }
  1014. ge(other) {
  1015. return this.greaterThanOrEqual(other);
  1016. }
  1017. isEven() {
  1018. return (this.low & 1) === 0;
  1019. }
  1020. isNegative() {
  1021. return !this.unsigned && this.high < 0;
  1022. }
  1023. isOdd() {
  1024. return (this.low & 1) === 1;
  1025. }
  1026. isPositive() {
  1027. return this.unsigned || this.high >= 0;
  1028. }
  1029. isZero() {
  1030. return this.high === 0 && this.low === 0;
  1031. }
  1032. lessThan(other) {
  1033. return this.comp(other) < 0;
  1034. }
  1035. lt(other) {
  1036. return this.lessThan(other);
  1037. }
  1038. lessThanOrEqual(other) {
  1039. return this.comp(other) <= 0;
  1040. }
  1041. lte(other) {
  1042. return this.lessThanOrEqual(other);
  1043. }
  1044. modulo(divisor) {
  1045. if (!Long.isLong(divisor))
  1046. divisor = Long.fromValue(divisor);
  1047. if (wasm) {
  1048. const low = (this.unsigned ? wasm.rem_u : wasm.rem_s)(this.low, this.high, divisor.low, divisor.high);
  1049. return Long.fromBits(low, wasm.get_high(), this.unsigned);
  1050. }
  1051. return this.sub(this.div(divisor).mul(divisor));
  1052. }
  1053. mod(divisor) {
  1054. return this.modulo(divisor);
  1055. }
  1056. rem(divisor) {
  1057. return this.modulo(divisor);
  1058. }
  1059. multiply(multiplier) {
  1060. if (this.isZero())
  1061. return Long.ZERO;
  1062. if (!Long.isLong(multiplier))
  1063. multiplier = Long.fromValue(multiplier);
  1064. if (wasm) {
  1065. const low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high);
  1066. return Long.fromBits(low, wasm.get_high(), this.unsigned);
  1067. }
  1068. if (multiplier.isZero())
  1069. return Long.ZERO;
  1070. if (this.eq(Long.MIN_VALUE))
  1071. return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO;
  1072. if (multiplier.eq(Long.MIN_VALUE))
  1073. return this.isOdd() ? Long.MIN_VALUE : Long.ZERO;
  1074. if (this.isNegative()) {
  1075. if (multiplier.isNegative())
  1076. return this.neg().mul(multiplier.neg());
  1077. else
  1078. return this.neg().mul(multiplier).neg();
  1079. }
  1080. else if (multiplier.isNegative())
  1081. return this.mul(multiplier.neg()).neg();
  1082. if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24))
  1083. return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned);
  1084. const a48 = this.high >>> 16;
  1085. const a32 = this.high & 0xffff;
  1086. const a16 = this.low >>> 16;
  1087. const a00 = this.low & 0xffff;
  1088. const b48 = multiplier.high >>> 16;
  1089. const b32 = multiplier.high & 0xffff;
  1090. const b16 = multiplier.low >>> 16;
  1091. const b00 = multiplier.low & 0xffff;
  1092. let c48 = 0, c32 = 0, c16 = 0, c00 = 0;
  1093. c00 += a00 * b00;
  1094. c16 += c00 >>> 16;
  1095. c00 &= 0xffff;
  1096. c16 += a16 * b00;
  1097. c32 += c16 >>> 16;
  1098. c16 &= 0xffff;
  1099. c16 += a00 * b16;
  1100. c32 += c16 >>> 16;
  1101. c16 &= 0xffff;
  1102. c32 += a32 * b00;
  1103. c48 += c32 >>> 16;
  1104. c32 &= 0xffff;
  1105. c32 += a16 * b16;
  1106. c48 += c32 >>> 16;
  1107. c32 &= 0xffff;
  1108. c32 += a00 * b32;
  1109. c48 += c32 >>> 16;
  1110. c32 &= 0xffff;
  1111. c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48;
  1112. c48 &= 0xffff;
  1113. return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned);
  1114. }
  1115. mul(multiplier) {
  1116. return this.multiply(multiplier);
  1117. }
  1118. negate() {
  1119. if (!this.unsigned && this.eq(Long.MIN_VALUE))
  1120. return Long.MIN_VALUE;
  1121. return this.not().add(Long.ONE);
  1122. }
  1123. neg() {
  1124. return this.negate();
  1125. }
  1126. not() {
  1127. return Long.fromBits(~this.low, ~this.high, this.unsigned);
  1128. }
  1129. notEquals(other) {
  1130. return !this.equals(other);
  1131. }
  1132. neq(other) {
  1133. return this.notEquals(other);
  1134. }
  1135. ne(other) {
  1136. return this.notEquals(other);
  1137. }
  1138. or(other) {
  1139. if (!Long.isLong(other))
  1140. other = Long.fromValue(other);
  1141. return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned);
  1142. }
  1143. shiftLeft(numBits) {
  1144. if (Long.isLong(numBits))
  1145. numBits = numBits.toInt();
  1146. if ((numBits &= 63) === 0)
  1147. return this;
  1148. else if (numBits < 32)
  1149. return Long.fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned);
  1150. else
  1151. return Long.fromBits(0, this.low << (numBits - 32), this.unsigned);
  1152. }
  1153. shl(numBits) {
  1154. return this.shiftLeft(numBits);
  1155. }
  1156. shiftRight(numBits) {
  1157. if (Long.isLong(numBits))
  1158. numBits = numBits.toInt();
  1159. if ((numBits &= 63) === 0)
  1160. return this;
  1161. else if (numBits < 32)
  1162. return Long.fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned);
  1163. else
  1164. return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned);
  1165. }
  1166. shr(numBits) {
  1167. return this.shiftRight(numBits);
  1168. }
  1169. shiftRightUnsigned(numBits) {
  1170. if (Long.isLong(numBits))
  1171. numBits = numBits.toInt();
  1172. numBits &= 63;
  1173. if (numBits === 0)
  1174. return this;
  1175. else {
  1176. const high = this.high;
  1177. if (numBits < 32) {
  1178. const low = this.low;
  1179. return Long.fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned);
  1180. }
  1181. else if (numBits === 32)
  1182. return Long.fromBits(high, 0, this.unsigned);
  1183. else
  1184. return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned);
  1185. }
  1186. }
  1187. shr_u(numBits) {
  1188. return this.shiftRightUnsigned(numBits);
  1189. }
  1190. shru(numBits) {
  1191. return this.shiftRightUnsigned(numBits);
  1192. }
  1193. subtract(subtrahend) {
  1194. if (!Long.isLong(subtrahend))
  1195. subtrahend = Long.fromValue(subtrahend);
  1196. return this.add(subtrahend.neg());
  1197. }
  1198. sub(subtrahend) {
  1199. return this.subtract(subtrahend);
  1200. }
  1201. toInt() {
  1202. return this.unsigned ? this.low >>> 0 : this.low;
  1203. }
  1204. toNumber() {
  1205. if (this.unsigned)
  1206. return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0);
  1207. return this.high * TWO_PWR_32_DBL + (this.low >>> 0);
  1208. }
  1209. toBigInt() {
  1210. return BigInt(this.toString());
  1211. }
  1212. toBytes(le) {
  1213. return le ? this.toBytesLE() : this.toBytesBE();
  1214. }
  1215. toBytesLE() {
  1216. const hi = this.high, lo = this.low;
  1217. return [
  1218. lo & 0xff,
  1219. (lo >>> 8) & 0xff,
  1220. (lo >>> 16) & 0xff,
  1221. lo >>> 24,
  1222. hi & 0xff,
  1223. (hi >>> 8) & 0xff,
  1224. (hi >>> 16) & 0xff,
  1225. hi >>> 24
  1226. ];
  1227. }
  1228. toBytesBE() {
  1229. const hi = this.high, lo = this.low;
  1230. return [
  1231. hi >>> 24,
  1232. (hi >>> 16) & 0xff,
  1233. (hi >>> 8) & 0xff,
  1234. hi & 0xff,
  1235. lo >>> 24,
  1236. (lo >>> 16) & 0xff,
  1237. (lo >>> 8) & 0xff,
  1238. lo & 0xff
  1239. ];
  1240. }
  1241. toSigned() {
  1242. if (!this.unsigned)
  1243. return this;
  1244. return Long.fromBits(this.low, this.high, false);
  1245. }
  1246. toString(radix) {
  1247. radix = radix || 10;
  1248. if (radix < 2 || 36 < radix)
  1249. throw new BSONError('radix');
  1250. if (this.isZero())
  1251. return '0';
  1252. if (this.isNegative()) {
  1253. if (this.eq(Long.MIN_VALUE)) {
  1254. const radixLong = Long.fromNumber(radix), div = this.div(radixLong), rem1 = div.mul(radixLong).sub(this);
  1255. return div.toString(radix) + rem1.toInt().toString(radix);
  1256. }
  1257. else
  1258. return '-' + this.neg().toString(radix);
  1259. }
  1260. const radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned);
  1261. let rem = this;
  1262. let result = '';
  1263. while (true) {
  1264. const remDiv = rem.div(radixToPower);
  1265. const intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0;
  1266. let digits = intval.toString(radix);
  1267. rem = remDiv;
  1268. if (rem.isZero()) {
  1269. return digits + result;
  1270. }
  1271. else {
  1272. while (digits.length < 6)
  1273. digits = '0' + digits;
  1274. result = '' + digits + result;
  1275. }
  1276. }
  1277. }
  1278. toUnsigned() {
  1279. if (this.unsigned)
  1280. return this;
  1281. return Long.fromBits(this.low, this.high, true);
  1282. }
  1283. xor(other) {
  1284. if (!Long.isLong(other))
  1285. other = Long.fromValue(other);
  1286. return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned);
  1287. }
  1288. eqz() {
  1289. return this.isZero();
  1290. }
  1291. le(other) {
  1292. return this.lessThanOrEqual(other);
  1293. }
  1294. toExtendedJSON(options) {
  1295. if (options && options.relaxed)
  1296. return this.toNumber();
  1297. return { $numberLong: this.toString() };
  1298. }
  1299. static fromExtendedJSON(doc, options) {
  1300. const { useBigInt64 = false, relaxed = true } = { ...options };
  1301. if (doc.$numberLong.length > MAX_INT64_STRING_LENGTH) {
  1302. throw new BSONError('$numberLong string is too long');
  1303. }
  1304. if (!DECIMAL_REG_EX.test(doc.$numberLong)) {
  1305. throw new BSONError(`$numberLong string "${doc.$numberLong}" is in an invalid format`);
  1306. }
  1307. if (useBigInt64) {
  1308. const bigIntResult = BigInt(doc.$numberLong);
  1309. return BigInt.asIntN(64, bigIntResult);
  1310. }
  1311. const longResult = Long.fromString(doc.$numberLong);
  1312. if (relaxed) {
  1313. return longResult.toNumber();
  1314. }
  1315. return longResult;
  1316. }
  1317. [Symbol.for('nodejs.util.inspect.custom')]() {
  1318. return this.inspect();
  1319. }
  1320. inspect() {
  1321. return `new Long("${this.toString()}"${this.unsigned ? ', true' : ''})`;
  1322. }
  1323. }
  1324. Long.TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL);
  1325. Long.MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true);
  1326. Long.ZERO = Long.fromInt(0);
  1327. Long.UZERO = Long.fromInt(0, true);
  1328. Long.ONE = Long.fromInt(1);
  1329. Long.UONE = Long.fromInt(1, true);
  1330. Long.NEG_ONE = Long.fromInt(-1);
  1331. Long.MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false);
  1332. Long.MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false);
  1333. const PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/;
  1334. const PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i;
  1335. const PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i;
  1336. const EXPONENT_MAX = 6111;
  1337. const EXPONENT_MIN = -6176;
  1338. const EXPONENT_BIAS = 6176;
  1339. const MAX_DIGITS = 34;
  1340. const NAN_BUFFER = ByteUtils.fromNumberArray([
  1341. 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  1342. ].reverse());
  1343. const INF_NEGATIVE_BUFFER = ByteUtils.fromNumberArray([
  1344. 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  1345. ].reverse());
  1346. const INF_POSITIVE_BUFFER = ByteUtils.fromNumberArray([
  1347. 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  1348. ].reverse());
  1349. const EXPONENT_REGEX = /^([-+])?(\d+)?$/;
  1350. const COMBINATION_MASK = 0x1f;
  1351. const EXPONENT_MASK = 0x3fff;
  1352. const COMBINATION_INFINITY = 30;
  1353. const COMBINATION_NAN = 31;
  1354. function isDigit(value) {
  1355. return !isNaN(parseInt(value, 10));
  1356. }
  1357. function divideu128(value) {
  1358. const DIVISOR = Long.fromNumber(1000 * 1000 * 1000);
  1359. let _rem = Long.fromNumber(0);
  1360. if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) {
  1361. return { quotient: value, rem: _rem };
  1362. }
  1363. for (let i = 0; i <= 3; i++) {
  1364. _rem = _rem.shiftLeft(32);
  1365. _rem = _rem.add(new Long(value.parts[i], 0));
  1366. value.parts[i] = _rem.div(DIVISOR).low;
  1367. _rem = _rem.modulo(DIVISOR);
  1368. }
  1369. return { quotient: value, rem: _rem };
  1370. }
  1371. function multiply64x2(left, right) {
  1372. if (!left && !right) {
  1373. return { high: Long.fromNumber(0), low: Long.fromNumber(0) };
  1374. }
  1375. const leftHigh = left.shiftRightUnsigned(32);
  1376. const leftLow = new Long(left.getLowBits(), 0);
  1377. const rightHigh = right.shiftRightUnsigned(32);
  1378. const rightLow = new Long(right.getLowBits(), 0);
  1379. let productHigh = leftHigh.multiply(rightHigh);
  1380. let productMid = leftHigh.multiply(rightLow);
  1381. const productMid2 = leftLow.multiply(rightHigh);
  1382. let productLow = leftLow.multiply(rightLow);
  1383. productHigh = productHigh.add(productMid.shiftRightUnsigned(32));
  1384. productMid = new Long(productMid.getLowBits(), 0)
  1385. .add(productMid2)
  1386. .add(productLow.shiftRightUnsigned(32));
  1387. productHigh = productHigh.add(productMid.shiftRightUnsigned(32));
  1388. productLow = productMid.shiftLeft(32).add(new Long(productLow.getLowBits(), 0));
  1389. return { high: productHigh, low: productLow };
  1390. }
  1391. function lessThan(left, right) {
  1392. const uhleft = left.high >>> 0;
  1393. const uhright = right.high >>> 0;
  1394. if (uhleft < uhright) {
  1395. return true;
  1396. }
  1397. else if (uhleft === uhright) {
  1398. const ulleft = left.low >>> 0;
  1399. const ulright = right.low >>> 0;
  1400. if (ulleft < ulright)
  1401. return true;
  1402. }
  1403. return false;
  1404. }
  1405. function invalidErr(string, message) {
  1406. throw new BSONError(`"${string}" is not a valid Decimal128 string - ${message}`);
  1407. }
  1408. class Decimal128 extends BSONValue {
  1409. get _bsontype() {
  1410. return 'Decimal128';
  1411. }
  1412. constructor(bytes) {
  1413. super();
  1414. if (typeof bytes === 'string') {
  1415. this.bytes = Decimal128.fromString(bytes).bytes;
  1416. }
  1417. else if (isUint8Array(bytes)) {
  1418. if (bytes.byteLength !== 16) {
  1419. throw new BSONError('Decimal128 must take a Buffer of 16 bytes');
  1420. }
  1421. this.bytes = bytes;
  1422. }
  1423. else {
  1424. throw new BSONError('Decimal128 must take a Buffer or string');
  1425. }
  1426. }
  1427. static fromString(representation) {
  1428. return Decimal128._fromString(representation, { allowRounding: false });
  1429. }
  1430. static fromStringWithRounding(representation) {
  1431. return Decimal128._fromString(representation, { allowRounding: true });
  1432. }
  1433. static _fromString(representation, options) {
  1434. let isNegative = false;
  1435. let sawSign = false;
  1436. let sawRadix = false;
  1437. let foundNonZero = false;
  1438. let significantDigits = 0;
  1439. let nDigitsRead = 0;
  1440. let nDigits = 0;
  1441. let radixPosition = 0;
  1442. let firstNonZero = 0;
  1443. const digits = [0];
  1444. let nDigitsStored = 0;
  1445. let digitsInsert = 0;
  1446. let lastDigit = 0;
  1447. let exponent = 0;
  1448. let significandHigh = new Long(0, 0);
  1449. let significandLow = new Long(0, 0);
  1450. let biasedExponent = 0;
  1451. let index = 0;
  1452. if (representation.length >= 7000) {
  1453. throw new BSONError('' + representation + ' not a valid Decimal128 string');
  1454. }
  1455. const stringMatch = representation.match(PARSE_STRING_REGEXP);
  1456. const infMatch = representation.match(PARSE_INF_REGEXP);
  1457. const nanMatch = representation.match(PARSE_NAN_REGEXP);
  1458. if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) {
  1459. throw new BSONError('' + representation + ' not a valid Decimal128 string');
  1460. }
  1461. if (stringMatch) {
  1462. const unsignedNumber = stringMatch[2];
  1463. const e = stringMatch[4];
  1464. const expSign = stringMatch[5];
  1465. const expNumber = stringMatch[6];
  1466. if (e && expNumber === undefined)
  1467. invalidErr(representation, 'missing exponent power');
  1468. if (e && unsignedNumber === undefined)
  1469. invalidErr(representation, 'missing exponent base');
  1470. if (e === undefined && (expSign || expNumber)) {
  1471. invalidErr(representation, 'missing e before exponent');
  1472. }
  1473. }
  1474. if (representation[index] === '+' || representation[index] === '-') {
  1475. sawSign = true;
  1476. isNegative = representation[index++] === '-';
  1477. }
  1478. if (!isDigit(representation[index]) && representation[index] !== '.') {
  1479. if (representation[index] === 'i' || representation[index] === 'I') {
  1480. return new Decimal128(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER);
  1481. }
  1482. else if (representation[index] === 'N') {
  1483. return new Decimal128(NAN_BUFFER);
  1484. }
  1485. }
  1486. while (isDigit(representation[index]) || representation[index] === '.') {
  1487. if (representation[index] === '.') {
  1488. if (sawRadix)
  1489. invalidErr(representation, 'contains multiple periods');
  1490. sawRadix = true;
  1491. index = index + 1;
  1492. continue;
  1493. }
  1494. if (nDigitsStored < MAX_DIGITS) {
  1495. if (representation[index] !== '0' || foundNonZero) {
  1496. if (!foundNonZero) {
  1497. firstNonZero = nDigitsRead;
  1498. }
  1499. foundNonZero = true;
  1500. digits[digitsInsert++] = parseInt(representation[index], 10);
  1501. nDigitsStored = nDigitsStored + 1;
  1502. }
  1503. }
  1504. if (foundNonZero)
  1505. nDigits = nDigits + 1;
  1506. if (sawRadix)
  1507. radixPosition = radixPosition + 1;
  1508. nDigitsRead = nDigitsRead + 1;
  1509. index = index + 1;
  1510. }
  1511. if (sawRadix && !nDigitsRead)
  1512. throw new BSONError('' + representation + ' not a valid Decimal128 string');
  1513. if (representation[index] === 'e' || representation[index] === 'E') {
  1514. const match = representation.substr(++index).match(EXPONENT_REGEX);
  1515. if (!match || !match[2])
  1516. return new Decimal128(NAN_BUFFER);
  1517. exponent = parseInt(match[0], 10);
  1518. index = index + match[0].length;
  1519. }
  1520. if (representation[index])
  1521. return new Decimal128(NAN_BUFFER);
  1522. if (!nDigitsStored) {
  1523. digits[0] = 0;
  1524. nDigits = 1;
  1525. nDigitsStored = 1;
  1526. significantDigits = 0;
  1527. }
  1528. else {
  1529. lastDigit = nDigitsStored - 1;
  1530. significantDigits = nDigits;
  1531. if (significantDigits !== 1) {
  1532. while (representation[firstNonZero + significantDigits - 1 + Number(sawSign) + Number(sawRadix)] === '0') {
  1533. significantDigits = significantDigits - 1;
  1534. }
  1535. }
  1536. }
  1537. if (exponent <= radixPosition && radixPosition > exponent + (1 << 14)) {
  1538. exponent = EXPONENT_MIN;
  1539. }
  1540. else {
  1541. exponent = exponent - radixPosition;
  1542. }
  1543. while (exponent > EXPONENT_MAX) {
  1544. lastDigit = lastDigit + 1;
  1545. if (lastDigit >= MAX_DIGITS) {
  1546. if (significantDigits === 0) {
  1547. exponent = EXPONENT_MAX;
  1548. break;
  1549. }
  1550. invalidErr(representation, 'overflow');
  1551. }
  1552. exponent = exponent - 1;
  1553. }
  1554. if (options.allowRounding) {
  1555. while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) {
  1556. if (lastDigit === 0 && significantDigits < nDigitsStored) {
  1557. exponent = EXPONENT_MIN;
  1558. significantDigits = 0;
  1559. break;
  1560. }
  1561. if (nDigitsStored < nDigits) {
  1562. nDigits = nDigits - 1;
  1563. }
  1564. else {
  1565. lastDigit = lastDigit - 1;
  1566. }
  1567. if (exponent < EXPONENT_MAX) {
  1568. exponent = exponent + 1;
  1569. }
  1570. else {
  1571. const digitsString = digits.join('');
  1572. if (digitsString.match(/^0+$/)) {
  1573. exponent = EXPONENT_MAX;
  1574. break;
  1575. }
  1576. invalidErr(representation, 'overflow');
  1577. }
  1578. }
  1579. if (lastDigit + 1 < significantDigits) {
  1580. let endOfString = nDigitsRead;
  1581. if (sawRadix) {
  1582. firstNonZero = firstNonZero + 1;
  1583. endOfString = endOfString + 1;
  1584. }
  1585. if (sawSign) {
  1586. firstNonZero = firstNonZero + 1;
  1587. endOfString = endOfString + 1;
  1588. }
  1589. const roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10);
  1590. let roundBit = 0;
  1591. if (roundDigit >= 5) {
  1592. roundBit = 1;
  1593. if (roundDigit === 5) {
  1594. roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0;
  1595. for (let i = firstNonZero + lastDigit + 2; i < endOfString; i++) {
  1596. if (parseInt(representation[i], 10)) {
  1597. roundBit = 1;
  1598. break;
  1599. }
  1600. }
  1601. }
  1602. }
  1603. if (roundBit) {
  1604. let dIdx = lastDigit;
  1605. for (; dIdx >= 0; dIdx--) {
  1606. if (++digits[dIdx] > 9) {
  1607. digits[dIdx] = 0;
  1608. if (dIdx === 0) {
  1609. if (exponent < EXPONENT_MAX) {
  1610. exponent = exponent + 1;
  1611. digits[dIdx] = 1;
  1612. }
  1613. else {
  1614. return new Decimal128(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER);
  1615. }
  1616. }
  1617. }
  1618. else {
  1619. break;
  1620. }
  1621. }
  1622. }
  1623. }
  1624. }
  1625. else {
  1626. while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) {
  1627. if (lastDigit === 0) {
  1628. if (significantDigits === 0) {
  1629. exponent = EXPONENT_MIN;
  1630. break;
  1631. }
  1632. invalidErr(representation, 'exponent underflow');
  1633. }
  1634. if (nDigitsStored < nDigits) {
  1635. if (representation[nDigits - 1 + Number(sawSign) + Number(sawRadix)] !== '0' &&
  1636. significantDigits !== 0) {
  1637. invalidErr(representation, 'inexact rounding');
  1638. }
  1639. nDigits = nDigits - 1;
  1640. }
  1641. else {
  1642. if (digits[lastDigit] !== 0) {
  1643. invalidErr(representation, 'inexact rounding');
  1644. }
  1645. lastDigit = lastDigit - 1;
  1646. }
  1647. if (exponent < EXPONENT_MAX) {
  1648. exponent = exponent + 1;
  1649. }
  1650. else {
  1651. invalidErr(representation, 'overflow');
  1652. }
  1653. }
  1654. if (lastDigit + 1 < significantDigits) {
  1655. if (sawRadix) {
  1656. firstNonZero = firstNonZero + 1;
  1657. }
  1658. if (sawSign) {
  1659. firstNonZero = firstNonZero + 1;
  1660. }
  1661. const roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10);
  1662. if (roundDigit !== 0) {
  1663. invalidErr(representation, 'inexact rounding');
  1664. }
  1665. }
  1666. }
  1667. significandHigh = Long.fromNumber(0);
  1668. significandLow = Long.fromNumber(0);
  1669. if (significantDigits === 0) {
  1670. significandHigh = Long.fromNumber(0);
  1671. significandLow = Long.fromNumber(0);
  1672. }
  1673. else if (lastDigit < 17) {
  1674. let dIdx = 0;
  1675. significandLow = Long.fromNumber(digits[dIdx++]);
  1676. significandHigh = new Long(0, 0);
  1677. for (; dIdx <= lastDigit; dIdx++) {
  1678. significandLow = significandLow.multiply(Long.fromNumber(10));
  1679. significandLow = significandLow.add(Long.fromNumber(digits[dIdx]));
  1680. }
  1681. }
  1682. else {
  1683. let dIdx = 0;
  1684. significandHigh = Long.fromNumber(digits[dIdx++]);
  1685. for (; dIdx <= lastDigit - 17; dIdx++) {
  1686. significandHigh = significandHigh.multiply(Long.fromNumber(10));
  1687. significandHigh = significandHigh.add(Long.fromNumber(digits[dIdx]));
  1688. }
  1689. significandLow = Long.fromNumber(digits[dIdx++]);
  1690. for (; dIdx <= lastDigit; dIdx++) {
  1691. significandLow = significandLow.multiply(Long.fromNumber(10));
  1692. significandLow = significandLow.add(Long.fromNumber(digits[dIdx]));
  1693. }
  1694. }
  1695. const significand = multiply64x2(significandHigh, Long.fromString('100000000000000000'));
  1696. significand.low = significand.low.add(significandLow);
  1697. if (lessThan(significand.low, significandLow)) {
  1698. significand.high = significand.high.add(Long.fromNumber(1));
  1699. }
  1700. biasedExponent = exponent + EXPONENT_BIAS;
  1701. const dec = { low: Long.fromNumber(0), high: Long.fromNumber(0) };
  1702. if (significand.high.shiftRightUnsigned(49).and(Long.fromNumber(1)).equals(Long.fromNumber(1))) {
  1703. dec.high = dec.high.or(Long.fromNumber(0x3).shiftLeft(61));
  1704. dec.high = dec.high.or(Long.fromNumber(biasedExponent).and(Long.fromNumber(0x3fff).shiftLeft(47)));
  1705. dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x7fffffffffff)));
  1706. }
  1707. else {
  1708. dec.high = dec.high.or(Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49));
  1709. dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x1ffffffffffff)));
  1710. }
  1711. dec.low = significand.low;
  1712. if (isNegative) {
  1713. dec.high = dec.high.or(Long.fromString('9223372036854775808'));
  1714. }
  1715. const buffer = ByteUtils.allocate(16);
  1716. index = 0;
  1717. buffer[index++] = dec.low.low & 0xff;
  1718. buffer[index++] = (dec.low.low >> 8) & 0xff;
  1719. buffer[index++] = (dec.low.low >> 16) & 0xff;
  1720. buffer[index++] = (dec.low.low >> 24) & 0xff;
  1721. buffer[index++] = dec.low.high & 0xff;
  1722. buffer[index++] = (dec.low.high >> 8) & 0xff;
  1723. buffer[index++] = (dec.low.high >> 16) & 0xff;
  1724. buffer[index++] = (dec.low.high >> 24) & 0xff;
  1725. buffer[index++] = dec.high.low & 0xff;
  1726. buffer[index++] = (dec.high.low >> 8) & 0xff;
  1727. buffer[index++] = (dec.high.low >> 16) & 0xff;
  1728. buffer[index++] = (dec.high.low >> 24) & 0xff;
  1729. buffer[index++] = dec.high.high & 0xff;
  1730. buffer[index++] = (dec.high.high >> 8) & 0xff;
  1731. buffer[index++] = (dec.high.high >> 16) & 0xff;
  1732. buffer[index++] = (dec.high.high >> 24) & 0xff;
  1733. return new Decimal128(buffer);
  1734. }
  1735. toString() {
  1736. let biased_exponent;
  1737. let significand_digits = 0;
  1738. const significand = new Array(36);
  1739. for (let i = 0; i < significand.length; i++)
  1740. significand[i] = 0;
  1741. let index = 0;
  1742. let is_zero = false;
  1743. let significand_msb;
  1744. let significand128 = { parts: [0, 0, 0, 0] };
  1745. let j, k;
  1746. const string = [];
  1747. index = 0;
  1748. const buffer = this.bytes;
  1749. const low = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24);
  1750. const midl = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24);
  1751. const midh = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24);
  1752. const high = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24);
  1753. index = 0;
  1754. const dec = {
  1755. low: new Long(low, midl),
  1756. high: new Long(midh, high)
  1757. };
  1758. if (dec.high.lessThan(Long.ZERO)) {
  1759. string.push('-');
  1760. }
  1761. const combination = (high >> 26) & COMBINATION_MASK;
  1762. if (combination >> 3 === 3) {
  1763. if (combination === COMBINATION_INFINITY) {
  1764. return string.join('') + 'Infinity';
  1765. }
  1766. else if (combination === COMBINATION_NAN) {
  1767. return 'NaN';
  1768. }
  1769. else {
  1770. biased_exponent = (high >> 15) & EXPONENT_MASK;
  1771. significand_msb = 0x08 + ((high >> 14) & 0x01);
  1772. }
  1773. }
  1774. else {
  1775. significand_msb = (high >> 14) & 0x07;
  1776. biased_exponent = (high >> 17) & EXPONENT_MASK;
  1777. }
  1778. const exponent = biased_exponent - EXPONENT_BIAS;
  1779. significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14);
  1780. significand128.parts[1] = midh;
  1781. significand128.parts[2] = midl;
  1782. significand128.parts[3] = low;
  1783. if (significand128.parts[0] === 0 &&
  1784. significand128.parts[1] === 0 &&
  1785. significand128.parts[2] === 0 &&
  1786. significand128.parts[3] === 0) {
  1787. is_zero = true;
  1788. }
  1789. else {
  1790. for (k = 3; k >= 0; k--) {
  1791. let least_digits = 0;
  1792. const result = divideu128(significand128);
  1793. significand128 = result.quotient;
  1794. least_digits = result.rem.low;
  1795. if (!least_digits)
  1796. continue;
  1797. for (j = 8; j >= 0; j--) {
  1798. significand[k * 9 + j] = least_digits % 10;
  1799. least_digits = Math.floor(least_digits / 10);
  1800. }
  1801. }
  1802. }
  1803. if (is_zero) {
  1804. significand_digits = 1;
  1805. significand[index] = 0;
  1806. }
  1807. else {
  1808. significand_digits = 36;
  1809. while (!significand[index]) {
  1810. significand_digits = significand_digits - 1;
  1811. index = index + 1;
  1812. }
  1813. }
  1814. const scientific_exponent = significand_digits - 1 + exponent;
  1815. if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) {
  1816. if (significand_digits > 34) {
  1817. string.push(`${0}`);
  1818. if (exponent > 0)
  1819. string.push(`E+${exponent}`);
  1820. else if (exponent < 0)
  1821. string.push(`E${exponent}`);
  1822. return string.join('');
  1823. }
  1824. string.push(`${significand[index++]}`);
  1825. significand_digits = significand_digits - 1;
  1826. if (significand_digits) {
  1827. string.push('.');
  1828. }
  1829. for (let i = 0; i < significand_digits; i++) {
  1830. string.push(`${significand[index++]}`);
  1831. }
  1832. string.push('E');
  1833. if (scientific_exponent > 0) {
  1834. string.push(`+${scientific_exponent}`);
  1835. }
  1836. else {
  1837. string.push(`${scientific_exponent}`);
  1838. }
  1839. }
  1840. else {
  1841. if (exponent >= 0) {
  1842. for (let i = 0; i < significand_digits; i++) {
  1843. string.push(`${significand[index++]}`);
  1844. }
  1845. }
  1846. else {
  1847. let radix_position = significand_digits + exponent;
  1848. if (radix_position > 0) {
  1849. for (let i = 0; i < radix_position; i++) {
  1850. string.push(`${significand[index++]}`);
  1851. }
  1852. }
  1853. else {
  1854. string.push('0');
  1855. }
  1856. string.push('.');
  1857. while (radix_position++ < 0) {
  1858. string.push('0');
  1859. }
  1860. for (let i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) {
  1861. string.push(`${significand[index++]}`);
  1862. }
  1863. }
  1864. }
  1865. return string.join('');
  1866. }
  1867. toJSON() {
  1868. return { $numberDecimal: this.toString() };
  1869. }
  1870. toExtendedJSON() {
  1871. return { $numberDecimal: this.toString() };
  1872. }
  1873. static fromExtendedJSON(doc) {
  1874. return Decimal128.fromString(doc.$numberDecimal);
  1875. }
  1876. [Symbol.for('nodejs.util.inspect.custom')]() {
  1877. return this.inspect();
  1878. }
  1879. inspect() {
  1880. return `new Decimal128("${this.toString()}")`;
  1881. }
  1882. }
  1883. class Double extends BSONValue {
  1884. get _bsontype() {
  1885. return 'Double';
  1886. }
  1887. constructor(value) {
  1888. super();
  1889. if (value instanceof Number) {
  1890. value = value.valueOf();
  1891. }
  1892. this.value = +value;
  1893. }
  1894. valueOf() {
  1895. return this.value;
  1896. }
  1897. toJSON() {
  1898. return this.value;
  1899. }
  1900. toString(radix) {
  1901. return this.value.toString(radix);
  1902. }
  1903. toExtendedJSON(options) {
  1904. if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) {
  1905. return this.value;
  1906. }
  1907. if (Object.is(Math.sign(this.value), -0)) {
  1908. return { $numberDouble: '-0.0' };
  1909. }
  1910. return {
  1911. $numberDouble: Number.isInteger(this.value) ? this.value.toFixed(1) : this.value.toString()
  1912. };
  1913. }
  1914. static fromExtendedJSON(doc, options) {
  1915. const doubleValue = parseFloat(doc.$numberDouble);
  1916. return options && options.relaxed ? doubleValue : new Double(doubleValue);
  1917. }
  1918. [Symbol.for('nodejs.util.inspect.custom')]() {
  1919. return this.inspect();
  1920. }
  1921. inspect() {
  1922. const eJSON = this.toExtendedJSON();
  1923. return `new Double(${eJSON.$numberDouble})`;
  1924. }
  1925. }
  1926. class Int32 extends BSONValue {
  1927. get _bsontype() {
  1928. return 'Int32';
  1929. }
  1930. constructor(value) {
  1931. super();
  1932. if (value instanceof Number) {
  1933. value = value.valueOf();
  1934. }
  1935. this.value = +value | 0;
  1936. }
  1937. valueOf() {
  1938. return this.value;
  1939. }
  1940. toString(radix) {
  1941. return this.value.toString(radix);
  1942. }
  1943. toJSON() {
  1944. return this.value;
  1945. }
  1946. toExtendedJSON(options) {
  1947. if (options && (options.relaxed || options.legacy))
  1948. return this.value;
  1949. return { $numberInt: this.value.toString() };
  1950. }
  1951. static fromExtendedJSON(doc, options) {
  1952. return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt);
  1953. }
  1954. [Symbol.for('nodejs.util.inspect.custom')]() {
  1955. return this.inspect();
  1956. }
  1957. inspect() {
  1958. return `new Int32(${this.valueOf()})`;
  1959. }
  1960. }
  1961. class MaxKey extends BSONValue {
  1962. get _bsontype() {
  1963. return 'MaxKey';
  1964. }
  1965. toExtendedJSON() {
  1966. return { $maxKey: 1 };
  1967. }
  1968. static fromExtendedJSON() {
  1969. return new MaxKey();
  1970. }
  1971. [Symbol.for('nodejs.util.inspect.custom')]() {
  1972. return this.inspect();
  1973. }
  1974. inspect() {
  1975. return 'new MaxKey()';
  1976. }
  1977. }
  1978. class MinKey extends BSONValue {
  1979. get _bsontype() {
  1980. return 'MinKey';
  1981. }
  1982. toExtendedJSON() {
  1983. return { $minKey: 1 };
  1984. }
  1985. static fromExtendedJSON() {
  1986. return new MinKey();
  1987. }
  1988. [Symbol.for('nodejs.util.inspect.custom')]() {
  1989. return this.inspect();
  1990. }
  1991. inspect() {
  1992. return 'new MinKey()';
  1993. }
  1994. }
  1995. const checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$');
  1996. let PROCESS_UNIQUE = null;
  1997. const kId = Symbol('id');
  1998. class ObjectId extends BSONValue {
  1999. get _bsontype() {
  2000. return 'ObjectId';
  2001. }
  2002. constructor(inputId) {
  2003. super();
  2004. let workingId;
  2005. if (typeof inputId === 'object' && inputId && 'id' in inputId) {
  2006. if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) {
  2007. throw new BSONError('Argument passed in must have an id that is of type string or Buffer');
  2008. }
  2009. if ('toHexString' in inputId && typeof inputId.toHexString === 'function') {
  2010. workingId = ByteUtils.fromHex(inputId.toHexString());
  2011. }
  2012. else {
  2013. workingId = inputId.id;
  2014. }
  2015. }
  2016. else {
  2017. workingId = inputId;
  2018. }
  2019. if (workingId == null || typeof workingId === 'number') {
  2020. this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined);
  2021. }
  2022. else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) {
  2023. this[kId] = ByteUtils.toLocalBufferType(workingId);
  2024. }
  2025. else if (typeof workingId === 'string') {
  2026. if (workingId.length === 12) {
  2027. const bytes = ByteUtils.fromUTF8(workingId);
  2028. if (bytes.byteLength === 12) {
  2029. this[kId] = bytes;
  2030. }
  2031. else {
  2032. throw new BSONError('Argument passed in must be a string of 12 bytes');
  2033. }
  2034. }
  2035. else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) {
  2036. this[kId] = ByteUtils.fromHex(workingId);
  2037. }
  2038. else {
  2039. throw new BSONError('Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer');
  2040. }
  2041. }
  2042. else {
  2043. throw new BSONError('Argument passed in does not match the accepted types');
  2044. }
  2045. if (ObjectId.cacheHexString) {
  2046. this.__id = ByteUtils.toHex(this.id);
  2047. }
  2048. }
  2049. get id() {
  2050. return this[kId];
  2051. }
  2052. set id(value) {
  2053. this[kId] = value;
  2054. if (ObjectId.cacheHexString) {
  2055. this.__id = ByteUtils.toHex(value);
  2056. }
  2057. }
  2058. toHexString() {
  2059. if (ObjectId.cacheHexString && this.__id) {
  2060. return this.__id;
  2061. }
  2062. const hexString = ByteUtils.toHex(this.id);
  2063. if (ObjectId.cacheHexString && !this.__id) {
  2064. this.__id = hexString;
  2065. }
  2066. return hexString;
  2067. }
  2068. static getInc() {
  2069. return (ObjectId.index = (ObjectId.index + 1) % 0xffffff);
  2070. }
  2071. static generate(time) {
  2072. if ('number' !== typeof time) {
  2073. time = Math.floor(Date.now() / 1000);
  2074. }
  2075. const inc = ObjectId.getInc();
  2076. const buffer = ByteUtils.allocate(12);
  2077. BSONDataView.fromUint8Array(buffer).setUint32(0, time, false);
  2078. if (PROCESS_UNIQUE === null) {
  2079. PROCESS_UNIQUE = ByteUtils.randomBytes(5);
  2080. }
  2081. buffer[4] = PROCESS_UNIQUE[0];
  2082. buffer[5] = PROCESS_UNIQUE[1];
  2083. buffer[6] = PROCESS_UNIQUE[2];
  2084. buffer[7] = PROCESS_UNIQUE[3];
  2085. buffer[8] = PROCESS_UNIQUE[4];
  2086. buffer[11] = inc & 0xff;
  2087. buffer[10] = (inc >> 8) & 0xff;
  2088. buffer[9] = (inc >> 16) & 0xff;
  2089. return buffer;
  2090. }
  2091. toString(encoding) {
  2092. if (encoding === 'base64')
  2093. return ByteUtils.toBase64(this.id);
  2094. if (encoding === 'hex')
  2095. return this.toHexString();
  2096. return this.toHexString();
  2097. }
  2098. toJSON() {
  2099. return this.toHexString();
  2100. }
  2101. equals(otherId) {
  2102. if (otherId === undefined || otherId === null) {
  2103. return false;
  2104. }
  2105. if (otherId instanceof ObjectId) {
  2106. return this[kId][11] === otherId[kId][11] && ByteUtils.equals(this[kId], otherId[kId]);
  2107. }
  2108. if (typeof otherId === 'string' &&
  2109. ObjectId.isValid(otherId) &&
  2110. otherId.length === 12 &&
  2111. isUint8Array(this.id)) {
  2112. return ByteUtils.equals(this.id, ByteUtils.fromISO88591(otherId));
  2113. }
  2114. if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) {
  2115. return otherId.toLowerCase() === this.toHexString();
  2116. }
  2117. if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) {
  2118. return ByteUtils.equals(ByteUtils.fromUTF8(otherId), this.id);
  2119. }
  2120. if (typeof otherId === 'object' &&
  2121. 'toHexString' in otherId &&
  2122. typeof otherId.toHexString === 'function') {
  2123. const otherIdString = otherId.toHexString();
  2124. const thisIdString = this.toHexString().toLowerCase();
  2125. return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString;
  2126. }
  2127. return false;
  2128. }
  2129. getTimestamp() {
  2130. const timestamp = new Date();
  2131. const time = BSONDataView.fromUint8Array(this.id).getUint32(0, false);
  2132. timestamp.setTime(Math.floor(time) * 1000);
  2133. return timestamp;
  2134. }
  2135. static createPk() {
  2136. return new ObjectId();
  2137. }
  2138. static createFromTime(time) {
  2139. const buffer = ByteUtils.fromNumberArray([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
  2140. BSONDataView.fromUint8Array(buffer).setUint32(0, time, false);
  2141. return new ObjectId(buffer);
  2142. }
  2143. static createFromHexString(hexString) {
  2144. if (hexString?.length !== 24) {
  2145. throw new BSONError('hex string must be 24 characters');
  2146. }
  2147. return new ObjectId(ByteUtils.fromHex(hexString));
  2148. }
  2149. static createFromBase64(base64) {
  2150. if (base64?.length !== 16) {
  2151. throw new BSONError('base64 string must be 16 characters');
  2152. }
  2153. return new ObjectId(ByteUtils.fromBase64(base64));
  2154. }
  2155. static isValid(id) {
  2156. if (id == null)
  2157. return false;
  2158. try {
  2159. new ObjectId(id);
  2160. return true;
  2161. }
  2162. catch {
  2163. return false;
  2164. }
  2165. }
  2166. toExtendedJSON() {
  2167. if (this.toHexString)
  2168. return { $oid: this.toHexString() };
  2169. return { $oid: this.toString('hex') };
  2170. }
  2171. static fromExtendedJSON(doc) {
  2172. return new ObjectId(doc.$oid);
  2173. }
  2174. [Symbol.for('nodejs.util.inspect.custom')]() {
  2175. return this.inspect();
  2176. }
  2177. inspect() {
  2178. return `new ObjectId("${this.toHexString()}")`;
  2179. }
  2180. }
  2181. ObjectId.index = Math.floor(Math.random() * 0xffffff);
  2182. function internalCalculateObjectSize(object, serializeFunctions, ignoreUndefined) {
  2183. let totalLength = 4 + 1;
  2184. if (Array.isArray(object)) {
  2185. for (let i = 0; i < object.length; i++) {
  2186. totalLength += calculateElement(i.toString(), object[i], serializeFunctions, true, ignoreUndefined);
  2187. }
  2188. }
  2189. else {
  2190. if (typeof object?.toBSON === 'function') {
  2191. object = object.toBSON();
  2192. }
  2193. for (const key of Object.keys(object)) {
  2194. totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined);
  2195. }
  2196. }
  2197. return totalLength;
  2198. }
  2199. function calculateElement(name, value, serializeFunctions = false, isArray = false, ignoreUndefined = false) {
  2200. if (typeof value?.toBSON === 'function') {
  2201. value = value.toBSON();
  2202. }
  2203. switch (typeof value) {
  2204. case 'string':
  2205. return 1 + ByteUtils.utf8ByteLength(name) + 1 + 4 + ByteUtils.utf8ByteLength(value) + 1;
  2206. case 'number':
  2207. if (Math.floor(value) === value &&
  2208. value >= JS_INT_MIN &&
  2209. value <= JS_INT_MAX) {
  2210. if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) {
  2211. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (4 + 1);
  2212. }
  2213. else {
  2214. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (8 + 1);
  2215. }
  2216. }
  2217. else {
  2218. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (8 + 1);
  2219. }
  2220. case 'undefined':
  2221. if (isArray || !ignoreUndefined)
  2222. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + 1;
  2223. return 0;
  2224. case 'boolean':
  2225. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (1 + 1);
  2226. case 'object':
  2227. if (value != null &&
  2228. typeof value._bsontype === 'string' &&
  2229. value[Symbol.for('@@mdb.bson.version')] !== BSON_MAJOR_VERSION) {
  2230. throw new BSONVersionError();
  2231. }
  2232. else if (value == null || value._bsontype === 'MinKey' || value._bsontype === 'MaxKey') {
  2233. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + 1;
  2234. }
  2235. else if (value._bsontype === 'ObjectId') {
  2236. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (12 + 1);
  2237. }
  2238. else if (value instanceof Date || isDate(value)) {
  2239. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (8 + 1);
  2240. }
  2241. else if (ArrayBuffer.isView(value) ||
  2242. value instanceof ArrayBuffer ||
  2243. isAnyArrayBuffer(value)) {
  2244. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (1 + 4 + 1) + value.byteLength);
  2245. }
  2246. else if (value._bsontype === 'Long' ||
  2247. value._bsontype === 'Double' ||
  2248. value._bsontype === 'Timestamp') {
  2249. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (8 + 1);
  2250. }
  2251. else if (value._bsontype === 'Decimal128') {
  2252. return (name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (16 + 1);
  2253. }
  2254. else if (value._bsontype === 'Code') {
  2255. if (value.scope != null && Object.keys(value.scope).length > 0) {
  2256. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2257. 1 +
  2258. 4 +
  2259. 4 +
  2260. ByteUtils.utf8ByteLength(value.code.toString()) +
  2261. 1 +
  2262. internalCalculateObjectSize(value.scope, serializeFunctions, ignoreUndefined));
  2263. }
  2264. else {
  2265. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2266. 1 +
  2267. 4 +
  2268. ByteUtils.utf8ByteLength(value.code.toString()) +
  2269. 1);
  2270. }
  2271. }
  2272. else if (value._bsontype === 'Binary') {
  2273. const binary = value;
  2274. if (binary.sub_type === Binary.SUBTYPE_BYTE_ARRAY) {
  2275. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2276. (binary.position + 1 + 4 + 1 + 4));
  2277. }
  2278. else {
  2279. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) + (binary.position + 1 + 4 + 1));
  2280. }
  2281. }
  2282. else if (value._bsontype === 'Symbol') {
  2283. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2284. ByteUtils.utf8ByteLength(value.value) +
  2285. 4 +
  2286. 1 +
  2287. 1);
  2288. }
  2289. else if (value._bsontype === 'DBRef') {
  2290. const ordered_values = Object.assign({
  2291. $ref: value.collection,
  2292. $id: value.oid
  2293. }, value.fields);
  2294. if (value.db != null) {
  2295. ordered_values['$db'] = value.db;
  2296. }
  2297. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2298. 1 +
  2299. internalCalculateObjectSize(ordered_values, serializeFunctions, ignoreUndefined));
  2300. }
  2301. else if (value instanceof RegExp || isRegExp(value)) {
  2302. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2303. 1 +
  2304. ByteUtils.utf8ByteLength(value.source) +
  2305. 1 +
  2306. (value.global ? 1 : 0) +
  2307. (value.ignoreCase ? 1 : 0) +
  2308. (value.multiline ? 1 : 0) +
  2309. 1);
  2310. }
  2311. else if (value._bsontype === 'BSONRegExp') {
  2312. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2313. 1 +
  2314. ByteUtils.utf8ByteLength(value.pattern) +
  2315. 1 +
  2316. ByteUtils.utf8ByteLength(value.options) +
  2317. 1);
  2318. }
  2319. else {
  2320. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2321. internalCalculateObjectSize(value, serializeFunctions, ignoreUndefined) +
  2322. 1);
  2323. }
  2324. case 'function':
  2325. if (serializeFunctions) {
  2326. return ((name != null ? ByteUtils.utf8ByteLength(name) + 1 : 0) +
  2327. 1 +
  2328. 4 +
  2329. ByteUtils.utf8ByteLength(value.toString()) +
  2330. 1);
  2331. }
  2332. }
  2333. return 0;
  2334. }
  2335. function alphabetize(str) {
  2336. return str.split('').sort().join('');
  2337. }
  2338. class BSONRegExp extends BSONValue {
  2339. get _bsontype() {
  2340. return 'BSONRegExp';
  2341. }
  2342. constructor(pattern, options) {
  2343. super();
  2344. this.pattern = pattern;
  2345. this.options = alphabetize(options ?? '');
  2346. if (this.pattern.indexOf('\x00') !== -1) {
  2347. throw new BSONError(`BSON Regex patterns cannot contain null bytes, found: ${JSON.stringify(this.pattern)}`);
  2348. }
  2349. if (this.options.indexOf('\x00') !== -1) {
  2350. throw new BSONError(`BSON Regex options cannot contain null bytes, found: ${JSON.stringify(this.options)}`);
  2351. }
  2352. for (let i = 0; i < this.options.length; i++) {
  2353. if (!(this.options[i] === 'i' ||
  2354. this.options[i] === 'm' ||
  2355. this.options[i] === 'x' ||
  2356. this.options[i] === 'l' ||
  2357. this.options[i] === 's' ||
  2358. this.options[i] === 'u')) {
  2359. throw new BSONError(`The regular expression option [${this.options[i]}] is not supported`);
  2360. }
  2361. }
  2362. }
  2363. static parseOptions(options) {
  2364. return options ? options.split('').sort().join('') : '';
  2365. }
  2366. toExtendedJSON(options) {
  2367. options = options || {};
  2368. if (options.legacy) {
  2369. return { $regex: this.pattern, $options: this.options };
  2370. }
  2371. return { $regularExpression: { pattern: this.pattern, options: this.options } };
  2372. }
  2373. static fromExtendedJSON(doc) {
  2374. if ('$regex' in doc) {
  2375. if (typeof doc.$regex !== 'string') {
  2376. if (doc.$regex._bsontype === 'BSONRegExp') {
  2377. return doc;
  2378. }
  2379. }
  2380. else {
  2381. return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options));
  2382. }
  2383. }
  2384. if ('$regularExpression' in doc) {
  2385. return new BSONRegExp(doc.$regularExpression.pattern, BSONRegExp.parseOptions(doc.$regularExpression.options));
  2386. }
  2387. throw new BSONError(`Unexpected BSONRegExp EJSON object form: ${JSON.stringify(doc)}`);
  2388. }
  2389. [Symbol.for('nodejs.util.inspect.custom')]() {
  2390. return this.inspect();
  2391. }
  2392. inspect() {
  2393. return `new BSONRegExp(${JSON.stringify(this.pattern)}, ${JSON.stringify(this.options)})`;
  2394. }
  2395. }
  2396. class BSONSymbol extends BSONValue {
  2397. get _bsontype() {
  2398. return 'BSONSymbol';
  2399. }
  2400. constructor(value) {
  2401. super();
  2402. this.value = value;
  2403. }
  2404. valueOf() {
  2405. return this.value;
  2406. }
  2407. toString() {
  2408. return this.value;
  2409. }
  2410. inspect() {
  2411. return `new BSONSymbol("${this.value}")`;
  2412. }
  2413. toJSON() {
  2414. return this.value;
  2415. }
  2416. toExtendedJSON() {
  2417. return { $symbol: this.value };
  2418. }
  2419. static fromExtendedJSON(doc) {
  2420. return new BSONSymbol(doc.$symbol);
  2421. }
  2422. [Symbol.for('nodejs.util.inspect.custom')]() {
  2423. return this.inspect();
  2424. }
  2425. }
  2426. const LongWithoutOverridesClass = Long;
  2427. class Timestamp extends LongWithoutOverridesClass {
  2428. get _bsontype() {
  2429. return 'Timestamp';
  2430. }
  2431. constructor(low) {
  2432. if (low == null) {
  2433. super(0, 0, true);
  2434. }
  2435. else if (typeof low === 'bigint') {
  2436. super(low, true);
  2437. }
  2438. else if (Long.isLong(low)) {
  2439. super(low.low, low.high, true);
  2440. }
  2441. else if (typeof low === 'object' && 't' in low && 'i' in low) {
  2442. if (typeof low.t !== 'number' && (typeof low.t !== 'object' || low.t._bsontype !== 'Int32')) {
  2443. throw new BSONError('Timestamp constructed from { t, i } must provide t as a number');
  2444. }
  2445. if (typeof low.i !== 'number' && (typeof low.i !== 'object' || low.i._bsontype !== 'Int32')) {
  2446. throw new BSONError('Timestamp constructed from { t, i } must provide i as a number');
  2447. }
  2448. const t = Number(low.t);
  2449. const i = Number(low.i);
  2450. if (t < 0 || Number.isNaN(t)) {
  2451. throw new BSONError('Timestamp constructed from { t, i } must provide a positive t');
  2452. }
  2453. if (i < 0 || Number.isNaN(i)) {
  2454. throw new BSONError('Timestamp constructed from { t, i } must provide a positive i');
  2455. }
  2456. if (t > 4294967295) {
  2457. throw new BSONError('Timestamp constructed from { t, i } must provide t equal or less than uint32 max');
  2458. }
  2459. if (i > 4294967295) {
  2460. throw new BSONError('Timestamp constructed from { t, i } must provide i equal or less than uint32 max');
  2461. }
  2462. super(i, t, true);
  2463. }
  2464. else {
  2465. throw new BSONError('A Timestamp can only be constructed with: bigint, Long, or { t: number; i: number }');
  2466. }
  2467. }
  2468. toJSON() {
  2469. return {
  2470. $timestamp: this.toString()
  2471. };
  2472. }
  2473. static fromInt(value) {
  2474. return new Timestamp(Long.fromInt(value, true));
  2475. }
  2476. static fromNumber(value) {
  2477. return new Timestamp(Long.fromNumber(value, true));
  2478. }
  2479. static fromBits(lowBits, highBits) {
  2480. return new Timestamp({ i: lowBits, t: highBits });
  2481. }
  2482. static fromString(str, optRadix) {
  2483. return new Timestamp(Long.fromString(str, true, optRadix));
  2484. }
  2485. toExtendedJSON() {
  2486. return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } };
  2487. }
  2488. static fromExtendedJSON(doc) {
  2489. const i = Long.isLong(doc.$timestamp.i)
  2490. ? doc.$timestamp.i.getLowBitsUnsigned()
  2491. : doc.$timestamp.i;
  2492. const t = Long.isLong(doc.$timestamp.t)
  2493. ? doc.$timestamp.t.getLowBitsUnsigned()
  2494. : doc.$timestamp.t;
  2495. return new Timestamp({ t, i });
  2496. }
  2497. [Symbol.for('nodejs.util.inspect.custom')]() {
  2498. return this.inspect();
  2499. }
  2500. inspect() {
  2501. return `new Timestamp({ t: ${this.getHighBits()}, i: ${this.getLowBits()} })`;
  2502. }
  2503. }
  2504. Timestamp.MAX_VALUE = Long.MAX_UNSIGNED_VALUE;
  2505. const FIRST_BIT = 0x80;
  2506. const FIRST_TWO_BITS = 0xc0;
  2507. const FIRST_THREE_BITS = 0xe0;
  2508. const FIRST_FOUR_BITS = 0xf0;
  2509. const FIRST_FIVE_BITS = 0xf8;
  2510. const TWO_BIT_CHAR = 0xc0;
  2511. const THREE_BIT_CHAR = 0xe0;
  2512. const FOUR_BIT_CHAR = 0xf0;
  2513. const CONTINUING_CHAR = 0x80;
  2514. function validateUtf8(bytes, start, end) {
  2515. let continuation = 0;
  2516. for (let i = start; i < end; i += 1) {
  2517. const byte = bytes[i];
  2518. if (continuation) {
  2519. if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) {
  2520. return false;
  2521. }
  2522. continuation -= 1;
  2523. }
  2524. else if (byte & FIRST_BIT) {
  2525. if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) {
  2526. continuation = 1;
  2527. }
  2528. else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) {
  2529. continuation = 2;
  2530. }
  2531. else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) {
  2532. continuation = 3;
  2533. }
  2534. else {
  2535. return false;
  2536. }
  2537. }
  2538. }
  2539. return !continuation;
  2540. }
  2541. const JS_INT_MAX_LONG = Long.fromNumber(JS_INT_MAX);
  2542. const JS_INT_MIN_LONG = Long.fromNumber(JS_INT_MIN);
  2543. function internalDeserialize(buffer, options, isArray) {
  2544. options = options == null ? {} : options;
  2545. const index = options && options.index ? options.index : 0;
  2546. const size = buffer[index] |
  2547. (buffer[index + 1] << 8) |
  2548. (buffer[index + 2] << 16) |
  2549. (buffer[index + 3] << 24);
  2550. if (size < 5) {
  2551. throw new BSONError(`bson size must be >= 5, is ${size}`);
  2552. }
  2553. if (options.allowObjectSmallerThanBufferSize && buffer.length < size) {
  2554. throw new BSONError(`buffer length ${buffer.length} must be >= bson size ${size}`);
  2555. }
  2556. if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) {
  2557. throw new BSONError(`buffer length ${buffer.length} must === bson size ${size}`);
  2558. }
  2559. if (size + index > buffer.byteLength) {
  2560. throw new BSONError(`(bson size ${size} + options.index ${index} must be <= buffer length ${buffer.byteLength})`);
  2561. }
  2562. if (buffer[index + size - 1] !== 0) {
  2563. throw new BSONError("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");
  2564. }
  2565. return deserializeObject(buffer, index, options, isArray);
  2566. }
  2567. const allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/;
  2568. function deserializeObject(buffer, index, options, isArray = false) {
  2569. const fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw'];
  2570. const raw = options['raw'] == null ? false : options['raw'];
  2571. const bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false;
  2572. const promoteBuffers = options.promoteBuffers ?? false;
  2573. const promoteLongs = options.promoteLongs ?? true;
  2574. const promoteValues = options.promoteValues ?? true;
  2575. const useBigInt64 = options.useBigInt64 ?? false;
  2576. if (useBigInt64 && !promoteValues) {
  2577. throw new BSONError('Must either request bigint or Long for int64 deserialization');
  2578. }
  2579. if (useBigInt64 && !promoteLongs) {
  2580. throw new BSONError('Must either request bigint or Long for int64 deserialization');
  2581. }
  2582. const validation = options.validation == null ? { utf8: true } : options.validation;
  2583. let globalUTFValidation = true;
  2584. let validationSetting;
  2585. const utf8KeysSet = new Set();
  2586. const utf8ValidatedKeys = validation.utf8;
  2587. if (typeof utf8ValidatedKeys === 'boolean') {
  2588. validationSetting = utf8ValidatedKeys;
  2589. }
  2590. else {
  2591. globalUTFValidation = false;
  2592. const utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) {
  2593. return utf8ValidatedKeys[key];
  2594. });
  2595. if (utf8ValidationValues.length === 0) {
  2596. throw new BSONError('UTF-8 validation setting cannot be empty');
  2597. }
  2598. if (typeof utf8ValidationValues[0] !== 'boolean') {
  2599. throw new BSONError('Invalid UTF-8 validation option, must specify boolean values');
  2600. }
  2601. validationSetting = utf8ValidationValues[0];
  2602. if (!utf8ValidationValues.every(item => item === validationSetting)) {
  2603. throw new BSONError('Invalid UTF-8 validation option - keys must be all true or all false');
  2604. }
  2605. }
  2606. if (!globalUTFValidation) {
  2607. for (const key of Object.keys(utf8ValidatedKeys)) {
  2608. utf8KeysSet.add(key);
  2609. }
  2610. }
  2611. const startIndex = index;
  2612. if (buffer.length < 5)
  2613. throw new BSONError('corrupt bson message < 5 bytes long');
  2614. const size = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24);
  2615. if (size < 5 || size > buffer.length)
  2616. throw new BSONError('corrupt bson message');
  2617. const object = isArray ? [] : {};
  2618. let arrayIndex = 0;
  2619. const done = false;
  2620. let isPossibleDBRef = isArray ? false : null;
  2621. const dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength);
  2622. while (!done) {
  2623. const elementType = buffer[index++];
  2624. if (elementType === 0)
  2625. break;
  2626. let i = index;
  2627. while (buffer[i] !== 0x00 && i < buffer.length) {
  2628. i++;
  2629. }
  2630. if (i >= buffer.byteLength)
  2631. throw new BSONError('Bad BSON Document: illegal CString');
  2632. const name = isArray ? arrayIndex++ : ByteUtils.toUTF8(buffer, index, i);
  2633. let shouldValidateKey = true;
  2634. if (globalUTFValidation || utf8KeysSet.has(name)) {
  2635. shouldValidateKey = validationSetting;
  2636. }
  2637. else {
  2638. shouldValidateKey = !validationSetting;
  2639. }
  2640. if (isPossibleDBRef !== false && name[0] === '$') {
  2641. isPossibleDBRef = allowedDBRefKeys.test(name);
  2642. }
  2643. let value;
  2644. index = i + 1;
  2645. if (elementType === BSON_DATA_STRING) {
  2646. const stringSize = buffer[index++] |
  2647. (buffer[index++] << 8) |
  2648. (buffer[index++] << 16) |
  2649. (buffer[index++] << 24);
  2650. if (stringSize <= 0 ||
  2651. stringSize > buffer.length - index ||
  2652. buffer[index + stringSize - 1] !== 0) {
  2653. throw new BSONError('bad string length in bson');
  2654. }
  2655. value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey);
  2656. index = index + stringSize;
  2657. }
  2658. else if (elementType === BSON_DATA_OID) {
  2659. const oid = ByteUtils.allocate(12);
  2660. oid.set(buffer.subarray(index, index + 12));
  2661. value = new ObjectId(oid);
  2662. index = index + 12;
  2663. }
  2664. else if (elementType === BSON_DATA_INT && promoteValues === false) {
  2665. value = new Int32(buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24));
  2666. }
  2667. else if (elementType === BSON_DATA_INT) {
  2668. value =
  2669. buffer[index++] |
  2670. (buffer[index++] << 8) |
  2671. (buffer[index++] << 16) |
  2672. (buffer[index++] << 24);
  2673. }
  2674. else if (elementType === BSON_DATA_NUMBER && promoteValues === false) {
  2675. value = new Double(dataview.getFloat64(index, true));
  2676. index = index + 8;
  2677. }
  2678. else if (elementType === BSON_DATA_NUMBER) {
  2679. value = dataview.getFloat64(index, true);
  2680. index = index + 8;
  2681. }
  2682. else if (elementType === BSON_DATA_DATE) {
  2683. const lowBits = buffer[index++] |
  2684. (buffer[index++] << 8) |
  2685. (buffer[index++] << 16) |
  2686. (buffer[index++] << 24);
  2687. const highBits = buffer[index++] |
  2688. (buffer[index++] << 8) |
  2689. (buffer[index++] << 16) |
  2690. (buffer[index++] << 24);
  2691. value = new Date(new Long(lowBits, highBits).toNumber());
  2692. }
  2693. else if (elementType === BSON_DATA_BOOLEAN) {
  2694. if (buffer[index] !== 0 && buffer[index] !== 1)
  2695. throw new BSONError('illegal boolean type value');
  2696. value = buffer[index++] === 1;
  2697. }
  2698. else if (elementType === BSON_DATA_OBJECT) {
  2699. const _index = index;
  2700. const objectSize = buffer[index] |
  2701. (buffer[index + 1] << 8) |
  2702. (buffer[index + 2] << 16) |
  2703. (buffer[index + 3] << 24);
  2704. if (objectSize <= 0 || objectSize > buffer.length - index)
  2705. throw new BSONError('bad embedded document length in bson');
  2706. if (raw) {
  2707. value = buffer.slice(index, index + objectSize);
  2708. }
  2709. else {
  2710. let objectOptions = options;
  2711. if (!globalUTFValidation) {
  2712. objectOptions = { ...options, validation: { utf8: shouldValidateKey } };
  2713. }
  2714. value = deserializeObject(buffer, _index, objectOptions, false);
  2715. }
  2716. index = index + objectSize;
  2717. }
  2718. else if (elementType === BSON_DATA_ARRAY) {
  2719. const _index = index;
  2720. const objectSize = buffer[index] |
  2721. (buffer[index + 1] << 8) |
  2722. (buffer[index + 2] << 16) |
  2723. (buffer[index + 3] << 24);
  2724. let arrayOptions = options;
  2725. const stopIndex = index + objectSize;
  2726. if (fieldsAsRaw && fieldsAsRaw[name]) {
  2727. arrayOptions = { ...options, raw: true };
  2728. }
  2729. if (!globalUTFValidation) {
  2730. arrayOptions = { ...arrayOptions, validation: { utf8: shouldValidateKey } };
  2731. }
  2732. value = deserializeObject(buffer, _index, arrayOptions, true);
  2733. index = index + objectSize;
  2734. if (buffer[index - 1] !== 0)
  2735. throw new BSONError('invalid array terminator byte');
  2736. if (index !== stopIndex)
  2737. throw new BSONError('corrupted array bson');
  2738. }
  2739. else if (elementType === BSON_DATA_UNDEFINED) {
  2740. value = undefined;
  2741. }
  2742. else if (elementType === BSON_DATA_NULL) {
  2743. value = null;
  2744. }
  2745. else if (elementType === BSON_DATA_LONG) {
  2746. const dataview = BSONDataView.fromUint8Array(buffer.subarray(index, index + 8));
  2747. const lowBits = buffer[index++] |
  2748. (buffer[index++] << 8) |
  2749. (buffer[index++] << 16) |
  2750. (buffer[index++] << 24);
  2751. const highBits = buffer[index++] |
  2752. (buffer[index++] << 8) |
  2753. (buffer[index++] << 16) |
  2754. (buffer[index++] << 24);
  2755. const long = new Long(lowBits, highBits);
  2756. if (useBigInt64) {
  2757. value = dataview.getBigInt64(0, true);
  2758. }
  2759. else if (promoteLongs && promoteValues === true) {
  2760. value =
  2761. long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG)
  2762. ? long.toNumber()
  2763. : long;
  2764. }
  2765. else {
  2766. value = long;
  2767. }
  2768. }
  2769. else if (elementType === BSON_DATA_DECIMAL128) {
  2770. const bytes = ByteUtils.allocate(16);
  2771. bytes.set(buffer.subarray(index, index + 16), 0);
  2772. index = index + 16;
  2773. value = new Decimal128(bytes);
  2774. }
  2775. else if (elementType === BSON_DATA_BINARY) {
  2776. let binarySize = buffer[index++] |
  2777. (buffer[index++] << 8) |
  2778. (buffer[index++] << 16) |
  2779. (buffer[index++] << 24);
  2780. const totalBinarySize = binarySize;
  2781. const subType = buffer[index++];
  2782. if (binarySize < 0)
  2783. throw new BSONError('Negative binary type element size found');
  2784. if (binarySize > buffer.byteLength)
  2785. throw new BSONError('Binary type size larger than document size');
  2786. if (buffer['slice'] != null) {
  2787. if (subType === Binary.SUBTYPE_BYTE_ARRAY) {
  2788. binarySize =
  2789. buffer[index++] |
  2790. (buffer[index++] << 8) |
  2791. (buffer[index++] << 16) |
  2792. (buffer[index++] << 24);
  2793. if (binarySize < 0)
  2794. throw new BSONError('Negative binary type element size found for subtype 0x02');
  2795. if (binarySize > totalBinarySize - 4)
  2796. throw new BSONError('Binary type with subtype 0x02 contains too long binary size');
  2797. if (binarySize < totalBinarySize - 4)
  2798. throw new BSONError('Binary type with subtype 0x02 contains too short binary size');
  2799. }
  2800. if (promoteBuffers && promoteValues) {
  2801. value = ByteUtils.toLocalBufferType(buffer.slice(index, index + binarySize));
  2802. }
  2803. else {
  2804. value = new Binary(buffer.slice(index, index + binarySize), subType);
  2805. if (subType === BSON_BINARY_SUBTYPE_UUID_NEW && UUID.isValid(value)) {
  2806. value = value.toUUID();
  2807. }
  2808. }
  2809. }
  2810. else {
  2811. const _buffer = ByteUtils.allocate(binarySize);
  2812. if (subType === Binary.SUBTYPE_BYTE_ARRAY) {
  2813. binarySize =
  2814. buffer[index++] |
  2815. (buffer[index++] << 8) |
  2816. (buffer[index++] << 16) |
  2817. (buffer[index++] << 24);
  2818. if (binarySize < 0)
  2819. throw new BSONError('Negative binary type element size found for subtype 0x02');
  2820. if (binarySize > totalBinarySize - 4)
  2821. throw new BSONError('Binary type with subtype 0x02 contains too long binary size');
  2822. if (binarySize < totalBinarySize - 4)
  2823. throw new BSONError('Binary type with subtype 0x02 contains too short binary size');
  2824. }
  2825. for (i = 0; i < binarySize; i++) {
  2826. _buffer[i] = buffer[index + i];
  2827. }
  2828. if (promoteBuffers && promoteValues) {
  2829. value = _buffer;
  2830. }
  2831. else {
  2832. value = new Binary(buffer.slice(index, index + binarySize), subType);
  2833. if (subType === BSON_BINARY_SUBTYPE_UUID_NEW && UUID.isValid(value)) {
  2834. value = value.toUUID();
  2835. }
  2836. }
  2837. }
  2838. index = index + binarySize;
  2839. }
  2840. else if (elementType === BSON_DATA_REGEXP && bsonRegExp === false) {
  2841. i = index;
  2842. while (buffer[i] !== 0x00 && i < buffer.length) {
  2843. i++;
  2844. }
  2845. if (i >= buffer.length)
  2846. throw new BSONError('Bad BSON Document: illegal CString');
  2847. const source = ByteUtils.toUTF8(buffer, index, i);
  2848. index = i + 1;
  2849. i = index;
  2850. while (buffer[i] !== 0x00 && i < buffer.length) {
  2851. i++;
  2852. }
  2853. if (i >= buffer.length)
  2854. throw new BSONError('Bad BSON Document: illegal CString');
  2855. const regExpOptions = ByteUtils.toUTF8(buffer, index, i);
  2856. index = i + 1;
  2857. const optionsArray = new Array(regExpOptions.length);
  2858. for (i = 0; i < regExpOptions.length; i++) {
  2859. switch (regExpOptions[i]) {
  2860. case 'm':
  2861. optionsArray[i] = 'm';
  2862. break;
  2863. case 's':
  2864. optionsArray[i] = 'g';
  2865. break;
  2866. case 'i':
  2867. optionsArray[i] = 'i';
  2868. break;
  2869. }
  2870. }
  2871. value = new RegExp(source, optionsArray.join(''));
  2872. }
  2873. else if (elementType === BSON_DATA_REGEXP && bsonRegExp === true) {
  2874. i = index;
  2875. while (buffer[i] !== 0x00 && i < buffer.length) {
  2876. i++;
  2877. }
  2878. if (i >= buffer.length)
  2879. throw new BSONError('Bad BSON Document: illegal CString');
  2880. const source = ByteUtils.toUTF8(buffer, index, i);
  2881. index = i + 1;
  2882. i = index;
  2883. while (buffer[i] !== 0x00 && i < buffer.length) {
  2884. i++;
  2885. }
  2886. if (i >= buffer.length)
  2887. throw new BSONError('Bad BSON Document: illegal CString');
  2888. const regExpOptions = ByteUtils.toUTF8(buffer, index, i);
  2889. index = i + 1;
  2890. value = new BSONRegExp(source, regExpOptions);
  2891. }
  2892. else if (elementType === BSON_DATA_SYMBOL) {
  2893. const stringSize = buffer[index++] |
  2894. (buffer[index++] << 8) |
  2895. (buffer[index++] << 16) |
  2896. (buffer[index++] << 24);
  2897. if (stringSize <= 0 ||
  2898. stringSize > buffer.length - index ||
  2899. buffer[index + stringSize - 1] !== 0) {
  2900. throw new BSONError('bad string length in bson');
  2901. }
  2902. const symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey);
  2903. value = promoteValues ? symbol : new BSONSymbol(symbol);
  2904. index = index + stringSize;
  2905. }
  2906. else if (elementType === BSON_DATA_TIMESTAMP) {
  2907. const i = buffer[index++] +
  2908. buffer[index++] * (1 << 8) +
  2909. buffer[index++] * (1 << 16) +
  2910. buffer[index++] * (1 << 24);
  2911. const t = buffer[index++] +
  2912. buffer[index++] * (1 << 8) +
  2913. buffer[index++] * (1 << 16) +
  2914. buffer[index++] * (1 << 24);
  2915. value = new Timestamp({ i, t });
  2916. }
  2917. else if (elementType === BSON_DATA_MIN_KEY) {
  2918. value = new MinKey();
  2919. }
  2920. else if (elementType === BSON_DATA_MAX_KEY) {
  2921. value = new MaxKey();
  2922. }
  2923. else if (elementType === BSON_DATA_CODE) {
  2924. const stringSize = buffer[index++] |
  2925. (buffer[index++] << 8) |
  2926. (buffer[index++] << 16) |
  2927. (buffer[index++] << 24);
  2928. if (stringSize <= 0 ||
  2929. stringSize > buffer.length - index ||
  2930. buffer[index + stringSize - 1] !== 0) {
  2931. throw new BSONError('bad string length in bson');
  2932. }
  2933. const functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey);
  2934. value = new Code(functionString);
  2935. index = index + stringSize;
  2936. }
  2937. else if (elementType === BSON_DATA_CODE_W_SCOPE) {
  2938. const totalSize = buffer[index++] |
  2939. (buffer[index++] << 8) |
  2940. (buffer[index++] << 16) |
  2941. (buffer[index++] << 24);
  2942. if (totalSize < 4 + 4 + 4 + 1) {
  2943. throw new BSONError('code_w_scope total size shorter minimum expected length');
  2944. }
  2945. const stringSize = buffer[index++] |
  2946. (buffer[index++] << 8) |
  2947. (buffer[index++] << 16) |
  2948. (buffer[index++] << 24);
  2949. if (stringSize <= 0 ||
  2950. stringSize > buffer.length - index ||
  2951. buffer[index + stringSize - 1] !== 0) {
  2952. throw new BSONError('bad string length in bson');
  2953. }
  2954. const functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey);
  2955. index = index + stringSize;
  2956. const _index = index;
  2957. const objectSize = buffer[index] |
  2958. (buffer[index + 1] << 8) |
  2959. (buffer[index + 2] << 16) |
  2960. (buffer[index + 3] << 24);
  2961. const scopeObject = deserializeObject(buffer, _index, options, false);
  2962. index = index + objectSize;
  2963. if (totalSize < 4 + 4 + objectSize + stringSize) {
  2964. throw new BSONError('code_w_scope total size is too short, truncating scope');
  2965. }
  2966. if (totalSize > 4 + 4 + objectSize + stringSize) {
  2967. throw new BSONError('code_w_scope total size is too long, clips outer document');
  2968. }
  2969. value = new Code(functionString, scopeObject);
  2970. }
  2971. else if (elementType === BSON_DATA_DBPOINTER) {
  2972. const stringSize = buffer[index++] |
  2973. (buffer[index++] << 8) |
  2974. (buffer[index++] << 16) |
  2975. (buffer[index++] << 24);
  2976. if (stringSize <= 0 ||
  2977. stringSize > buffer.length - index ||
  2978. buffer[index + stringSize - 1] !== 0)
  2979. throw new BSONError('bad string length in bson');
  2980. if (validation != null && validation.utf8) {
  2981. if (!validateUtf8(buffer, index, index + stringSize - 1)) {
  2982. throw new BSONError('Invalid UTF-8 string in BSON document');
  2983. }
  2984. }
  2985. const namespace = ByteUtils.toUTF8(buffer, index, index + stringSize - 1);
  2986. index = index + stringSize;
  2987. const oidBuffer = ByteUtils.allocate(12);
  2988. oidBuffer.set(buffer.subarray(index, index + 12), 0);
  2989. const oid = new ObjectId(oidBuffer);
  2990. index = index + 12;
  2991. value = new DBRef(namespace, oid);
  2992. }
  2993. else {
  2994. throw new BSONError(`Detected unknown BSON type ${elementType.toString(16)} for fieldname "${name}"`);
  2995. }
  2996. if (name === '__proto__') {
  2997. Object.defineProperty(object, name, {
  2998. value,
  2999. writable: true,
  3000. enumerable: true,
  3001. configurable: true
  3002. });
  3003. }
  3004. else {
  3005. object[name] = value;
  3006. }
  3007. }
  3008. if (size !== index - startIndex) {
  3009. if (isArray)
  3010. throw new BSONError('corrupt array bson');
  3011. throw new BSONError('corrupt object bson');
  3012. }
  3013. if (!isPossibleDBRef)
  3014. return object;
  3015. if (isDBRefLike(object)) {
  3016. const copy = Object.assign({}, object);
  3017. delete copy.$ref;
  3018. delete copy.$id;
  3019. delete copy.$db;
  3020. return new DBRef(object.$ref, object.$id, object.$db, copy);
  3021. }
  3022. return object;
  3023. }
  3024. function getValidatedString(buffer, start, end, shouldValidateUtf8) {
  3025. const value = ByteUtils.toUTF8(buffer, start, end);
  3026. if (shouldValidateUtf8) {
  3027. for (let i = 0; i < value.length; i++) {
  3028. if (value.charCodeAt(i) === 0xfffd) {
  3029. if (!validateUtf8(buffer, start, end)) {
  3030. throw new BSONError('Invalid UTF-8 string in BSON document');
  3031. }
  3032. break;
  3033. }
  3034. }
  3035. }
  3036. return value;
  3037. }
  3038. const regexp = /\x00/;
  3039. const ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']);
  3040. function serializeString(buffer, key, value, index) {
  3041. buffer[index++] = BSON_DATA_STRING;
  3042. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3043. index = index + numberOfWrittenBytes + 1;
  3044. buffer[index - 1] = 0;
  3045. const size = ByteUtils.encodeUTF8Into(buffer, value, index + 4);
  3046. buffer[index + 3] = ((size + 1) >> 24) & 0xff;
  3047. buffer[index + 2] = ((size + 1) >> 16) & 0xff;
  3048. buffer[index + 1] = ((size + 1) >> 8) & 0xff;
  3049. buffer[index] = (size + 1) & 0xff;
  3050. index = index + 4 + size;
  3051. buffer[index++] = 0;
  3052. return index;
  3053. }
  3054. const NUMBER_SPACE = new DataView(new ArrayBuffer(8), 0, 8);
  3055. const FOUR_BYTE_VIEW_ON_NUMBER = new Uint8Array(NUMBER_SPACE.buffer, 0, 4);
  3056. const EIGHT_BYTE_VIEW_ON_NUMBER = new Uint8Array(NUMBER_SPACE.buffer, 0, 8);
  3057. function serializeNumber(buffer, key, value, index) {
  3058. const isNegativeZero = Object.is(value, -0);
  3059. const type = !isNegativeZero &&
  3060. Number.isSafeInteger(value) &&
  3061. value <= BSON_INT32_MAX &&
  3062. value >= BSON_INT32_MIN
  3063. ? BSON_DATA_INT
  3064. : BSON_DATA_NUMBER;
  3065. if (type === BSON_DATA_INT) {
  3066. NUMBER_SPACE.setInt32(0, value, true);
  3067. }
  3068. else {
  3069. NUMBER_SPACE.setFloat64(0, value, true);
  3070. }
  3071. const bytes = type === BSON_DATA_INT ? FOUR_BYTE_VIEW_ON_NUMBER : EIGHT_BYTE_VIEW_ON_NUMBER;
  3072. buffer[index++] = type;
  3073. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3074. index = index + numberOfWrittenBytes;
  3075. buffer[index++] = 0x00;
  3076. buffer.set(bytes, index);
  3077. index += bytes.byteLength;
  3078. return index;
  3079. }
  3080. function serializeBigInt(buffer, key, value, index) {
  3081. buffer[index++] = BSON_DATA_LONG;
  3082. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3083. index += numberOfWrittenBytes;
  3084. buffer[index++] = 0;
  3085. NUMBER_SPACE.setBigInt64(0, value, true);
  3086. buffer.set(EIGHT_BYTE_VIEW_ON_NUMBER, index);
  3087. index += EIGHT_BYTE_VIEW_ON_NUMBER.byteLength;
  3088. return index;
  3089. }
  3090. function serializeNull(buffer, key, _, index) {
  3091. buffer[index++] = BSON_DATA_NULL;
  3092. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3093. index = index + numberOfWrittenBytes;
  3094. buffer[index++] = 0;
  3095. return index;
  3096. }
  3097. function serializeBoolean(buffer, key, value, index) {
  3098. buffer[index++] = BSON_DATA_BOOLEAN;
  3099. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3100. index = index + numberOfWrittenBytes;
  3101. buffer[index++] = 0;
  3102. buffer[index++] = value ? 1 : 0;
  3103. return index;
  3104. }
  3105. function serializeDate(buffer, key, value, index) {
  3106. buffer[index++] = BSON_DATA_DATE;
  3107. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3108. index = index + numberOfWrittenBytes;
  3109. buffer[index++] = 0;
  3110. const dateInMilis = Long.fromNumber(value.getTime());
  3111. const lowBits = dateInMilis.getLowBits();
  3112. const highBits = dateInMilis.getHighBits();
  3113. buffer[index++] = lowBits & 0xff;
  3114. buffer[index++] = (lowBits >> 8) & 0xff;
  3115. buffer[index++] = (lowBits >> 16) & 0xff;
  3116. buffer[index++] = (lowBits >> 24) & 0xff;
  3117. buffer[index++] = highBits & 0xff;
  3118. buffer[index++] = (highBits >> 8) & 0xff;
  3119. buffer[index++] = (highBits >> 16) & 0xff;
  3120. buffer[index++] = (highBits >> 24) & 0xff;
  3121. return index;
  3122. }
  3123. function serializeRegExp(buffer, key, value, index) {
  3124. buffer[index++] = BSON_DATA_REGEXP;
  3125. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3126. index = index + numberOfWrittenBytes;
  3127. buffer[index++] = 0;
  3128. if (value.source && value.source.match(regexp) != null) {
  3129. throw new BSONError('value ' + value.source + ' must not contain null bytes');
  3130. }
  3131. index = index + ByteUtils.encodeUTF8Into(buffer, value.source, index);
  3132. buffer[index++] = 0x00;
  3133. if (value.ignoreCase)
  3134. buffer[index++] = 0x69;
  3135. if (value.global)
  3136. buffer[index++] = 0x73;
  3137. if (value.multiline)
  3138. buffer[index++] = 0x6d;
  3139. buffer[index++] = 0x00;
  3140. return index;
  3141. }
  3142. function serializeBSONRegExp(buffer, key, value, index) {
  3143. buffer[index++] = BSON_DATA_REGEXP;
  3144. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3145. index = index + numberOfWrittenBytes;
  3146. buffer[index++] = 0;
  3147. if (value.pattern.match(regexp) != null) {
  3148. throw new BSONError('pattern ' + value.pattern + ' must not contain null bytes');
  3149. }
  3150. index = index + ByteUtils.encodeUTF8Into(buffer, value.pattern, index);
  3151. buffer[index++] = 0x00;
  3152. const sortedOptions = value.options.split('').sort().join('');
  3153. index = index + ByteUtils.encodeUTF8Into(buffer, sortedOptions, index);
  3154. buffer[index++] = 0x00;
  3155. return index;
  3156. }
  3157. function serializeMinMax(buffer, key, value, index) {
  3158. if (value === null) {
  3159. buffer[index++] = BSON_DATA_NULL;
  3160. }
  3161. else if (value._bsontype === 'MinKey') {
  3162. buffer[index++] = BSON_DATA_MIN_KEY;
  3163. }
  3164. else {
  3165. buffer[index++] = BSON_DATA_MAX_KEY;
  3166. }
  3167. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3168. index = index + numberOfWrittenBytes;
  3169. buffer[index++] = 0;
  3170. return index;
  3171. }
  3172. function serializeObjectId(buffer, key, value, index) {
  3173. buffer[index++] = BSON_DATA_OID;
  3174. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3175. index = index + numberOfWrittenBytes;
  3176. buffer[index++] = 0;
  3177. if (isUint8Array(value.id)) {
  3178. buffer.set(value.id.subarray(0, 12), index);
  3179. }
  3180. else {
  3181. throw new BSONError('object [' + JSON.stringify(value) + '] is not a valid ObjectId');
  3182. }
  3183. return index + 12;
  3184. }
  3185. function serializeBuffer(buffer, key, value, index) {
  3186. buffer[index++] = BSON_DATA_BINARY;
  3187. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3188. index = index + numberOfWrittenBytes;
  3189. buffer[index++] = 0;
  3190. const size = value.length;
  3191. buffer[index++] = size & 0xff;
  3192. buffer[index++] = (size >> 8) & 0xff;
  3193. buffer[index++] = (size >> 16) & 0xff;
  3194. buffer[index++] = (size >> 24) & 0xff;
  3195. buffer[index++] = BSON_BINARY_SUBTYPE_DEFAULT;
  3196. buffer.set(value, index);
  3197. index = index + size;
  3198. return index;
  3199. }
  3200. function serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path) {
  3201. if (path.has(value)) {
  3202. throw new BSONError('Cannot convert circular structure to BSON');
  3203. }
  3204. path.add(value);
  3205. buffer[index++] = Array.isArray(value) ? BSON_DATA_ARRAY : BSON_DATA_OBJECT;
  3206. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3207. index = index + numberOfWrittenBytes;
  3208. buffer[index++] = 0;
  3209. const endIndex = serializeInto(buffer, value, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path);
  3210. path.delete(value);
  3211. return endIndex;
  3212. }
  3213. function serializeDecimal128(buffer, key, value, index) {
  3214. buffer[index++] = BSON_DATA_DECIMAL128;
  3215. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3216. index = index + numberOfWrittenBytes;
  3217. buffer[index++] = 0;
  3218. buffer.set(value.bytes.subarray(0, 16), index);
  3219. return index + 16;
  3220. }
  3221. function serializeLong(buffer, key, value, index) {
  3222. buffer[index++] =
  3223. value._bsontype === 'Long' ? BSON_DATA_LONG : BSON_DATA_TIMESTAMP;
  3224. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3225. index = index + numberOfWrittenBytes;
  3226. buffer[index++] = 0;
  3227. const lowBits = value.getLowBits();
  3228. const highBits = value.getHighBits();
  3229. buffer[index++] = lowBits & 0xff;
  3230. buffer[index++] = (lowBits >> 8) & 0xff;
  3231. buffer[index++] = (lowBits >> 16) & 0xff;
  3232. buffer[index++] = (lowBits >> 24) & 0xff;
  3233. buffer[index++] = highBits & 0xff;
  3234. buffer[index++] = (highBits >> 8) & 0xff;
  3235. buffer[index++] = (highBits >> 16) & 0xff;
  3236. buffer[index++] = (highBits >> 24) & 0xff;
  3237. return index;
  3238. }
  3239. function serializeInt32(buffer, key, value, index) {
  3240. value = value.valueOf();
  3241. buffer[index++] = BSON_DATA_INT;
  3242. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3243. index = index + numberOfWrittenBytes;
  3244. buffer[index++] = 0;
  3245. buffer[index++] = value & 0xff;
  3246. buffer[index++] = (value >> 8) & 0xff;
  3247. buffer[index++] = (value >> 16) & 0xff;
  3248. buffer[index++] = (value >> 24) & 0xff;
  3249. return index;
  3250. }
  3251. function serializeDouble(buffer, key, value, index) {
  3252. buffer[index++] = BSON_DATA_NUMBER;
  3253. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3254. index = index + numberOfWrittenBytes;
  3255. buffer[index++] = 0;
  3256. NUMBER_SPACE.setFloat64(0, value.value, true);
  3257. buffer.set(EIGHT_BYTE_VIEW_ON_NUMBER, index);
  3258. index = index + 8;
  3259. return index;
  3260. }
  3261. function serializeFunction(buffer, key, value, index) {
  3262. buffer[index++] = BSON_DATA_CODE;
  3263. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3264. index = index + numberOfWrittenBytes;
  3265. buffer[index++] = 0;
  3266. const functionString = value.toString();
  3267. const size = ByteUtils.encodeUTF8Into(buffer, functionString, index + 4) + 1;
  3268. buffer[index] = size & 0xff;
  3269. buffer[index + 1] = (size >> 8) & 0xff;
  3270. buffer[index + 2] = (size >> 16) & 0xff;
  3271. buffer[index + 3] = (size >> 24) & 0xff;
  3272. index = index + 4 + size - 1;
  3273. buffer[index++] = 0;
  3274. return index;
  3275. }
  3276. function serializeCode(buffer, key, value, index, checkKeys = false, depth = 0, serializeFunctions = false, ignoreUndefined = true, path) {
  3277. if (value.scope && typeof value.scope === 'object') {
  3278. buffer[index++] = BSON_DATA_CODE_W_SCOPE;
  3279. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3280. index = index + numberOfWrittenBytes;
  3281. buffer[index++] = 0;
  3282. let startIndex = index;
  3283. const functionString = value.code;
  3284. index = index + 4;
  3285. const codeSize = ByteUtils.encodeUTF8Into(buffer, functionString, index + 4) + 1;
  3286. buffer[index] = codeSize & 0xff;
  3287. buffer[index + 1] = (codeSize >> 8) & 0xff;
  3288. buffer[index + 2] = (codeSize >> 16) & 0xff;
  3289. buffer[index + 3] = (codeSize >> 24) & 0xff;
  3290. buffer[index + 4 + codeSize - 1] = 0;
  3291. index = index + codeSize + 4;
  3292. const endIndex = serializeInto(buffer, value.scope, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path);
  3293. index = endIndex - 1;
  3294. const totalSize = endIndex - startIndex;
  3295. buffer[startIndex++] = totalSize & 0xff;
  3296. buffer[startIndex++] = (totalSize >> 8) & 0xff;
  3297. buffer[startIndex++] = (totalSize >> 16) & 0xff;
  3298. buffer[startIndex++] = (totalSize >> 24) & 0xff;
  3299. buffer[index++] = 0;
  3300. }
  3301. else {
  3302. buffer[index++] = BSON_DATA_CODE;
  3303. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3304. index = index + numberOfWrittenBytes;
  3305. buffer[index++] = 0;
  3306. const functionString = value.code.toString();
  3307. const size = ByteUtils.encodeUTF8Into(buffer, functionString, index + 4) + 1;
  3308. buffer[index] = size & 0xff;
  3309. buffer[index + 1] = (size >> 8) & 0xff;
  3310. buffer[index + 2] = (size >> 16) & 0xff;
  3311. buffer[index + 3] = (size >> 24) & 0xff;
  3312. index = index + 4 + size - 1;
  3313. buffer[index++] = 0;
  3314. }
  3315. return index;
  3316. }
  3317. function serializeBinary(buffer, key, value, index) {
  3318. buffer[index++] = BSON_DATA_BINARY;
  3319. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3320. index = index + numberOfWrittenBytes;
  3321. buffer[index++] = 0;
  3322. const data = value.buffer;
  3323. let size = value.position;
  3324. if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY)
  3325. size = size + 4;
  3326. buffer[index++] = size & 0xff;
  3327. buffer[index++] = (size >> 8) & 0xff;
  3328. buffer[index++] = (size >> 16) & 0xff;
  3329. buffer[index++] = (size >> 24) & 0xff;
  3330. buffer[index++] = value.sub_type;
  3331. if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) {
  3332. size = size - 4;
  3333. buffer[index++] = size & 0xff;
  3334. buffer[index++] = (size >> 8) & 0xff;
  3335. buffer[index++] = (size >> 16) & 0xff;
  3336. buffer[index++] = (size >> 24) & 0xff;
  3337. }
  3338. buffer.set(data, index);
  3339. index = index + value.position;
  3340. return index;
  3341. }
  3342. function serializeSymbol(buffer, key, value, index) {
  3343. buffer[index++] = BSON_DATA_SYMBOL;
  3344. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3345. index = index + numberOfWrittenBytes;
  3346. buffer[index++] = 0;
  3347. const size = ByteUtils.encodeUTF8Into(buffer, value.value, index + 4) + 1;
  3348. buffer[index] = size & 0xff;
  3349. buffer[index + 1] = (size >> 8) & 0xff;
  3350. buffer[index + 2] = (size >> 16) & 0xff;
  3351. buffer[index + 3] = (size >> 24) & 0xff;
  3352. index = index + 4 + size - 1;
  3353. buffer[index++] = 0x00;
  3354. return index;
  3355. }
  3356. function serializeDBRef(buffer, key, value, index, depth, serializeFunctions, path) {
  3357. buffer[index++] = BSON_DATA_OBJECT;
  3358. const numberOfWrittenBytes = ByteUtils.encodeUTF8Into(buffer, key, index);
  3359. index = index + numberOfWrittenBytes;
  3360. buffer[index++] = 0;
  3361. let startIndex = index;
  3362. let output = {
  3363. $ref: value.collection || value.namespace,
  3364. $id: value.oid
  3365. };
  3366. if (value.db != null) {
  3367. output.$db = value.db;
  3368. }
  3369. output = Object.assign(output, value.fields);
  3370. const endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions, true, path);
  3371. const size = endIndex - startIndex;
  3372. buffer[startIndex++] = size & 0xff;
  3373. buffer[startIndex++] = (size >> 8) & 0xff;
  3374. buffer[startIndex++] = (size >> 16) & 0xff;
  3375. buffer[startIndex++] = (size >> 24) & 0xff;
  3376. return endIndex;
  3377. }
  3378. function serializeInto(buffer, object, checkKeys, startingIndex, depth, serializeFunctions, ignoreUndefined, path) {
  3379. if (path == null) {
  3380. if (object == null) {
  3381. buffer[0] = 0x05;
  3382. buffer[1] = 0x00;
  3383. buffer[2] = 0x00;
  3384. buffer[3] = 0x00;
  3385. buffer[4] = 0x00;
  3386. return 5;
  3387. }
  3388. if (Array.isArray(object)) {
  3389. throw new BSONError('serialize does not support an array as the root input');
  3390. }
  3391. if (typeof object !== 'object') {
  3392. throw new BSONError('serialize does not support non-object as the root input');
  3393. }
  3394. else if ('_bsontype' in object && typeof object._bsontype === 'string') {
  3395. throw new BSONError(`BSON types cannot be serialized as a document`);
  3396. }
  3397. else if (isDate(object) ||
  3398. isRegExp(object) ||
  3399. isUint8Array(object) ||
  3400. isAnyArrayBuffer(object)) {
  3401. throw new BSONError(`date, regexp, typedarray, and arraybuffer cannot be BSON documents`);
  3402. }
  3403. path = new Set();
  3404. }
  3405. path.add(object);
  3406. let index = startingIndex + 4;
  3407. if (Array.isArray(object)) {
  3408. for (let i = 0; i < object.length; i++) {
  3409. const key = `${i}`;
  3410. let value = object[i];
  3411. if (typeof value?.toBSON === 'function') {
  3412. value = value.toBSON();
  3413. }
  3414. if (typeof value === 'string') {
  3415. index = serializeString(buffer, key, value, index);
  3416. }
  3417. else if (typeof value === 'number') {
  3418. index = serializeNumber(buffer, key, value, index);
  3419. }
  3420. else if (typeof value === 'bigint') {
  3421. index = serializeBigInt(buffer, key, value, index);
  3422. }
  3423. else if (typeof value === 'boolean') {
  3424. index = serializeBoolean(buffer, key, value, index);
  3425. }
  3426. else if (value instanceof Date || isDate(value)) {
  3427. index = serializeDate(buffer, key, value, index);
  3428. }
  3429. else if (value === undefined) {
  3430. index = serializeNull(buffer, key, value, index);
  3431. }
  3432. else if (value === null) {
  3433. index = serializeNull(buffer, key, value, index);
  3434. }
  3435. else if (isUint8Array(value)) {
  3436. index = serializeBuffer(buffer, key, value, index);
  3437. }
  3438. else if (value instanceof RegExp || isRegExp(value)) {
  3439. index = serializeRegExp(buffer, key, value, index);
  3440. }
  3441. else if (typeof value === 'object' && value._bsontype == null) {
  3442. index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path);
  3443. }
  3444. else if (typeof value === 'object' &&
  3445. value[Symbol.for('@@mdb.bson.version')] !== BSON_MAJOR_VERSION) {
  3446. throw new BSONVersionError();
  3447. }
  3448. else if (value._bsontype === 'ObjectId') {
  3449. index = serializeObjectId(buffer, key, value, index);
  3450. }
  3451. else if (value._bsontype === 'Decimal128') {
  3452. index = serializeDecimal128(buffer, key, value, index);
  3453. }
  3454. else if (value._bsontype === 'Long' || value._bsontype === 'Timestamp') {
  3455. index = serializeLong(buffer, key, value, index);
  3456. }
  3457. else if (value._bsontype === 'Double') {
  3458. index = serializeDouble(buffer, key, value, index);
  3459. }
  3460. else if (typeof value === 'function' && serializeFunctions) {
  3461. index = serializeFunction(buffer, key, value, index);
  3462. }
  3463. else if (value._bsontype === 'Code') {
  3464. index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path);
  3465. }
  3466. else if (value._bsontype === 'Binary') {
  3467. index = serializeBinary(buffer, key, value, index);
  3468. }
  3469. else if (value._bsontype === 'BSONSymbol') {
  3470. index = serializeSymbol(buffer, key, value, index);
  3471. }
  3472. else if (value._bsontype === 'DBRef') {
  3473. index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, path);
  3474. }
  3475. else if (value._bsontype === 'BSONRegExp') {
  3476. index = serializeBSONRegExp(buffer, key, value, index);
  3477. }
  3478. else if (value._bsontype === 'Int32') {
  3479. index = serializeInt32(buffer, key, value, index);
  3480. }
  3481. else if (value._bsontype === 'MinKey' || value._bsontype === 'MaxKey') {
  3482. index = serializeMinMax(buffer, key, value, index);
  3483. }
  3484. else if (typeof value._bsontype !== 'undefined') {
  3485. throw new BSONError(`Unrecognized or invalid _bsontype: ${String(value._bsontype)}`);
  3486. }
  3487. }
  3488. }
  3489. else if (object instanceof Map || isMap(object)) {
  3490. const iterator = object.entries();
  3491. let done = false;
  3492. while (!done) {
  3493. const entry = iterator.next();
  3494. done = !!entry.done;
  3495. if (done)
  3496. continue;
  3497. const key = entry.value[0];
  3498. let value = entry.value[1];
  3499. if (typeof value?.toBSON === 'function') {
  3500. value = value.toBSON();
  3501. }
  3502. const type = typeof value;
  3503. if (typeof key === 'string' && !ignoreKeys.has(key)) {
  3504. if (key.match(regexp) != null) {
  3505. throw new BSONError('key ' + key + ' must not contain null bytes');
  3506. }
  3507. if (checkKeys) {
  3508. if ('$' === key[0]) {
  3509. throw new BSONError('key ' + key + " must not start with '$'");
  3510. }
  3511. else if (~key.indexOf('.')) {
  3512. throw new BSONError('key ' + key + " must not contain '.'");
  3513. }
  3514. }
  3515. }
  3516. if (type === 'string') {
  3517. index = serializeString(buffer, key, value, index);
  3518. }
  3519. else if (type === 'number') {
  3520. index = serializeNumber(buffer, key, value, index);
  3521. }
  3522. else if (type === 'bigint') {
  3523. index = serializeBigInt(buffer, key, value, index);
  3524. }
  3525. else if (type === 'boolean') {
  3526. index = serializeBoolean(buffer, key, value, index);
  3527. }
  3528. else if (value instanceof Date || isDate(value)) {
  3529. index = serializeDate(buffer, key, value, index);
  3530. }
  3531. else if (value === null || (value === undefined && ignoreUndefined === false)) {
  3532. index = serializeNull(buffer, key, value, index);
  3533. }
  3534. else if (isUint8Array(value)) {
  3535. index = serializeBuffer(buffer, key, value, index);
  3536. }
  3537. else if (value instanceof RegExp || isRegExp(value)) {
  3538. index = serializeRegExp(buffer, key, value, index);
  3539. }
  3540. else if (type === 'object' && value._bsontype == null) {
  3541. index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path);
  3542. }
  3543. else if (typeof value === 'object' &&
  3544. value[Symbol.for('@@mdb.bson.version')] !== BSON_MAJOR_VERSION) {
  3545. throw new BSONVersionError();
  3546. }
  3547. else if (value._bsontype === 'ObjectId') {
  3548. index = serializeObjectId(buffer, key, value, index);
  3549. }
  3550. else if (type === 'object' && value._bsontype === 'Decimal128') {
  3551. index = serializeDecimal128(buffer, key, value, index);
  3552. }
  3553. else if (value._bsontype === 'Long' || value._bsontype === 'Timestamp') {
  3554. index = serializeLong(buffer, key, value, index);
  3555. }
  3556. else if (value._bsontype === 'Double') {
  3557. index = serializeDouble(buffer, key, value, index);
  3558. }
  3559. else if (value._bsontype === 'Code') {
  3560. index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path);
  3561. }
  3562. else if (typeof value === 'function' && serializeFunctions) {
  3563. index = serializeFunction(buffer, key, value, index);
  3564. }
  3565. else if (value._bsontype === 'Binary') {
  3566. index = serializeBinary(buffer, key, value, index);
  3567. }
  3568. else if (value._bsontype === 'BSONSymbol') {
  3569. index = serializeSymbol(buffer, key, value, index);
  3570. }
  3571. else if (value._bsontype === 'DBRef') {
  3572. index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, path);
  3573. }
  3574. else if (value._bsontype === 'BSONRegExp') {
  3575. index = serializeBSONRegExp(buffer, key, value, index);
  3576. }
  3577. else if (value._bsontype === 'Int32') {
  3578. index = serializeInt32(buffer, key, value, index);
  3579. }
  3580. else if (value._bsontype === 'MinKey' || value._bsontype === 'MaxKey') {
  3581. index = serializeMinMax(buffer, key, value, index);
  3582. }
  3583. else if (typeof value._bsontype !== 'undefined') {
  3584. throw new BSONError(`Unrecognized or invalid _bsontype: ${String(value._bsontype)}`);
  3585. }
  3586. }
  3587. }
  3588. else {
  3589. if (typeof object?.toBSON === 'function') {
  3590. object = object.toBSON();
  3591. if (object != null && typeof object !== 'object') {
  3592. throw new BSONError('toBSON function did not return an object');
  3593. }
  3594. }
  3595. for (const key of Object.keys(object)) {
  3596. let value = object[key];
  3597. if (typeof value?.toBSON === 'function') {
  3598. value = value.toBSON();
  3599. }
  3600. const type = typeof value;
  3601. if (typeof key === 'string' && !ignoreKeys.has(key)) {
  3602. if (key.match(regexp) != null) {
  3603. throw new BSONError('key ' + key + ' must not contain null bytes');
  3604. }
  3605. if (checkKeys) {
  3606. if ('$' === key[0]) {
  3607. throw new BSONError('key ' + key + " must not start with '$'");
  3608. }
  3609. else if (~key.indexOf('.')) {
  3610. throw new BSONError('key ' + key + " must not contain '.'");
  3611. }
  3612. }
  3613. }
  3614. if (type === 'string') {
  3615. index = serializeString(buffer, key, value, index);
  3616. }
  3617. else if (type === 'number') {
  3618. index = serializeNumber(buffer, key, value, index);
  3619. }
  3620. else if (type === 'bigint') {
  3621. index = serializeBigInt(buffer, key, value, index);
  3622. }
  3623. else if (type === 'boolean') {
  3624. index = serializeBoolean(buffer, key, value, index);
  3625. }
  3626. else if (value instanceof Date || isDate(value)) {
  3627. index = serializeDate(buffer, key, value, index);
  3628. }
  3629. else if (value === undefined) {
  3630. if (ignoreUndefined === false)
  3631. index = serializeNull(buffer, key, value, index);
  3632. }
  3633. else if (value === null) {
  3634. index = serializeNull(buffer, key, value, index);
  3635. }
  3636. else if (isUint8Array(value)) {
  3637. index = serializeBuffer(buffer, key, value, index);
  3638. }
  3639. else if (value instanceof RegExp || isRegExp(value)) {
  3640. index = serializeRegExp(buffer, key, value, index);
  3641. }
  3642. else if (type === 'object' && value._bsontype == null) {
  3643. index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path);
  3644. }
  3645. else if (typeof value === 'object' &&
  3646. value[Symbol.for('@@mdb.bson.version')] !== BSON_MAJOR_VERSION) {
  3647. throw new BSONVersionError();
  3648. }
  3649. else if (value._bsontype === 'ObjectId') {
  3650. index = serializeObjectId(buffer, key, value, index);
  3651. }
  3652. else if (type === 'object' && value._bsontype === 'Decimal128') {
  3653. index = serializeDecimal128(buffer, key, value, index);
  3654. }
  3655. else if (value._bsontype === 'Long' || value._bsontype === 'Timestamp') {
  3656. index = serializeLong(buffer, key, value, index);
  3657. }
  3658. else if (value._bsontype === 'Double') {
  3659. index = serializeDouble(buffer, key, value, index);
  3660. }
  3661. else if (value._bsontype === 'Code') {
  3662. index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, path);
  3663. }
  3664. else if (typeof value === 'function' && serializeFunctions) {
  3665. index = serializeFunction(buffer, key, value, index);
  3666. }
  3667. else if (value._bsontype === 'Binary') {
  3668. index = serializeBinary(buffer, key, value, index);
  3669. }
  3670. else if (value._bsontype === 'BSONSymbol') {
  3671. index = serializeSymbol(buffer, key, value, index);
  3672. }
  3673. else if (value._bsontype === 'DBRef') {
  3674. index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, path);
  3675. }
  3676. else if (value._bsontype === 'BSONRegExp') {
  3677. index = serializeBSONRegExp(buffer, key, value, index);
  3678. }
  3679. else if (value._bsontype === 'Int32') {
  3680. index = serializeInt32(buffer, key, value, index);
  3681. }
  3682. else if (value._bsontype === 'MinKey' || value._bsontype === 'MaxKey') {
  3683. index = serializeMinMax(buffer, key, value, index);
  3684. }
  3685. else if (typeof value._bsontype !== 'undefined') {
  3686. throw new BSONError(`Unrecognized or invalid _bsontype: ${String(value._bsontype)}`);
  3687. }
  3688. }
  3689. }
  3690. path.delete(object);
  3691. buffer[index++] = 0x00;
  3692. const size = index - startingIndex;
  3693. buffer[startingIndex++] = size & 0xff;
  3694. buffer[startingIndex++] = (size >> 8) & 0xff;
  3695. buffer[startingIndex++] = (size >> 16) & 0xff;
  3696. buffer[startingIndex++] = (size >> 24) & 0xff;
  3697. return index;
  3698. }
  3699. function isBSONType(value) {
  3700. return (value != null &&
  3701. typeof value === 'object' &&
  3702. '_bsontype' in value &&
  3703. typeof value._bsontype === 'string');
  3704. }
  3705. const keysToCodecs = {
  3706. $oid: ObjectId,
  3707. $binary: Binary,
  3708. $uuid: Binary,
  3709. $symbol: BSONSymbol,
  3710. $numberInt: Int32,
  3711. $numberDecimal: Decimal128,
  3712. $numberDouble: Double,
  3713. $numberLong: Long,
  3714. $minKey: MinKey,
  3715. $maxKey: MaxKey,
  3716. $regex: BSONRegExp,
  3717. $regularExpression: BSONRegExp,
  3718. $timestamp: Timestamp
  3719. };
  3720. function deserializeValue(value, options = {}) {
  3721. if (typeof value === 'number') {
  3722. const in32BitRange = value <= BSON_INT32_MAX && value >= BSON_INT32_MIN;
  3723. const in64BitRange = value <= BSON_INT64_MAX && value >= BSON_INT64_MIN;
  3724. if (options.relaxed || options.legacy) {
  3725. return value;
  3726. }
  3727. if (Number.isInteger(value) && !Object.is(value, -0)) {
  3728. if (in32BitRange) {
  3729. return new Int32(value);
  3730. }
  3731. if (in64BitRange) {
  3732. if (options.useBigInt64) {
  3733. return BigInt(value);
  3734. }
  3735. return Long.fromNumber(value);
  3736. }
  3737. }
  3738. return new Double(value);
  3739. }
  3740. if (value == null || typeof value !== 'object')
  3741. return value;
  3742. if (value.$undefined)
  3743. return null;
  3744. const keys = Object.keys(value).filter(k => k.startsWith('$') && value[k] != null);
  3745. for (let i = 0; i < keys.length; i++) {
  3746. const c = keysToCodecs[keys[i]];
  3747. if (c)
  3748. return c.fromExtendedJSON(value, options);
  3749. }
  3750. if (value.$date != null) {
  3751. const d = value.$date;
  3752. const date = new Date();
  3753. if (options.legacy) {
  3754. if (typeof d === 'number')
  3755. date.setTime(d);
  3756. else if (typeof d === 'string')
  3757. date.setTime(Date.parse(d));
  3758. else if (typeof d === 'bigint')
  3759. date.setTime(Number(d));
  3760. else
  3761. throw new BSONRuntimeError(`Unrecognized type for EJSON date: ${typeof d}`);
  3762. }
  3763. else {
  3764. if (typeof d === 'string')
  3765. date.setTime(Date.parse(d));
  3766. else if (Long.isLong(d))
  3767. date.setTime(d.toNumber());
  3768. else if (typeof d === 'number' && options.relaxed)
  3769. date.setTime(d);
  3770. else if (typeof d === 'bigint')
  3771. date.setTime(Number(d));
  3772. else
  3773. throw new BSONRuntimeError(`Unrecognized type for EJSON date: ${typeof d}`);
  3774. }
  3775. return date;
  3776. }
  3777. if (value.$code != null) {
  3778. const copy = Object.assign({}, value);
  3779. if (value.$scope) {
  3780. copy.$scope = deserializeValue(value.$scope);
  3781. }
  3782. return Code.fromExtendedJSON(value);
  3783. }
  3784. if (isDBRefLike(value) || value.$dbPointer) {
  3785. const v = value.$ref ? value : value.$dbPointer;
  3786. if (v instanceof DBRef)
  3787. return v;
  3788. const dollarKeys = Object.keys(v).filter(k => k.startsWith('$'));
  3789. let valid = true;
  3790. dollarKeys.forEach(k => {
  3791. if (['$ref', '$id', '$db'].indexOf(k) === -1)
  3792. valid = false;
  3793. });
  3794. if (valid)
  3795. return DBRef.fromExtendedJSON(v);
  3796. }
  3797. return value;
  3798. }
  3799. function serializeArray(array, options) {
  3800. return array.map((v, index) => {
  3801. options.seenObjects.push({ propertyName: `index ${index}`, obj: null });
  3802. try {
  3803. return serializeValue(v, options);
  3804. }
  3805. finally {
  3806. options.seenObjects.pop();
  3807. }
  3808. });
  3809. }
  3810. function getISOString(date) {
  3811. const isoStr = date.toISOString();
  3812. return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z';
  3813. }
  3814. function serializeValue(value, options) {
  3815. if (value instanceof Map || isMap(value)) {
  3816. const obj = Object.create(null);
  3817. for (const [k, v] of value) {
  3818. if (typeof k !== 'string') {
  3819. throw new BSONError('Can only serialize maps with string keys');
  3820. }
  3821. obj[k] = v;
  3822. }
  3823. return serializeValue(obj, options);
  3824. }
  3825. if ((typeof value === 'object' || typeof value === 'function') && value !== null) {
  3826. const index = options.seenObjects.findIndex(entry => entry.obj === value);
  3827. if (index !== -1) {
  3828. const props = options.seenObjects.map(entry => entry.propertyName);
  3829. const leadingPart = props
  3830. .slice(0, index)
  3831. .map(prop => `${prop} -> `)
  3832. .join('');
  3833. const alreadySeen = props[index];
  3834. const circularPart = ' -> ' +
  3835. props
  3836. .slice(index + 1, props.length - 1)
  3837. .map(prop => `${prop} -> `)
  3838. .join('');
  3839. const current = props[props.length - 1];
  3840. const leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2);
  3841. const dashes = '-'.repeat(circularPart.length + (alreadySeen.length + current.length) / 2 - 1);
  3842. throw new BSONError('Converting circular structure to EJSON:\n' +
  3843. ` ${leadingPart}${alreadySeen}${circularPart}${current}\n` +
  3844. ` ${leadingSpace}\\${dashes}/`);
  3845. }
  3846. options.seenObjects[options.seenObjects.length - 1].obj = value;
  3847. }
  3848. if (Array.isArray(value))
  3849. return serializeArray(value, options);
  3850. if (value === undefined)
  3851. return null;
  3852. if (value instanceof Date || isDate(value)) {
  3853. const dateNum = value.getTime(), inRange = dateNum > -1 && dateNum < 253402318800000;
  3854. if (options.legacy) {
  3855. return options.relaxed && inRange
  3856. ? { $date: value.getTime() }
  3857. : { $date: getISOString(value) };
  3858. }
  3859. return options.relaxed && inRange
  3860. ? { $date: getISOString(value) }
  3861. : { $date: { $numberLong: value.getTime().toString() } };
  3862. }
  3863. if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) {
  3864. if (Number.isInteger(value) && !Object.is(value, -0)) {
  3865. if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) {
  3866. return { $numberInt: value.toString() };
  3867. }
  3868. if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) {
  3869. return { $numberLong: value.toString() };
  3870. }
  3871. }
  3872. return { $numberDouble: Object.is(value, -0) ? '-0.0' : value.toString() };
  3873. }
  3874. if (typeof value === 'bigint') {
  3875. if (!options.relaxed) {
  3876. return { $numberLong: BigInt.asIntN(64, value).toString() };
  3877. }
  3878. return Number(BigInt.asIntN(64, value));
  3879. }
  3880. if (value instanceof RegExp || isRegExp(value)) {
  3881. let flags = value.flags;
  3882. if (flags === undefined) {
  3883. const match = value.toString().match(/[gimuy]*$/);
  3884. if (match) {
  3885. flags = match[0];
  3886. }
  3887. }
  3888. const rx = new BSONRegExp(value.source, flags);
  3889. return rx.toExtendedJSON(options);
  3890. }
  3891. if (value != null && typeof value === 'object')
  3892. return serializeDocument(value, options);
  3893. return value;
  3894. }
  3895. const BSON_TYPE_MAPPINGS = {
  3896. Binary: (o) => new Binary(o.value(), o.sub_type),
  3897. Code: (o) => new Code(o.code, o.scope),
  3898. DBRef: (o) => new DBRef(o.collection || o.namespace, o.oid, o.db, o.fields),
  3899. Decimal128: (o) => new Decimal128(o.bytes),
  3900. Double: (o) => new Double(o.value),
  3901. Int32: (o) => new Int32(o.value),
  3902. Long: (o) => Long.fromBits(o.low != null ? o.low : o.low_, o.low != null ? o.high : o.high_, o.low != null ? o.unsigned : o.unsigned_),
  3903. MaxKey: () => new MaxKey(),
  3904. MinKey: () => new MinKey(),
  3905. ObjectId: (o) => new ObjectId(o),
  3906. BSONRegExp: (o) => new BSONRegExp(o.pattern, o.options),
  3907. BSONSymbol: (o) => new BSONSymbol(o.value),
  3908. Timestamp: (o) => Timestamp.fromBits(o.low, o.high)
  3909. };
  3910. function serializeDocument(doc, options) {
  3911. if (doc == null || typeof doc !== 'object')
  3912. throw new BSONError('not an object instance');
  3913. const bsontype = doc._bsontype;
  3914. if (typeof bsontype === 'undefined') {
  3915. const _doc = {};
  3916. for (const name of Object.keys(doc)) {
  3917. options.seenObjects.push({ propertyName: name, obj: null });
  3918. try {
  3919. const value = serializeValue(doc[name], options);
  3920. if (name === '__proto__') {
  3921. Object.defineProperty(_doc, name, {
  3922. value,
  3923. writable: true,
  3924. enumerable: true,
  3925. configurable: true
  3926. });
  3927. }
  3928. else {
  3929. _doc[name] = value;
  3930. }
  3931. }
  3932. finally {
  3933. options.seenObjects.pop();
  3934. }
  3935. }
  3936. return _doc;
  3937. }
  3938. else if (doc != null &&
  3939. typeof doc === 'object' &&
  3940. typeof doc._bsontype === 'string' &&
  3941. doc[Symbol.for('@@mdb.bson.version')] !== BSON_MAJOR_VERSION) {
  3942. throw new BSONVersionError();
  3943. }
  3944. else if (isBSONType(doc)) {
  3945. let outDoc = doc;
  3946. if (typeof outDoc.toExtendedJSON !== 'function') {
  3947. const mapper = BSON_TYPE_MAPPINGS[doc._bsontype];
  3948. if (!mapper) {
  3949. throw new BSONError('Unrecognized or invalid _bsontype: ' + doc._bsontype);
  3950. }
  3951. outDoc = mapper(outDoc);
  3952. }
  3953. if (bsontype === 'Code' && outDoc.scope) {
  3954. outDoc = new Code(outDoc.code, serializeValue(outDoc.scope, options));
  3955. }
  3956. else if (bsontype === 'DBRef' && outDoc.oid) {
  3957. outDoc = new DBRef(serializeValue(outDoc.collection, options), serializeValue(outDoc.oid, options), serializeValue(outDoc.db, options), serializeValue(outDoc.fields, options));
  3958. }
  3959. return outDoc.toExtendedJSON(options);
  3960. }
  3961. else {
  3962. throw new BSONError('_bsontype must be a string, but was: ' + typeof bsontype);
  3963. }
  3964. }
  3965. function parse(text, options) {
  3966. const ejsonOptions = {
  3967. useBigInt64: options?.useBigInt64 ?? false,
  3968. relaxed: options?.relaxed ?? true,
  3969. legacy: options?.legacy ?? false
  3970. };
  3971. return JSON.parse(text, (key, value) => {
  3972. if (key.indexOf('\x00') !== -1) {
  3973. throw new BSONError(`BSON Document field names cannot contain null bytes, found: ${JSON.stringify(key)}`);
  3974. }
  3975. return deserializeValue(value, ejsonOptions);
  3976. });
  3977. }
  3978. function stringify(value, replacer, space, options) {
  3979. if (space != null && typeof space === 'object') {
  3980. options = space;
  3981. space = 0;
  3982. }
  3983. if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) {
  3984. options = replacer;
  3985. replacer = undefined;
  3986. space = 0;
  3987. }
  3988. const serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, {
  3989. seenObjects: [{ propertyName: '(root)', obj: null }]
  3990. });
  3991. const doc = serializeValue(value, serializeOptions);
  3992. return JSON.stringify(doc, replacer, space);
  3993. }
  3994. function EJSONserialize(value, options) {
  3995. options = options || {};
  3996. return JSON.parse(stringify(value, options));
  3997. }
  3998. function EJSONdeserialize(ejson, options) {
  3999. options = options || {};
  4000. return parse(JSON.stringify(ejson), options);
  4001. }
  4002. const EJSON = Object.create(null);
  4003. EJSON.parse = parse;
  4004. EJSON.stringify = stringify;
  4005. EJSON.serialize = EJSONserialize;
  4006. EJSON.deserialize = EJSONdeserialize;
  4007. Object.freeze(EJSON);
  4008. const MAXSIZE = 1024 * 1024 * 17;
  4009. let buffer = ByteUtils.allocate(MAXSIZE);
  4010. function setInternalBufferSize(size) {
  4011. if (buffer.length < size) {
  4012. buffer = ByteUtils.allocate(size);
  4013. }
  4014. }
  4015. function serialize(object, options = {}) {
  4016. const checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false;
  4017. const serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false;
  4018. const ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true;
  4019. const minInternalBufferSize = typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE;
  4020. if (buffer.length < minInternalBufferSize) {
  4021. buffer = ByteUtils.allocate(minInternalBufferSize);
  4022. }
  4023. const serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, null);
  4024. const finishedBuffer = ByteUtils.allocate(serializationIndex);
  4025. finishedBuffer.set(buffer.subarray(0, serializationIndex), 0);
  4026. return finishedBuffer;
  4027. }
  4028. function serializeWithBufferAndIndex(object, finalBuffer, options = {}) {
  4029. const checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false;
  4030. const serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false;
  4031. const ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true;
  4032. const startIndex = typeof options.index === 'number' ? options.index : 0;
  4033. const serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, null);
  4034. finalBuffer.set(buffer.subarray(0, serializationIndex), startIndex);
  4035. return startIndex + serializationIndex - 1;
  4036. }
  4037. function deserialize(buffer, options = {}) {
  4038. return internalDeserialize(ByteUtils.toLocalBufferType(buffer), options);
  4039. }
  4040. function calculateObjectSize(object, options = {}) {
  4041. options = options || {};
  4042. const serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false;
  4043. const ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true;
  4044. return internalCalculateObjectSize(object, serializeFunctions, ignoreUndefined);
  4045. }
  4046. function deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, options) {
  4047. const internalOptions = Object.assign({ allowObjectSmallerThanBufferSize: true, index: 0 }, options);
  4048. const bufferData = ByteUtils.toLocalBufferType(data);
  4049. let index = startIndex;
  4050. for (let i = 0; i < numberOfDocuments; i++) {
  4051. const size = bufferData[index] |
  4052. (bufferData[index + 1] << 8) |
  4053. (bufferData[index + 2] << 16) |
  4054. (bufferData[index + 3] << 24);
  4055. internalOptions.index = index;
  4056. documents[docStartIndex + i] = internalDeserialize(bufferData, internalOptions);
  4057. index = index + size;
  4058. }
  4059. return index;
  4060. }
  4061. var bson = /*#__PURE__*/Object.freeze({
  4062. __proto__: null,
  4063. BSONError: BSONError,
  4064. BSONRegExp: BSONRegExp,
  4065. BSONRuntimeError: BSONRuntimeError,
  4066. BSONSymbol: BSONSymbol,
  4067. BSONType: BSONType,
  4068. BSONValue: BSONValue,
  4069. BSONVersionError: BSONVersionError,
  4070. Binary: Binary,
  4071. Code: Code,
  4072. DBRef: DBRef,
  4073. Decimal128: Decimal128,
  4074. Double: Double,
  4075. EJSON: EJSON,
  4076. Int32: Int32,
  4077. Long: Long,
  4078. MaxKey: MaxKey,
  4079. MinKey: MinKey,
  4080. ObjectId: ObjectId,
  4081. Timestamp: Timestamp,
  4082. UUID: UUID,
  4083. calculateObjectSize: calculateObjectSize,
  4084. deserialize: deserialize,
  4085. deserializeStream: deserializeStream,
  4086. serialize: serialize,
  4087. serializeWithBufferAndIndex: serializeWithBufferAndIndex,
  4088. setInternalBufferSize: setInternalBufferSize
  4089. });
  4090. exports.BSON = bson;
  4091. exports.BSONError = BSONError;
  4092. exports.BSONRegExp = BSONRegExp;
  4093. exports.BSONRuntimeError = BSONRuntimeError;
  4094. exports.BSONSymbol = BSONSymbol;
  4095. exports.BSONType = BSONType;
  4096. exports.BSONValue = BSONValue;
  4097. exports.BSONVersionError = BSONVersionError;
  4098. exports.Binary = Binary;
  4099. exports.Code = Code;
  4100. exports.DBRef = DBRef;
  4101. exports.Decimal128 = Decimal128;
  4102. exports.Double = Double;
  4103. exports.EJSON = EJSON;
  4104. exports.Int32 = Int32;
  4105. exports.Long = Long;
  4106. exports.MaxKey = MaxKey;
  4107. exports.MinKey = MinKey;
  4108. exports.ObjectId = ObjectId;
  4109. exports.Timestamp = Timestamp;
  4110. exports.UUID = UUID;
  4111. exports.calculateObjectSize = calculateObjectSize;
  4112. exports.deserialize = deserialize;
  4113. exports.deserializeStream = deserializeStream;
  4114. exports.serialize = serialize;
  4115. exports.serializeWithBufferAndIndex = serializeWithBufferAndIndex;
  4116. exports.setInternalBufferSize = setInternalBufferSize;
  4117. return exports;
  4118. })({});
  4119. //# sourceMappingURL=bson.bundle.js.map