using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Toolbox.Library { public class FileManager { public FileManager() { } public static IFileMenuExtension[] GetMenuExtensions() { //Add plugin and main application menu extensions List types = new List(); foreach (IFileFormat fileFormat in GetFileFormats()) { foreach (Type type in fileFormat.Types) { Type[] interfaces_array = type.GetInterfaces(); for (int i = 0; i < interfaces_array.Length; i++) { if (interfaces_array[i] == typeof(IFileMenuExtension)) { types.Add((IFileMenuExtension)Activator.CreateInstance(type)); } } } } return types.ToArray(); } public static IFileMenuExtension GetMenuExtensions(IFileFormat fileFormat) { foreach (Type type in fileFormat.Types) { Type[] interfaces_array = type.GetInterfaces(); for (int i = 0; i < interfaces_array.Length; i++) { if (interfaces_array[i] == typeof(IFileMenuExtension)) { return (IFileMenuExtension)Activator.CreateInstance(type); } } } return null; } public static IEditor[] GetEditors() { var editors = new List>(); foreach (var plugin in GenericPluginLoader._Plugins) { foreach (Type type in plugin.Value.Types) { Type[] interfaces_array = type.GetInterfaces(); for (int i = 0; i < interfaces_array.Length; i++) { if (interfaces_array[i] == typeof(IEditor)) { editors.Add((IEditor)Activator.CreateInstance(type)); } } } } return editors.ToArray(); } public static VGAdudioFile[] GetVGAudioFileFormats() { List types = new List(); foreach (var fileFormat in GetFileFormats()) { if (fileFormat is VGAdudioFile) types.Add((VGAdudioFile)fileFormat); } return types.ToArray(); } public static ICompressionFormat[] GetCompressionFormats() { //Add plugin and main application file formats List types = new List(); LoadCompressionFormats(FormatList.GetCompressionFormats(), types); if (GenericPluginLoader._Plugins == null) GenericPluginLoader.LoadPlugin(); foreach (var plugin in GenericPluginLoader._Plugins) { LoadCompressionFormats(plugin.Value.Types, types); } return types.ToArray(); } private static void LoadCompressionFormats(Type[] Types, List Formats) { foreach (Type type in Types) { Type[] interfaces_array = type.GetInterfaces(); for (int i = 0; i < interfaces_array.Length; i++) { if (interfaces_array[i] == typeof(ICompressionFormat)) { Formats.Add((ICompressionFormat)Activator.CreateInstance(type)); } } } } public static IFileFormat[] GetFileFormats() { //Add plugin and main application file formats List types = new List(); LoadFileFormats(FormatList.GetFileFormats(), types); if (GenericPluginLoader._Plugins == null) GenericPluginLoader.LoadPlugin(); foreach (var plugin in GenericPluginLoader._Plugins) { LoadFileFormats(plugin.Value.Types, types); } return types.ToArray(); } private static void LoadFileFormats(Type[] Types, List Formats) { foreach (Type type in Types) { Type[] interfaces_array = type.GetInterfaces(); for (int i = 0; i < interfaces_array.Length; i++) { if (interfaces_array[i] == typeof(IFileFormat)) { Formats.Add((IFileFormat)Activator.CreateInstance(type)); } } } } } }