forked from taggledevel2/ratchet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regexp_matcher.go
44 lines (37 loc) · 1.31 KB
/
regexp_matcher.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package processors
import (
"regexp"
"github.com/tanapoln/ratchet/v2/data"
"github.com/tanapoln/ratchet/v2/logger"
"github.com/tanapoln/ratchet/v2/util"
)
// RegexpMatcher checks if incoming data matches the given Regexp, and sends
// it on to the next stage only if it matches.
// It is using regexp.Match under the covers: https://golang.org/pkg/regexp/#Match
type RegexpMatcher struct {
pattern string
// Set to true to log each match attempt (logger must be in debug mode).
DebugLog bool
}
// NewRegexpMatcher returns a new RegexpMatcher initialized
// with the given pattern to match.
func NewRegexpMatcher(pattern string) *RegexpMatcher {
return &RegexpMatcher{pattern, false}
}
// ProcessData sends the data it receives to the outputChan only if it matches the supplied regex
func (r *RegexpMatcher) ProcessData(d data.JSON, outputChan chan data.JSON, killChan chan error) {
matches, err := regexp.Match(r.pattern, d)
util.KillPipelineIfErr(err, killChan)
if r.DebugLog {
logger.Debug("RegexpMatcher: checking if", string(d), "matches pattern", r.pattern, ". MATCH=", matches)
}
if matches {
outputChan <- d
}
}
// Finish - see interface for documentation.
func (r *RegexpMatcher) Finish(outputChan chan data.JSON, killChan chan error) {
}
func (r *RegexpMatcher) String() string {
return "RegexpMatcher"
}