mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
Rename modules and introduce namespace-aware module name lookups
See #248.
This commit is contained in:
parent
4ea9f1eef7
commit
03d9e52627
44 changed files with 184 additions and 123 deletions
|
@ -2,6 +2,8 @@ package module
|
|||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/foxcpp/maddy/internal/log"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -27,6 +29,17 @@ func Register(name string, factory FuncNewModule) {
|
|||
modules[name] = factory
|
||||
}
|
||||
|
||||
// RegisterDeprecated adds module factory function to global registry.
|
||||
//
|
||||
// It prints warning to the log about name being deprecated and suggests using
|
||||
// a new name.
|
||||
func RegisterDeprecated(name, newName string, factory FuncNewModule) {
|
||||
Register(name, func(modName, instName string, aliases, inlineArgs []string) (Module, error) {
|
||||
log.Printf("module initialized via deprecated name %s, %s should be used instead; deprecated name may be removed in the next version", name, newName)
|
||||
return factory(modName, instName, aliases, inlineArgs)
|
||||
})
|
||||
}
|
||||
|
||||
// Get returns module from global registry.
|
||||
//
|
||||
// This function does not return endpoint-type modules, use GetEndpoint for
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue