glob/match/list.go

50 lines
702 B
Go
Raw Normal View History

2015-12-24 17:54:54 +03:00
package match
import (
"fmt"
2016-01-08 20:14:31 +03:00
"strings"
2016-01-09 02:34:41 +03:00
"unicode/utf8"
2015-12-24 17:54:54 +03:00
)
2016-01-08 20:14:31 +03:00
type List struct {
2015-12-24 17:54:54 +03:00
List string
Not bool
}
2016-01-08 20:14:31 +03:00
func (self List) Kind() Kind {
return KindList
2015-12-24 17:54:54 +03:00
}
2016-01-08 20:14:31 +03:00
func (self List) Match(s string) bool {
2016-01-09 02:34:41 +03:00
if utf8.RuneCountInString(s) > 1 {
2016-01-08 20:14:31 +03:00
return false
2015-12-24 17:54:54 +03:00
}
2016-01-08 20:14:31 +03:00
inList := strings.Index(self.List, s) != -1
2015-12-24 17:54:54 +03:00
2016-01-08 20:14:31 +03:00
return inList == !self.Not
}
2015-12-24 17:54:54 +03:00
2016-01-09 02:34:41 +03:00
func (self List) Len() int {
return 1
}
func (self List) Index(s string) (int, []int) {
for i, r := range s {
2016-01-08 20:14:31 +03:00
if self.Not == (strings.IndexRune(self.List, r) == -1) {
2016-01-09 02:34:41 +03:00
return i, []int{utf8.RuneLen(r)}
2016-01-08 20:14:31 +03:00
}
2015-12-24 17:54:54 +03:00
}
2016-01-09 02:34:41 +03:00
return -1, nil
2015-12-24 17:54:54 +03:00
}
2016-01-08 20:14:31 +03:00
func (self List) String() string {
2016-01-13 01:26:48 +03:00
var not string
if self.Not {
not = "!"
}
return fmt.Sprintf("<list:%s[%s]>", not, self.List)
2015-12-24 17:54:54 +03:00
}