maddy/internal/msgpipeline/check_group.go
fox.cpp 9b279735e8
Address several TODO comments
Several comments were removed since they are not worth the trouble.
A few minor issues were addressed.
Most of remaining comments got corresponding GitHub issues assigned.
2020-03-05 02:26:30 +03:00

49 lines
1.2 KiB
Go

package msgpipeline
import (
"github.com/foxcpp/maddy/internal/config"
modconfig "github.com/foxcpp/maddy/internal/config/module"
"github.com/foxcpp/maddy/internal/module"
)
// CheckGroup is a module container for a group of Check implementations.
//
// It allows to share a set of filter configurations between using named
// configuration blocks (module instances) system.
//
// It is registered globally under the name 'checks'. The object does not
// implement any standard module interfaces besides module.Module and is
// specific to the message pipeline.
type CheckGroup struct {
instName string
L []module.Check
}
func (cg *CheckGroup) Init(cfg *config.Map) error {
for _, node := range cfg.Block.Children {
chk, err := modconfig.MessageCheck(cfg.Globals, append([]string{node.Name}, node.Args...), node)
if err != nil {
return err
}
cg.L = append(cg.L, chk)
}
return nil
}
func (CheckGroup) Name() string {
return "checks"
}
func (cg CheckGroup) InstanceName() string {
return cg.instName
}
func init() {
module.Register("checks", func(_, instName string, _, _ []string) (module.Module, error) {
return &CheckGroup{
instName: instName,
}, nil
})
}