mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
20 lines
528 B
Go
20 lines
528 B
Go
package database
|
|
|
|
import "hash/fnv"
|
|
|
|
// Well-known lock IDs for lock functions in the database. These should not
|
|
// change. If locks are deprecated, they should be kept in this list to avoid
|
|
// reusing the same ID.
|
|
const (
|
|
// Keep the unused iota here so we don't need + 1 every time
|
|
lockIDUnused = iota
|
|
LockIDDeploymentSetup
|
|
)
|
|
|
|
// GenLockID generates a unique and consistent lock ID from a given string.
|
|
func GenLockID(name string) int64 {
|
|
hash := fnv.New64()
|
|
_, _ = hash.Write([]byte(name))
|
|
return int64(hash.Sum64())
|
|
}
|