git-subtree-dir: main-site git-subtree-mainline: 4d1daa39101c0a85ca6d916f1c31139faf39632a git-subtree-split: 5cefb4d1618bc54ae0e86830421a8c911900302c
46 lines
790 B
JavaScript
46 lines
790 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* methods a collection must implement
|
|
*/
|
|
|
|
const methods = [
|
|
'find',
|
|
'findOne',
|
|
'updateMany',
|
|
'updateOne',
|
|
'replaceOne',
|
|
'count',
|
|
'distinct',
|
|
'findOneAndDelete',
|
|
'findOneAndUpdate',
|
|
'aggregate',
|
|
'findCursor',
|
|
'deleteOne',
|
|
'deleteMany'
|
|
];
|
|
|
|
/**
|
|
* Collection base class from which implementations inherit
|
|
*/
|
|
|
|
function Collection() {}
|
|
|
|
for (let i = 0, len = methods.length; i < len; ++i) {
|
|
const method = methods[i];
|
|
Collection.prototype[method] = notImplemented(method);
|
|
}
|
|
|
|
module.exports = exports = Collection;
|
|
Collection.methods = methods;
|
|
|
|
/**
|
|
* creates a function which throws an implementation error
|
|
*/
|
|
|
|
function notImplemented(method) {
|
|
return function() {
|
|
throw new Error('collection.' + method + ' not implemented');
|
|
};
|
|
}
|