GithubHelp home page GithubHelp logo

ulid's Introduction

ULID-Ada

Implementation of ULID (Universally Unique Lexicographically Sortable Identifier) in Ada.

In a nutshell, a ULID code is a combination of 48-bit time stamp (most significant part), with a millisecond accuracy, and a 80-bit random number (least significant part), totalling 128 bits, that is 16 bytes (octets).

The preferred (canonical) representation of a ULID is in a certain version of the Base32 encoding.

Usage

The package ULID provides two functions Generate. One function is a 128-bit number that can be output (for instance) in the UUID format. One function is a string in the Base32 format (Crockford variant).

The functions are task-safe (several Ada tasks can call Generate at the same time without messing the pseudo-random generator) and you can optionally set a time zone offset.

Generating ULID's

Here is an example for generating ULID's:

with Ada.Text_IO;
with ULID;

procedure ULID_Test is
  use Ada.Text_IO, ULID;
  gen : Random_Generator;
begin
  Reset (gen);  --  Randomize
  for i in 1 .. 10 loop
    Put_Line (ULID.Generate (gen));
  end loop;
  Put ("Press Return");
  Skip_Line;
end ULID_Test;

With AdaCore's GNAT you can build and run the test using the ulid.gpr project file.

License

ULID-Ada is released under the MIT license. See the LICENSE file for more info.

ulid's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.