Files
Aaru.CommonTypes/PluginBase.cs

152 lines
8.6 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:21 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : PluginBase.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Class to hold all installed plugins.
//
// --[ License ] --------------------------------------------------------------
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// ----------------------------------------------------------------------------
2020-12-31 23:08:21 +00:00
// Copyright © 2011-2021 Natalia Portillo
// ****************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
2020-02-27 00:33:15 +00:00
using Aaru.CommonTypes.Interfaces;
2020-02-27 00:33:15 +00:00
namespace Aaru.CommonTypes
{
2019-11-03 01:41:48 +00:00
/// <summary>Contain all plugins (filesystem, partition and image)</summary>
public class PluginBase
{
2019-11-03 01:41:48 +00:00
/// <summary>List of checksum plugins</summary>
2018-07-20 22:53:46 +01:00
public readonly List<IChecksum> Checksums;
2019-11-03 01:41:48 +00:00
/// <summary>List of filter plugins</summary>
2018-07-20 22:53:46 +01:00
public readonly SortedDictionary<string, IFilter> Filters;
2019-11-03 01:41:48 +00:00
/// <summary>List of floppy image plugins</summary>
2018-07-20 22:53:46 +01:00
public readonly SortedDictionary<string, IFloppyImage> FloppyImages;
2019-11-03 01:41:48 +00:00
/// <summary>List of all media image plugins</summary>
public readonly SortedDictionary<string, IMediaImage> ImagePluginsList;
2019-11-03 01:41:48 +00:00
/// <summary>List of all partition plugins</summary>
public readonly SortedDictionary<string, IPartition> PartPluginsList;
2019-11-03 01:41:48 +00:00
/// <summary>List of all filesystem plugins</summary>
public readonly SortedDictionary<string, IFilesystem> PluginsList;
2019-11-03 01:41:48 +00:00
/// <summary>List of read-only filesystem plugins</summary>
public readonly SortedDictionary<string, IReadOnlyFilesystem> ReadOnlyFilesystems;
2019-11-03 01:41:48 +00:00
/// <summary>List of writable floppy image plugins</summary>
2018-07-20 22:53:46 +01:00
public readonly SortedDictionary<string, IWritableFloppyImage> WritableFloppyImages;
2019-11-03 01:41:48 +00:00
/// <summary>List of writable media image plugins</summary>
public readonly SortedDictionary<string, IWritableImage> WritableImages;
2021-03-05 13:46:55 +01:00
/// <summary>List of all archive formats</summary>
public readonly SortedDictionary<string, IArchive> Archives;
2019-11-03 01:41:48 +00:00
/// <summary>Initializes the plugins lists</summary>
public PluginBase()
{
2018-07-20 22:53:46 +01:00
PluginsList = new SortedDictionary<string, IFilesystem>();
ReadOnlyFilesystems = new SortedDictionary<string, IReadOnlyFilesystem>();
PartPluginsList = new SortedDictionary<string, IPartition>();
ImagePluginsList = new SortedDictionary<string, IMediaImage>();
WritableImages = new SortedDictionary<string, IWritableImage>();
Checksums = new List<IChecksum>();
Filters = new SortedDictionary<string, IFilter>();
FloppyImages = new SortedDictionary<string, IFloppyImage>();
WritableFloppyImages = new SortedDictionary<string, IWritableFloppyImage>();
2021-03-05 13:46:55 +01:00
Archives = new SortedDictionary<string, IArchive>();
2018-07-20 22:53:46 +01:00
}
2021-08-17 13:55:59 +01:00
/// <summary>
/// Adds plugins to the central plugin register
/// </summary>
/// <param name="pluginRegister">Plugin register</param>
2018-07-20 22:53:46 +01:00
public void AddPlugins(IPluginRegister pluginRegister)
{
foreach(Type type in pluginRegister.GetAllChecksumPlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IChecksum plugin)
2018-07-20 22:53:46 +01:00
Checksums.Add(plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllFilesystemPlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IFilesystem plugin &&
2018-07-20 22:53:46 +01:00
!PluginsList.ContainsKey(plugin.Name.ToLower()))
PluginsList.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllFilterPlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IFilter plugin &&
2018-07-20 22:53:46 +01:00
!Filters.ContainsKey(plugin.Name.ToLower()))
Filters.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllFloppyImagePlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IFloppyImage plugin &&
2018-07-20 22:53:46 +01:00
!FloppyImages.ContainsKey(plugin.Name.ToLower()))
FloppyImages.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllMediaImagePlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IMediaImage plugin &&
2018-07-20 22:53:46 +01:00
!ImagePluginsList.ContainsKey(plugin.Name.ToLower()))
ImagePluginsList.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllPartitionPlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IPartition plugin &&
2018-07-20 22:53:46 +01:00
!PartPluginsList.ContainsKey(plugin.Name.ToLower()))
PartPluginsList.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllReadOnlyFilesystemPlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IReadOnlyFilesystem plugin &&
2018-07-20 22:53:46 +01:00
!ReadOnlyFilesystems.ContainsKey(plugin.Name.ToLower()))
ReadOnlyFilesystems.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllWritableFloppyImagePlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IWritableFloppyImage plugin &&
2018-07-20 22:53:46 +01:00
!WritableFloppyImages.ContainsKey(plugin.Name.ToLower()))
WritableFloppyImages.Add(plugin.Name.ToLower(), plugin);
2018-07-20 22:53:46 +01:00
foreach(Type type in pluginRegister.GetAllWritableImagePlugins() ?? Enumerable.Empty<Type>())
2019-11-03 01:41:48 +00:00
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
2020-02-29 18:03:24 +00:00
{}) is IWritableImage plugin &&
2018-07-20 22:53:46 +01:00
!WritableImages.ContainsKey(plugin.Name.ToLower()))
WritableImages.Add(plugin.Name.ToLower(), plugin);
2021-03-05 13:46:55 +01:00
foreach(Type type in pluginRegister.GetAllArchivePlugins() ?? Enumerable.Empty<Type>())
if(type.GetConstructor(Type.EmptyTypes)?.Invoke(new object[]
{}) is IArchive plugin &&
!Archives.ContainsKey(plugin.Name.ToLower()))
Archives.Add(plugin.Name.ToLower(), plugin);
}
}
2021-03-05 13:46:55 +01:00
}