Source: node_modules/mongodb-core/lib/error.js

  1. 'use strict';
  2. var util = require('util');
  3. /**
  4. * Creates a new MongoError
  5. * @class
  6. * @augments Error
  7. * @param {Error|string|object} message The error message
  8. * @property {string} message The error message
  9. * @property {string} stack The error call stack
  10. * @return {MongoError} A MongoError instance
  11. */
  12. function MongoError(message) {
  13. var tmp = Error.apply(this, arguments);
  14. tmp.name = this.name = 'MongoError';
  15. if (message instanceof Error) {
  16. this.message = message.message;
  17. this.stack = message.stack;
  18. } else {
  19. if (typeof message === 'string') {
  20. this.message = message;
  21. } else {
  22. this.message = message.message || message.errmsg || message.$err || 'n/a';
  23. for (var name in message) {
  24. this[name] = message[name];
  25. }
  26. }
  27. if (Error.captureStackTrace) {
  28. Error.captureStackTrace(this, this.constructor);
  29. }
  30. }
  31. }
  32. util.inherits(MongoError, Error);
  33. /**
  34. * Creates a new MongoError object
  35. * @method
  36. * @param {Error|string|object} options The options used to create the error.
  37. * @return {MongoError} A MongoError instance
  38. * @deprecated Use `new MongoError()` instead.
  39. */
  40. MongoError.create = function(options) {
  41. return new MongoError(options);
  42. };
  43. /**
  44. * Creates a new MongoNetworkError
  45. * @class
  46. * @param {Error|string|object} message The error message
  47. * @property {string} message The error message
  48. * @property {string} stack The error call stack
  49. * @return {MongoNetworkError} A MongoNetworkError instance
  50. * @extends {MongoError}
  51. */
  52. var MongoNetworkError = function(message) {
  53. MongoError.call(this, message);
  54. this.name = 'MongoNetworkError';
  55. };
  56. util.inherits(MongoNetworkError, MongoError);
  57. /**
  58. * An error used when attempting to parse a value (like a connection string)
  59. *
  60. * @class
  61. * @param {Error|string|object} message The error message
  62. * @property {string} message The error message
  63. * @return {MongoParseError} A MongoNetworkError instance
  64. * @extends {MongoError}
  65. */
  66. const MongoParseError = function(message) {
  67. MongoError.call(this, message);
  68. this.name = 'MongoParseError';
  69. };
  70. util.inherits(MongoParseError, MongoError);
  71. // see: https://github.com/mongodb/specifications/blob/master/source/retryable-writes/retryable-writes.rst#terms
  72. const RETRYABLE_ERROR_CODES = new Set([
  73. 6, // HostUnreachable
  74. 7, // HostNotFound
  75. 64, // WriteConcernFailed
  76. 89, // NetworkTimeout
  77. 91, // ShutdownInProgress
  78. 189, // PrimarySteppedDown
  79. 9001, // SocketException
  80. 11600, // InterruptedAtShutdown
  81. 11602, // InterruptedDueToReplStateChange
  82. 10107, // NotMaster
  83. 13435, // NotMasterNoSlaveOk
  84. 13436 // NotMasterOrSecondary
  85. ]);
  86. function isRetryableError(error) {
  87. if (
  88. RETRYABLE_ERROR_CODES.has(error.code) ||
  89. error instanceof MongoNetworkError ||
  90. error.message.match(/not master/) ||
  91. error.message.match(/node is recovering/)
  92. ) {
  93. return true;
  94. }
  95. return false;
  96. }
  97. module.exports = {
  98. MongoError,
  99. MongoNetworkError,
  100. MongoParseError,
  101. isRetryableError
  102. };