mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Windows.Input;
|
|
|
|
namespace Wox.CommandArgs
|
|
{
|
|
internal static class CommandArgsFactory
|
|
{
|
|
private static List<ICommandArg> commandArgs;
|
|
|
|
static CommandArgsFactory()
|
|
{
|
|
var type = typeof(ICommandArg);
|
|
commandArgs = Assembly.GetExecutingAssembly()
|
|
.GetTypes()
|
|
.Where(p => type.IsAssignableFrom(p) && !p.IsInterface)
|
|
.Select(t => Activator.CreateInstance(t) as ICommandArg).ToList();
|
|
}
|
|
|
|
public static void Execute(IList<string> args)
|
|
{
|
|
if (args.Count > 0)
|
|
{
|
|
string command = args[0];
|
|
ICommandArg cmd = commandArgs.FirstOrDefault(o => o.Command.ToLower() == command);
|
|
if (cmd != null)
|
|
{
|
|
args.RemoveAt(0); //remove command itself
|
|
cmd.Execute(args);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
App.Window.ShowApp();
|
|
}
|
|
}
|
|
}
|
|
}
|