fzf/src/pattern.go

375 lines
8.5 KiB
Go
Raw Normal View History

2015-01-01 19:49:30 +00:00
package fzf
import (
"regexp"
"strings"
2015-01-12 03:56:17 +00:00
"github.com/junegunn/fzf/src/algo"
"github.com/junegunn/fzf/src/util"
2015-01-01 19:49:30 +00:00
)
// fuzzy
// 'exact
// ^exact-prefix
// exact-suffix$
// !not-fuzzy
// !'not-exact
// !^not-exact-prefix
// !not-exact-suffix$
2015-01-11 18:01:24 +00:00
type termType int
2015-01-01 19:49:30 +00:00
const (
2015-01-11 18:01:24 +00:00
termFuzzy termType = iota
termExact
termPrefix
termSuffix
2015-06-08 14:16:31 +00:00
termEqual
2015-01-01 19:49:30 +00:00
)
2015-01-11 18:01:24 +00:00
type term struct {
typ termType
inv bool
text []rune
caseSensitive bool
origText []rune
2015-01-01 19:49:30 +00:00
}
2015-11-08 15:58:20 +00:00
type termSet []term
2015-01-11 18:01:24 +00:00
// Pattern represents search pattern
2015-01-01 19:49:30 +00:00
type Pattern struct {
2015-11-03 13:49:32 +00:00
fuzzy bool
extended bool
2015-01-01 19:49:30 +00:00
caseSensitive bool
forward bool
2015-01-01 19:49:30 +00:00
text []rune
2015-11-08 15:58:20 +00:00
termSets []termSet
cacheable bool
delimiter Delimiter
2015-01-01 19:49:30 +00:00
nth []Range
procFun map[termType]func(bool, bool, util.Chars, []rune) algo.Result
2015-01-01 19:49:30 +00:00
}
var (
_patternCache map[string]*Pattern
_splitRegex *regexp.Regexp
_cache ChunkCache
)
func init() {
_splitRegex = regexp.MustCompile("\\s+")
2015-03-31 13:05:02 +00:00
clearPatternCache()
clearChunkCache()
2015-01-01 19:49:30 +00:00
}
func clearPatternCache() {
2015-03-31 13:05:02 +00:00
// We can uniquely identify the pattern for a given string since
2015-11-03 13:49:32 +00:00
// search mode and caseMode do not change while the program is running
2015-01-01 19:49:30 +00:00
_patternCache = make(map[string]*Pattern)
}
2015-03-31 13:05:02 +00:00
func clearChunkCache() {
_cache = NewChunkCache()
}
2015-01-11 18:01:24 +00:00
// BuildPattern builds Pattern object from the given arguments
2015-11-03 13:49:32 +00:00
func BuildPattern(fuzzy bool, extended bool, caseMode Case, forward bool,
nth []Range, delimiter Delimiter, runes []rune) *Pattern {
2015-01-01 19:49:30 +00:00
var asString string
2015-11-03 13:49:32 +00:00
if extended {
2015-01-01 19:49:30 +00:00
asString = strings.Trim(string(runes), " ")
2015-11-03 13:49:32 +00:00
} else {
2015-01-01 19:49:30 +00:00
asString = string(runes)
}
cached, found := _patternCache[asString]
if found {
return cached
}
2015-11-08 15:58:20 +00:00
caseSensitive, cacheable := true, true
termSets := []termSet{}
2015-01-01 19:49:30 +00:00
2015-11-03 13:49:32 +00:00
if extended {
2015-11-08 15:58:20 +00:00
termSets = parseTerms(fuzzy, caseMode, asString)
Loop:
for _, termSet := range termSets {
for idx, term := range termSet {
// If the query contains inverse search terms or OR operators,
// we cannot cache the search scope
if idx > 0 || term.inv {
cacheable = false
break Loop
}
2015-01-01 19:49:30 +00:00
}
}
2015-11-03 13:49:32 +00:00
} else {
lowerString := strings.ToLower(asString)
caseSensitive = caseMode == CaseRespect ||
caseMode == CaseSmart && lowerString != asString
if !caseSensitive {
asString = lowerString
}
2015-01-01 19:49:30 +00:00
}
ptr := &Pattern{
2015-11-03 13:49:32 +00:00
fuzzy: fuzzy,
extended: extended,
2015-01-01 19:49:30 +00:00
caseSensitive: caseSensitive,
forward: forward,
text: []rune(asString),
2015-11-08 15:58:20 +00:00
termSets: termSets,
cacheable: cacheable,
2015-01-01 19:49:30 +00:00
nth: nth,
delimiter: delimiter,
procFun: make(map[termType]func(bool, bool, util.Chars, []rune) algo.Result)}
2015-01-01 19:49:30 +00:00
2015-01-12 03:56:17 +00:00
ptr.procFun[termFuzzy] = algo.FuzzyMatch
2015-06-08 14:16:31 +00:00
ptr.procFun[termEqual] = algo.EqualMatch
2015-01-12 03:56:17 +00:00
ptr.procFun[termExact] = algo.ExactMatchNaive
ptr.procFun[termPrefix] = algo.PrefixMatch
ptr.procFun[termSuffix] = algo.SuffixMatch
2015-01-01 19:49:30 +00:00
_patternCache[asString] = ptr
return ptr
}
2015-11-08 15:58:20 +00:00
func parseTerms(fuzzy bool, caseMode Case, str string) []termSet {
2015-01-01 19:49:30 +00:00
tokens := _splitRegex.Split(str, -1)
2015-11-08 15:58:20 +00:00
sets := []termSet{}
set := termSet{}
switchSet := false
2015-01-01 19:49:30 +00:00
for _, token := range tokens {
2015-01-11 18:01:24 +00:00
typ, inv, text := termFuzzy, false, token
lowerText := strings.ToLower(text)
caseSensitive := caseMode == CaseRespect ||
caseMode == CaseSmart && text != lowerText
if !caseSensitive {
text = lowerText
}
2015-01-01 19:49:30 +00:00
origText := []rune(text)
2015-11-03 13:49:32 +00:00
if !fuzzy {
2015-01-11 18:01:24 +00:00
typ = termExact
2015-01-01 19:49:30 +00:00
}
2015-11-08 15:58:20 +00:00
if text == "|" {
switchSet = false
continue
}
2015-01-01 19:49:30 +00:00
if strings.HasPrefix(text, "!") {
inv = true
text = text[1:]
}
if strings.HasPrefix(text, "'") {
2015-11-03 13:49:32 +00:00
// Flip exactness
if fuzzy {
2015-01-11 18:01:24 +00:00
typ = termExact
2015-01-01 19:49:30 +00:00
text = text[1:]
2015-11-03 13:49:32 +00:00
} else {
typ = termFuzzy
text = text[1:]
2015-01-01 19:49:30 +00:00
}
} else if strings.HasPrefix(text, "^") {
2015-06-08 14:16:31 +00:00
if strings.HasSuffix(text, "$") {
typ = termEqual
text = text[1 : len(text)-1]
} else {
typ = termPrefix
text = text[1:]
}
2015-01-01 19:49:30 +00:00
} else if strings.HasSuffix(text, "$") {
2015-01-11 18:01:24 +00:00
typ = termSuffix
2015-01-01 19:49:30 +00:00
text = text[:len(text)-1]
}
if len(text) > 0 {
2015-11-08 15:58:20 +00:00
if switchSet {
sets = append(sets, set)
set = termSet{}
}
set = append(set, term{
typ: typ,
inv: inv,
text: []rune(text),
caseSensitive: caseSensitive,
origText: origText})
2015-11-08 15:58:20 +00:00
switchSet = true
2015-01-01 19:49:30 +00:00
}
}
2015-11-08 15:58:20 +00:00
if len(set) > 0 {
sets = append(sets, set)
}
return sets
2015-01-01 19:49:30 +00:00
}
2015-01-11 18:01:24 +00:00
// IsEmpty returns true if the pattern is effectively empty
2015-01-01 19:49:30 +00:00
func (p *Pattern) IsEmpty() bool {
2015-11-03 13:49:32 +00:00
if !p.extended {
2015-01-01 19:49:30 +00:00
return len(p.text) == 0
}
2015-11-08 15:58:20 +00:00
return len(p.termSets) == 0
2015-01-01 19:49:30 +00:00
}
2015-01-11 18:01:24 +00:00
// AsString returns the search query in string type
2015-01-01 19:49:30 +00:00
func (p *Pattern) AsString() string {
return string(p.text)
}
2015-01-11 18:01:24 +00:00
// CacheKey is used to build string to be used as the key of result cache
2015-01-01 19:49:30 +00:00
func (p *Pattern) CacheKey() string {
2015-11-03 13:49:32 +00:00
if !p.extended {
2015-01-01 19:49:30 +00:00
return p.AsString()
}
cacheableTerms := []string{}
2015-11-08 15:58:20 +00:00
for _, termSet := range p.termSets {
if len(termSet) == 1 && !termSet[0].inv && (p.fuzzy || termSet[0].typ == termExact) {
2015-11-08 15:58:20 +00:00
cacheableTerms = append(cacheableTerms, string(termSet[0].origText))
2015-01-01 19:49:30 +00:00
}
}
return strings.Join(cacheableTerms, " ")
}
2015-01-11 18:01:24 +00:00
// Match returns the list of matches Items in the given Chunk
func (p *Pattern) Match(chunk *Chunk) []*Result {
2015-01-01 19:49:30 +00:00
// ChunkCache: Exact match
cacheKey := p.CacheKey()
2015-11-08 15:58:20 +00:00
if p.cacheable {
2015-01-01 19:49:30 +00:00
if cached, found := _cache.Find(chunk, cacheKey); found {
return cached
}
}
// Prefix/suffix cache
var space []*Result
2015-01-10 18:53:07 +00:00
Loop:
for idx := 1; idx < len(cacheKey); idx++ {
// [---------| ] | [ |---------]
// [--------| ] | [ |--------]
// [-------| ] | [ |-------]
prefix := cacheKey[:len(cacheKey)-idx]
suffix := cacheKey[idx:]
for _, substr := range [2]*string{&prefix, &suffix} {
if cached, found := _cache.Find(chunk, *substr); found {
space = cached
2015-01-10 18:53:07 +00:00
break Loop
2015-01-01 19:49:30 +00:00
}
}
}
matches := p.matchChunk(chunk, space)
2015-01-01 19:49:30 +00:00
2015-11-08 15:58:20 +00:00
if p.cacheable {
2015-01-01 19:49:30 +00:00
_cache.Add(chunk, cacheKey, matches)
}
return matches
}
func (p *Pattern) matchChunk(chunk *Chunk, space []*Result) []*Result {
matches := []*Result{}
if space == nil {
for _, item := range *chunk {
if match := p.MatchItem(item); match != nil {
matches = append(matches, match)
}
}
} else {
for _, result := range space {
if match := p.MatchItem(result.item); match != nil {
matches = append(matches, match)
}
}
}
return matches
}
// MatchItem returns true if the Item is a match
func (p *Pattern) MatchItem(item *Item) *Result {
if p.extended {
if offsets, bonus, trimLen := p.extendedMatch(item); len(offsets) == len(p.termSets) {
return buildResult(item, offsets, bonus, trimLen)
}
return nil
}
offset, bonus, trimLen := p.basicMatch(item)
if sidx := offset[0]; sidx >= 0 {
return buildResult(item, []Offset{offset}, bonus, trimLen)
}
return nil
}
func (p *Pattern) basicMatch(item *Item) (Offset, int, int) {
input := p.prepareInput(item)
2015-11-03 13:49:32 +00:00
if p.fuzzy {
return p.iter(algo.FuzzyMatch, input, p.caseSensitive, p.forward, p.text)
}
return p.iter(algo.ExactMatchNaive, input, p.caseSensitive, p.forward, p.text)
2015-01-01 19:49:30 +00:00
}
func (p *Pattern) extendedMatch(item *Item) ([]Offset, int, int) {
input := p.prepareInput(item)
offsets := []Offset{}
var totalBonus int
var totalTrimLen int
2015-11-08 15:58:20 +00:00
for _, termSet := range p.termSets {
var offset Offset
var bonus int
var trimLen int
matched := false
2015-11-08 15:58:20 +00:00
for _, term := range termSet {
pfun := p.procFun[term.typ]
off, pen, tLen := p.iter(pfun, input, term.caseSensitive, p.forward, term.text)
if sidx := off[0]; sidx >= 0 {
2015-11-08 15:58:20 +00:00
if term.inv {
continue
2015-11-08 15:58:20 +00:00
}
offset, bonus, trimLen = off, pen, tLen
matched = true
2015-11-08 15:58:20 +00:00
break
} else if term.inv {
offset, bonus, trimLen = Offset{0, 0}, 0, 0
matched = true
continue
2015-01-01 19:49:30 +00:00
}
}
if matched {
offsets = append(offsets, offset)
totalBonus += bonus
totalTrimLen += trimLen
}
2015-01-01 19:49:30 +00:00
}
return offsets, totalBonus, totalTrimLen
2015-01-01 19:49:30 +00:00
}
func (p *Pattern) prepareInput(item *Item) []Token {
2015-01-01 19:49:30 +00:00
if item.transformed != nil {
return item.transformed
}
var ret []Token
if len(p.nth) == 0 {
ret = []Token{Token{text: &item.text, prefixLength: 0, trimLength: int32(item.text.TrimLength())}}
} else {
2015-01-01 19:49:30 +00:00
tokens := Tokenize(item.text, p.delimiter)
ret = Transform(tokens, p.nth)
}
item.transformed = ret
return ret
}
func (p *Pattern) iter(pfun func(bool, bool, util.Chars, []rune) algo.Result,
tokens []Token, caseSensitive bool, forward bool, pattern []rune) (Offset, int, int) {
for _, part := range tokens {
if res := pfun(caseSensitive, forward, *part.text, pattern); res.Start >= 0 {
sidx := int32(res.Start) + part.prefixLength
eidx := int32(res.End) + part.prefixLength
return Offset{sidx, eidx}, res.Bonus, int(part.trimLength)
2015-01-01 19:49:30 +00:00
}
}
return Offset{-1, -1}, 0, -1
2015-01-01 19:49:30 +00:00
}