redis/internal/util.go

156 lines
3.0 KiB
Go
Raw Normal View History

2016-10-14 10:37:30 +03:00
package internal
2019-07-30 12:13:00 +03:00
import (
"context"
2020-06-09 16:29:53 +03:00
"fmt"
"strconv"
2019-07-30 12:13:00 +03:00
"time"
2020-06-09 16:29:53 +03:00
"unicode/utf8"
2019-07-30 12:13:00 +03:00
2020-07-09 11:00:17 +03:00
"github.com/go-redis/redis/v8/internal/proto"
2020-03-11 17:29:16 +03:00
"github.com/go-redis/redis/v8/internal/util"
2020-03-11 17:26:42 +03:00
"go.opentelemetry.io/otel/api/global"
"go.opentelemetry.io/otel/api/trace"
2019-07-30 12:13:00 +03:00
)
func Sleep(ctx context.Context, dur time.Duration) error {
2020-03-11 17:26:42 +03:00
return WithSpan(ctx, "sleep", func(ctx context.Context) error {
t := time.NewTimer(dur)
defer t.Stop()
2019-07-30 12:13:00 +03:00
2020-03-11 17:26:42 +03:00
select {
case <-t.C:
return nil
case <-ctx.Done():
return ctx.Err()
}
})
2019-07-30 12:13:00 +03:00
}
2017-02-01 11:36:33 +03:00
2016-10-14 10:37:30 +03:00
func ToLower(s string) string {
if isLower(s) {
return s
}
b := make([]byte, len(s))
for i := range b {
c := s[i]
if c >= 'A' && c <= 'Z' {
c += 'a' - 'A'
}
b[i] = c
}
2018-02-22 15:14:30 +03:00
return util.BytesToString(b)
2016-10-14 10:37:30 +03:00
}
func isLower(s string) bool {
for i := 0; i < len(s); i++ {
c := s[i]
if c >= 'A' && c <= 'Z' {
return false
}
}
return true
}
2019-08-08 10:36:13 +03:00
func Unwrap(err error) error {
u, ok := err.(interface {
Unwrap() error
})
if !ok {
return nil
}
return u.Unwrap()
}
2020-03-11 17:26:42 +03:00
2020-06-09 16:29:53 +03:00
func AppendArg(b []byte, v interface{}) []byte {
switch v := v.(type) {
case nil:
return append(b, "<nil>"...)
case string:
return appendUTF8String(b, v)
case []byte:
return appendUTF8String(b, String(v))
case int:
return strconv.AppendInt(b, int64(v), 10)
case int8:
return strconv.AppendInt(b, int64(v), 10)
case int16:
return strconv.AppendInt(b, int64(v), 10)
case int32:
return strconv.AppendInt(b, int64(v), 10)
case int64:
return strconv.AppendInt(b, v, 10)
case uint:
return strconv.AppendUint(b, uint64(v), 10)
case uint8:
return strconv.AppendUint(b, uint64(v), 10)
case uint16:
return strconv.AppendUint(b, uint64(v), 10)
case uint32:
return strconv.AppendUint(b, uint64(v), 10)
case uint64:
return strconv.AppendUint(b, v, 10)
case float32:
return strconv.AppendFloat(b, float64(v), 'f', -1, 64)
case float64:
return strconv.AppendFloat(b, v, 'f', -1, 64)
case bool:
if v {
return append(b, "true"...)
}
return append(b, "false"...)
case time.Time:
return v.AppendFormat(b, time.RFC3339Nano)
default:
return append(b, fmt.Sprint(v)...)
}
}
func appendUTF8String(b []byte, s string) []byte {
for _, r := range s {
b = appendRune(b, r)
}
return b
}
func appendRune(b []byte, r rune) []byte {
if r < utf8.RuneSelf {
switch c := byte(r); c {
case '\n':
return append(b, "\\n"...)
case '\r':
return append(b, "\\r"...)
default:
return append(b, c)
}
}
l := len(b)
b = append(b, make([]byte, utf8.UTFMax)...)
n := utf8.EncodeRune(b[l:l+utf8.UTFMax], r)
b = b[:l+n]
return b
}
2020-07-09 10:39:46 +03:00
//------------------------------------------------------------------------------
func WithSpan(ctx context.Context, name string, fn func(context.Context) error) error {
if !trace.SpanFromContext(ctx).IsRecording() {
return fn(ctx)
}
ctx, span := global.Tracer("github.com/go-redis/redis").Start(ctx, name)
defer span.End()
return fn(ctx)
}
func RecordError(ctx context.Context, err error) error {
2020-07-09 11:00:17 +03:00
if err != proto.Nil {
trace.SpanFromContext(ctx).RecordError(ctx, err)
}
2020-07-09 10:39:46 +03:00
return err
}