| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package uuid // import "v2ray.com/core/common/uuid"
- import (
- "bytes"
- "crypto/md5"
- "crypto/rand"
- "encoding/hex"
- "v2ray.com/core/common"
- "v2ray.com/core/common/errors"
- )
- var (
- byteGroups = []int{8, 4, 4, 4, 12}
- )
- type UUID [16]byte
- // String returns the string representation of this UUID.
- func (u *UUID) String() string {
- bytes := u.Bytes()
- result := hex.EncodeToString(bytes[0 : byteGroups[0]/2])
- start := byteGroups[0] / 2
- for i := 1; i < len(byteGroups); i++ {
- nBytes := byteGroups[i] / 2
- result += "-"
- result += hex.EncodeToString(bytes[start : start+nBytes])
- start += nBytes
- }
- return result
- }
- // Bytes returns the bytes representation of this UUID.
- func (u *UUID) Bytes() []byte {
- return u[:]
- }
- // Equals returns true if this UUID equals another UUID by value.
- func (u *UUID) Equals(another *UUID) bool {
- if u == nil && another == nil {
- return true
- }
- if u == nil || another == nil {
- return false
- }
- return bytes.Equal(u.Bytes(), another.Bytes())
- }
- // Next generates a deterministic random UUID based on this UUID.
- func (u *UUID) Next() UUID {
- md5hash := md5.New()
- common.Must2(md5hash.Write(u.Bytes()))
- common.Must2(md5hash.Write([]byte("16167dc8-16b6-4e6d-b8bb-65dd68113a81")))
- var newid UUID
- for {
- md5hash.Sum(newid[:0])
- if !newid.Equals(u) {
- return newid
- }
- common.Must2(md5hash.Write([]byte("533eff8a-4113-4b10-b5ce-0f5d76b98cd2")))
- }
- }
- // New creates a UUID with random value.
- func New() UUID {
- var uuid UUID
- common.Must2(rand.Read(uuid.Bytes()))
- return uuid
- }
- // ParseBytes converts a UUID in byte form to object.
- func ParseBytes(b []byte) (UUID, error) {
- var uuid UUID
- if len(b) != 16 {
- return uuid, errors.New("invalid UUID: ", b)
- }
- copy(uuid[:], b)
- return uuid, nil
- }
- // ParseString converts a UUID in string form to object.
- func ParseString(str string) (UUID, error) {
- var uuid UUID
- text := []byte(str)
- if len(text) < 32 {
- return uuid, errors.New("invalid UUID: ", str)
- }
- b := uuid.Bytes()
- for _, byteGroup := range byteGroups {
- if text[0] == '-' {
- text = text[1:]
- }
- _, err := hex.Decode(b[:byteGroup/2], text[:byteGroup])
- if err != nil {
- return uuid, err
- }
- text = text[byteGroup:]
- b = b[byteGroup/2:]
- }
- return uuid, nil
- }
|