v35.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import bytesToUuid from './bytesToUuid.js';
  2. function uuidToBytes(uuid) {
  3. // Note: We assume we're being passed a valid uuid string
  4. var bytes = [];
  5. uuid.replace(/[a-fA-F0-9]{2}/g, function (hex) {
  6. bytes.push(parseInt(hex, 16));
  7. });
  8. return bytes;
  9. }
  10. function stringToBytes(str) {
  11. str = unescape(encodeURIComponent(str)); // UTF8 escape
  12. var bytes = [];
  13. for (var i = 0; i < str.length; ++i) {
  14. bytes.push(str.charCodeAt(i));
  15. }
  16. return bytes;
  17. }
  18. export var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
  19. export var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
  20. export default function (name, version, hashfunc) {
  21. function generateUUID(value, namespace, buf, offset) {
  22. if (typeof value === 'string') {
  23. value = stringToBytes(value);
  24. }
  25. if (typeof namespace === 'string') {
  26. namespace = uuidToBytes(namespace);
  27. }
  28. if (!Array.isArray(value)) {
  29. throw TypeError('value must be an array of bytes');
  30. }
  31. if (!Array.isArray(namespace) || namespace.length !== 16) {
  32. throw TypeError('namespace must be uuid string or an Array of 16 byte values');
  33. } // Per 4.3
  34. var bytes = hashfunc(namespace.concat(value));
  35. bytes[6] = bytes[6] & 0x0f | version;
  36. bytes[8] = bytes[8] & 0x3f | 0x80;
  37. if (buf) {
  38. offset = offset || 0;
  39. for (var i = 0; i < 16; ++i) {
  40. buf[offset + i] = bytes[i];
  41. }
  42. return buf;
  43. }
  44. return bytesToUuid(bytes);
  45. } // Function#name is not settable on some platforms (#270)
  46. try {
  47. generateUUID.name = name; // eslint-disable-next-line no-empty
  48. } catch (err) {} // For CommonJS default export support
  49. generateUUID.DNS = DNS;
  50. generateUUID.URL = URL;
  51. return generateUUID;
  52. }