/* * Copyright (c) 2023 Vaughn Nugent * * Library: VNLib * Package: VNLib.Plugins.Essentials.ServiceStack * File: IPluginManager.cs * * IPluginManager.cs is part of VNLib.Plugins.Essentials.ServiceStack which * is part of the larger VNLib collection of libraries and utilities. * * VNLib.Plugins.Essentials.ServiceStack is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 2 of the * License, or (at your option) any later version. * * VNLib.Plugins.Essentials.ServiceStack is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see https://www.gnu.org/licenses/. */ using System; using System.Collections.Generic; using VNLib.Utils.Logging; namespace VNLib.Plugins.Essentials.ServiceStack { /// /// Represents a live plugin controller that manages all /// plugins loaded in a /// public interface IPluginManager { /// /// The the plugins managed by this /// public IEnumerable Plugins { get; } /// /// Loads all plugins specified by the host config to the service manager, /// or attempts to load plugins by the default /// /// The plugin loading configuration /// A log provider to write message and errors to /// A task that resolves when all plugins are loaded void LoadPlugins(IPluginLoadConfiguration config, ILogProvider appLog); /// /// Sends a message to a plugin identified by it's name. /// /// The name of the plugin to pass the message to /// The message to pass to the plugin /// The name string comparison type /// True if the plugin was found and it has a message handler loaded /// bool SendCommandToPlugin(string pluginName, string message, StringComparison nameComparison = StringComparison.Ordinal); /// /// Manually reloads all plugins loaded to the current service manager /// /// /// void ForceReloadAllPlugins(); /// /// Unloads all loaded plugins and calls thier event handlers /// void UnloadPlugins(); } }