bifcore-sdk-nodejs-bop
Version:
bifcore sdk nodejs
223 lines (193 loc) • 10.2 kB
JavaScript
/**
*
* 名词说明:
* Twitter_Snowflake
* SnowFlake的结构如下(每部分用-分开):
*
* 0 - 0000000000 0000000000 0000000000 0000000000 0 - 00000 - 00000 - 000000000000
* A-|--------------------B--------------------------|-------C-------|------D------|
*
* A区:1位标识,由于long基本类型在Java中是带符号的,最高位是符号位,正数是0,负数是1,所以id一般是正数,最高位是0
* B区:41位时间截(毫秒级),注意,41位时间截不是存储当前时间的时间截,而是存储时间截的差值(当前时间截 - 开始时间截)得到的值,
* 这里的的开始时间截,一般是我们的id生成器开始使用的时间,由我们程序来指定的(如下下面程序IdWorker类的startTime属性)。41位的时间截,可以使用69年,
* 年T = (1n << 41n) / (1000n * 60n * 60n * 24n * 365n) = 69n
* C区:10位的数据机器位,可以部署在1024个节点,包括5位datacenterId和5位workerId(2^5 * 2^5 = 1024)
* D区:12位序列,毫秒内的计数,12位 的计数顺序号支持每个节点每毫秒(同一机器,同一时间截)产生4096个ID序号(2^12=4096)
* 加起来刚好64位,为一个Long型。
*
* SnowFlake的优点是,整体上按照时间自增排序,并且整个分布式系统内不会产生ID碰撞(由数据ID和机器ID作区分),并且效率较高。
* 理论1S内生成的ID数量是 1000*4096 = 4096000(四百零九万六千个)
* 代码中使用Bigint实现,该类型在Node10.X版本才开始支持,返回出去的结果是Bigint转为String后的字符串类型,toString方法消耗总性能的三分之一时间;
* 性能测试结果:
* 生成100W条ID, 约850-1000ms; 如果不toString后再转, 时间约 640-660ms
* 生成409.6WW条ID, 约3600-3850ms; 如果不toString后再转, 时间约约 2600-2800ms
*/
// ==============================Constructors=====================================
/**
* 构造函数
* @param workerId 工作ID (0~31)
* @param datacenterId 数据标识ID (0~31)
*/
var Snowflake = (function () {
function Snowflake(_workerId, _dataCenterId) {
/** 开始时间截 :2019-12-20 13:52:35 */
this.twepoch = 1576821155667n
/** 机器id所占的位数 */
this.workerIdBits = 5n
/** 数据标识id所占的位数 */
this.dataCenterIdBits = 5n
/**
* 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数)
* 用位运算计算n个bit能表示的最大数值,计算是 -1 左移 5,得结果a,然后 -1 异或 a
*
* 步骤
* 先 -1 左移 5,得结果a :
11111111 11111111 11111111 11111111 //-1的二进制表示(补码,补码的意义是拿补码和原码相加,最终加出一个“溢出的0”)
11111 11111111 11111111 11111111 11100000 //高位溢出的不要,低位补0
11111111 11111111 11111111 11100000 //结果a
* 再 -1 异或 a :
11111111 11111111 11111111 11111111 //-1的二进制表示(补码)
^ 11111111 11111111 11111111 11100000 //两个操作数的位中,相同则为0,不同则为1
---------------------------------------------------------------------------
00000000 00000000 00000000 00011111 //最终结果31
* */
this.maxWrokerId = -1n ^ (-1n << this.workerIdBits) // 值为:31
/** 支持的最大数据标识id,结果是31 */
this.maxDataCenterId = -1n ^ (-1n << this.dataCenterIdBits) // 值为:31
/** 序列在id中占的位数 */
this.sequenceBits = 12n
/** 机器ID向左移12位 */
this.workerIdShift = this.sequenceBits // 值为:12
/** 数据标识id向左移17位(12序列id+5机器ID) */
this.dataCenterIdShift = this.sequenceBits + this.workerIdBits // 值为:17
/** 时间截向左移22位( 12序列id + 5机器ID + 5数据ID) */
this.timestampLeftShift = this.sequenceBits + this.workerIdBits + this.dataCenterIdBits // 值为:22
/** 生成序列的掩码,这里为4095
* 用位运算计算n个bit能表示的最大数值,计算是 -1 左移 12,得结果a,然后 -1 异或 a
*
* 步骤
* 先 -1 左移 12,得结果a :
11111111 11111111 11111111 11111111 //-1的二进制表示(补码,补码的意义是拿补码和原码相加,最终加出一个“溢出的0”)
1111 11111111 11111111 11111111 11110000 00000000 //高位溢出的不要,低位补0
11111111 11111111 11110000 00000000 //结果a
* 再 -1 异或 a :
11111111 11111111 11111111 11111111 //-1的二进制表示(补码)
^ 11111111 11111111 11110000 00000000 //两个操作数的位中,相同则为0,不同则为1
---------------------------------------------------------------------------
00000000 00000000 00001111 11111111 //最终结果2^12 = 4096
*/
this.sequenceMask = -1n ^ (-1n << this.sequenceBits) // 值为:4095
/** 工作机器ID(0~31) */
// this.workerId = 0n
/** 数据中心ID(0~31) */
// this.dataCenterId = 0n
/** 上次生成ID的时间截 */
this.lastTimestamp = -1n
// eslint-disable-next-line no-undef
this.workerId = BigInt(_workerId || 0n)// 工作机器ID(0~31)
// eslint-disable-next-line no-undef
this.dataCenterId = BigInt(_dataCenterId || 0n) // 数据标识ID(0~31)
this.sequence = 0n// 毫秒内序列(0~4095)
// workerId 校验
if (this.workerId > this.maxWrokerId || this.workerId < 0) {
throw new Error(`workerId must max than 0 and small than maxWrokerId ${this.maxWrokerId}`)
}
// dataCenterId 校验
if (this.dataCenterId > this.maxDataCenterId || this.dataCenterId < 0) {
throw new Error(`dataCenterId must max than 0 and small than maxDataCenterId ${this.maxDataCenterId}`)
}
}
// ==============================Methods==========================================
/**
* 获得下一个ID (该方法是线程安全的)
* @return SnowflakeId
*/
Snowflake.prototype.nextId = function () {
var timestamp = this.timeGen()
// 如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
if (timestamp < this.lastTimestamp) {
throw new Error('Clock moved backwards. Refusing to generate id for ' +
(this.lastTimestamp - timestamp))
}
// 如果是同一时间生成的,则进行毫秒内序列
if (this.lastTimestamp === timestamp) {
/**
* 按位于操作 对于每一个比特位,只有两个操作数相应的比特位都是1时,结果才为1,否则为0。
* 假设最开始 this.sequence 为 0n 加1后,则为1
* 结果如下
00000000 00000000 00000000 00000001 //1的二进制
00000000 00000000 00001111 11111111 //最终结果2^12 = 4096
---------------------------------------------------------------------------
00000000 00000000 00000000 00000001 //结果1的二进制
*/
this.sequence = (this.sequence + 1n) & this.sequenceMask
// 毫秒内序列溢出
if (this.sequence === 0n) {
// 阻塞到下一个毫秒,获得新的时间戳
timestamp = this.tilNextMillis(this.lastTimestamp)
}
} else {
// 时间戳改变,毫秒内序列重置
this.sequence = 0n
}
// 上次生成ID的时间截
this.lastTimestamp = timestamp
// 移位并通过或运算拼到一起组成64位的ID
let result = ((timestamp - this.twepoch) << this.timestampLeftShift) |
(this.dataCenterId << this.dataCenterIdShift) |
(this.workerId << this.workerIdShift) |
this.sequence
return result
}
Snowflake.randomLenNum = function () {
return singleSnowFlake.nextId()
}
Snowflake.getIPAdress = function () {
let interfaces = require('os').networkInterfaces()
for (var devName in interfaces) {
var iface = interfaces[devName]
for (var i = 0; i < iface.length; i++) {
let alias = iface[i]
if (alias.family === 'IPv4' && alias.address !== '127.0.0.1' && !alias.internal) {
console.log(alias.address)
return alias.address
}
}
}
}
Snowflake.getHostName = function () {
let os = require('os')
console.log(os.hostname())
return os.hostname()
}
Snowflake.getRangeRandom = function (m, n) {
return Math.ceil(Math.random() * (n - m + 1) + m - 1)
}
Snowflake.getDefaultRangeRandom = function () {
return this.getRangeRandom(100, 2000)
}
/**
* 阻塞到下一个毫秒,直到获得新的时间戳
* @param lastTimestamp 上次生成ID的时间截
* @return 当前时间戳
*/
Snowflake.prototype.tilNextMillis = function (lastTimestamp) {
var timestamp = this.timeGen()
while (timestamp <= lastTimestamp) {
timestamp = this.timeGen()
}
return timestamp
}
/**
* 返回以毫秒为单位的当前时间
* @return 当前时间(毫秒)
*/
Snowflake.prototype.timeGen = function () {
// eslint-disable-next-line no-undef
return BigInt(Date.now())
}
return Snowflake
}())
// console.log(new Snowflake(1n, 1n).nextId())
var singleSnowFlake = new Snowflake(1, 1)
module.exports = Snowflake