redis/internal/util.go

47 lines
637 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"
2020-03-11 17:29:16 +03:00
"github.com/go-redis/redis/v8/internal/util"
2019-07-30 12:13:00 +03:00
)
func Sleep(ctx context.Context, dur time.Duration) error {
2021-03-20 11:01:48 +03:00
t := time.NewTimer(dur)
defer t.Stop()
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
}