nomsu/core/id.nom

67 lines
2.0 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.14
#
A simple UUID function based on RFC 4122: http://www.ietf.org/rfc/rfc4122.txt
use "core/metaprogramming.nom"
2018-09-16 16:57:14 -07:00
use "core/operators.nom"
use "core/math.nom"
use "core/collections.nom"
use "core/control_flow.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-12-14 20:21:03 -08:00
$NaN_surrogate = {}
$nil_surrogate = {}
$obj_by_id = {}
2018-12-30 19:04:34 -08:00
set $obj_by_id's metatable to {.__mode = "v"}
2018-12-14 20:21:03 -08:00
$id_by_obj = {}
2018-12-30 19:04:34 -08:00
set $id_by_obj's metatable to {
2018-12-30 23:58:47 -08:00
.__mode = "k"
.__index =
2018-12-30 19:04:34 -08:00
for ($self $key):
if ($key == (nil)):
return $self.$nil_surrogate
if ($key != $key):
return $self.$NaN_surrogate
--- (retry) ---
$id = (uuid)
if ($obj_by_id.$id != (nil)): go to (retry)
$self.$key = $id
$obj_by_id.$id = $key
return $id
}
externally (uuid) means:
# Set all the other bits to randomly (or pseudo-randomly) chosen values.
2018-12-30 19:04:34 -08:00
$bytes = [
# time-low, time-mid, time-high-and-version
randint (2 ^ (4 * 8)), randint (2 ^ (2 * 8)), randint (2 ^ (2 * 8 - 4))
# clock-seq-and-reserved, clock-seq-low
randint (2 ^ (1 * 8 - 2)), randint (2 ^ (1 * 8)), randint (2 ^ (3 * 8))
# node
randint (2 ^ (3 * 8))
2018-12-30 19:04:34 -08:00
]
# Set the four most significant bits (bits 12 through 15) of the
# time_hi_and_version field to the 4-bit version number from
# Section 4.1.3.
2018-12-14 20:21:03 -08:00
$bytes.3 += 0x4000
# Set the two most significant bits (bits 6 and 7) of the
# clock_seq_hi_and_reserved to zero and one, respectively.
2018-12-14 20:21:03 -08:00
$bytes.4 += 0xC0
return (=lua "('%08x-%04x-%04x-%02x%02x-%6x%6x'):format(unpack(\$bytes))")
# For strict identity checking, use ($x's id) == ($y's id)
test:
assume (([] == []) and ((id of []) != (id of [])))
seed random with 0
2018-12-14 20:21:03 -08:00
$x = []
assume ((id of $x) == (id of $x))
seed random with 0
2018-12-14 20:21:03 -08:00
assume ((id of $x) != (id of []))
seed random
2018-12-14 20:21:03 -08:00
externally [id of $, $'s id, $'id] all mean $id_by_obj.$