Source: node_modules/bson/lib/bson/timestamp.js

  1. 'use strict';
  2. var Long = require('./long');
  3. /**
  4. * @class
  5. * @param {number} low the low (signed) 32 bits of the Timestamp.
  6. * @param {number} high the high (signed) 32 bits of the Timestamp.
  7. * @return {Timestamp}
  8. */
  9. function Timestamp(low, high) {
  10. if (low instanceof Long) {
  11. Long.call(this, low.low_, low.high_);
  12. } else {
  13. Long.call(this, low, high);
  14. }
  15. this._bsontype = 'Timestamp';
  16. }
  17. Timestamp.prototype = Object.create(Long.prototype);
  18. Timestamp.prototype.constructor = Timestamp;
  19. /**
  20. * Return the JSON value.
  21. *
  22. * @method
  23. * @return {String} the JSON representation.
  24. */
  25. Timestamp.prototype.toJSON = function() {
  26. return {
  27. $timestamp: this.toString()
  28. };
  29. };
  30. /**
  31. * Returns a Timestamp represented by the given (32-bit) integer value.
  32. *
  33. * @method
  34. * @param {number} value the 32-bit integer in question.
  35. * @return {Timestamp} the timestamp.
  36. */
  37. Timestamp.fromInt = function(value) {
  38. return new Timestamp(Long.fromInt(value));
  39. };
  40. /**
  41. * Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned.
  42. *
  43. * @method
  44. * @param {number} value the number in question.
  45. * @return {Timestamp} the timestamp.
  46. */
  47. Timestamp.fromNumber = function(value) {
  48. return new Timestamp(Long.fromNumber(value));
  49. };
  50. /**
  51. * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits.
  52. *
  53. * @method
  54. * @param {number} lowBits the low 32-bits.
  55. * @param {number} highBits the high 32-bits.
  56. * @return {Timestamp} the timestamp.
  57. */
  58. Timestamp.fromBits = function(lowBits, highBits) {
  59. return new Timestamp(lowBits, highBits);
  60. };
  61. /**
  62. * Returns a Timestamp from the given string, optionally using the given radix.
  63. *
  64. * @method
  65. * @param {String} str the textual representation of the Timestamp.
  66. * @param {number} [opt_radix] the radix in which the text is written.
  67. * @return {Timestamp} the timestamp.
  68. */
  69. Timestamp.fromString = function(str, opt_radix) {
  70. return new Timestamp(Long.fromString(str, opt_radix));
  71. };
  72. module.exports = Timestamp;
  73. module.exports.Timestamp = Timestamp;