雪のツイッターアルゴリズムによる注文番号の生成
5077 ワード
雪のツイッターアルゴリズムによる注文番号の生成
package cn.tx.utils;
import java.lang.management.ManagementFactory;
import java.net.InetAddress;
import java.net.NetworkInterface;
/**
* :IdWorker.java
* : ID
*
* Twitter Snowflake JAVA
*
*コアコードはIdWorkerというクラスで されています.その は の りです. はそれぞれ0で1つを し、- を する を たします.
* 1||0---0000000000 0000000000 0000000000 0000000000 0 --- 00000 ---00000 ---000000000000
* の では、 のビットは ( にはlongのシンボルビットとしても )、 の41ビットはミリ レベルの 、
*そして5ビットdatacenter ビット、5ビットマシンID( ではなく、 にはスレッド )、
*その 、12ビットの のミリ のカウントは、プラス64ビットで、Long です.
*このような は、 に に してソートされ、 システム でID が しないこと(datacenterとマシンIDで される)、
*しかも が く、テストした 、snowflakeは 26 ID を することができ、 に を たすことができる.
*
*64ビットID(42(ミリ )+5(マシンID)+5(トラフィックコード)+12( り し )
*
* @author Polim
*/
public class IdWorker {
// マークポイントは、 として、システムの の をとるのが です( したら できません)
private final static long twepoch = 1288834974657L;
//
private final static long workerIdBits = 5L;
//データセンター
private final static long datacenterIdBits = 5L;
//マシンID
private final static long maxWorkerId = -1L ^ (-1L << workerIdBits);
//データセンタID
private final static long maxDatacenterId = -1L ^ (-1L << datacenterIdBits);
//ミリ
private final static long sequenceBits = 12L;
//マシンID シフト12ビット
private final static long workerIdShift = sequenceBits;
//データセンタID シフト17ビット
private final static long datacenterIdShift = sequenceBits + workerIdBits;
// ミリ シフト22ビット
private final static long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;
private final static long sequenceMask = -1L ^ (-1L << sequenceBits);
/* idタイムスタンプ*/
private static long lastTimestamp = -1L;
//0、
private long sequence = 0L;
private final long workerId;
//データID
private final long datacenterId;
public IdWorker(){
this.datacenterId = getDatacenterId(maxDatacenterId);
this.workerId = getMaxWorkerId(datacenterId, maxWorkerId);
}
/**
* @param workerId
*ワークマシンID
* @param datacenterId
*シリアル
*/
public IdWorker(long workerId, long datacenterId) {
if (workerId > maxWorkerId || workerId < 0) {
throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId));
}
if (datacenterId > maxDatacenterId || datacenterId < 0) {
throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId));
}
this.workerId = workerId;
this.datacenterId = datacenterId;
}
/**
* のIDを
*
* @return
*/
public synchronized long nextId() {
long timestamp = timeGen();
if (timestamp < lastTimestamp) {
throw new RuntimeException(String.format("Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp));
}
if (lastTimestamp == timestamp) {
// のミリ の +1
sequence = (sequence + 1) & sequenceMask;
if (sequence == 0) {
// のミリ でカウントがいっぱいになったら、 の を つ
timestamp = tilNextMillis(lastTimestamp);
}
} else {
sequence = 0L;
}
lastTimestamp = timestamp;
//IDオフセット せ IDを し、IDを す
long nextId = ((timestamp - twepoch) << timestampLeftShift)
| (datacenterId << datacenterIdShift)
| (workerId << workerIdShift) | sequence;
return nextId;
}
private long tilNextMillis(final long lastTimestamp) {
long timestamp = this.timeGen();
while (timestamp <= lastTimestamp) {
timestamp = this.timeGen();
}
return timestamp;
}
private long timeGen() {
return System.currentTimeMillis();
}
/**
*
*maxWorkerIdの
*
*/
protected static long getMaxWorkerId(long datacenterId, long maxWorkerId) {
StringBuffer mpid = new StringBuffer();
mpid.append(datacenterId);
String name = ManagementFactory.getRuntimeMXBean().getName();
if (!name.isEmpty()) {
/*
* GET jvmPid
*/
mpid.append(name.split("@")[0]);
}
/*
*MAC+PIDのhashcodeは16 の ビットを する
*/
return (mpid.toString().hashCode() & 0xffff) % (maxWorkerId + 1);
}
/**
*
*データ id
*
*/
protected static long getDatacenterId(long maxDatacenterId) {
long id = 0L;
try {
InetAddress ip = InetAddress.getLocalHost();
NetworkInterface network = NetworkInterface.getByInetAddress(ip);
if (network == null) {
id = 1L;
} else {
byte[] mac = network.getHardwareAddress();
id = ((0x000000FF & (long) mac[mac.length - 1])
| (0x0000FF00 & (((long) mac[mac.length - 2]) << 8))) >> 6;
id = id % (maxDatacenterId + 1);
}
} catch (Exception e) {
System.out.println("getDatacenterId: "+ e.getMessage());
}
return id;
}
}