@nats-io/nuid
Version:
NUID - A highly performant unique identifier generator.
138 lines • 3.64 kB
JavaScript
/*
* Copyright 2016-2024 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.nuid = exports.Nuid = void 0;
const digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const base = 36;
const preLen = 12;
const seqLen = 10;
const maxSeq = 3656158440062976; // base^seqLen == 36^10
const minInc = 33;
const maxInc = 333;
const totalLen = preLen + seqLen;
function _getRandomValues(a) {
for (let i = 0; i < a.length; i++) {
a[i] = Math.floor(Math.random() * 255);
}
}
function fillRandom(a) {
if (globalThis?.crypto?.getRandomValues) {
globalThis.crypto.getRandomValues(a);
}
else {
_getRandomValues(a);
}
}
/**
* Nuid is a class that generates unique identifiers.
*/
class Nuid {
/**
* @hidden
*/
buf;
/**
* @hidden
*/
seq;
/**
* @hidden
*/
inc;
/**
* @hidden
*/
inited;
constructor() {
this.buf = new Uint8Array(totalLen);
this.inited = false;
}
/**
* Initializes a nuid with a crypto random prefix,
* and pseudo-random sequence and increment. This function
* is only called if any api on a nuid is called.
*
* @ignore
*/
init() {
this.inited = true;
this.setPre();
this.initSeqAndInc();
this.fillSeq();
}
/**
* Initializes the pseudo random sequence number and the increment range.
* @ignore
*/
initSeqAndInc() {
this.seq = Math.floor(Math.random() * maxSeq);
this.inc = Math.floor(Math.random() * (maxInc - minInc) + minInc);
}
/**
* Sets the prefix from crypto random bytes. Converts them to base36.
*
* @ignore
*/
setPre() {
const cbuf = new Uint8Array(preLen);
fillRandom(cbuf);
for (let i = 0; i < preLen; i++) {
const di = cbuf[i] % base;
this.buf[i] = digits.charCodeAt(di);
}
}
/**
* Fills the sequence part of the nuid as base36 from this.seq.
* @ignore
*/
fillSeq() {
let n = this.seq;
for (let i = totalLen - 1; i >= preLen; i--) {
this.buf[i] = digits.charCodeAt(n % base);
n = Math.floor(n / base);
}
}
/**
* Returns the next nuid.
*/
next() {
if (!this.inited) {
this.init();
}
this.seq += this.inc;
if (this.seq > maxSeq) {
this.setPre();
this.initSeqAndInc();
}
this.fillSeq();
// @ts-ignore - Uint8Arrays can be an argument
return String.fromCharCode.apply(String, this.buf);
}
/**
* Resets the prefix and counter for the nuid. This is typically
* called automatically from within next() if the current sequence
* exceeds the resolution of the nuid.
*/
reset() {
this.init();
}
}
exports.Nuid = Nuid;
/**
* A nuid instance you can use by simply calling `next()` on it.
*/
exports.nuid = new Nuid();
//# sourceMappingURL=nuid.js.map