zoukankan      html  css  js  c++  java
  • code生成

      1 /**
      2  * Twitter_Snowflake<br>
      3  * SnowFlake的结构如下(每部分用-分开):<br>
      4  * 0 - 0000000000 0000000000 0000000000 0000000000 0 - 00000 - 00000 - 000000000000 <br>
      5  * 1位标识,由于long基本类型在Java中是带符号的,最高位是符号位,正数是0,负数是1,所以id一般是正数,最高位是0<br>
      6  * 41位时间截(毫秒级),注意,41位时间截不是存储当前时间的时间截,而是存储时间截的差值(当前时间截 - 开始时间截)
      7  * 得到的值),这里的的开始时间截,一般是我们的id生成器开始使用的时间,由我们程序来指定的(如下下面程序IdWorker类的startTime属性)。41位的时间截,可以使用69年,年T = (1L << 41) / (1000L * 60 * 60 * 24 * 365) = 69<br>
      8  * 10位的数据机器位,可以部署在1024个节点,包括5位datacenterId和5位workerId<br>
      9  * 12位序列,毫秒内的计数,12位的计数顺序号支持每个节点每毫秒(同一机器,同一时间截)产生4096个ID序号<br>
     10  * 加起来刚好64位,为一个Long型。<br>
     11  * SnowFlake的优点是,整体上按照时间自增排序,并且整个分布式系统内不会产生ID碰撞(由数据中心ID和机器ID作区分),并且效率较高,经测试,SnowFlake每秒能够产生26万ID左右。
     12  */
     13 public class SnowflakeIdWorker {
     14 
     15     // ==============================Fields===========================================
     16     /** 开始时间截 (2015-01-01) */
     17     private final long twepoch = 1420041600000L;
     18 
     19     /** 机器id所占的位数 */
     20     private final long workerIdBits = 5L;
     21 
     22     /** 数据标识id所占的位数 */
     23     private final long datacenterIdBits = 5L;
     24 
     25     /** 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数) */
     26     private final long maxWorkerId = -1L ^ (-1L << workerIdBits);
     27 
     28     /** 支持的最大数据标识id,结果是31 */
     29     private final long maxDatacenterId = -1L ^ (-1L << datacenterIdBits);
     30 
     31     /** 序列在id中占的位数 */
     32     private final long sequenceBits = 12L;
     33 
     34     /** 机器ID向左移12位 */
     35     private final long workerIdShift = sequenceBits;
     36 
     37     /** 数据标识id向左移17位(12+5) */
     38     private final long datacenterIdShift = sequenceBits + workerIdBits;
     39 
     40     /** 时间截向左移22位(5+5+12) */
     41     private final long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;
     42 
     43     /** 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095) */
     44     private final long sequenceMask = -1L ^ (-1L << sequenceBits);
     45 
     46     /** 工作机器ID(0~31) */
     47     private long workerId;
     48 
     49     /** 数据中心ID(0~31) */
     50     private long datacenterId;
     51 
     52     /** 毫秒内序列(0~4095) */
     53     private long sequence = 0L;
     54 
     55     /** 上次生成ID的时间截 */
     56     private long lastTimestamp = -1L;
     57 
     58     //==============================Constructors=====================================
     59     /**
     60      * 构造函数
     61      * @param workerId 工作ID (0~31)
     62      * @param datacenterId 数据中心ID (0~31)
     63      */
     64     public SnowflakeIdWorker(long workerId, long datacenterId) {
     65         if (workerId > maxWorkerId || workerId < 0) {
     66             throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId));
     67         }
     68         if (datacenterId > maxDatacenterId || datacenterId < 0) {
     69             throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId));
     70         }
     71         this.workerId = workerId;
     72         this.datacenterId = datacenterId;
     73     }
     74 
     75     // ==============================Methods==========================================
     76     /**
     77      * 获得下一个ID (该方法是线程安全的)
     78      * @return SnowflakeId
     79      */
     80     public synchronized long nextId() {
     81         long timestamp = timeGen();
     82 
     83         //如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
     84         if (timestamp < lastTimestamp) {
     85             throw new RuntimeException(
     86                     String.format("Clock moved backwards.  Refusing to generate id for %d milliseconds", lastTimestamp - timestamp));
     87         }
     88 
     89         //如果是同一时间生成的,则进行毫秒内序列
     90         if (lastTimestamp == timestamp) {
     91             sequence = (sequence + 1) & sequenceMask;
     92             //毫秒内序列溢出
     93             if (sequence == 0) {
     94                 //阻塞到下一个毫秒,获得新的时间戳
     95                 timestamp = tilNextMillis(lastTimestamp);
     96             }
     97         }
     98         //时间戳改变,毫秒内序列重置
     99         else {
    100             sequence = 0L;
    101         }
    102 
    103         //上次生成ID的时间截
    104         lastTimestamp = timestamp;
    105 
    106         //移位并通过或运算拼到一起组成64位的ID
    107         return ((timestamp - twepoch) << timestampLeftShift) //
    108                 | (datacenterId << datacenterIdShift) //
    109                 | (workerId << workerIdShift) //
    110                 | sequence;
    111     }
    112 
    113     /**
    114      * 阻塞到下一个毫秒,直到获得新的时间戳
    115      * @param lastTimestamp 上次生成ID的时间截
    116      * @return 当前时间戳
    117      */
    118     protected long tilNextMillis(long lastTimestamp) {
    119         long timestamp = timeGen();
    120         while (timestamp <= lastTimestamp) {
    121             timestamp = timeGen();
    122         }
    123         return timestamp;
    124     }
    125 
    126     /**
    127      * 返回以毫秒为单位的当前时间
    128      * @return 当前时间(毫秒)
    129      */
    130     protected long timeGen() {
    131         return System.currentTimeMillis();
    132     }
    133 
    134     //==============================Test=============================================
    135     /** 测试 */
    136     public static void main(String[] args) {
    137         SnowflakeIdWorker idWorker = new SnowflakeIdWorker(0, 0);
    138         for (int i = 0; i < 1000; i++) {
    139             long id = idWorker.nextId();
    140             System.out.println(Long.toBinaryString(id));
    141             System.out.println(id);
    142         }
    143     }
    144 }
  • 相关阅读:
    iptables 增删查改
    在Ubuntu14.04上安装WordPress4搭建技术博客
    Revit 二次开发之 零件
    Revit 二次开发之 结构层次
    revit二次开发之 过滤器二FilteredElementCollector收集器
    Revit二次开发之 动态模型更新(DMU: Dynamic Model Update)功能
    revit二次开发之 过滤器一
    Revit 二次开发之标高参数
    Revit二次开发之 错误
    Visual Studio删除所有的注释和空行
  • 原文地址:https://www.cnblogs.com/go4mi/p/7678757.html
Copyright © 2011-2022 走看看