uuid.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package main
  2. import (
  3. "fmt"
  4. "math/rand"
  5. "strconv"
  6. )
  7. // 随机生成UUID 的V4版本
  8. func newUUIDV4String() (uuid string) {
  9. randBytes := newUuidV4()
  10. return _uuidToString(randBytes)
  11. }
  12. func newUuidV4() (randBytes [16]byte) {
  13. for k := range randBytes {
  14. randBytes[k] = byte(rand.Int() & 0xFF)
  15. }
  16. randBytes[6] &= 0xFF
  17. randBytes[6] |= 0x40
  18. randBytes[8] &= 0x3F
  19. randBytes[8] |= 0x80
  20. return randBytes
  21. }
  22. func _uuidToString(data [16]byte) (uuid string) {
  23. var msb, lsb int64
  24. msb = 0
  25. lsb = 0
  26. for i := 0; i < 8; i++ {
  27. msb = (msb << 8) | int64(data[i]&0xff)
  28. }
  29. for i := 8; i < 16; i++ {
  30. lsb = (lsb << 8) | int64(data[i]&0xff)
  31. }
  32. uuid = _digits(msb>>32, 8) + "-" +
  33. _digits(msb>>16, 4) + "-" +
  34. _digits(msb, 4) + "-" +
  35. _digits(lsb>>48, 4) + "-" +
  36. _digits(lsb, 12)
  37. return
  38. }
  39. func _digits(val int64, digits int) (hex string) {
  40. i := uint(digits * 4)
  41. var hi uint
  42. hi = 1 << i
  43. res := int64(hi) | val&int64(hi-1)
  44. format := "%0" + strconv.Itoa(digits) + "x"
  45. hex = fmt.Sprintf(format, res)
  46. hex = hex[1:]
  47. return
  48. }