2016-10-14 10:37:30 +03:00
|
|
|
package internal
|
|
|
|
|
2019-07-30 12:13:00 +03:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
2023-01-23 09:48:54 +03:00
|
|
|
"github.com/redis/go-redis/v9/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
|
|
|
|
}
|