Write a tool class in java to generate snowflake id

We create a class called SnowflakeIdGenerator as a tool class for generating snowflake IDs
and then write the code as follows

public class SnowflakeIdGenerator {
    
    
    private static final long START_TIMESTAMP = 1609459200000L; // 设置起始时间戳,可以根据需要进行调整
    private static final long WORKER_ID_BITS = 5L; // 机器ID所占位数
    private static final long DATACENTER_ID_BITS = 5L; // 数据中心ID所占位数
    private static final long SEQUENCE_BITS = 12L; // 序列号所占位数

    private static final long MAX_WORKER_ID = ~(-1L << WORKER_ID_BITS); // 机器ID的最大值
    private static final long MAX_DATACENTER_ID = ~(-1L << DATACENTER_ID_BITS); // 数据中心ID的最大值

    private static final long WORKER_ID_SHIFT = SEQUENCE_BITS; // 机器ID的位移量
    private static final long DATACENTER_ID_SHIFT = SEQUENCE_BITS + WORKER_ID_BITS; // 数据中心ID的位移量
    private static final long TIMESTAMP_LEFT_SHIFT = SEQUENCE_BITS + WORKER_ID_BITS + DATACENTER_ID_BITS; // 时间戳的位移量

    private static final long SEQUENCE_MASK = ~(-1L << SEQUENCE_BITS); // 序列号的屏蔽位

    private final long workerId; // 机器ID
    private final long datacenterId; // 数据中心ID
    private long lastTimestamp = -1L; // 上次生成ID的时间戳
    private long sequence = 0L; // 序列号

    public SnowflakeIdGenerator(long workerId, long datacenterId) {
    
    
        if (workerId > MAX_WORKER_ID || workerId < 0) {
    
    
            throw new IllegalArgumentException("Worker ID 超出范围");
        }
        if (datacenterId > MAX_DATACENTER_ID || datacenterId < 0) {
    
    
            throw new IllegalArgumentException("数据中心 ID 超出范围");
        }
        this.workerId = workerId;
        this.datacenterId = datacenterId;
    }

    public synchronized long nextId() {
    
    
        long timestamp = System.currentTimeMillis();

        if (timestamp < lastTimestamp) {
    
    
            throw new RuntimeException("系统时间不正确");
        }

        if (timestamp == lastTimestamp) {
    
    
            sequence = (sequence + 1) & SEQUENCE_MASK;
            if (sequence == 0) {
    
    
                timestamp = tilNextMillis(lastTimestamp);
            }
        } else {
    
    
            sequence = 0L;
        }

        lastTimestamp = timestamp;

        return ((timestamp - START_TIMESTAMP) << TIMESTAMP_LEFT_SHIFT) |
                (datacenterId << DATACENTER_ID_SHIFT) |
                (workerId << WORKER_ID_SHIFT) |
                sequence;
    }

    private long tilNextMillis(long lastTimestamp) {
    
    
        long timestamp = System.currentTimeMillis();
        while (timestamp <= lastTimestamp) {
    
    
            timestamp = System.currentTimeMillis();
        }
        return timestamp;
    }
}

Then you just need to call him in other classes to get the id.

SnowflakeIdGenerator idGenerator = new SnowflakeIdGenerator(1, 1);
long id = idGenerator.nextId();
System.out.println("新的雪花ID:" + id);

Here we directly create a new instance of the SnowflakeIdGenerator class
and then obtain a snowflake id through nextId.
The results are as follows.
Insert image description here
There is no problem.

Guess you like

Origin blog.csdn.net/weixin_45966674/article/details/132925415
Recommended