autobrr/internal/indexer/parse.go
Kyle Sanderson 982f7ddf68
refactor(wildcard): optimize and add caching (#1634)
* fix(wildcard): avoid excessive allocations every loop

* are you going to Scarborough Fair?

* ruby ruby ruby ruby

* ride on, little murphy

* shirley?

* to the moon

* reggie are you there?

* code 99

* my doctorate is in Art History

* helps to be consistent

* tidy

* slow and steady gets the clam

* oysters were better anyway

* DIAL TONE
2024-09-02 11:18:14 +02:00

76 lines
1.6 KiB
Go

package indexer
import (
"errors"
"github.com/autobrr/autobrr/pkg/regexcache"
"github.com/rs/zerolog"
)
type Logger interface {
Debug() *zerolog.Event
}
func regExMatch(pattern string, value string) ([]string, error) {
rxp, err := regexcache.Compile(pattern)
if err != nil {
return nil, err
}
matches := rxp.FindStringSubmatch(value)
if matches == nil {
return nil, nil
}
return matches[1:], nil
}
func ParseLine(logger Logger, pattern string, vars []string, tmpVars map[string]string, line string, ignore bool) (bool, error) {
if len(vars) > 0 {
return parseExtract(logger, pattern, vars, tmpVars, line)
}
return parseMatchRegexp(pattern, tmpVars, line, ignore)
}
func parseExtract(logger Logger, pattern string, vars []string, tmpVars map[string]string, line string) (bool, error) {
rxp, err := regExMatch(pattern, line)
if err != nil {
logger.Debug().Msgf("did not match expected line: %v", line)
}
if rxp == nil {
return false, nil
}
for i, v := range vars {
if i+1 > len(rxp) {
return false, errors.New("too few matches returned for rxp")
}
tmpVars[v] = rxp[i]
}
return true, nil
}
func parseMatchRegexp(pattern string, tmpVars map[string]string, line string, ignore bool) (bool, error) {
var re = regexcache.MustCompile(`(?mi)` + pattern)
groupNames := re.SubexpNames()
for _, match := range re.FindAllStringSubmatch(line, -1) {
for groupIdx, group := range match {
// if line should be ignored then lets return
if ignore {
return true, nil
}
name := groupNames[groupIdx]
if name == "" {
name = "raw"
}
tmpVars[name] = group
}
}
return true, nil
}