123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- import rng from './rng.js';
- import { unsafeStringify } from './stringify.js';
- var _nodeId;
- var _clockseq;
- var _lastMSecs = 0;
- var _lastNSecs = 0;
- function v1(options, buf, offset) {
- var i = buf && offset || 0;
- var b = buf || new Array(16);
- options = options || {};
- var node = options.node;
- var clockseq = options.clockseq;
-
- if (!options._v6) {
- if (!node) {
- node = _nodeId;
- }
- if (clockseq == null) {
- clockseq = _clockseq;
- }
- }
-
-
- if (node == null || clockseq == null) {
- var seedBytes = options.random || (options.rng || rng)();
-
- if (node == null) {
- node = [seedBytes[0], seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
-
- if (!_nodeId && !options._v6) {
-
- node[0] |= 0x01;
- _nodeId = node;
- }
- }
-
- if (clockseq == null) {
-
- clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
- if (_clockseq === undefined && !options._v6) {
- _clockseq = clockseq;
- }
- }
- }
-
-
-
-
- var msecs = options.msecs !== undefined ? options.msecs : Date.now();
-
-
- var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;
-
- var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000;
-
- if (dt < 0 && options.clockseq === undefined) {
- clockseq = clockseq + 1 & 0x3fff;
- }
-
-
- if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
- nsecs = 0;
- }
-
- if (nsecs >= 10000) {
- throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
- }
- _lastMSecs = msecs;
- _lastNSecs = nsecs;
- _clockseq = clockseq;
-
- msecs += 12219292800000;
-
- var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
- b[i++] = tl >>> 24 & 0xff;
- b[i++] = tl >>> 16 & 0xff;
- b[i++] = tl >>> 8 & 0xff;
- b[i++] = tl & 0xff;
-
- var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
- b[i++] = tmh >>> 8 & 0xff;
- b[i++] = tmh & 0xff;
-
- b[i++] = tmh >>> 24 & 0xf | 0x10;
- b[i++] = tmh >>> 16 & 0xff;
-
- b[i++] = clockseq >>> 8 | 0x80;
-
- b[i++] = clockseq & 0xff;
-
- for (var n = 0; n < 6; ++n) {
- b[i + n] = node[n];
- }
- return buf || unsafeStringify(b);
- }
- export default v1;
|