Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 33be560

Browse files
authored
feat(Error): adding error metadata field
1 parent 38d5f40 commit 33be560

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ try {
1616
module.exports = {
1717
MongoError: require('./lib/error').MongoError,
1818
MongoNetworkError: require('./lib/error').MongoNetworkError,
19+
mongoErrorContextSymbol: require('./lib/error').mongoErrorContextSymbol,
1920
Connection: require('./lib/connection/connection'),
2021
Server: require('./lib/topologies/server'),
2122
ReplSet: require('./lib/topologies/replset'),

lib/cursor.js

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
'use strict';
22

3-
var Logger = require('./connection/logger'),
4-
retrieveBSON = require('./connection/utils').retrieveBSON,
5-
MongoError = require('./error').MongoError,
6-
MongoNetworkError = require('./error').MongoNetworkError,
7-
f = require('util').format;
3+
const Logger = require('./connection/logger');
4+
const retrieveBSON = require('./connection/utils').retrieveBSON;
5+
const MongoError = require('./error').MongoError;
6+
const MongoNetworkError = require('./error').MongoNetworkError;
7+
const mongoErrorContextSymbol = require('./error').mongoErrorContextSymbol;
8+
const f = require('util').format;
89

910
var BSON = retrieveBSON(),
1011
Long = BSON.Long;
@@ -709,7 +710,13 @@ var nextFunction = function(self, callback) {
709710

710711
// Execute the next get more
711712
self._getmore(function(err, doc, connection) {
712-
if (err) return handleCallback(callback, err);
713+
if (err) {
714+
if (err instanceof MongoError) {
715+
err[mongoErrorContextSymbol].isGetMore = true;
716+
}
717+
718+
return handleCallback(callback, err);
719+
}
713720

714721
if (self.cursorState.cursorId && self.cursorState.cursorId.isZero() && self._endSession) {
715722
self._endSession();

lib/error.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
var util = require('util');
44

5+
const mongoErrorContextSymbol = Symbol('mongoErrorContextSymbol');
6+
57
/**
68
* Creates a new MongoError
79
* @class
@@ -31,6 +33,8 @@ function MongoError(message) {
3133
Error.captureStackTrace(this, this.constructor);
3234
}
3335
}
36+
37+
this[mongoErrorContextSymbol] = this[mongoErrorContextSymbol] || {};
3438
}
3539
util.inherits(MongoError, Error);
3640

@@ -94,5 +98,6 @@ module.exports = {
9498
MongoError,
9599
MongoNetworkError,
96100
MongoParseError,
97-
MongoTimeoutError
101+
MongoTimeoutError,
102+
mongoErrorContextSymbol
98103
};

0 commit comments

Comments
 (0)