forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuuid.go
122 lines (104 loc) · 3.45 KB
/
uuid.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright 2016 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package uuid
import (
"encoding/binary"
"github.com/cockroachdb/cockroach/pkg/util/uint128"
"github.com/pkg/errors"
"github.com/satori/go.uuid"
)
// UUID is a thin wrapper around "github.com/satori/go.uuid".UUID that can be
// used as a gogo/protobuf customtype.
type UUID struct {
uuid.UUID
}
// Short returns the first eight characters of the output of String().
func (u UUID) Short() string {
return u.String()[:8]
}
// Bytes shadows (*github.com/satori/go.uuid.UUID).Bytes() to prevent UUID
// from implementing github.com/golang/protobuf/proto.raw, the semantics of
// which do not match the semantics of the shadowed method. See
// https://github.com/golang/protobuf/blob/5386fff/proto/text.go#L173:L176.
//
// TODO(tamird): remove when fixed upstream. See
// https://github.com/gogo/protobuf/pull/227 and
// https://github.com/golang/protobuf/issues/311.
func (UUID) Bytes() {
panic("intentionally shadowed; use GetBytes()")
}
// Silence unused warning for UUID.Bytes.
var _ = (UUID).Bytes
// Equal returns true iff the receiver equals the argument.
//
// This method exists only to conform to the API expected by gogoproto's
// generated Equal implementations.
func (u UUID) Equal(t UUID) bool {
return u == t
}
// GetBytes returns the UUID as a byte slice.
func (u UUID) GetBytes() []byte {
return u.UUID.Bytes()
}
// ToUint128 returns the UUID as a Uint128.
func (u UUID) ToUint128() uint128.Uint128 {
return uint128.FromBytes(u.GetBytes())
}
// Size returns the marshalled size of u, in bytes.
func (u UUID) Size() int {
return len(u.UUID)
}
// MarshalTo marshals u to data.
func (u UUID) MarshalTo(data []byte) (int, error) {
return copy(data, u.UUID.Bytes()), nil
}
// Unmarshal unmarshals data to u.
func (u *UUID) Unmarshal(data []byte) error {
return u.UUID.UnmarshalBinary(data)
}
// MakeV4 delegates to "github.com/satori/go.uuid".NewV4 and wraps the result in
// a UUID.
func MakeV4() UUID {
return UUID{uuid.NewV4()}
}
// NewPopulatedUUID returns a populated UUID.
func NewPopulatedUUID(r interface {
Int63() int64
}) *UUID {
var u uuid.UUID
binary.LittleEndian.PutUint64(u[:8], uint64(r.Int63()))
binary.LittleEndian.PutUint64(u[8:], uint64(r.Int63()))
return &UUID{u}
}
// FromBytes delegates to "github.com/satori/go.uuid".FromBytes and wraps the
// result in a UUID.
func FromBytes(input []byte) (UUID, error) {
u, err := uuid.FromBytes(input)
return UUID{u}, err
}
// FromString delegates to "github.com/satori/go.uuid".FromString and wraps the
// result in a UUID.
func FromString(input string) (UUID, error) {
u, err := uuid.FromString(input)
return UUID{u}, err
}
// FromUint128 delegates to "github.com/satori/go.uuid".FromBytes and wraps the
// result in a UUID.
func FromUint128(input uint128.Uint128) UUID {
u, err := uuid.FromBytes(input.GetBytes())
if err != nil {
panic(errors.Wrap(err, "should never happen with 16 byte slice"))
}
return UUID{u}
}