glob/match/range.go

49 lines
773 B
Go
Raw Normal View History

2016-01-08 20:14:31 +03:00
package match
import (
"fmt"
2016-01-09 02:34:41 +03:00
"unicode/utf8"
2016-01-08 20:14:31 +03:00
)
type Range struct {
Lo, Hi rune
Not bool
}
func NewRange(lo, hi rune, not bool) Range {
return Range{lo, hi, not}
}
2016-01-09 02:34:41 +03:00
func (self Range) Len() int {
2016-01-14 18:29:13 +03:00
return lenOne
2016-01-09 02:34:41 +03:00
}
2016-01-08 20:14:31 +03:00
2016-01-09 02:34:41 +03:00
func (self Range) Match(s string) bool {
r, w := utf8.DecodeRuneInString(s)
if len(s) > w {
2016-01-08 20:14:31 +03:00
return false
}
2016-01-09 02:34:41 +03:00
inRange := r >= self.Lo && r <= self.Hi
2016-01-08 20:14:31 +03:00
return inRange == !self.Not
}
2016-02-05 17:29:41 +03:00
func (self Range) Index(s string) (int, []int) {
2016-01-09 02:34:41 +03:00
for i, r := range s {
2016-01-08 20:14:31 +03:00
if self.Not != (r >= self.Lo && r <= self.Hi) {
2016-02-23 14:46:20 +03:00
return i, segmentsByRuneLength[utf8.RuneLen(r)]
2016-01-08 20:14:31 +03:00
}
}
2016-01-09 02:34:41 +03:00
return -1, nil
2016-01-08 20:14:31 +03:00
}
func (self Range) String() string {
2016-01-13 01:26:48 +03:00
var not string
if self.Not {
not = "!"
}
return fmt.Sprintf("<range:%s[%s,%s]>", not, string(self.Lo), string(self.Hi))
2016-01-08 20:14:31 +03:00
}