mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-31 06:03:06 +02:00
feat(rules): compile path rules directly to glob
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
package strutils
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/gobwas/glob"
|
||||
)
|
||||
|
||||
var (
|
||||
globPatterns = make(map[string]glob.Glob)
|
||||
globPatternsMu sync.Mutex
|
||||
)
|
||||
|
||||
func GlobMatch(pattern string, s string) bool {
|
||||
if glob, ok := globPatterns[pattern]; ok {
|
||||
return glob.Match(s)
|
||||
}
|
||||
|
||||
globPatternsMu.Lock()
|
||||
defer globPatternsMu.Unlock()
|
||||
|
||||
glob, err := glob.Compile(pattern)
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
globPatterns[pattern] = glob
|
||||
return glob.Match(s)
|
||||
}
|
||||
Reference in New Issue
Block a user