| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | package uuid | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2016-01-09 00:10:57 +01:00
										 |  |  | 	"bytes" | 
					
						
							|  |  |  | 	"crypto/md5" | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | 	"crypto/rand" | 
					
						
							|  |  |  | 	"encoding/hex" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	byteGroups = []int{8, 4, 4, 4, 12} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 08:53:35 +02:00
										 |  |  | 	ErrInvalidID = errors.New("Invalid ID.") | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | type UUID [16]byte | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 01:08:41 +02:00
										 |  |  | // String returns the string representation of this UUID. | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | func (this *UUID) String() string { | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | 	return bytesToString(this.Bytes()) | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 01:08:41 +02:00
										 |  |  | // Bytes returns the bytes representation of this UUID. | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | func (this *UUID) Bytes() []byte { | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | 	return this[:] | 
					
						
							| 
									
										
										
										
											2016-01-09 00:10:57 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 01:08:41 +02:00
										 |  |  | // Equals returns true if this UUID equals another UUID by value. | 
					
						
							| 
									
										
										
										
											2016-01-09 00:10:57 +01:00
										 |  |  | func (this *UUID) Equals(another *UUID) bool { | 
					
						
							|  |  |  | 	if this == nil && another == nil { | 
					
						
							|  |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if this == nil || another == nil { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return bytes.Equal(this.Bytes(), another.Bytes()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Next generates a deterministic random UUID based on this UUID. | 
					
						
							|  |  |  | func (this *UUID) Next() *UUID { | 
					
						
							|  |  |  | 	md5hash := md5.New() | 
					
						
							|  |  |  | 	md5hash.Write(this.Bytes()) | 
					
						
							|  |  |  | 	md5hash.Write([]byte("16167dc8-16b6-4e6d-b8bb-65dd68113a81")) | 
					
						
							| 
									
										
										
										
											2016-01-12 13:38:47 +01:00
										 |  |  | 	newid := new(UUID) | 
					
						
							| 
									
										
										
										
											2016-01-09 00:10:57 +01:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2016-01-12 13:38:47 +01:00
										 |  |  | 		md5hash.Sum(newid[:0]) | 
					
						
							| 
									
										
										
										
											2016-01-09 00:10:57 +01:00
										 |  |  | 		if !newid.Equals(this) { | 
					
						
							|  |  |  | 			return newid | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-09 01:23:38 +01:00
										 |  |  | 		md5hash.Write([]byte("533eff8a-4113-4b10-b5ce-0f5d76b98cd2")) | 
					
						
							| 
									
										
										
										
											2016-01-09 00:10:57 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-12 13:11:49 +01:00
										 |  |  | func bytesToString(bytes []byte) string { | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | 	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 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 01:08:41 +02:00
										 |  |  | // New creates an UUID with random value. | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | func New() *UUID { | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | 	uuid := new(UUID) | 
					
						
							|  |  |  | 	rand.Read(uuid.Bytes()) | 
					
						
							| 
									
										
										
										
											2015-12-12 13:11:49 +01:00
										 |  |  | 	return uuid | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 01:08:41 +02:00
										 |  |  | // PraseBytes converts an UUID in byte form to object. | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | func ParseBytes(b []byte) (*UUID, error) { | 
					
						
							|  |  |  | 	if len(b) != 16 { | 
					
						
							| 
									
										
										
										
											2016-06-27 08:53:35 +02:00
										 |  |  | 		return nil, ErrInvalidID | 
					
						
							| 
									
										
										
										
											2015-12-12 13:11:49 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | 	uuid := new(UUID) | 
					
						
							|  |  |  | 	copy(uuid[:], b) | 
					
						
							|  |  |  | 	return uuid, nil | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 01:08:41 +02:00
										 |  |  | // ParseString converts an UUID in string form to object. | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | func ParseString(str string) (*UUID, error) { | 
					
						
							|  |  |  | 	text := []byte(str) | 
					
						
							|  |  |  | 	if len(text) < 32 { | 
					
						
							| 
									
										
										
										
											2016-06-27 08:53:35 +02:00
										 |  |  | 		return nil, ErrInvalidID | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-11 00:22:59 +01:00
										 |  |  | 	uuid := new(UUID) | 
					
						
							|  |  |  | 	b := uuid.Bytes() | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for _, byteGroup := range byteGroups { | 
					
						
							|  |  |  | 		if text[0] == '-' { | 
					
						
							|  |  |  | 			text = text[1:] | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_, err := hex.Decode(b[:byteGroup/2], text[:byteGroup]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		text = text[byteGroup:] | 
					
						
							|  |  |  | 		b = b[byteGroup/2:] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-12 13:11:49 +01:00
										 |  |  | 	return uuid, nil | 
					
						
							| 
									
										
										
										
											2015-12-12 11:32:40 +01:00
										 |  |  | } |