redis/internal/util.go

88 lines
1.5 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-03-11 17:26:42 +03:00
"reflect"
2019-07-30 12:13:00 +03:00
"time"
2019-08-08 14:29:44 +03:00
"github.com/go-redis/redis/v7/internal/util"
2020-03-11 17:26:42 +03:00
"go.opentelemetry.io/otel/api/core"
"go.opentelemetry.io/otel/api/global"
"go.opentelemetry.io/otel/api/trace"
"google.golang.org/grpc/codes"
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
var (
logTypeKey = core.Key("log.type")
logMessageKey = core.Key("log.message")
)
func WithSpan(ctx context.Context, name string, fn func(context.Context) error) error {
if !trace.SpanFromContext(ctx).IsRecording() {
return fn(ctx)
}
ctx, span := global.TraceProvider().Tracer("go-redis").Start(ctx, name)
defer span.End()
if err := fn(ctx); err != nil {
span.SetStatus(codes.Internal)
span.AddEvent(ctx, "error",
logTypeKey.String(reflect.TypeOf(err).String()),
logMessageKey.String(err.Error()),
)
return err
}
return nil
}