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

  1. 'use strict';
  2. const hostname = require('os').hostname;
  3. const fnv1a24 = require('./fnv1a').fnv1a24;
  4. /**
  5. * Machine id.
  6. *
  7. * Create a random 3-byte value (i.e. unique for this
  8. * process). Other drivers use a md5 of the machine id here, but
  9. * that would mean an asyc call to gethostname, so we don't bother.
  10. * @ignore
  11. */
  12. const MACHINE_ID = fnv1a24(hostname);
  13. // Regular expression that checks for hex value
  14. var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$');
  15. var hasBufferType = false;
  16. // Check if buffer exists
  17. try {
  18. if (Buffer && Buffer.from) hasBufferType = true;
  19. } catch (err) {
  20. hasBufferType = false;
  21. }
  22. /**
  23. * Create a new ObjectID instance
  24. *
  25. * @class
  26. * @param {(string|number)} id Can be a 24 byte hex string, 12 byte binary string or a Number.
  27. * @property {number} generationTime The generation time of this ObjectId instance
  28. * @return {ObjectID} instance of ObjectID.
  29. */
  30. function ObjectID(id) {
  31. // Duck-typing to support ObjectId from different npm packages
  32. if (id instanceof ObjectID) return id;
  33. if (!(this instanceof ObjectID)) return new ObjectID(id);
  34. this._bsontype = 'ObjectID';
  35. // The most common usecase (blank id, new objectId instance)
  36. if (id == null || typeof id === 'number') {
  37. // Generate a new id
  38. this.id = this.generate(id);
  39. // If we are caching the hex string
  40. if (ObjectID.cacheHexString) this.__id = this.toString('hex');
  41. // Return the object
  42. return;
  43. }
  44. // Check if the passed in id is valid
  45. var valid = ObjectID.isValid(id);
  46. // Throw an error if it's not a valid setup
  47. if (!valid && id != null) {
  48. throw new TypeError(
  49. 'Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'
  50. );
  51. } else if (valid && typeof id === 'string' && id.length === 24 && hasBufferType) {
  52. return new ObjectID(new Buffer(id, 'hex'));
  53. } else if (valid && typeof id === 'string' && id.length === 24) {
  54. return ObjectID.createFromHexString(id);
  55. } else if (id != null && id.length === 12) {
  56. // assume 12 byte string
  57. this.id = id;
  58. } else if (id != null && id.toHexString) {
  59. // Duck-typing to support ObjectId from different npm packages
  60. return id;
  61. } else {
  62. throw new TypeError(
  63. 'Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'
  64. );
  65. }
  66. if (ObjectID.cacheHexString) this.__id = this.toString('hex');
  67. }
  68. // Allow usage of ObjectId as well as ObjectID
  69. // var ObjectId = ObjectID;
  70. // Precomputed hex table enables speedy hex string conversion
  71. var hexTable = [];
  72. for (var i = 0; i < 256; i++) {
  73. hexTable[i] = (i <= 15 ? '0' : '') + i.toString(16);
  74. }
  75. /**
  76. * Return the ObjectID id as a 24 byte hex string representation
  77. *
  78. * @method
  79. * @return {string} return the 24 byte hex string representation.
  80. */
  81. ObjectID.prototype.toHexString = function() {
  82. if (ObjectID.cacheHexString && this.__id) return this.__id;
  83. var hexString = '';
  84. if (!this.id || !this.id.length) {
  85. throw new TypeError(
  86. 'invalid ObjectId, ObjectId.id must be either a string or a Buffer, but is [' +
  87. JSON.stringify(this.id) +
  88. ']'
  89. );
  90. }
  91. if (this.id instanceof _Buffer) {
  92. hexString = convertToHex(this.id);
  93. if (ObjectID.cacheHexString) this.__id = hexString;
  94. return hexString;
  95. }
  96. for (var i = 0; i < this.id.length; i++) {
  97. hexString += hexTable[this.id.charCodeAt(i)];
  98. }
  99. if (ObjectID.cacheHexString) this.__id = hexString;
  100. return hexString;
  101. };
  102. /**
  103. * Update the ObjectID index used in generating new ObjectID's on the driver
  104. *
  105. * @method
  106. * @return {number} returns next index value.
  107. * @ignore
  108. */
  109. ObjectID.prototype.get_inc = function() {
  110. return (ObjectID.index = (ObjectID.index + 1) % 0xffffff);
  111. };
  112. /**
  113. * Update the ObjectID index used in generating new ObjectID's on the driver
  114. *
  115. * @method
  116. * @return {number} returns next index value.
  117. * @ignore
  118. */
  119. ObjectID.prototype.getInc = function() {
  120. return this.get_inc();
  121. };
  122. /**
  123. * Generate a 12 byte id buffer used in ObjectID's
  124. *
  125. * @method
  126. * @param {number} [time] optional parameter allowing to pass in a second based timestamp.
  127. * @return {Buffer} return the 12 byte id buffer string.
  128. */
  129. ObjectID.prototype.generate = function(time) {
  130. if ('number' !== typeof time) {
  131. time = ~~(Date.now() / 1000);
  132. }
  133. // Use pid
  134. var pid =
  135. (typeof process === 'undefined' || process.pid === 1
  136. ? Math.floor(Math.random() * 100000)
  137. : process.pid) % 0xffff;
  138. var inc = this.get_inc();
  139. // Buffer used
  140. var buffer = new Buffer(12);
  141. // Encode time
  142. buffer[3] = time & 0xff;
  143. buffer[2] = (time >> 8) & 0xff;
  144. buffer[1] = (time >> 16) & 0xff;
  145. buffer[0] = (time >> 24) & 0xff;
  146. // Encode machine
  147. buffer[6] = MACHINE_ID & 0xff;
  148. buffer[5] = (MACHINE_ID >> 8) & 0xff;
  149. buffer[4] = (MACHINE_ID >> 16) & 0xff;
  150. // Encode pid
  151. buffer[8] = pid & 0xff;
  152. buffer[7] = (pid >> 8) & 0xff;
  153. // Encode index
  154. buffer[11] = inc & 0xff;
  155. buffer[10] = (inc >> 8) & 0xff;
  156. buffer[9] = (inc >> 16) & 0xff;
  157. // Return the buffer
  158. return buffer;
  159. };
  160. /**
  161. * Converts the id into a 24 byte hex string for printing
  162. *
  163. * @param {String} format The Buffer toString format parameter.
  164. * @return {String} return the 24 byte hex string representation.
  165. * @ignore
  166. */
  167. ObjectID.prototype.toString = function(format) {
  168. // Is the id a buffer then use the buffer toString method to return the format
  169. if (this.id && this.id.copy) {
  170. return this.id.toString(typeof format === 'string' ? format : 'hex');
  171. }
  172. // if(this.buffer )
  173. return this.toHexString();
  174. };
  175. /**
  176. * Converts to a string representation of this Id.
  177. *
  178. * @return {String} return the 24 byte hex string representation.
  179. * @ignore
  180. */
  181. ObjectID.prototype.inspect = ObjectID.prototype.toString;
  182. /**
  183. * Converts to its JSON representation.
  184. *
  185. * @return {String} return the 24 byte hex string representation.
  186. * @ignore
  187. */
  188. ObjectID.prototype.toJSON = function() {
  189. return this.toHexString();
  190. };
  191. /**
  192. * Compares the equality of this ObjectID with `otherID`.
  193. *
  194. * @method
  195. * @param {object} otherID ObjectID instance to compare against.
  196. * @return {boolean} the result of comparing two ObjectID's
  197. */
  198. ObjectID.prototype.equals = function equals(otherId) {
  199. if (otherId instanceof ObjectID) {
  200. return this.toString() === otherId.toString();
  201. } else if (
  202. typeof otherId === 'string' &&
  203. ObjectID.isValid(otherId) &&
  204. otherId.length === 12 &&
  205. this.id instanceof _Buffer
  206. ) {
  207. return otherId === this.id.toString('binary');
  208. } else if (typeof otherId === 'string' && ObjectID.isValid(otherId) && otherId.length === 24) {
  209. return otherId.toLowerCase() === this.toHexString();
  210. } else if (typeof otherId === 'string' && ObjectID.isValid(otherId) && otherId.length === 12) {
  211. return otherId === this.id;
  212. } else if (otherId != null && (otherId instanceof ObjectID || otherId.toHexString)) {
  213. return otherId.toHexString() === this.toHexString();
  214. } else {
  215. return false;
  216. }
  217. };
  218. /**
  219. * Returns the generation date (accurate up to the second) that this ID was generated.
  220. *
  221. * @method
  222. * @return {date} the generation date
  223. */
  224. ObjectID.prototype.getTimestamp = function() {
  225. var timestamp = new Date();
  226. var time = this.id[3] | (this.id[2] << 8) | (this.id[1] << 16) | (this.id[0] << 24);
  227. timestamp.setTime(Math.floor(time) * 1000);
  228. return timestamp;
  229. };
  230. /**
  231. * @ignore
  232. */
  233. ObjectID.index = ~~(Math.random() * 0xffffff);
  234. /**
  235. * @ignore
  236. */
  237. ObjectID.createPk = function createPk() {
  238. return new ObjectID();
  239. };
  240. /**
  241. * Creates an ObjectID from a second based number, with the rest of the ObjectID zeroed out. Used for comparisons or sorting the ObjectID.
  242. *
  243. * @method
  244. * @param {number} time an integer number representing a number of seconds.
  245. * @return {ObjectID} return the created ObjectID
  246. */
  247. ObjectID.createFromTime = function createFromTime(time) {
  248. var buffer = new Buffer([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
  249. // Encode time into first 4 bytes
  250. buffer[3] = time & 0xff;
  251. buffer[2] = (time >> 8) & 0xff;
  252. buffer[1] = (time >> 16) & 0xff;
  253. buffer[0] = (time >> 24) & 0xff;
  254. // Return the new objectId
  255. return new ObjectID(buffer);
  256. };
  257. // Lookup tables
  258. var decodeLookup = [];
  259. i = 0;
  260. while (i < 10) decodeLookup[0x30 + i] = i++;
  261. while (i < 16) decodeLookup[0x41 - 10 + i] = decodeLookup[0x61 - 10 + i] = i++;
  262. var _Buffer = Buffer;
  263. var convertToHex = function(bytes) {
  264. return bytes.toString('hex');
  265. };
  266. /**
  267. * Creates an ObjectID from a hex string representation of an ObjectID.
  268. *
  269. * @method
  270. * @param {string} hexString create a ObjectID from a passed in 24 byte hexstring.
  271. * @return {ObjectID} return the created ObjectID
  272. */
  273. ObjectID.createFromHexString = function createFromHexString(string) {
  274. // Throw an error if it's not a valid setup
  275. if (typeof string === 'undefined' || (string != null && string.length !== 24)) {
  276. throw new TypeError(
  277. 'Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'
  278. );
  279. }
  280. // Use Buffer.from method if available
  281. if (hasBufferType) return new ObjectID(new Buffer(string, 'hex'));
  282. // Calculate lengths
  283. var array = new _Buffer(12);
  284. var n = 0;
  285. var i = 0;
  286. while (i < 24) {
  287. array[n++] = (decodeLookup[string.charCodeAt(i++)] << 4) | decodeLookup[string.charCodeAt(i++)];
  288. }
  289. return new ObjectID(array);
  290. };
  291. /**
  292. * Checks if a value is a valid bson ObjectId
  293. *
  294. * @method
  295. * @return {boolean} return true if the value is a valid bson ObjectId, return false otherwise.
  296. */
  297. ObjectID.isValid = function isValid(id) {
  298. if (id == null) return false;
  299. if (typeof id === 'number') {
  300. return true;
  301. }
  302. if (typeof id === 'string') {
  303. return id.length === 12 || (id.length === 24 && checkForHexRegExp.test(id));
  304. }
  305. if (id instanceof ObjectID) {
  306. return true;
  307. }
  308. if (id instanceof _Buffer) {
  309. return true;
  310. }
  311. // Duck-Typing detection of ObjectId like objects
  312. if (id.toHexString) {
  313. return id.id.length === 12 || (id.id.length === 24 && checkForHexRegExp.test(id.id));
  314. }
  315. return false;
  316. };
  317. /**
  318. * @ignore
  319. */
  320. Object.defineProperty(ObjectID.prototype, 'generationTime', {
  321. enumerable: true,
  322. get: function() {
  323. return this.id[3] | (this.id[2] << 8) | (this.id[1] << 16) | (this.id[0] << 24);
  324. },
  325. set: function(value) {
  326. // Encode time into first 4 bytes
  327. this.id[3] = value & 0xff;
  328. this.id[2] = (value >> 8) & 0xff;
  329. this.id[1] = (value >> 16) & 0xff;
  330. this.id[0] = (value >> 24) & 0xff;
  331. }
  332. });
  333. /**
  334. * Expose.
  335. */
  336. module.exports = ObjectID;
  337. module.exports.ObjectID = ObjectID;
  338. module.exports.ObjectId = ObjectID;