aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins.Runtime/src/Services
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-02 02:33:05 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-02 02:33:05 -0500
commit4ef0142747c4a0dd0c4cb71d8e7359c03b3a2942 (patch)
tree2991941aec6a0b981411a4f4bb83d8d2ad900aba /lib/Plugins.Runtime/src/Services
parenta6b628c8653485a803bdbe322e2ecd2a69fc8e5a (diff)
breaking changes: plugin service pools & move plugin api away from web related
Diffstat (limited to 'lib/Plugins.Runtime/src/Services')
-rw-r--r--lib/Plugins.Runtime/src/Services/PluginServiceExport.cs49
-rw-r--r--lib/Plugins.Runtime/src/Services/PluginServicePool.cs53
2 files changed, 102 insertions, 0 deletions
diff --git a/lib/Plugins.Runtime/src/Services/PluginServiceExport.cs b/lib/Plugins.Runtime/src/Services/PluginServiceExport.cs
new file mode 100644
index 0000000..0053a70
--- /dev/null
+++ b/lib/Plugins.Runtime/src/Services/PluginServiceExport.cs
@@ -0,0 +1,49 @@
+/*
+* Copyright (c) 2024 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.Runtime
+* File: PluginServiceExport.cs
+*
+* PluginServiceExport.cs is part of VNLib.Plugins.Runtime which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.Runtime is free software: you can redistribute it and/or modify
+* it under the terms of the GNU 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.Runtime 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
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with VNLib.Plugins.Runtime. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
+
+namespace VNLib.Plugins.Runtime.Services
+{
+ /// <summary>
+ /// An immutable wrapper for an exported service by an <see cref="IPlugin"/>
+ /// </summary>
+ public readonly record struct PluginServiceExport
+ {
+ /// <summary>
+ /// The exported service type
+ /// </summary>
+ public readonly Type ServiceType { get; init; }
+
+ /// <summary>
+ /// The exported service instance
+ /// </summary>
+ public readonly object Service { get; init; }
+
+ /// <summary>
+ /// The export flags
+ /// </summary>
+ public readonly ExportFlags Flags { get; init; }
+ }
+}
diff --git a/lib/Plugins.Runtime/src/Services/PluginServicePool.cs b/lib/Plugins.Runtime/src/Services/PluginServicePool.cs
new file mode 100644
index 0000000..fc8a371
--- /dev/null
+++ b/lib/Plugins.Runtime/src/Services/PluginServicePool.cs
@@ -0,0 +1,53 @@
+/*
+* Copyright (c) 2024 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.Runtime
+* File: PluginServicePool.cs
+*
+* PluginServicePool.cs is part of VNLib.Plugins.Runtime which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.Runtime is free software: you can redistribute it and/or modify
+* it under the terms of the GNU 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.Runtime 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
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with VNLib.Plugins.Runtime. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
+using System.Linq;
+using System.Collections.Generic;
+
+namespace VNLib.Plugins.Runtime.Services
+{
+ internal sealed class PluginServicePool : IPluginServicePool
+ {
+ private readonly LinkedList<PluginServiceExport> _services = new();
+
+ ///<inheritdoc/>
+ public void ExportService(Type serviceType, object service, ExportFlags flags = ExportFlags.None)
+ {
+ PluginServiceExport wrapper = new()
+ {
+ Service = service,
+ ServiceType = serviceType,
+ Flags = flags
+ };
+
+ //Add service to container
+ _services.AddLast(wrapper);
+ }
+
+ public PluginServiceExport[] GetServices() => _services.ToArray();
+
+ public void Clear() => _services.Clear();
+ }
+}