mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
* Change default files location as described in #27 * config: Change default config file name
118 lines
3.4 KiB
Go
118 lines
3.4 KiB
Go
package maddy
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/emersion/maddy/config"
|
|
"github.com/emersion/maddy/log"
|
|
"github.com/emersion/maddy/module"
|
|
)
|
|
|
|
type modInfo struct {
|
|
instance module.Module
|
|
cfg config.Node
|
|
}
|
|
|
|
func Start(cfg []config.Node) error {
|
|
instances := make(map[string]modInfo)
|
|
globals := config.NewMap(nil, &config.Node{Children: cfg})
|
|
globals.String("hostname", false, false, "", nil)
|
|
globals.String("statedir", false, false, "", nil)
|
|
globals.String("libexecdir", false, false, "", nil)
|
|
globals.Custom("tls", false, true, nil, tlsDirective, nil)
|
|
globals.Custom("log", false, false, defaultLogOutput, logOutput, &log.DefaultLogger.Out)
|
|
globals.Bool("debug", false, &log.DefaultLogger.Debug)
|
|
globals.AllowUnknown()
|
|
unmatched, err := globals.Process()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, block := range unmatched {
|
|
var instName string
|
|
if len(block.Args) == 0 {
|
|
instName = block.Name
|
|
} else {
|
|
instName = block.Args[0]
|
|
}
|
|
|
|
modName := block.Name
|
|
|
|
factory := module.Get(modName)
|
|
if factory == nil {
|
|
return fmt.Errorf("%s:%d: unknown module: %s", block.File, block.Line, modName)
|
|
}
|
|
|
|
if module.HasInstance(instName) {
|
|
return fmt.Errorf("%s:%d: module instance named %s already exists", block.File, block.Line, instName)
|
|
}
|
|
|
|
log.Debugln("module create", modName, instName)
|
|
inst, err := factory(modName, instName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
block := block
|
|
module.RegisterInstance(inst, config.NewMap(globals.Values, &block))
|
|
instances[instName] = modInfo{instance: inst, cfg: block}
|
|
}
|
|
|
|
addDefaultModule(instances, globals, "default", createDefaultStorage, defaultStorageConfig)
|
|
addDefaultModule(instances, globals, "default_remote_delivery", createDefaultRemoteDelivery, nil)
|
|
|
|
for _, inst := range instances {
|
|
if module.Initialized[inst.instance.InstanceName()] {
|
|
log.Debugln("module init", inst.instance.Name(), inst.instance.InstanceName(), "skipped because it was lazily initialized before")
|
|
continue
|
|
}
|
|
|
|
module.Initialized[inst.instance.InstanceName()] = true
|
|
log.Debugln("module init", inst.instance.Name(), inst.instance.InstanceName())
|
|
if err := inst.instance.Init(config.NewMap(globals.Values, &inst.cfg)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
sig := make(chan os.Signal, 5)
|
|
signal.Notify(sig, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGINT)
|
|
|
|
s := <-sig
|
|
log.Printf("signal received (%v), next signal will force immediate shutdown.", s)
|
|
go func() {
|
|
s := <-sig
|
|
log.Printf("forced shutdown due to signal (%v)!", s)
|
|
os.Exit(1)
|
|
}()
|
|
|
|
for _, inst := range instances {
|
|
if closer, ok := inst.instance.(io.Closer); ok {
|
|
log.Debugln("clean-up for module", inst.instance.Name(), inst.instance.InstanceName())
|
|
closer.Close()
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func addDefaultModule(insts map[string]modInfo, globals *config.Map, name string, factory func(*config.Map, string) (module.Module, error), cfgFactory func(*config.Map, string) config.Node) {
|
|
if _, ok := insts[name]; !ok {
|
|
if mod, err := factory(globals, name); err != nil {
|
|
log.Printf("failed to register %s: %v", name, err)
|
|
} else {
|
|
log.Debugf("module create %s %s (built-in)", mod.Name(), name)
|
|
info := modInfo{instance: mod}
|
|
if cfgFactory != nil {
|
|
info.cfg = cfgFactory(globals, name)
|
|
}
|
|
module.RegisterInstance(mod, config.NewMap(globals.Values, &info.cfg))
|
|
insts[name] = info
|
|
}
|
|
} else {
|
|
log.Debugf("module create %s (built-in) skipped because user-defined exists", name)
|
|
}
|
|
}
|