mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 15:39:47 +00:00
Some checks are pending
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, deb) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using AIStudio.Settings;
|
|
|
|
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
public static partial class PluginFactory
|
|
{
|
|
private static readonly ILogger LOG = Program.LOGGER_FACTORY.CreateLogger(nameof(PluginFactory));
|
|
private static readonly SettingsManager SETTINGS_MANAGER = Program.SERVICE_PROVIDER.GetRequiredService<SettingsManager>();
|
|
|
|
private static bool IS_INITIALIZED;
|
|
private static string DATA_DIR = string.Empty;
|
|
private static string PLUGINS_ROOT = string.Empty;
|
|
private static string INTERNAL_PLUGINS_ROOT = string.Empty;
|
|
private static FileSystemWatcher HOT_RELOAD_WATCHER = null!;
|
|
private static ILanguagePlugin BASE_LANGUAGE_PLUGIN = NoPluginLanguage.INSTANCE;
|
|
|
|
public static ILanguagePlugin BaseLanguage => BASE_LANGUAGE_PLUGIN;
|
|
|
|
/// <summary>
|
|
/// Set up the plugin factory. We will read the data directory from the settings manager.
|
|
/// Afterward, we will create the plugins directory and the internal plugin directory.
|
|
/// </summary>
|
|
public static void Setup()
|
|
{
|
|
if(IS_INITIALIZED)
|
|
return;
|
|
|
|
DATA_DIR = SettingsManager.DataDirectory!;
|
|
PLUGINS_ROOT = Path.Join(DATA_DIR, "plugins");
|
|
INTERNAL_PLUGINS_ROOT = Path.Join(PLUGINS_ROOT, ".internal");
|
|
|
|
if (!Directory.Exists(PLUGINS_ROOT))
|
|
Directory.CreateDirectory(PLUGINS_ROOT);
|
|
|
|
HOT_RELOAD_WATCHER = new(PLUGINS_ROOT);
|
|
IS_INITIALIZED = true;
|
|
}
|
|
|
|
public static void Dispose()
|
|
{
|
|
if(!IS_INITIALIZED)
|
|
return;
|
|
|
|
HOT_RELOAD_WATCHER.Dispose();
|
|
}
|
|
} |