Skip to content

Commit

Permalink
Simplifies the implementation of common/uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Oct 23, 2013
1 parent fa0a0a8 commit 440e966
Showing 1 changed file with 11 additions and 19 deletions.
30 changes: 11 additions & 19 deletions common/uuid/uuid.go
Original file line number Diff line number Diff line change
@@ -1,32 +1,24 @@
package uuid

import (
"fmt"
"crypto/rand"
"encoding/binary"
"fmt"
"time"
)

func uint32rand() (value uint32) {
err := binary.Read(rand.Reader, binary.LittleEndian, &value)
if err != nil {
panic(err)
}
return
}

// Generates a time ordered UUID. Top 32 bits are a timestamp,
// bottom 96 are random.
func TimeOrderedUUID() string {
unix := uint32(time.Now().UTC().Unix())
rand1 := uint32rand()
rand2 := uint32rand()
rand3 := uint32rand()

b := make([]byte, 12)
n, err := rand.Read(b)
if n != len(b) {
err = fmt.Errorf("Not enough entropy available")
}
if err != nil {
panic(err)
}
return fmt.Sprintf("%08x-%04x-%04x-%04x-%04x%08x",
unix,
uint16(rand1>>16),
uint16(rand1&0xffff),
uint16(rand2>>16),
uint16(rand2&0xffff),
rand3)
unix, b[0:2], b[2:4], b[4:6], b[6:8], b[8:])
}

0 comments on commit 440e966

Please sign in to comment.