2020-04-11 15:49:41 +02:00
|
|
|
package trace
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"math/rand"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/zrepl/zrepl/util/envconst"
|
|
|
|
)
|
|
|
|
|
|
|
|
var genIdNumBytes = envconst.Int("ZREPL_TRACE_ID_NUM_BYTES", 3)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
if genIdNumBytes < 1 {
|
|
|
|
panic("trace node id byte length must be at least 1")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func genID() string {
|
|
|
|
var out strings.Builder
|
|
|
|
enc := base64.NewEncoder(base64.RawStdEncoding, &out)
|
|
|
|
buf := make([]byte, genIdNumBytes)
|
|
|
|
for i := 0; i < len(buf); {
|
2021-01-24 12:41:45 +01:00
|
|
|
n, err := rand.Read(buf[i:])
|
2020-04-11 15:49:41 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
i += n
|
|
|
|
}
|
|
|
|
n, err := enc.Write(buf[:])
|
|
|
|
if err != nil || n != len(buf) {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if err := enc.Close(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return out.String()
|
|
|
|
}
|