github.com/lalkh/containerd@v1.4.3/leases/id.go (about) 1 /* 2 Copyright The containerd Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package leases 18 19 import ( 20 "encoding/base64" 21 "fmt" 22 "math/rand" 23 "time" 24 ) 25 26 // WithRandomID sets the lease ID to a random unique value 27 func WithRandomID() Opt { 28 return func(l *Lease) error { 29 t := time.Now() 30 var b [3]byte 31 rand.Read(b[:]) 32 l.ID = fmt.Sprintf("%d-%s", t.Nanosecond(), base64.URLEncoding.EncodeToString(b[:])) 33 return nil 34 } 35 } 36 37 // WithID sets the ID for the lease 38 func WithID(id string) Opt { 39 return func(l *Lease) error { 40 l.ID = id 41 return nil 42 } 43 }