Differentiate between installed and activated states for plugins (#7706)

Этот коммит содержится в:
Joram Wilander
2017-10-25 08:17:17 -04:00
коммит произвёл GitHub
родитель 9c0575ce6e
Коммит 16b845c0d7
11 изменённых файлов: 406 добавлений и 49 удалений

Просмотреть файл

@@ -89,6 +89,20 @@ func (env *Environment) ActivePluginIds() (ids []string) {
return
}
// Returns true if the plugin is active, false otherwise.
func (env *Environment) IsPluginActive(pluginId string) bool {
env.mutex.RLock()
defer env.mutex.RUnlock()
for id := range env.activePlugins {
if id == pluginId {
return true
}
}
return false
}
// Activates the plugin with the given id.
func (env *Environment) ActivatePlugin(id string) error {
env.mutex.Lock()