代码拉取完成,页面将自动刷新
// 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}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。