redis/internal/util.go

57 lines
764 B
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"
"time"
2019-08-08 14:29:44 +03:00
"github.com/go-redis/redis/v7/internal/util"
2019-07-30 12:13:00 +03:00
)
func Sleep(ctx context.Context, dur time.Duration) error {
t := time.NewTimer(dur)
defer t.Stop()
select {
case <-t.C:
return nil
case <-ctx.Done():
return ctx.Err()
}
}
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()
}