ceph-csi/vendor/github.com/pborman/uuid/version1.go

24 lines
743 B
Go
Raw Normal View History

2018-01-09 18:57:14 +00:00
// Copyright 2011 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package uuid
import (
2018-11-26 18:23:56 +00:00
guuid "github.com/google/uuid"
2018-01-09 18:57:14 +00:00
)
// NewUUID returns a Version 1 UUID based on the current NodeID and clock
// sequence, and the current time. If the NodeID has not been set by SetNodeID
// or SetNodeInterface then it will be set automatically. If the NodeID cannot
// be set NewUUID returns nil. If clock sequence has not been set by
// SetClockSequence then it will be set automatically. If GetTime fails to
// return the current NewUUID returns nil.
func NewUUID() UUID {
2018-11-26 18:23:56 +00:00
gu, err := guuid.NewUUID()
if err == nil {
return UUID(gu[:])
2018-01-09 18:57:14 +00:00
}
2018-11-26 18:23:56 +00:00
return nil
2018-01-09 18:57:14 +00:00
}