GitHub - 0xShamil/java-xid: xid is a globally unique id generator (original) (raw)

license Build Status codecov

This project is a Java implementation of the Go Lang library found here: https://github.com/rs/xid


Description

Xid is a globally unique id generator library. They are small, fast to generate and ordered.

Xid uses the Mongo Object ID algorithm to generate globally unique ids with a different serialization (base32) to make it shorter when transported as a string:https://docs.mongodb.org/manual/reference/object-id/

Xid layout

0 1 2 3 4 5 6 7 8 9 10 11
time random value inc

The binary representation of the id is compatible with Mongo 12 bytes Object IDs. The string representation is using base32 hex (w/o padding) for better space efficiency when stored in that form (20 bytes). The hex variant of base32 is used to retain the sortable property of the id.

Xids simply offer uniqueness and speed, but they are not cryptographically secure. They are predictable and can be brute forced given enough time.

Features

Comparison

Name Binary Size String Size Features
UUID 16 bytes 36 chars configuration free, not sortable
shortuuid 16 bytes 22 chars configuration free, not sortable
Snowflake 8 bytes up to 20 chars needs machine/DC configuration, needs central server, sortable
MongoID 12 bytes 24 chars configuration free, sortable
xid 12 bytes 20 chars configuration free, sortable

Installation

Gradle

dependencies { implementation 'com.github.0xshamil:java-xid:1.0.0' }

Maven

com.github.0xshamil java-xid 1.0.0

Usage

Get Xid instance

final Xid xid = Xid.get();

System.out.println(xid.toString()); // 9m4e2mr0ui3e8a215n4g

as base32Hex String

final String xidStr = Xid.string(); // bt0j9l2s5bo37fcla7q0

as byte array:

final byte[] xidBytes = Xid.bytes();

to create an Xid from a specific date

final String d = "10-Aug-2020 09:43:29 +0000"; final String dateFormat = "dd-MMM-yyyy HH:mm:ss Z"; Date date = new SimpleDateFormat(dateFormat).parse(d); final Xid xid = new Xid(date);

System.out.println(xid.toString()); // bsohdgdl8njn9eimov6g System.out.println(xid.getDate()); // Mon Aug 10 15:13:29 IST 2020 System.out.println(xid.getTimestamp()); // 1597052609

to construct back Xid from a hex string:

final Xid xid = new Xid("bsohdgdl8njn9eimov6g");

System.out.println(xid.getDate()); // Mon Aug 10 15:13:29 IST 2020 System.out.println(xid.getTimestamp()); // 1597052609

Licenses

The source code is licensed under the MIT License.