mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
It is correct fix for initialization order issue introduced in https://github.com/emersion/maddy/pull/24.
35 lines
834 B
Go
35 lines
834 B
Go
package module
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var modules = make(map[string]FuncNewModule)
|
|
var modulesLock sync.RWMutex
|
|
|
|
// Register adds module factory function to global registry.
|
|
//
|
|
// name must be unique. Register will panic if module with specified name
|
|
// already exists in registry.
|
|
//
|
|
// You probably want to call this function from func init() of module package.
|
|
func Register(name string, factory FuncNewModule) {
|
|
modulesLock.Lock()
|
|
defer modulesLock.Unlock()
|
|
|
|
if _, ok := modules[name]; ok {
|
|
panic("Register: module with specified name is already registered: " + name)
|
|
}
|
|
|
|
modules[name] = factory
|
|
}
|
|
|
|
// Get returns module from global registry.
|
|
//
|
|
// Nil is returned if no module with specified name is registered.
|
|
func Get(name string) FuncNewModule {
|
|
modulesLock.RLock()
|
|
defer modulesLock.RUnlock()
|
|
|
|
return modules[name]
|
|
}
|