-
Notifications
You must be signed in to change notification settings - Fork 0
/
uuid.go
169 lines (149 loc) · 5.32 KB
/
uuid.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package uuid
import (
"crypto/rand"
"encoding/binary"
"encoding/hex"
"errors"
"fmt"
"io"
"strings"
"time"
)
var (
errInvalidLength = errors.New("invalid length")
errInvalidFormat = errors.New("invalid format")
errUnsupportedVersion = errors.New("unsupported version")
errUnsupportedVariant = errors.New("unsupported variant")
)
// UUID is a 128 bit (16 byte) value defined by RFC9562.
type UUID [16]byte
// Nil represents the zero-value UUID
var Nil UUID
// NewV4 returns a UUID Version 4 as defined in RFC9562. Random bits
// are generated using crypto/rand.
//
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random_a |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random_a | ver | random_b |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |var| random_c |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | random_c |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
func NewV4() (UUID, error) {
var uuid UUID
// fill entire uuid with secure, random bytes
_, err := io.ReadFull(rand.Reader, uuid[:])
if err != nil {
return UUID{}, err
}
// Set version and variant bits
uuid[6] = (uuid[6] & 0x0f) | 0x40 // Version 4 [0100]
uuid[8] = (uuid[8] & 0x3f) | 0x80 // Variant is [10]
return uuid, nil
}
// NewV7 returns a UUID Version 7 as defined in the drafted revision for RFC9562.
// Random bits are generated using crypto/rand.
// Due to millisecond resolution of the timestamp, UUIDs generated during the
// same millisecond will sort arbitrarily.
// https://www.rfc-editor.org/rfc/rfc9562.html#name-uuid-version-7
//
// 0 1 2 3
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | unix_ts_ms |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | unix_ts_ms | ver | rand_a |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// |var| rand_b |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// | rand_b |
// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
func NewV7() (UUID, error) {
var uuid UUID
t := time.Now()
ms := t.UnixMilli() & ((1 << 48) - 1) // 48 bit timestamp
binary.BigEndian.PutUint64(uuid[:], uint64(ms<<16)) // lower 48 bits. Right 0 padded
// Fill the rest with random data
_, err := io.ReadFull(rand.Reader, uuid[6:])
if err != nil {
return UUID{}, err
}
// Set the version and variant bits
uuid[6] = (uuid[6] & 0x0f) | 0x70 // Version 7 [0111]
uuid[8] = (uuid[8] & 0x3f) | 0x80 // Variant [10]
return uuid, nil
}
// String returns the UUID in "hex-and-dash" string format.
//
// 56c450b3-255d-4a2a-a761-cd1b1bf028e2
func (uuid UUID) String() string {
var buf [36]byte
encodeHex(buf[:], uuid)
return string(buf[:])
}
// URN returns the UUID in "urn:uuid" string format.
//
// urn:uuid:56c450b3-255d-4a2a-a761-cd1b1bf028e2
func (uuid UUID) URN() string {
var buf [36]byte
encodeHex(buf[:], uuid)
return "urn:uuid:" + string(buf[:])
}
func encodeHex(dst []byte, uuid UUID) {
hex.Encode(dst, uuid[:4])
dst[8] = '-'
hex.Encode(dst[9:13], uuid[4:6])
dst[13] = '-'
hex.Encode(dst[14:18], uuid[6:8])
dst[18] = '-'
hex.Encode(dst[19:23], uuid[8:10])
dst[23] = '-'
hex.Encode(dst[24:], uuid[10:])
}
// Parse a UUID string with or without the dashes.
//
// u, err := Parse("56c450b3255d4a2aa761cd1b1bf028e2") // no dashes
// u, err := Parse("56c450b3-255d-4a2a-a761-cd1b1bf028e2") // with dashes
// u, err := Parse("urn:uuid:56c450b3-255d-4a2a-a761-cd1b1bf028e2") // urn uuid prefix
func Parse(s string) (UUID, error) {
var x string
switch len(s) {
case 32: // uuid: "9178e496ba5c4c108b1513a1c70550d0", len: 32
x = s[:8] + s[8:13] + s[13:18] + s[18:23] + s[23:]
case 36: // uuid: "9178e496-ba5c-4c10-8b15-13a1c70550d0", len: 36
if s[8] != '-' || s[13] != '-' || s[18] != '-' || s[23] != '-' {
return UUID{}, errInvalidFormat
}
x = s[:8] + s[9:13] + s[14:18] + s[19:23] + s[24:]
case 45: // uuid: "urn:uuid:9178e496-ba5c-4c10-8b15-13a1c70550d0"
if !strings.HasPrefix(s, "urn:uuid:") || s[17] != '-' || s[22] != '-' || s[27] != '-' || s[32] != '-' {
return UUID{}, errInvalidFormat
}
x = s[9:17] + s[18:22] + s[23:27] + s[28:32] + s[33:]
default:
return UUID{}, errInvalidLength
}
b, err := hex.DecodeString(x)
if err != nil {
return UUID{}, err
}
if len(b) != 16 {
return UUID{}, errInvalidLength
}
switch { // assert version
case (b[6] & 0xf0) == 0x40: // version 4
case (b[6] & 0xf0) == 0x70: // version 7
default:
return UUID{}, fmt.Errorf("%v: %d", errUnsupportedVersion, b[6]&0xf0>>4)
}
if (b[8] & 0xc0) != 0x80 { // assert variant
return UUID{}, errUnsupportedVariant
}
var uuid UUID
copy(uuid[:], b)
return uuid, nil
}