HTMLify
completeMany.js
Views: 7 | 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 | 'use strict'; const helpers = require('../../queryhelpers'); module.exports = completeMany; /*! * Given a model and an array of docs, hydrates all the docs to be instances * of the model. Used to initialize docs returned from the db from `find()` * * @param {Model} model * @param {Array} docs * @param {Object} fields the projection used, including `select` from schemas * @param {Object} userProvidedFields the user-specified projection * @param {Object} opts * @param {Array} [opts.populated] * @param {ClientSession} [opts.session] * @param {Function} callback */ function completeMany(model, docs, fields, userProvidedFields, opts, callback) { const arr = []; let count = docs.length; const len = count; let error = null; function init(_error) { if (_error != null) { error = error || _error; } if (error != null) { --count || process.nextTick(() => callback(error)); return; } --count || process.nextTick(() => callback(error, arr)); } for (let i = 0; i < len; ++i) { arr[i] = helpers.createModel(model, docs[i], fields, userProvidedFields); try { arr[i].init(docs[i], opts, init); } catch (error) { init(error); } arr[i].$session(opts.session); } } |