StoreBackEnd/pkg/protocol/RegexMatcher.go

41 lines
941 B
Go
Raw Normal View History

package protocol
import "regexp"
// CreateRegexMatcher Création d'une instance de RegexMatcher
func CreateRegexMatcher(pattern string) *RegexMatcher {
compile, err := regexp.Compile(pattern)
if err != nil {
return nil
}
return &RegexMatcher{matcher: compile}
}
// RegexMatcher Propose des méthodes relatives au matching de chaine de caractère
type RegexMatcher struct {
matcher *regexp.Regexp
}
// Match Permet de vérifier la validité d'une donnée affiliée à un protocole
func (m RegexMatcher) Match(data string) bool {
return m.matcher.MatchString(data)
}
// Build Permet de construire une chaine respectant une commande. Retourne la chaine et bool (TRUE si correct et FALSE si incorrect)
func (m RegexMatcher) Build(cmd string, datas ...string) (string, bool) {
str := cmd
for _, data := range datas {
str += " " + data
}
2022-02-22 10:03:52 +01:00
str += "\r\n"
if m.Match(str) {
return str, true
} else {
return "", false
}
}