Make endpoint modules special

To support unusual configuration syntax, endpoint modules (imap, smtp,
etc) relied on rather awkward code using modName+instName+aliases as
arguments. This commit replaces old handling with use of special
signature similar to inlineArgs introduced in 1edd031.

Endpoint modules are placed in a separate 'registry' and use
different initialization callback signature for simplicity. This makes
them inaccessible for other modules, though they are not supposed to be
anyway.

Endpoint modules are initialized before other modules. This allows
detecting unused configuration blocks by checking for modules
that were not lazily initalized after endpoint initialization.
This relies on endpoint modules being essentially "roots" of
instances dependency tree.

Idea of "semantical module names" is completely dropped now and so
HACKING.md is updated to not mention it.
This commit is contained in:
fox.cpp 2019-10-26 21:05:46 +03:00
parent 97b370191d
commit ad13d026ec
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
11 changed files with 190 additions and 118 deletions

View file

@ -10,7 +10,13 @@ import (
"github.com/foxcpp/maddy/log"
)
func waitForSignal() os.Signal {
// handleSignals function creates and listens on OS signals channel.
//
// OS-specific signals that correspond to the program termination
// (SIGTERM, SIGHUP, SIGINT) will cause this function to return.
//
// SIGUSR1 will call reinitLogging without returning.
func handleSignals() os.Signal {
sig := make(chan os.Signal, 5)
signal.Notify(sig, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGINT, syscall.SIGUSR1)
@ -21,7 +27,7 @@ func waitForSignal() os.Signal {
reinitLogging()
default:
go func() {
s := waitForSignal()
s := handleSignals()
log.Printf("forced shutdown due to signal (%v)!", s)
os.Exit(1)
}()