Files
QuickLook/QuickLook/PluginManager.cs
2018-02-12 19:30:30 +02:00

107 lines
3.3 KiB
C#

// Copyright © 2017 Paddy Xu
//
// This file is part of QuickLook program.
//
// This program 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 3 of the License, or
// (at your option) any later version.
//
// This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using QuickLook.Common.ExtensionMethods;
using QuickLook.Common.Plugin;
namespace QuickLook
{
internal class PluginManager
{
private static PluginManager _instance;
private PluginManager()
{
LoadPlugins();
}
internal IViewer DefaultPlugin { get; } = new Plugin.InfoPanel.Plugin();
internal List<IViewer> LoadedPlugins { get; private set; } = new List<IViewer>();
internal static PluginManager GetInstance()
{
return _instance ?? (_instance = new PluginManager());
}
internal IViewer FindMatch(string path)
{
if (string.IsNullOrEmpty(path))
return null;
var matched = GetInstance()
.LoadedPlugins.FirstOrDefault(plugin =>
{
var can = false;
try
{
var timer = new Stopwatch();
timer.Start();
can = plugin.CanHandle(path);
timer.Stop();
Debug.WriteLine($"{plugin.GetType()}: {can}, {timer.ElapsedMilliseconds}ms");
}
catch (Exception)
{
// ignored
}
return can;
});
return (matched ?? DefaultPlugin).GetType().CreateInstance<IViewer>();
}
private void LoadPlugins()
{
Directory.GetFiles(Path.Combine(App.AppPath, "QuickLook.Plugin\\"), "QuickLook.Plugin.*.dll",
SearchOption.AllDirectories)
.ToList()
.ForEach(
lib =>
{
(from t in Assembly.LoadFrom(lib).GetExportedTypes()
where !t.IsInterface && !t.IsAbstract
where typeof(IViewer).IsAssignableFrom(t)
select t).ToList()
.ForEach(type => LoadedPlugins.Add(type.CreateInstance<IViewer>()));
});
LoadedPlugins = LoadedPlugins.OrderByDescending(i => i.Priority).ToList();
LoadedPlugins.ForEach(i =>
{
try
{
i.Init();
}
catch (Exception e)
{
Debug.WriteLine(e);
}
});
}
}
}