HTMLify
utils.js
Views: 6 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | 'use strict'; const os = require('os'); const crypto = require('crypto'); const requireOptional = require('require_optional'); /** * Generate a UUIDv4 */ const uuidV4 = () => { const result = crypto.randomBytes(16); result[6] = (result[6] & 0x0f) | 0x40; result[8] = (result[8] & 0x3f) | 0x80; return result; }; /** * Relays events for a given listener and emitter * * @param {EventEmitter} listener the EventEmitter to listen to the events from * @param {EventEmitter} emitter the EventEmitter to relay the events to */ function relayEvents(listener, emitter, events) { events.forEach(eventName => listener.on(eventName, event => emitter.emit(eventName, event))); } function retrieveKerberos() { let kerberos; try { kerberos = requireOptional('kerberos'); } catch (err) { if (err.code === 'MODULE_NOT_FOUND') { throw new Error('The `kerberos` module was not found. Please install it and try again.'); } throw err; } return kerberos; } // Throw an error if an attempt to use EJSON is made when it is not installed const noEJSONError = function() { throw new Error('The `mongodb-extjson` module was not found. Please install it and try again.'); }; // Facilitate loading EJSON optionally function retrieveEJSON() { let EJSON = null; try { EJSON = requireOptional('mongodb-extjson'); } catch (error) {} // eslint-disable-line if (!EJSON) { EJSON = { parse: noEJSONError, deserialize: noEJSONError, serialize: noEJSONError, stringify: noEJSONError, setBSONModule: noEJSONError, BSON: noEJSONError }; } return EJSON; } /** * A helper function for determining `maxWireVersion` between legacy and new topology * instances * * @private * @param {(Topology|Server)} topologyOrServer */ function maxWireVersion(topologyOrServer) { if (topologyOrServer) { if (topologyOrServer.ismaster) { return topologyOrServer.ismaster.maxWireVersion; } if (typeof topologyOrServer.lastIsMaster === 'function') { const lastIsMaster = topologyOrServer.lastIsMaster(); if (lastIsMaster) { return lastIsMaster.maxWireVersion; } } if (topologyOrServer.description) { return topologyOrServer.description.maxWireVersion; } } return 0; } /* * Checks that collation is supported by server. * * @param {Server} [server] to check against * @param {object} [cmd] object where collation may be specified * @param {function} [callback] callback function * @return true if server does not support collation */ function collationNotSupported(server, cmd) { return cmd && cmd.collation && maxWireVersion(server) < 5; } /** * Checks if a given value is a Promise * * @param {*} maybePromise * @return true if the provided value is a Promise */ function isPromiseLike(maybePromise) { return maybePromise && typeof maybePromise.then === 'function'; } /** * Applies the function `eachFn` to each item in `arr`, in parallel. * * @param {array} arr an array of items to asynchronusly iterate over * @param {function} eachFn A function to call on each item of the array. The callback signature is `(item, callback)`, where the callback indicates iteration is complete. * @param {function} callback The callback called after every item has been iterated */ function eachAsync(arr, eachFn, callback) { arr = arr || []; let idx = 0; let awaiting = 0; for (idx = 0; idx < arr.length; ++idx) { awaiting++; eachFn(arr[idx], eachCallback); } if (awaiting === 0) { callback(); return; } function eachCallback(err) { awaiting--; if (err) { callback(err); return; } if (idx === arr.length && awaiting <= 0) { callback(); } } } function isUnifiedTopology(topology) { return topology.description != null; } function arrayStrictEqual(arr, arr2) { if (!Array.isArray(arr) || !Array.isArray(arr2)) { return false; } return arr.length === arr2.length && arr.every((elt, idx) => elt === arr2[idx]); } function tagsStrictEqual(tags, tags2) { const tagsKeys = Object.keys(tags); const tags2Keys = Object.keys(tags2); return tagsKeys.length === tags2Keys.length && tagsKeys.every(key => tags2[key] === tags[key]); } function errorStrictEqual(lhs, rhs) { if (lhs === rhs) { return true; } if ((lhs == null && rhs != null) || (lhs != null && rhs == null)) { return false; } if (lhs.constructor.name !== rhs.constructor.name) { return false; } if (lhs.message !== rhs.message) { return false; } return true; } function makeStateMachine(stateTable) { return function stateTransition(target, newState) { const legalStates = stateTable[target.s.state]; if (legalStates && legalStates.indexOf(newState) < 0) { throw new TypeError( `illegal state transition from [${target.s.state}] => [${newState}], allowed: [${legalStates}]` ); } target.emit('stateChanged', target.s.state, newState); target.s.state = newState; }; } function makeClientMetadata(options) { options = options || {}; const metadata = { driver: { name: 'nodejs', version: require('../../package.json').version }, os: { type: os.type(), name: process.platform, architecture: process.arch, version: os.release() }, platform: `'Node.js ${process.version}, ${os.endianness} (${ options.useUnifiedTopology ? 'unified' : 'legacy' })` }; // support optionally provided wrapping driver info if (options.driverInfo) { if (options.driverInfo.name) { metadata.driver.name = `${metadata.driver.name}|${options.driverInfo.name}`; } if (options.driverInfo.version) { metadata.version = `${metadata.driver.version}|${options.driverInfo.version}`; } if (options.driverInfo.platform) { metadata.platform = `${metadata.platform}|${options.driverInfo.platform}`; } } if (options.appname) { // MongoDB requires the appname not exceed a byte length of 128 const buffer = Buffer.from(options.appname); metadata.application = { name: buffer.length > 128 ? buffer.slice(0, 128).toString('utf8') : options.appname }; } return metadata; } const noop = () => {}; module.exports = { uuidV4, relayEvents, collationNotSupported, retrieveEJSON, retrieveKerberos, maxWireVersion, isPromiseLike, eachAsync, isUnifiedTopology, arrayStrictEqual, tagsStrictEqual, errorStrictEqual, makeStateMachine, makeClientMetadata, noop }; |