forked from Bill4Time/mongo-fast-join
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Join.js
467 lines (408 loc) · 19.1 KB
/
Join.js
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/**
* This module will perform an inner join on mongo native collections and any other collection which supports the
* mongo-native collection API. We realize that mongodb is not meant to be used this way, but there are certainly instances
* where a fk relationship is an appropriate way to NRDB and a necessary way to retrieve data. Honed in the fires of
* artificial perf testing, this is mongo-fast-join.
*
* The novel aspect of this project is that we paginate requests for the join documents, which leverages the parallelism
* of mongodb resulting in much quicker queries.
*
* Pass the query function, the queried collection, and the regular query arguments after that. At this stage you have
* the join object. Call join on this object to begin compiling a join command. The main idea in the join arguments is
* to specify the collection to join on, the key of the document in that collection to join on, and the key in the source
* document to join on. It's an ad hoc foreign key relationship.
*/
module.exports = function () {
/**
* The initial query which will define the set of documents being joined on.
* @param queryCollection The collection to query from. Should be an object which implements the mongo native
* collection API
* @param query The query by example object to use to retrieve documents
* @param [fields] The fields to request in the initial query
* @param [options] The query options
* @returns {exports}
*/
this.query = function (queryCollection, query, fields, options) {
//joinStack holds all the join args to be used, is used like a callstack when exec is called
fields = fields || {};
options = options || {};
var joinStack = [],
finalCallback,//This is the final function specified as the callback to call
cursor = queryCollection.find(query, fields, options),
that = this;
/**
* Begin setting up the join operation
*
* @param args.joinCollection MongoDB.Collection the collection to join on
* @param args.leftKeys Array(String) The foreign key(s) in the left hand document
* @param {String} args.leftKey Same as leftKeys, better syntax for when there is no composite key
* @param {Array} args.rightKeys The primary key(s) in the right hand document which will uniquely
* identify that document
* @param {Object} args.joinQuery A filtering query to perform at this level of the join corresponding to
* mongodb's query by example objects.
* @param {String} [args.joinType] Either 'inner' or 'left' is supported. Inner excludes records for which
* there is no match in the right hand table at each level of the join. THIS MAY CAUSE YOU PROBLEMS WITH RECORDS
* DISAPPEARING, RECOMMEND NOT SPECIFYING JOIN TYPE!
* @param {String} args.rightKey The right hand key, same as right keys just allows for no array
* @param args.newKey String The name of the property to map the joined document into
* @param args.callback Function The function that will be called with the error message and results set at each
* level of the join operation
* @param [args.pageSize] Number The number of documents matched per request. The default is 25 which was a good
* performer in our case
*/
this.join = function (args) {
joinStack.push(args);
return that;
};
/**
* Start the join operations, don't stop til we get there
* @param {Function} [callback] Optional callback function which will be called with the final result set
* Same as supplying a callback on the final joint argument.
*/
this.exec = function (callback) {
finalCallback = callback;
cursor.toArray(function (err, results) {
arrayJoin(results, joinStack.shift());
});
};
/**
* Put a new key in the hash map/bin and return the new location.
* @param bin The object in which the key should be placed
* @param value The key value
* @returns {*}
*/
function putKeyInBin (bin, value) {
if (isNullOrUndefined(bin[value])) {
bin = bin[value] = {$val: value};
} else {
bin = bin[value];
}
return bin;//where we are in the hash tree
}
/**
* Put a new index value into the array at the given bin, making a new array if there is none.
* @param currentBin The location in which to put the array
* @param index the index value to put in the array
* @returns the newly created array if there was one created. Must be assigned into the correct spot
*/
function pushOrPut (currentBin, index) {
var temp = currentBin;
if (Array.isArray(currentBin)) {
if (currentBin.indexOf(index) === -1) {
currentBin.push(index);//only add if this is a unique index to prevent dup'ing indexes, and associations
}
} else {
temp = [index];
}
return temp;
}
/**
* Create the hash table which maps unique left key combination to an array of numbers representing the indexes of the
* source data where those unique left key combinations were found. Use this map in the joining process to add
* join subdocuments to the source data.
* @param bin The bin object into which keys and indexes will be put
* @param leftValue the left document from which to retrieve key values
* @param index the index in the source data that the leftvalue lives at
* @param accessors The accessor functions which retrieve the value for each join key from the leftValue.
* @param rightKeys The keys in the right hand set which are being joined on
*/
function buildHashTableIndices (bin, leftValue, index, accessors, rightKeys) {
var i,
length = accessors.length,
lastBin;
for (i = 0; i < length; i += 1) {
var val = accessors[i](leftValue);
if (typeof val === "undefined") {
return;
}
if (i + 1 === length) {
if (Array.isArray(val)) {
//for each value in val, put that key in
val.forEach(function (subValue) {
var boot = putKeyInBin(bin, subValue);
bin[subValue] = pushOrPut(boot, index);
bin[subValue].$val = subValue;
});
} else {
bin[val] = pushOrPut(bin[val], index);
bin[val].$val = val;
}
} else if (Array.isArray(val)) {
lastBin = bin;
val.forEach(function (subDocumentValue) {//sub vals are for basically supposed to be payment ids
var rightKeySubset = rightKeys.slice(i + 1);
if (isNullOrUndefined(bin[subDocumentValue])) {
bin[subDocumentValue] = {$val: subDocumentValue};//Store $val to maintain the data type
}
buildHashTableIndices(bin[subDocumentValue], leftValue, index, accessors.slice(i + 1), rightKeySubset);
});
return;//don't go through the rest of the accessors, this recursion will take care of those
} else {
bin = putKeyInBin(bin, val);
}
}
}
/**
* Build the in and or queries that will be used to query for the join documents.
* @param keyHashBin The bin to use to retrieve the query vals from
* @param rightKeys The keys which will exists in the join documents
* @param level The current level of recursion which will correspond to the accessor and the index of the right key
* @param valuePath The values that have been gathered so far. Ordinally corresponding to the right keys
* @param orQueries The total list of $or queries generated
* @param inQueries The total list of $in queries generated
*/
function buildQueriesFromHashBin (keyHashBin, rightKeys, level, valuePath, orQueries, inQueries) {
var keys = Object.getOwnPropertyNames(keyHashBin),
or;
valuePath = valuePath || [];
if (level === rightKeys.length) {
or = {};
rightKeys.forEach(function (key, i) {
inQueries[i].push(valuePath[i]);
or[key] = valuePath[i];
});
orQueries.push(or);
//start returning
//take the value path and begin making objects out of it
} else {
keys.forEach(function (key) {
if (key !== "$val") {
var newPath = valuePath.slice(),
value = keyHashBin[key].$val;
newPath.push(value);//now have a copied array
buildQueriesFromHashBin(keyHashBin[key], rightKeys, level + 1, newPath, orQueries, inQueries);
}
});
}
}
/**
* Begin the joining process by compiling some data and performing a query for the objects to be joined.
* @param results The results of the previous join or query
* @param args The user supplied arguments which will configure this join
*/
function arrayJoin (results, args) {
var srcDataArray = results,//use these results as the source of the join
joinCollection = args.joinCollection,//This is the mongoDB.Collection to use to join on
joinQuery = args.joinQuery,
joinType = args.joinType || 'left',
rightKeys = args.rightKeys || [args.rightKey],//Get the value of the key being joined upon
newKey = args.newKey,//The new field onto which the joined document will be mapped
callback = args.callback,//The callback to call at this level of the join
length,
i,
subqueries,
keyHashBin = {},
accessors = [],
joinLookups = [],
inQueries = [],
leftKeys = args.leftKeys || [args.leftKey];//place to put incoming join results
rightKeys.forEach(function () {
inQueries.push([]);
});
leftKeys.forEach(function (key) {//generate the accessors for each entry in the composite key
accessors.push(getKeyValueAccessorFromKey(key));
});
length = results.length;
//get the path first
for (i = 0; i < length; i += 1) {
buildHashTableIndices(keyHashBin, results[i], i, accessors, rightKeys, inQueries, joinLookups, {});
}//create the path
buildQueriesFromHashBin(keyHashBin, rightKeys, 0, [], joinLookups, inQueries);
if (!Array.isArray(srcDataArray)) {
srcDataArray = [srcDataArray];
}
subqueries = getSubqueries(inQueries, joinLookups, joinQuery, args.pageSize || 25, rightKeys);//example
runSubqueries(subqueries, function (items) {
var un;
performJoining(srcDataArray, items, {
rightKeyPropertyPaths: rightKeys,
newKey: newKey,
keyHashBin: keyHashBin
});
if (joinType === "inner") {
removeNonMatchesLeft(srcDataArray, newKey);
}
if (joinStack.length > 0) {
arrayJoin(srcDataArray, joinStack.shift());
} else {
callIfFunction(finalCallback, [un, srcDataArray]);
}
callIfFunction(callback, [un, srcDataArray]);
}, joinCollection);
}
return this;
};
/**
* Get the paged subqueries
*/
function getSubqueries (inQueries, orQueries, otherQuery, pageSize, rightKeys) {
var subqueries = [],
numberOfChunks,
i,
inQuery,
orQuery,
queryArray,
from,
to;
// this is a stupid way to turn numbers into 1
numberOfChunks = (orQueries.length / pageSize) + (!!(orQueries.length % pageSize));
for (i = 0; i < numberOfChunks; i += 1) {
inQuery = {};
from = i * pageSize;
to = from + pageSize;
rightKeys.forEach(function (key, index) {
inQuery[rightKeys[index]] = {$in: inQueries[index].slice(from, to)};
});
orQuery = { $or: orQueries.slice(from, to)};
queryArray = [ { $match: inQuery }, { $match: orQuery } ];
if(otherQuery) {
queryArray.push({ $match: otherQuery });
//Push this to the end on the assumption that the join properties will be indexed, and the arbitrary
//filter properties won't be indexed.
}
subqueries.push(queryArray);
}
return subqueries;
}
/**
* Run the sub queries individually, leveraging concurrency on the server for better performance.
*/
function runSubqueries (subQueries, callback, collection) {
var i,
responsesReceived = 0,
length = subQueries.length,
joinedSet = [];//The array where the results are going to get stuffed
if (subQueries.length > 0) {
for (i = 0; i < subQueries.length; i += 1) {
collection.aggregate(subQueries[i], function (err, results) {
joinedSet = joinedSet.concat(results);
responsesReceived += 1;
if (responsesReceived === length) {
callback(joinedSet);
}
});
}
} else {
callback([]);
}
return joinedSet;
}
/**
* Use the lookup value type to build an accessor function for each join key. The lookup algorithm respects dot
* notation. Currently supports strings and functions.
* @param lookupValue The key being used to lookup the value.
* @returns {Function} used to lookup value from an object
*/
function getKeyValueAccessorFromKey (lookupValue) {
var accessorFunction;
if (typeof lookupValue === "string") {
accessorFunction = function (resultValue) {
var args = [resultValue];
args = args.concat(lookupValue.split("."));
return safeObjectAccess.apply(this, args);
};
} else if (typeof lookupValue === "function") {
accessorFunction = lookupValue;
}
return accessorFunction;
}
/**
* Join the join set with the original query results at the new key.
* @param sourceData The original result set
* @param joinSet The results returned from the join query
* @param joinArgs The arguments used to join the source to the join set
*/
function performJoining (sourceData, joinSet, joinArgs) {
var length = joinSet.length,
i,
rightKeyAccessors = [];
joinArgs.rightKeyPropertyPaths.forEach(function (keyValue) {
rightKeyAccessors.push(getKeyValueAccessorFromKey(keyValue));
});
for (i = 0; i < length; i += 1) {
var rightRecord = joinSet[i],
currentBin = joinArgs.keyHashBin;
if (isNullOrUndefined(rightRecord)) {
continue;//move onto the next, can't join on records that don't exist
}
//for each entry in the join set add it to the source document at the correct index
rightKeyAccessors.forEach(function (accessor) {
currentBin = currentBin[accessor(rightRecord)];
});
currentBin.forEach(function (sourceDataIndex) {
var theObject = sourceData[sourceDataIndex][joinArgs.newKey];
if (isNullOrUndefined(theObject)) {//Handle adding multiple matches to the same sub document
sourceData[sourceDataIndex][joinArgs.newKey] = rightRecord;
} else if (Array.isArray(theObject)) {
theObject.push(rightRecord);
} else {
sourceData[sourceDataIndex][joinArgs.newKey] = [theObject, rightRecord];
}
});
}
}
function isNullOrUndefined (val) {
return typeof val === "undefined" || val === null;
}
/**
* Access an object without having to worry about "cannot access property '' of undefined" errors
* @returns The value you were looking for or undefined
*/
function safeObjectAccess () {
var object = arguments[0],
length = arguments.length,
args = arguments,
i,
results,
temp;
if (!isNullOrUndefined(object)) {
for (i = 1; i < length; i += 1) {
if (Array.isArray(object)) {//if it's an array find the values from those results
results = [];
object.forEach(function (subDocument) {
temp = safeObjectAccess.apply(
safeObjectAccess,
[subDocument].concat(Array.prototype.slice.apply(args, [i, length]))
);
if (Array.isArray(temp)) {
results = results.concat(temp);
} else {
results.push(temp);
}
});
break;
}
if (typeof object !== "undefined") {
object = object[arguments[i]];
} else {
break;
}
}
}
return results || object
}
/**
* Simply call the first argument if it is the typeof a function
* @param fn The argument to call if it is a function
* @param args the arguments to call the function with
*/
function callIfFunction (fn, args) {
if (typeof fn === "function") {
fn.apply(fn, args);
}
}
/**
* Remove element from array if key doesn't exist for that element.
* @param array The array to be modified
* @param key The key that should exist if the element will not be removed
*/
function removeNonMatchesLeft (array, key) {
var i;
for (i = 0; i < array.length; i += 1) {
if(!array[i][key]) {
i -= 1;//Account for the removed element
array.splice(i, 1);
}
}
}
};