-
Notifications
You must be signed in to change notification settings - Fork 1
/
snowflake.go
152 lines (124 loc) · 3.7 KB
/
snowflake.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
// MIT License
// Copyright (c) 2022 Project-Sparrow
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// Package snowflake provides a simple snowflake ID generator
// along with interface implementations to make it easy to use
// with database/sql and encoding/json.
package snowflake
import (
"database/sql/driver"
"encoding/json"
"errors"
"strconv"
"sync"
"time"
)
var (
workerID int
processID int
epoch time.Time
increment int
mtx sync.Mutex
)
// Init initializes the Snowflake generator.
// This MUST be called before any calls to Generate.
func Init(e time.Time, w, p int) {
epoch = e
workerID = w
processID = p
increment = 0
}
// Snowflake represents a single Snowflake ID.
type Snowflake uint64
// Generate generates a new Snowflake.
// This function is thread-safe.
func Generate() Snowflake {
mtx.Lock()
defer mtx.Unlock()
s := Snowflake(0)
timeComp := time.Since(epoch).Milliseconds()
s |= Snowflake(timeComp << 22)
s |= Snowflake(workerID << 17)
s |= Snowflake(processID << 12)
s |= Snowflake(increment)
increment++
return s
}
// SnowflakeFromString attempts to parse a Snowflake from a string.
func SnowflakeFromString(s string) (Snowflake, error) {
i, err := strconv.ParseUint(s, 10, 64)
if err != nil {
return 0, err
}
return Snowflake(i), nil
}
// MarshalJSON implements json.Marshaler interface
func (s Snowflake) MarshalJSON() ([]byte, error) {
// Needs to be a string or later snowflakes will be truncated
return json.Marshal(s.String())
}
// MarshalJSON implements json.Unmarshaler interface
func (s *Snowflake) UnmarshalJSON(bytes []byte) error {
var snowflake string
err := json.Unmarshal(bytes, &snowflake)
if err != nil {
return err
}
if snowflake == "" || snowflake == "null" {
*s = 0
return nil
}
snowInt, err := strconv.ParseInt(snowflake, 10, 64)
if err != nil {
return err
}
*s = Snowflake(snowInt)
return nil
}
// String implements fmt.Stringer interface
func (s Snowflake) String() string {
return strconv.FormatUint(uint64(s), 10)
}
// Value implements driver.Valuer interface
func (s Snowflake) Value() (driver.Value, error) {
return int64(s), nil
}
// Scan implements sql.Scanner interface
func (s *Snowflake) Scan(value interface{}) error {
if value == nil {
*s = Snowflake(0)
return nil
}
switch v := value.(type) {
case int64:
*s = Snowflake(v)
case string:
iv, err := SnowflakeFromString(v)
if err != nil {
return err
}
*s = iv
default:
return errors.New("not a valid snowflake type")
}
return nil
}
// CreatedAt returns the time component of the Snowflake as a time.Time
func (s Snowflake) CreatedAt() time.Time {
unixMilis := (s >> 22) + Snowflake(epoch.UnixMilli())
return time.UnixMilli(int64(unixMilis))
}